config_file.c 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981
  1. /*
  2. * hostapd / Configuration file parser
  3. * Copyright (c) 2003-2015, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "utils/includes.h"
  9. #ifndef CONFIG_NATIVE_WINDOWS
  10. #include <grp.h>
  11. #endif /* CONFIG_NATIVE_WINDOWS */
  12. #include "utils/common.h"
  13. #include "utils/uuid.h"
  14. #include "common/ieee802_11_defs.h"
  15. #include "crypto/sha256.h"
  16. #include "crypto/tls.h"
  17. #include "drivers/driver.h"
  18. #include "eap_server/eap.h"
  19. #include "radius/radius_client.h"
  20. #include "ap/wpa_auth.h"
  21. #include "ap/ap_config.h"
  22. #include "config_file.h"
  23. #ifndef CONFIG_NO_RADIUS
  24. #ifdef EAP_SERVER
  25. static struct hostapd_radius_attr *
  26. hostapd_parse_radius_attr(const char *value);
  27. #endif /* EAP_SERVER */
  28. #endif /* CONFIG_NO_RADIUS */
  29. #ifndef CONFIG_NO_VLAN
  30. static int hostapd_config_read_vlan_file(struct hostapd_bss_config *bss,
  31. const char *fname)
  32. {
  33. FILE *f;
  34. char buf[128], *pos, *pos2;
  35. int line = 0, vlan_id;
  36. struct hostapd_vlan *vlan;
  37. f = fopen(fname, "r");
  38. if (!f) {
  39. wpa_printf(MSG_ERROR, "VLAN file '%s' not readable.", fname);
  40. return -1;
  41. }
  42. while (fgets(buf, sizeof(buf), f)) {
  43. line++;
  44. if (buf[0] == '#')
  45. continue;
  46. pos = buf;
  47. while (*pos != '\0') {
  48. if (*pos == '\n') {
  49. *pos = '\0';
  50. break;
  51. }
  52. pos++;
  53. }
  54. if (buf[0] == '\0')
  55. continue;
  56. if (buf[0] == '*') {
  57. vlan_id = VLAN_ID_WILDCARD;
  58. pos = buf + 1;
  59. } else {
  60. vlan_id = strtol(buf, &pos, 10);
  61. if (buf == pos || vlan_id < 1 ||
  62. vlan_id > MAX_VLAN_ID) {
  63. wpa_printf(MSG_ERROR, "Invalid VLAN ID at "
  64. "line %d in '%s'", line, fname);
  65. fclose(f);
  66. return -1;
  67. }
  68. }
  69. while (*pos == ' ' || *pos == '\t')
  70. pos++;
  71. pos2 = pos;
  72. while (*pos2 != ' ' && *pos2 != '\t' && *pos2 != '\0')
  73. pos2++;
  74. *pos2 = '\0';
  75. if (*pos == '\0' || os_strlen(pos) > IFNAMSIZ) {
  76. wpa_printf(MSG_ERROR, "Invalid VLAN ifname at line %d "
  77. "in '%s'", line, fname);
  78. fclose(f);
  79. return -1;
  80. }
  81. vlan = os_zalloc(sizeof(*vlan));
  82. if (vlan == NULL) {
  83. wpa_printf(MSG_ERROR, "Out of memory while reading "
  84. "VLAN interfaces from '%s'", fname);
  85. fclose(f);
  86. return -1;
  87. }
  88. vlan->vlan_id = vlan_id;
  89. vlan->vlan_desc.untagged = vlan_id;
  90. vlan->vlan_desc.notempty = !!vlan_id;
  91. os_strlcpy(vlan->ifname, pos, sizeof(vlan->ifname));
  92. vlan->next = bss->vlan;
  93. bss->vlan = vlan;
  94. }
  95. fclose(f);
  96. return 0;
  97. }
  98. #endif /* CONFIG_NO_VLAN */
  99. int hostapd_acl_comp(const void *a, const void *b)
  100. {
  101. const struct mac_acl_entry *aa = a;
  102. const struct mac_acl_entry *bb = b;
  103. return os_memcmp(aa->addr, bb->addr, sizeof(macaddr));
  104. }
  105. int hostapd_add_acl_maclist(struct mac_acl_entry **acl, int *num,
  106. int vlan_id, const u8 *addr)
  107. {
  108. struct mac_acl_entry *newacl;
  109. newacl = os_realloc_array(*acl, *num + 1, sizeof(**acl));
  110. if (!newacl) {
  111. wpa_printf(MSG_ERROR, "MAC list reallocation failed");
  112. return -1;
  113. }
  114. *acl = newacl;
  115. os_memcpy((*acl)[*num].addr, addr, ETH_ALEN);
  116. os_memset(&(*acl)[*num].vlan_id, 0, sizeof((*acl)[*num].vlan_id));
  117. (*acl)[*num].vlan_id.untagged = vlan_id;
  118. (*acl)[*num].vlan_id.notempty = !!vlan_id;
  119. (*num)++;
  120. return 0;
  121. }
  122. void hostapd_remove_acl_mac(struct mac_acl_entry **acl, int *num,
  123. const u8 *addr)
  124. {
  125. int i = 0;
  126. while (i < *num) {
  127. if (os_memcmp((*acl)[i].addr, addr, ETH_ALEN) == 0) {
  128. os_remove_in_array(*acl, *num, sizeof(**acl), i);
  129. (*num)--;
  130. } else {
  131. i++;
  132. }
  133. }
  134. }
  135. static int hostapd_config_read_maclist(const char *fname,
  136. struct mac_acl_entry **acl, int *num)
  137. {
  138. FILE *f;
  139. char buf[128], *pos;
  140. int line = 0;
  141. u8 addr[ETH_ALEN];
  142. int vlan_id;
  143. f = fopen(fname, "r");
  144. if (!f) {
  145. wpa_printf(MSG_ERROR, "MAC list file '%s' not found.", fname);
  146. return -1;
  147. }
  148. while (fgets(buf, sizeof(buf), f)) {
  149. int rem = 0;
  150. line++;
  151. if (buf[0] == '#')
  152. continue;
  153. pos = buf;
  154. while (*pos != '\0') {
  155. if (*pos == '\n') {
  156. *pos = '\0';
  157. break;
  158. }
  159. pos++;
  160. }
  161. if (buf[0] == '\0')
  162. continue;
  163. pos = buf;
  164. if (buf[0] == '-') {
  165. rem = 1;
  166. pos++;
  167. }
  168. if (hwaddr_aton(pos, addr)) {
  169. wpa_printf(MSG_ERROR, "Invalid MAC address '%s' at "
  170. "line %d in '%s'", pos, line, fname);
  171. fclose(f);
  172. return -1;
  173. }
  174. if (rem) {
  175. hostapd_remove_acl_mac(acl, num, addr);
  176. continue;
  177. }
  178. vlan_id = 0;
  179. pos = buf;
  180. while (*pos != '\0' && *pos != ' ' && *pos != '\t')
  181. pos++;
  182. while (*pos == ' ' || *pos == '\t')
  183. pos++;
  184. if (*pos != '\0')
  185. vlan_id = atoi(pos);
  186. if (hostapd_add_acl_maclist(acl, num, vlan_id, addr) < 0)
  187. return -1;
  188. }
  189. fclose(f);
  190. if (*acl)
  191. qsort(*acl, *num, sizeof(**acl), hostapd_acl_comp);
  192. return 0;
  193. }
  194. #ifdef EAP_SERVER
  195. static int hostapd_config_read_eap_user(const char *fname,
  196. struct hostapd_bss_config *conf)
  197. {
  198. FILE *f;
  199. char buf[512], *pos, *start, *pos2;
  200. int line = 0, ret = 0, num_methods;
  201. struct hostapd_eap_user *user = NULL, *tail = NULL, *new_user = NULL;
  202. if (os_strncmp(fname, "sqlite:", 7) == 0) {
  203. #ifdef CONFIG_SQLITE
  204. os_free(conf->eap_user_sqlite);
  205. conf->eap_user_sqlite = os_strdup(fname + 7);
  206. return 0;
  207. #else /* CONFIG_SQLITE */
  208. wpa_printf(MSG_ERROR,
  209. "EAP user file in SQLite DB, but CONFIG_SQLITE was not enabled in the build.");
  210. return -1;
  211. #endif /* CONFIG_SQLITE */
  212. }
  213. f = fopen(fname, "r");
  214. if (!f) {
  215. wpa_printf(MSG_ERROR, "EAP user file '%s' not found.", fname);
  216. return -1;
  217. }
  218. /* Lines: "user" METHOD,METHOD2 "password" (password optional) */
  219. while (fgets(buf, sizeof(buf), f)) {
  220. line++;
  221. if (buf[0] == '#')
  222. continue;
  223. pos = buf;
  224. while (*pos != '\0') {
  225. if (*pos == '\n') {
  226. *pos = '\0';
  227. break;
  228. }
  229. pos++;
  230. }
  231. if (buf[0] == '\0')
  232. continue;
  233. #ifndef CONFIG_NO_RADIUS
  234. if (user && os_strncmp(buf, "radius_accept_attr=", 19) == 0) {
  235. struct hostapd_radius_attr *attr, *a;
  236. attr = hostapd_parse_radius_attr(buf + 19);
  237. if (attr == NULL) {
  238. wpa_printf(MSG_ERROR, "Invalid radius_auth_req_attr: %s",
  239. buf + 19);
  240. user = NULL; /* already in the BSS list */
  241. goto failed;
  242. }
  243. if (user->accept_attr == NULL) {
  244. user->accept_attr = attr;
  245. } else {
  246. a = user->accept_attr;
  247. while (a->next)
  248. a = a->next;
  249. a->next = attr;
  250. }
  251. continue;
  252. }
  253. #endif /* CONFIG_NO_RADIUS */
  254. user = NULL;
  255. if (buf[0] != '"' && buf[0] != '*') {
  256. wpa_printf(MSG_ERROR, "Invalid EAP identity (no \" in "
  257. "start) on line %d in '%s'", line, fname);
  258. goto failed;
  259. }
  260. user = os_zalloc(sizeof(*user));
  261. if (user == NULL) {
  262. wpa_printf(MSG_ERROR, "EAP user allocation failed");
  263. goto failed;
  264. }
  265. user->force_version = -1;
  266. if (buf[0] == '*') {
  267. pos = buf;
  268. } else {
  269. pos = buf + 1;
  270. start = pos;
  271. while (*pos != '"' && *pos != '\0')
  272. pos++;
  273. if (*pos == '\0') {
  274. wpa_printf(MSG_ERROR, "Invalid EAP identity "
  275. "(no \" in end) on line %d in '%s'",
  276. line, fname);
  277. goto failed;
  278. }
  279. user->identity = os_memdup(start, pos - start);
  280. if (user->identity == NULL) {
  281. wpa_printf(MSG_ERROR, "Failed to allocate "
  282. "memory for EAP identity");
  283. goto failed;
  284. }
  285. user->identity_len = pos - start;
  286. if (pos[0] == '"' && pos[1] == '*') {
  287. user->wildcard_prefix = 1;
  288. pos++;
  289. }
  290. }
  291. pos++;
  292. while (*pos == ' ' || *pos == '\t')
  293. pos++;
  294. if (*pos == '\0') {
  295. wpa_printf(MSG_ERROR, "No EAP method on line %d in "
  296. "'%s'", line, fname);
  297. goto failed;
  298. }
  299. start = pos;
  300. while (*pos != ' ' && *pos != '\t' && *pos != '\0')
  301. pos++;
  302. if (*pos == '\0') {
  303. pos = NULL;
  304. } else {
  305. *pos = '\0';
  306. pos++;
  307. }
  308. num_methods = 0;
  309. while (*start) {
  310. char *pos3 = os_strchr(start, ',');
  311. if (pos3) {
  312. *pos3++ = '\0';
  313. }
  314. user->methods[num_methods].method =
  315. eap_server_get_type(
  316. start,
  317. &user->methods[num_methods].vendor);
  318. if (user->methods[num_methods].vendor ==
  319. EAP_VENDOR_IETF &&
  320. user->methods[num_methods].method == EAP_TYPE_NONE)
  321. {
  322. if (os_strcmp(start, "TTLS-PAP") == 0) {
  323. user->ttls_auth |= EAP_TTLS_AUTH_PAP;
  324. goto skip_eap;
  325. }
  326. if (os_strcmp(start, "TTLS-CHAP") == 0) {
  327. user->ttls_auth |= EAP_TTLS_AUTH_CHAP;
  328. goto skip_eap;
  329. }
  330. if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
  331. user->ttls_auth |=
  332. EAP_TTLS_AUTH_MSCHAP;
  333. goto skip_eap;
  334. }
  335. if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
  336. user->ttls_auth |=
  337. EAP_TTLS_AUTH_MSCHAPV2;
  338. goto skip_eap;
  339. }
  340. if (os_strcmp(start, "MACACL") == 0) {
  341. user->macacl = 1;
  342. goto skip_eap;
  343. }
  344. wpa_printf(MSG_ERROR, "Unsupported EAP type "
  345. "'%s' on line %d in '%s'",
  346. start, line, fname);
  347. goto failed;
  348. }
  349. num_methods++;
  350. if (num_methods >= EAP_MAX_METHODS)
  351. break;
  352. skip_eap:
  353. if (pos3 == NULL)
  354. break;
  355. start = pos3;
  356. }
  357. if (num_methods == 0 && user->ttls_auth == 0 && !user->macacl) {
  358. wpa_printf(MSG_ERROR, "No EAP types configured on "
  359. "line %d in '%s'", line, fname);
  360. goto failed;
  361. }
  362. if (pos == NULL)
  363. goto done;
  364. while (*pos == ' ' || *pos == '\t')
  365. pos++;
  366. if (*pos == '\0')
  367. goto done;
  368. if (os_strncmp(pos, "[ver=0]", 7) == 0) {
  369. user->force_version = 0;
  370. goto done;
  371. }
  372. if (os_strncmp(pos, "[ver=1]", 7) == 0) {
  373. user->force_version = 1;
  374. goto done;
  375. }
  376. if (os_strncmp(pos, "[2]", 3) == 0) {
  377. user->phase2 = 1;
  378. goto done;
  379. }
  380. if (*pos == '"') {
  381. pos++;
  382. start = pos;
  383. while (*pos != '"' && *pos != '\0')
  384. pos++;
  385. if (*pos == '\0') {
  386. wpa_printf(MSG_ERROR, "Invalid EAP password "
  387. "(no \" in end) on line %d in '%s'",
  388. line, fname);
  389. goto failed;
  390. }
  391. user->password = os_memdup(start, pos - start);
  392. if (user->password == NULL) {
  393. wpa_printf(MSG_ERROR, "Failed to allocate "
  394. "memory for EAP password");
  395. goto failed;
  396. }
  397. user->password_len = pos - start;
  398. pos++;
  399. } else if (os_strncmp(pos, "hash:", 5) == 0) {
  400. pos += 5;
  401. pos2 = pos;
  402. while (*pos2 != '\0' && *pos2 != ' ' &&
  403. *pos2 != '\t' && *pos2 != '#')
  404. pos2++;
  405. if (pos2 - pos != 32) {
  406. wpa_printf(MSG_ERROR, "Invalid password hash "
  407. "on line %d in '%s'", line, fname);
  408. goto failed;
  409. }
  410. user->password = os_malloc(16);
  411. if (user->password == NULL) {
  412. wpa_printf(MSG_ERROR, "Failed to allocate "
  413. "memory for EAP password hash");
  414. goto failed;
  415. }
  416. if (hexstr2bin(pos, user->password, 16) < 0) {
  417. wpa_printf(MSG_ERROR, "Invalid hash password "
  418. "on line %d in '%s'", line, fname);
  419. goto failed;
  420. }
  421. user->password_len = 16;
  422. user->password_hash = 1;
  423. pos = pos2;
  424. } else {
  425. pos2 = pos;
  426. while (*pos2 != '\0' && *pos2 != ' ' &&
  427. *pos2 != '\t' && *pos2 != '#')
  428. pos2++;
  429. if ((pos2 - pos) & 1) {
  430. wpa_printf(MSG_ERROR, "Invalid hex password "
  431. "on line %d in '%s'", line, fname);
  432. goto failed;
  433. }
  434. user->password = os_malloc((pos2 - pos) / 2);
  435. if (user->password == NULL) {
  436. wpa_printf(MSG_ERROR, "Failed to allocate "
  437. "memory for EAP password");
  438. goto failed;
  439. }
  440. if (hexstr2bin(pos, user->password,
  441. (pos2 - pos) / 2) < 0) {
  442. wpa_printf(MSG_ERROR, "Invalid hex password "
  443. "on line %d in '%s'", line, fname);
  444. goto failed;
  445. }
  446. user->password_len = (pos2 - pos) / 2;
  447. pos = pos2;
  448. }
  449. while (*pos == ' ' || *pos == '\t')
  450. pos++;
  451. if (os_strncmp(pos, "[2]", 3) == 0) {
  452. user->phase2 = 1;
  453. }
  454. done:
  455. if (tail == NULL) {
  456. tail = new_user = user;
  457. } else {
  458. tail->next = user;
  459. tail = user;
  460. }
  461. continue;
  462. failed:
  463. if (user)
  464. hostapd_config_free_eap_user(user);
  465. ret = -1;
  466. break;
  467. }
  468. fclose(f);
  469. if (ret == 0) {
  470. hostapd_config_free_eap_users(conf->eap_user);
  471. conf->eap_user = new_user;
  472. } else {
  473. hostapd_config_free_eap_users(new_user);
  474. }
  475. return ret;
  476. }
  477. #endif /* EAP_SERVER */
  478. #ifndef CONFIG_NO_RADIUS
  479. static int
  480. hostapd_config_read_radius_addr(struct hostapd_radius_server **server,
  481. int *num_server, const char *val, int def_port,
  482. struct hostapd_radius_server **curr_serv)
  483. {
  484. struct hostapd_radius_server *nserv;
  485. int ret;
  486. static int server_index = 1;
  487. nserv = os_realloc_array(*server, *num_server + 1, sizeof(*nserv));
  488. if (nserv == NULL)
  489. return -1;
  490. *server = nserv;
  491. nserv = &nserv[*num_server];
  492. (*num_server)++;
  493. (*curr_serv) = nserv;
  494. os_memset(nserv, 0, sizeof(*nserv));
  495. nserv->port = def_port;
  496. ret = hostapd_parse_ip_addr(val, &nserv->addr);
  497. nserv->index = server_index++;
  498. return ret;
  499. }
  500. static struct hostapd_radius_attr *
  501. hostapd_parse_radius_attr(const char *value)
  502. {
  503. const char *pos;
  504. char syntax;
  505. struct hostapd_radius_attr *attr;
  506. size_t len;
  507. attr = os_zalloc(sizeof(*attr));
  508. if (attr == NULL)
  509. return NULL;
  510. attr->type = atoi(value);
  511. pos = os_strchr(value, ':');
  512. if (pos == NULL) {
  513. attr->val = wpabuf_alloc(1);
  514. if (attr->val == NULL) {
  515. os_free(attr);
  516. return NULL;
  517. }
  518. wpabuf_put_u8(attr->val, 0);
  519. return attr;
  520. }
  521. pos++;
  522. if (pos[0] == '\0' || pos[1] != ':') {
  523. os_free(attr);
  524. return NULL;
  525. }
  526. syntax = *pos++;
  527. pos++;
  528. switch (syntax) {
  529. case 's':
  530. attr->val = wpabuf_alloc_copy(pos, os_strlen(pos));
  531. break;
  532. case 'x':
  533. len = os_strlen(pos);
  534. if (len & 1)
  535. break;
  536. len /= 2;
  537. attr->val = wpabuf_alloc(len);
  538. if (attr->val == NULL)
  539. break;
  540. if (hexstr2bin(pos, wpabuf_put(attr->val, len), len) < 0) {
  541. wpabuf_free(attr->val);
  542. os_free(attr);
  543. return NULL;
  544. }
  545. break;
  546. case 'd':
  547. attr->val = wpabuf_alloc(4);
  548. if (attr->val)
  549. wpabuf_put_be32(attr->val, atoi(pos));
  550. break;
  551. default:
  552. os_free(attr);
  553. return NULL;
  554. }
  555. if (attr->val == NULL) {
  556. os_free(attr);
  557. return NULL;
  558. }
  559. return attr;
  560. }
  561. static int hostapd_parse_das_client(struct hostapd_bss_config *bss, char *val)
  562. {
  563. char *secret;
  564. secret = os_strchr(val, ' ');
  565. if (secret == NULL)
  566. return -1;
  567. *secret++ = '\0';
  568. if (hostapd_parse_ip_addr(val, &bss->radius_das_client_addr))
  569. return -1;
  570. os_free(bss->radius_das_shared_secret);
  571. bss->radius_das_shared_secret = (u8 *) os_strdup(secret);
  572. if (bss->radius_das_shared_secret == NULL)
  573. return -1;
  574. bss->radius_das_shared_secret_len = os_strlen(secret);
  575. return 0;
  576. }
  577. #endif /* CONFIG_NO_RADIUS */
  578. static int hostapd_config_parse_key_mgmt(int line, const char *value)
  579. {
  580. int val = 0, last;
  581. char *start, *end, *buf;
  582. buf = os_strdup(value);
  583. if (buf == NULL)
  584. return -1;
  585. start = buf;
  586. while (*start != '\0') {
  587. while (*start == ' ' || *start == '\t')
  588. start++;
  589. if (*start == '\0')
  590. break;
  591. end = start;
  592. while (*end != ' ' && *end != '\t' && *end != '\0')
  593. end++;
  594. last = *end == '\0';
  595. *end = '\0';
  596. if (os_strcmp(start, "WPA-PSK") == 0)
  597. val |= WPA_KEY_MGMT_PSK;
  598. else if (os_strcmp(start, "WPA-EAP") == 0)
  599. val |= WPA_KEY_MGMT_IEEE8021X;
  600. #ifdef CONFIG_IEEE80211R_AP
  601. else if (os_strcmp(start, "FT-PSK") == 0)
  602. val |= WPA_KEY_MGMT_FT_PSK;
  603. else if (os_strcmp(start, "FT-EAP") == 0)
  604. val |= WPA_KEY_MGMT_FT_IEEE8021X;
  605. #endif /* CONFIG_IEEE80211R_AP */
  606. #ifdef CONFIG_IEEE80211W
  607. else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
  608. val |= WPA_KEY_MGMT_PSK_SHA256;
  609. else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
  610. val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
  611. #endif /* CONFIG_IEEE80211W */
  612. #ifdef CONFIG_SAE
  613. else if (os_strcmp(start, "SAE") == 0)
  614. val |= WPA_KEY_MGMT_SAE;
  615. else if (os_strcmp(start, "FT-SAE") == 0)
  616. val |= WPA_KEY_MGMT_FT_SAE;
  617. #endif /* CONFIG_SAE */
  618. #ifdef CONFIG_SUITEB
  619. else if (os_strcmp(start, "WPA-EAP-SUITE-B") == 0)
  620. val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B;
  621. #endif /* CONFIG_SUITEB */
  622. #ifdef CONFIG_SUITEB192
  623. else if (os_strcmp(start, "WPA-EAP-SUITE-B-192") == 0)
  624. val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B_192;
  625. #endif /* CONFIG_SUITEB192 */
  626. #ifdef CONFIG_FILS
  627. else if (os_strcmp(start, "FILS-SHA256") == 0)
  628. val |= WPA_KEY_MGMT_FILS_SHA256;
  629. else if (os_strcmp(start, "FILS-SHA384") == 0)
  630. val |= WPA_KEY_MGMT_FILS_SHA384;
  631. #ifdef CONFIG_IEEE80211R_AP
  632. else if (os_strcmp(start, "FT-FILS-SHA256") == 0)
  633. val |= WPA_KEY_MGMT_FT_FILS_SHA256;
  634. else if (os_strcmp(start, "FT-FILS-SHA384") == 0)
  635. val |= WPA_KEY_MGMT_FT_FILS_SHA384;
  636. #endif /* CONFIG_IEEE80211R_AP */
  637. #endif /* CONFIG_FILS */
  638. #ifdef CONFIG_OWE
  639. else if (os_strcmp(start, "OWE") == 0)
  640. val |= WPA_KEY_MGMT_OWE;
  641. #endif /* CONFIG_OWE */
  642. #ifdef CONFIG_DPP
  643. else if (os_strcmp(start, "DPP") == 0)
  644. val |= WPA_KEY_MGMT_DPP;
  645. #endif /* CONFIG_DPP */
  646. else {
  647. wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
  648. line, start);
  649. os_free(buf);
  650. return -1;
  651. }
  652. if (last)
  653. break;
  654. start = end + 1;
  655. }
  656. os_free(buf);
  657. if (val == 0) {
  658. wpa_printf(MSG_ERROR, "Line %d: no key_mgmt values "
  659. "configured.", line);
  660. return -1;
  661. }
  662. return val;
  663. }
  664. static int hostapd_config_parse_cipher(int line, const char *value)
  665. {
  666. int val = wpa_parse_cipher(value);
  667. if (val < 0) {
  668. wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
  669. line, value);
  670. return -1;
  671. }
  672. if (val == 0) {
  673. wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
  674. line);
  675. return -1;
  676. }
  677. return val;
  678. }
  679. static int hostapd_config_read_wep(struct hostapd_wep_keys *wep, int keyidx,
  680. char *val)
  681. {
  682. size_t len = os_strlen(val);
  683. if (keyidx < 0 || keyidx > 3)
  684. return -1;
  685. if (len == 0) {
  686. int i, set = 0;
  687. bin_clear_free(wep->key[keyidx], wep->len[keyidx]);
  688. wep->key[keyidx] = NULL;
  689. wep->len[keyidx] = 0;
  690. for (i = 0; i < NUM_WEP_KEYS; i++) {
  691. if (wep->key[i])
  692. set++;
  693. }
  694. if (!set)
  695. wep->keys_set = 0;
  696. return 0;
  697. }
  698. if (wep->key[keyidx] != NULL)
  699. return -1;
  700. if (val[0] == '"') {
  701. if (len < 2 || val[len - 1] != '"')
  702. return -1;
  703. len -= 2;
  704. wep->key[keyidx] = os_memdup(val + 1, len);
  705. if (wep->key[keyidx] == NULL)
  706. return -1;
  707. wep->len[keyidx] = len;
  708. } else {
  709. if (len & 1)
  710. return -1;
  711. len /= 2;
  712. wep->key[keyidx] = os_malloc(len);
  713. if (wep->key[keyidx] == NULL)
  714. return -1;
  715. wep->len[keyidx] = len;
  716. if (hexstr2bin(val, wep->key[keyidx], len) < 0)
  717. return -1;
  718. }
  719. wep->keys_set++;
  720. return 0;
  721. }
  722. static int hostapd_parse_chanlist(struct hostapd_config *conf, char *val)
  723. {
  724. char *pos;
  725. /* for backwards compatibility, translate ' ' in conf str to ',' */
  726. pos = val;
  727. while (pos) {
  728. pos = os_strchr(pos, ' ');
  729. if (pos)
  730. *pos++ = ',';
  731. }
  732. if (freq_range_list_parse(&conf->acs_ch_list, val))
  733. return -1;
  734. return 0;
  735. }
  736. static int hostapd_parse_intlist(int **int_list, char *val)
  737. {
  738. int *list;
  739. int count;
  740. char *pos, *end;
  741. os_free(*int_list);
  742. *int_list = NULL;
  743. pos = val;
  744. count = 0;
  745. while (*pos != '\0') {
  746. if (*pos == ' ')
  747. count++;
  748. pos++;
  749. }
  750. list = os_malloc(sizeof(int) * (count + 2));
  751. if (list == NULL)
  752. return -1;
  753. pos = val;
  754. count = 0;
  755. while (*pos != '\0') {
  756. end = os_strchr(pos, ' ');
  757. if (end)
  758. *end = '\0';
  759. list[count++] = atoi(pos);
  760. if (!end)
  761. break;
  762. pos = end + 1;
  763. }
  764. list[count] = -1;
  765. *int_list = list;
  766. return 0;
  767. }
  768. static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname)
  769. {
  770. struct hostapd_bss_config **all, *bss;
  771. if (*ifname == '\0')
  772. return -1;
  773. all = os_realloc_array(conf->bss, conf->num_bss + 1,
  774. sizeof(struct hostapd_bss_config *));
  775. if (all == NULL) {
  776. wpa_printf(MSG_ERROR, "Failed to allocate memory for "
  777. "multi-BSS entry");
  778. return -1;
  779. }
  780. conf->bss = all;
  781. bss = os_zalloc(sizeof(*bss));
  782. if (bss == NULL)
  783. return -1;
  784. bss->radius = os_zalloc(sizeof(*bss->radius));
  785. if (bss->radius == NULL) {
  786. wpa_printf(MSG_ERROR, "Failed to allocate memory for "
  787. "multi-BSS RADIUS data");
  788. os_free(bss);
  789. return -1;
  790. }
  791. conf->bss[conf->num_bss++] = bss;
  792. conf->last_bss = bss;
  793. hostapd_config_defaults_bss(bss);
  794. os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
  795. os_memcpy(bss->ssid.vlan, bss->iface, IFNAMSIZ + 1);
  796. return 0;
  797. }
  798. /* convert floats with one decimal place to value*10 int, i.e.,
  799. * "1.5" will return 15 */
  800. static int hostapd_config_read_int10(const char *value)
  801. {
  802. int i, d;
  803. char *pos;
  804. i = atoi(value);
  805. pos = os_strchr(value, '.');
  806. d = 0;
  807. if (pos) {
  808. pos++;
  809. if (*pos >= '0' && *pos <= '9')
  810. d = *pos - '0';
  811. }
  812. return i * 10 + d;
  813. }
  814. static int valid_cw(int cw)
  815. {
  816. return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 ||
  817. cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023 ||
  818. cw == 2047 || cw == 4095 || cw == 8191 || cw == 16383 ||
  819. cw == 32767);
  820. }
  821. enum {
  822. IEEE80211_TX_QUEUE_DATA0 = 0, /* used for EDCA AC_VO data */
  823. IEEE80211_TX_QUEUE_DATA1 = 1, /* used for EDCA AC_VI data */
  824. IEEE80211_TX_QUEUE_DATA2 = 2, /* used for EDCA AC_BE data */
  825. IEEE80211_TX_QUEUE_DATA3 = 3 /* used for EDCA AC_BK data */
  826. };
  827. static int hostapd_config_tx_queue(struct hostapd_config *conf,
  828. const char *name, const char *val)
  829. {
  830. int num;
  831. const char *pos;
  832. struct hostapd_tx_queue_params *queue;
  833. /* skip 'tx_queue_' prefix */
  834. pos = name + 9;
  835. if (os_strncmp(pos, "data", 4) == 0 &&
  836. pos[4] >= '0' && pos[4] <= '9' && pos[5] == '_') {
  837. num = pos[4] - '0';
  838. pos += 6;
  839. } else if (os_strncmp(pos, "after_beacon_", 13) == 0 ||
  840. os_strncmp(pos, "beacon_", 7) == 0) {
  841. wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
  842. return 0;
  843. } else {
  844. wpa_printf(MSG_ERROR, "Unknown tx_queue name '%s'", pos);
  845. return -1;
  846. }
  847. if (num >= NUM_TX_QUEUES) {
  848. /* for backwards compatibility, do not trigger failure */
  849. wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
  850. return 0;
  851. }
  852. queue = &conf->tx_queue[num];
  853. if (os_strcmp(pos, "aifs") == 0) {
  854. queue->aifs = atoi(val);
  855. if (queue->aifs < 0 || queue->aifs > 255) {
  856. wpa_printf(MSG_ERROR, "Invalid AIFS value %d",
  857. queue->aifs);
  858. return -1;
  859. }
  860. } else if (os_strcmp(pos, "cwmin") == 0) {
  861. queue->cwmin = atoi(val);
  862. if (!valid_cw(queue->cwmin)) {
  863. wpa_printf(MSG_ERROR, "Invalid cwMin value %d",
  864. queue->cwmin);
  865. return -1;
  866. }
  867. } else if (os_strcmp(pos, "cwmax") == 0) {
  868. queue->cwmax = atoi(val);
  869. if (!valid_cw(queue->cwmax)) {
  870. wpa_printf(MSG_ERROR, "Invalid cwMax value %d",
  871. queue->cwmax);
  872. return -1;
  873. }
  874. } else if (os_strcmp(pos, "burst") == 0) {
  875. queue->burst = hostapd_config_read_int10(val);
  876. } else {
  877. wpa_printf(MSG_ERROR, "Unknown tx_queue field '%s'", pos);
  878. return -1;
  879. }
  880. return 0;
  881. }
  882. #ifdef CONFIG_IEEE80211R_AP
  883. static int rkh_derive_key(const char *pos, u8 *key, size_t key_len)
  884. {
  885. u8 oldkey[16];
  886. int ret;
  887. if (!hexstr2bin(pos, key, key_len))
  888. return 0;
  889. /* Try to use old short key for backwards compatibility */
  890. if (hexstr2bin(pos, oldkey, sizeof(oldkey)))
  891. return -1;
  892. ret = hmac_sha256_kdf(oldkey, sizeof(oldkey), "FT OLDKEY", NULL, 0,
  893. key, key_len);
  894. os_memset(oldkey, 0, sizeof(oldkey));
  895. return ret;
  896. }
  897. static int add_r0kh(struct hostapd_bss_config *bss, char *value)
  898. {
  899. struct ft_remote_r0kh *r0kh;
  900. char *pos, *next;
  901. r0kh = os_zalloc(sizeof(*r0kh));
  902. if (r0kh == NULL)
  903. return -1;
  904. /* 02:01:02:03:04:05 a.example.com 000102030405060708090a0b0c0d0e0f */
  905. pos = value;
  906. next = os_strchr(pos, ' ');
  907. if (next)
  908. *next++ = '\0';
  909. if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
  910. wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
  911. os_free(r0kh);
  912. return -1;
  913. }
  914. pos = next;
  915. next = os_strchr(pos, ' ');
  916. if (next)
  917. *next++ = '\0';
  918. if (next == NULL || next - pos > FT_R0KH_ID_MAX_LEN) {
  919. wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
  920. os_free(r0kh);
  921. return -1;
  922. }
  923. r0kh->id_len = next - pos - 1;
  924. os_memcpy(r0kh->id, pos, r0kh->id_len);
  925. pos = next;
  926. if (rkh_derive_key(pos, r0kh->key, sizeof(r0kh->key)) < 0) {
  927. wpa_printf(MSG_ERROR, "Invalid R0KH key: '%s'", pos);
  928. os_free(r0kh);
  929. return -1;
  930. }
  931. r0kh->next = bss->r0kh_list;
  932. bss->r0kh_list = r0kh;
  933. return 0;
  934. }
  935. static int add_r1kh(struct hostapd_bss_config *bss, char *value)
  936. {
  937. struct ft_remote_r1kh *r1kh;
  938. char *pos, *next;
  939. r1kh = os_zalloc(sizeof(*r1kh));
  940. if (r1kh == NULL)
  941. return -1;
  942. /* 02:01:02:03:04:05 02:01:02:03:04:05
  943. * 000102030405060708090a0b0c0d0e0f */
  944. pos = value;
  945. next = os_strchr(pos, ' ');
  946. if (next)
  947. *next++ = '\0';
  948. if (next == NULL || hwaddr_aton(pos, r1kh->addr)) {
  949. wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos);
  950. os_free(r1kh);
  951. return -1;
  952. }
  953. pos = next;
  954. next = os_strchr(pos, ' ');
  955. if (next)
  956. *next++ = '\0';
  957. if (next == NULL || hwaddr_aton(pos, r1kh->id)) {
  958. wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos);
  959. os_free(r1kh);
  960. return -1;
  961. }
  962. pos = next;
  963. if (rkh_derive_key(pos, r1kh->key, sizeof(r1kh->key)) < 0) {
  964. wpa_printf(MSG_ERROR, "Invalid R1KH key: '%s'", pos);
  965. os_free(r1kh);
  966. return -1;
  967. }
  968. r1kh->next = bss->r1kh_list;
  969. bss->r1kh_list = r1kh;
  970. return 0;
  971. }
  972. #endif /* CONFIG_IEEE80211R_AP */
  973. #ifdef CONFIG_IEEE80211N
  974. static int hostapd_config_ht_capab(struct hostapd_config *conf,
  975. const char *capab)
  976. {
  977. if (os_strstr(capab, "[LDPC]"))
  978. conf->ht_capab |= HT_CAP_INFO_LDPC_CODING_CAP;
  979. if (os_strstr(capab, "[HT40-]")) {
  980. conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
  981. conf->secondary_channel = -1;
  982. }
  983. if (os_strstr(capab, "[HT40+]")) {
  984. conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
  985. conf->secondary_channel = 1;
  986. }
  987. if (os_strstr(capab, "[HT40+]") && os_strstr(capab, "[HT40-]")) {
  988. conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
  989. conf->ht40_plus_minus_allowed = 1;
  990. }
  991. if (os_strstr(capab, "[SMPS-STATIC]")) {
  992. conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
  993. conf->ht_capab |= HT_CAP_INFO_SMPS_STATIC;
  994. }
  995. if (os_strstr(capab, "[SMPS-DYNAMIC]")) {
  996. conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
  997. conf->ht_capab |= HT_CAP_INFO_SMPS_DYNAMIC;
  998. }
  999. if (os_strstr(capab, "[GF]"))
  1000. conf->ht_capab |= HT_CAP_INFO_GREEN_FIELD;
  1001. if (os_strstr(capab, "[SHORT-GI-20]"))
  1002. conf->ht_capab |= HT_CAP_INFO_SHORT_GI20MHZ;
  1003. if (os_strstr(capab, "[SHORT-GI-40]"))
  1004. conf->ht_capab |= HT_CAP_INFO_SHORT_GI40MHZ;
  1005. if (os_strstr(capab, "[TX-STBC]"))
  1006. conf->ht_capab |= HT_CAP_INFO_TX_STBC;
  1007. if (os_strstr(capab, "[RX-STBC1]")) {
  1008. conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
  1009. conf->ht_capab |= HT_CAP_INFO_RX_STBC_1;
  1010. }
  1011. if (os_strstr(capab, "[RX-STBC12]")) {
  1012. conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
  1013. conf->ht_capab |= HT_CAP_INFO_RX_STBC_12;
  1014. }
  1015. if (os_strstr(capab, "[RX-STBC123]")) {
  1016. conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
  1017. conf->ht_capab |= HT_CAP_INFO_RX_STBC_123;
  1018. }
  1019. if (os_strstr(capab, "[DELAYED-BA]"))
  1020. conf->ht_capab |= HT_CAP_INFO_DELAYED_BA;
  1021. if (os_strstr(capab, "[MAX-AMSDU-7935]"))
  1022. conf->ht_capab |= HT_CAP_INFO_MAX_AMSDU_SIZE;
  1023. if (os_strstr(capab, "[DSSS_CCK-40]"))
  1024. conf->ht_capab |= HT_CAP_INFO_DSSS_CCK40MHZ;
  1025. if (os_strstr(capab, "[40-INTOLERANT]"))
  1026. conf->ht_capab |= HT_CAP_INFO_40MHZ_INTOLERANT;
  1027. if (os_strstr(capab, "[LSIG-TXOP-PROT]"))
  1028. conf->ht_capab |= HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT;
  1029. return 0;
  1030. }
  1031. #endif /* CONFIG_IEEE80211N */
  1032. #ifdef CONFIG_IEEE80211AC
  1033. static int hostapd_config_vht_capab(struct hostapd_config *conf,
  1034. const char *capab)
  1035. {
  1036. if (os_strstr(capab, "[MAX-MPDU-7991]"))
  1037. conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_7991;
  1038. if (os_strstr(capab, "[MAX-MPDU-11454]"))
  1039. conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_11454;
  1040. if (os_strstr(capab, "[VHT160]"))
  1041. conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
  1042. if (os_strstr(capab, "[VHT160-80PLUS80]"))
  1043. conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
  1044. if (os_strstr(capab, "[RXLDPC]"))
  1045. conf->vht_capab |= VHT_CAP_RXLDPC;
  1046. if (os_strstr(capab, "[SHORT-GI-80]"))
  1047. conf->vht_capab |= VHT_CAP_SHORT_GI_80;
  1048. if (os_strstr(capab, "[SHORT-GI-160]"))
  1049. conf->vht_capab |= VHT_CAP_SHORT_GI_160;
  1050. if (os_strstr(capab, "[TX-STBC-2BY1]"))
  1051. conf->vht_capab |= VHT_CAP_TXSTBC;
  1052. if (os_strstr(capab, "[RX-STBC-1]"))
  1053. conf->vht_capab |= VHT_CAP_RXSTBC_1;
  1054. if (os_strstr(capab, "[RX-STBC-12]"))
  1055. conf->vht_capab |= VHT_CAP_RXSTBC_2;
  1056. if (os_strstr(capab, "[RX-STBC-123]"))
  1057. conf->vht_capab |= VHT_CAP_RXSTBC_3;
  1058. if (os_strstr(capab, "[RX-STBC-1234]"))
  1059. conf->vht_capab |= VHT_CAP_RXSTBC_4;
  1060. if (os_strstr(capab, "[SU-BEAMFORMER]"))
  1061. conf->vht_capab |= VHT_CAP_SU_BEAMFORMER_CAPABLE;
  1062. if (os_strstr(capab, "[SU-BEAMFORMEE]"))
  1063. conf->vht_capab |= VHT_CAP_SU_BEAMFORMEE_CAPABLE;
  1064. if (os_strstr(capab, "[BF-ANTENNA-2]") &&
  1065. (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
  1066. conf->vht_capab |= (1 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
  1067. if (os_strstr(capab, "[BF-ANTENNA-3]") &&
  1068. (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
  1069. conf->vht_capab |= (2 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
  1070. if (os_strstr(capab, "[BF-ANTENNA-4]") &&
  1071. (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
  1072. conf->vht_capab |= (3 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
  1073. if (os_strstr(capab, "[SOUNDING-DIMENSION-2]") &&
  1074. (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
  1075. conf->vht_capab |= (1 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
  1076. if (os_strstr(capab, "[SOUNDING-DIMENSION-3]") &&
  1077. (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
  1078. conf->vht_capab |= (2 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
  1079. if (os_strstr(capab, "[SOUNDING-DIMENSION-4]") &&
  1080. (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
  1081. conf->vht_capab |= (3 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
  1082. if (os_strstr(capab, "[MU-BEAMFORMER]"))
  1083. conf->vht_capab |= VHT_CAP_MU_BEAMFORMER_CAPABLE;
  1084. if (os_strstr(capab, "[VHT-TXOP-PS]"))
  1085. conf->vht_capab |= VHT_CAP_VHT_TXOP_PS;
  1086. if (os_strstr(capab, "[HTC-VHT]"))
  1087. conf->vht_capab |= VHT_CAP_HTC_VHT;
  1088. if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP7]"))
  1089. conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX;
  1090. else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP6]"))
  1091. conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_6;
  1092. else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP5]"))
  1093. conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_5;
  1094. else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP4]"))
  1095. conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_4;
  1096. else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP3]"))
  1097. conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_3;
  1098. else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP2]"))
  1099. conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_2;
  1100. else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP1]"))
  1101. conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_1;
  1102. if (os_strstr(capab, "[VHT-LINK-ADAPT2]") &&
  1103. (conf->vht_capab & VHT_CAP_HTC_VHT))
  1104. conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_UNSOL_MFB;
  1105. if (os_strstr(capab, "[VHT-LINK-ADAPT3]") &&
  1106. (conf->vht_capab & VHT_CAP_HTC_VHT))
  1107. conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB;
  1108. if (os_strstr(capab, "[RX-ANTENNA-PATTERN]"))
  1109. conf->vht_capab |= VHT_CAP_RX_ANTENNA_PATTERN;
  1110. if (os_strstr(capab, "[TX-ANTENNA-PATTERN]"))
  1111. conf->vht_capab |= VHT_CAP_TX_ANTENNA_PATTERN;
  1112. return 0;
  1113. }
  1114. #endif /* CONFIG_IEEE80211AC */
  1115. #ifdef CONFIG_INTERWORKING
  1116. static int parse_roaming_consortium(struct hostapd_bss_config *bss, char *pos,
  1117. int line)
  1118. {
  1119. size_t len = os_strlen(pos);
  1120. u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
  1121. struct hostapd_roaming_consortium *rc;
  1122. if ((len & 1) || len < 2 * 3 || len / 2 > MAX_ROAMING_CONSORTIUM_LEN ||
  1123. hexstr2bin(pos, oi, len / 2)) {
  1124. wpa_printf(MSG_ERROR, "Line %d: invalid roaming_consortium "
  1125. "'%s'", line, pos);
  1126. return -1;
  1127. }
  1128. len /= 2;
  1129. rc = os_realloc_array(bss->roaming_consortium,
  1130. bss->roaming_consortium_count + 1,
  1131. sizeof(struct hostapd_roaming_consortium));
  1132. if (rc == NULL)
  1133. return -1;
  1134. os_memcpy(rc[bss->roaming_consortium_count].oi, oi, len);
  1135. rc[bss->roaming_consortium_count].len = len;
  1136. bss->roaming_consortium = rc;
  1137. bss->roaming_consortium_count++;
  1138. return 0;
  1139. }
  1140. static int parse_lang_string(struct hostapd_lang_string **array,
  1141. unsigned int *count, char *pos)
  1142. {
  1143. char *sep, *str = NULL;
  1144. size_t clen, nlen, slen;
  1145. struct hostapd_lang_string *ls;
  1146. int ret = -1;
  1147. if (*pos == '"' || (*pos == 'P' && pos[1] == '"')) {
  1148. str = wpa_config_parse_string(pos, &slen);
  1149. if (!str)
  1150. return -1;
  1151. pos = str;
  1152. }
  1153. sep = os_strchr(pos, ':');
  1154. if (sep == NULL)
  1155. goto fail;
  1156. *sep++ = '\0';
  1157. clen = os_strlen(pos);
  1158. if (clen < 2 || clen > sizeof(ls->lang))
  1159. goto fail;
  1160. nlen = os_strlen(sep);
  1161. if (nlen > 252)
  1162. goto fail;
  1163. ls = os_realloc_array(*array, *count + 1,
  1164. sizeof(struct hostapd_lang_string));
  1165. if (ls == NULL)
  1166. goto fail;
  1167. *array = ls;
  1168. ls = &(*array)[*count];
  1169. (*count)++;
  1170. os_memset(ls->lang, 0, sizeof(ls->lang));
  1171. os_memcpy(ls->lang, pos, clen);
  1172. ls->name_len = nlen;
  1173. os_memcpy(ls->name, sep, nlen);
  1174. ret = 0;
  1175. fail:
  1176. os_free(str);
  1177. return ret;
  1178. }
  1179. static int parse_venue_name(struct hostapd_bss_config *bss, char *pos,
  1180. int line)
  1181. {
  1182. if (parse_lang_string(&bss->venue_name, &bss->venue_name_count, pos)) {
  1183. wpa_printf(MSG_ERROR, "Line %d: Invalid venue_name '%s'",
  1184. line, pos);
  1185. return -1;
  1186. }
  1187. return 0;
  1188. }
  1189. static int parse_3gpp_cell_net(struct hostapd_bss_config *bss, char *buf,
  1190. int line)
  1191. {
  1192. size_t count;
  1193. char *pos;
  1194. u8 *info = NULL, *ipos;
  1195. /* format: <MCC1,MNC1>[;<MCC2,MNC2>][;...] */
  1196. count = 1;
  1197. for (pos = buf; *pos; pos++) {
  1198. if ((*pos < '0' || *pos > '9') && *pos != ';' && *pos != ',')
  1199. goto fail;
  1200. if (*pos == ';')
  1201. count++;
  1202. }
  1203. if (1 + count * 3 > 0x7f)
  1204. goto fail;
  1205. info = os_zalloc(2 + 3 + count * 3);
  1206. if (info == NULL)
  1207. return -1;
  1208. ipos = info;
  1209. *ipos++ = 0; /* GUD - Version 1 */
  1210. *ipos++ = 3 + count * 3; /* User Data Header Length (UDHL) */
  1211. *ipos++ = 0; /* PLMN List IEI */
  1212. /* ext(b8) | Length of PLMN List value contents(b7..1) */
  1213. *ipos++ = 1 + count * 3;
  1214. *ipos++ = count; /* Number of PLMNs */
  1215. pos = buf;
  1216. while (pos && *pos) {
  1217. char *mcc, *mnc;
  1218. size_t mnc_len;
  1219. mcc = pos;
  1220. mnc = os_strchr(pos, ',');
  1221. if (mnc == NULL)
  1222. goto fail;
  1223. *mnc++ = '\0';
  1224. pos = os_strchr(mnc, ';');
  1225. if (pos)
  1226. *pos++ = '\0';
  1227. mnc_len = os_strlen(mnc);
  1228. if (os_strlen(mcc) != 3 || (mnc_len != 2 && mnc_len != 3))
  1229. goto fail;
  1230. /* BC coded MCC,MNC */
  1231. /* MCC digit 2 | MCC digit 1 */
  1232. *ipos++ = ((mcc[1] - '0') << 4) | (mcc[0] - '0');
  1233. /* MNC digit 3 | MCC digit 3 */
  1234. *ipos++ = (((mnc_len == 2) ? 0xf0 : ((mnc[2] - '0') << 4))) |
  1235. (mcc[2] - '0');
  1236. /* MNC digit 2 | MNC digit 1 */
  1237. *ipos++ = ((mnc[1] - '0') << 4) | (mnc[0] - '0');
  1238. }
  1239. os_free(bss->anqp_3gpp_cell_net);
  1240. bss->anqp_3gpp_cell_net = info;
  1241. bss->anqp_3gpp_cell_net_len = 2 + 3 + 3 * count;
  1242. wpa_hexdump(MSG_MSGDUMP, "3GPP Cellular Network information",
  1243. bss->anqp_3gpp_cell_net, bss->anqp_3gpp_cell_net_len);
  1244. return 0;
  1245. fail:
  1246. wpa_printf(MSG_ERROR, "Line %d: Invalid anqp_3gpp_cell_net: %s",
  1247. line, buf);
  1248. os_free(info);
  1249. return -1;
  1250. }
  1251. static int parse_nai_realm(struct hostapd_bss_config *bss, char *buf, int line)
  1252. {
  1253. struct hostapd_nai_realm_data *realm;
  1254. size_t i, j, len;
  1255. int *offsets;
  1256. char *pos, *end, *rpos;
  1257. offsets = os_calloc(bss->nai_realm_count * MAX_NAI_REALMS,
  1258. sizeof(int));
  1259. if (offsets == NULL)
  1260. return -1;
  1261. for (i = 0; i < bss->nai_realm_count; i++) {
  1262. realm = &bss->nai_realm_data[i];
  1263. for (j = 0; j < MAX_NAI_REALMS; j++) {
  1264. offsets[i * MAX_NAI_REALMS + j] =
  1265. realm->realm[j] ?
  1266. realm->realm[j] - realm->realm_buf : -1;
  1267. }
  1268. }
  1269. realm = os_realloc_array(bss->nai_realm_data, bss->nai_realm_count + 1,
  1270. sizeof(struct hostapd_nai_realm_data));
  1271. if (realm == NULL) {
  1272. os_free(offsets);
  1273. return -1;
  1274. }
  1275. bss->nai_realm_data = realm;
  1276. /* patch the pointers after realloc */
  1277. for (i = 0; i < bss->nai_realm_count; i++) {
  1278. realm = &bss->nai_realm_data[i];
  1279. for (j = 0; j < MAX_NAI_REALMS; j++) {
  1280. int offs = offsets[i * MAX_NAI_REALMS + j];
  1281. if (offs >= 0)
  1282. realm->realm[j] = realm->realm_buf + offs;
  1283. else
  1284. realm->realm[j] = NULL;
  1285. }
  1286. }
  1287. os_free(offsets);
  1288. realm = &bss->nai_realm_data[bss->nai_realm_count];
  1289. os_memset(realm, 0, sizeof(*realm));
  1290. pos = buf;
  1291. realm->encoding = atoi(pos);
  1292. pos = os_strchr(pos, ',');
  1293. if (pos == NULL)
  1294. goto fail;
  1295. pos++;
  1296. end = os_strchr(pos, ',');
  1297. if (end) {
  1298. len = end - pos;
  1299. *end = '\0';
  1300. } else {
  1301. len = os_strlen(pos);
  1302. }
  1303. if (len > MAX_NAI_REALMLEN) {
  1304. wpa_printf(MSG_ERROR, "Too long a realm string (%d > max %d "
  1305. "characters)", (int) len, MAX_NAI_REALMLEN);
  1306. goto fail;
  1307. }
  1308. os_memcpy(realm->realm_buf, pos, len);
  1309. if (end)
  1310. pos = end + 1;
  1311. else
  1312. pos = NULL;
  1313. while (pos && *pos) {
  1314. struct hostapd_nai_realm_eap *eap;
  1315. if (realm->eap_method_count >= MAX_NAI_EAP_METHODS) {
  1316. wpa_printf(MSG_ERROR, "Too many EAP methods");
  1317. goto fail;
  1318. }
  1319. eap = &realm->eap_method[realm->eap_method_count];
  1320. realm->eap_method_count++;
  1321. end = os_strchr(pos, ',');
  1322. if (end == NULL)
  1323. end = pos + os_strlen(pos);
  1324. eap->eap_method = atoi(pos);
  1325. for (;;) {
  1326. pos = os_strchr(pos, '[');
  1327. if (pos == NULL || pos > end)
  1328. break;
  1329. pos++;
  1330. if (eap->num_auths >= MAX_NAI_AUTH_TYPES) {
  1331. wpa_printf(MSG_ERROR, "Too many auth params");
  1332. goto fail;
  1333. }
  1334. eap->auth_id[eap->num_auths] = atoi(pos);
  1335. pos = os_strchr(pos, ':');
  1336. if (pos == NULL || pos > end)
  1337. goto fail;
  1338. pos++;
  1339. eap->auth_val[eap->num_auths] = atoi(pos);
  1340. pos = os_strchr(pos, ']');
  1341. if (pos == NULL || pos > end)
  1342. goto fail;
  1343. pos++;
  1344. eap->num_auths++;
  1345. }
  1346. if (*end != ',')
  1347. break;
  1348. pos = end + 1;
  1349. }
  1350. /* Split realm list into null terminated realms */
  1351. rpos = realm->realm_buf;
  1352. i = 0;
  1353. while (*rpos) {
  1354. if (i >= MAX_NAI_REALMS) {
  1355. wpa_printf(MSG_ERROR, "Too many realms");
  1356. goto fail;
  1357. }
  1358. realm->realm[i++] = rpos;
  1359. rpos = os_strchr(rpos, ';');
  1360. if (rpos == NULL)
  1361. break;
  1362. *rpos++ = '\0';
  1363. }
  1364. bss->nai_realm_count++;
  1365. return 0;
  1366. fail:
  1367. wpa_printf(MSG_ERROR, "Line %d: invalid nai_realm '%s'", line, buf);
  1368. return -1;
  1369. }
  1370. static int parse_anqp_elem(struct hostapd_bss_config *bss, char *buf, int line)
  1371. {
  1372. char *delim;
  1373. u16 infoid;
  1374. size_t len;
  1375. struct wpabuf *payload;
  1376. struct anqp_element *elem;
  1377. delim = os_strchr(buf, ':');
  1378. if (!delim)
  1379. return -1;
  1380. delim++;
  1381. infoid = atoi(buf);
  1382. len = os_strlen(delim);
  1383. if (len & 1)
  1384. return -1;
  1385. len /= 2;
  1386. payload = wpabuf_alloc(len);
  1387. if (!payload)
  1388. return -1;
  1389. if (hexstr2bin(delim, wpabuf_put(payload, len), len) < 0) {
  1390. wpabuf_free(payload);
  1391. return -1;
  1392. }
  1393. dl_list_for_each(elem, &bss->anqp_elem, struct anqp_element, list) {
  1394. if (elem->infoid == infoid) {
  1395. /* Update existing entry */
  1396. wpabuf_free(elem->payload);
  1397. elem->payload = payload;
  1398. return 0;
  1399. }
  1400. }
  1401. /* Add a new entry */
  1402. elem = os_zalloc(sizeof(*elem));
  1403. if (!elem) {
  1404. wpabuf_free(payload);
  1405. return -1;
  1406. }
  1407. elem->infoid = infoid;
  1408. elem->payload = payload;
  1409. dl_list_add(&bss->anqp_elem, &elem->list);
  1410. return 0;
  1411. }
  1412. static int parse_qos_map_set(struct hostapd_bss_config *bss,
  1413. char *buf, int line)
  1414. {
  1415. u8 qos_map_set[16 + 2 * 21], count = 0;
  1416. char *pos = buf;
  1417. int val;
  1418. for (;;) {
  1419. if (count == sizeof(qos_map_set)) {
  1420. wpa_printf(MSG_ERROR, "Line %d: Too many qos_map_set "
  1421. "parameters '%s'", line, buf);
  1422. return -1;
  1423. }
  1424. val = atoi(pos);
  1425. if (val > 255 || val < 0) {
  1426. wpa_printf(MSG_ERROR, "Line %d: Invalid qos_map_set "
  1427. "'%s'", line, buf);
  1428. return -1;
  1429. }
  1430. qos_map_set[count++] = val;
  1431. pos = os_strchr(pos, ',');
  1432. if (!pos)
  1433. break;
  1434. pos++;
  1435. }
  1436. if (count < 16 || count & 1) {
  1437. wpa_printf(MSG_ERROR, "Line %d: Invalid qos_map_set '%s'",
  1438. line, buf);
  1439. return -1;
  1440. }
  1441. os_memcpy(bss->qos_map_set, qos_map_set, count);
  1442. bss->qos_map_set_len = count;
  1443. return 0;
  1444. }
  1445. #endif /* CONFIG_INTERWORKING */
  1446. #ifdef CONFIG_HS20
  1447. static int hs20_parse_conn_capab(struct hostapd_bss_config *bss, char *buf,
  1448. int line)
  1449. {
  1450. u8 *conn_cap;
  1451. char *pos;
  1452. if (bss->hs20_connection_capability_len >= 0xfff0)
  1453. return -1;
  1454. conn_cap = os_realloc(bss->hs20_connection_capability,
  1455. bss->hs20_connection_capability_len + 4);
  1456. if (conn_cap == NULL)
  1457. return -1;
  1458. bss->hs20_connection_capability = conn_cap;
  1459. conn_cap += bss->hs20_connection_capability_len;
  1460. pos = buf;
  1461. conn_cap[0] = atoi(pos);
  1462. pos = os_strchr(pos, ':');
  1463. if (pos == NULL)
  1464. return -1;
  1465. pos++;
  1466. WPA_PUT_LE16(conn_cap + 1, atoi(pos));
  1467. pos = os_strchr(pos, ':');
  1468. if (pos == NULL)
  1469. return -1;
  1470. pos++;
  1471. conn_cap[3] = atoi(pos);
  1472. bss->hs20_connection_capability_len += 4;
  1473. return 0;
  1474. }
  1475. static int hs20_parse_wan_metrics(struct hostapd_bss_config *bss, char *buf,
  1476. int line)
  1477. {
  1478. u8 *wan_metrics;
  1479. char *pos;
  1480. /* <WAN Info>:<DL Speed>:<UL Speed>:<DL Load>:<UL Load>:<LMD> */
  1481. wan_metrics = os_zalloc(13);
  1482. if (wan_metrics == NULL)
  1483. return -1;
  1484. pos = buf;
  1485. /* WAN Info */
  1486. if (hexstr2bin(pos, wan_metrics, 1) < 0)
  1487. goto fail;
  1488. pos += 2;
  1489. if (*pos != ':')
  1490. goto fail;
  1491. pos++;
  1492. /* Downlink Speed */
  1493. WPA_PUT_LE32(wan_metrics + 1, atoi(pos));
  1494. pos = os_strchr(pos, ':');
  1495. if (pos == NULL)
  1496. goto fail;
  1497. pos++;
  1498. /* Uplink Speed */
  1499. WPA_PUT_LE32(wan_metrics + 5, atoi(pos));
  1500. pos = os_strchr(pos, ':');
  1501. if (pos == NULL)
  1502. goto fail;
  1503. pos++;
  1504. /* Downlink Load */
  1505. wan_metrics[9] = atoi(pos);
  1506. pos = os_strchr(pos, ':');
  1507. if (pos == NULL)
  1508. goto fail;
  1509. pos++;
  1510. /* Uplink Load */
  1511. wan_metrics[10] = atoi(pos);
  1512. pos = os_strchr(pos, ':');
  1513. if (pos == NULL)
  1514. goto fail;
  1515. pos++;
  1516. /* LMD */
  1517. WPA_PUT_LE16(wan_metrics + 11, atoi(pos));
  1518. os_free(bss->hs20_wan_metrics);
  1519. bss->hs20_wan_metrics = wan_metrics;
  1520. return 0;
  1521. fail:
  1522. wpa_printf(MSG_ERROR, "Line %d: Invalid hs20_wan_metrics '%s'",
  1523. line, buf);
  1524. os_free(wan_metrics);
  1525. return -1;
  1526. }
  1527. static int hs20_parse_oper_friendly_name(struct hostapd_bss_config *bss,
  1528. char *pos, int line)
  1529. {
  1530. if (parse_lang_string(&bss->hs20_oper_friendly_name,
  1531. &bss->hs20_oper_friendly_name_count, pos)) {
  1532. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  1533. "hs20_oper_friendly_name '%s'", line, pos);
  1534. return -1;
  1535. }
  1536. return 0;
  1537. }
  1538. static int hs20_parse_icon(struct hostapd_bss_config *bss, char *pos)
  1539. {
  1540. struct hs20_icon *icon;
  1541. char *end;
  1542. icon = os_realloc_array(bss->hs20_icons, bss->hs20_icons_count + 1,
  1543. sizeof(struct hs20_icon));
  1544. if (icon == NULL)
  1545. return -1;
  1546. bss->hs20_icons = icon;
  1547. icon = &bss->hs20_icons[bss->hs20_icons_count];
  1548. os_memset(icon, 0, sizeof(*icon));
  1549. icon->width = atoi(pos);
  1550. pos = os_strchr(pos, ':');
  1551. if (pos == NULL)
  1552. return -1;
  1553. pos++;
  1554. icon->height = atoi(pos);
  1555. pos = os_strchr(pos, ':');
  1556. if (pos == NULL)
  1557. return -1;
  1558. pos++;
  1559. end = os_strchr(pos, ':');
  1560. if (end == NULL || end - pos > 3)
  1561. return -1;
  1562. os_memcpy(icon->language, pos, end - pos);
  1563. pos = end + 1;
  1564. end = os_strchr(pos, ':');
  1565. if (end == NULL || end - pos > 255)
  1566. return -1;
  1567. os_memcpy(icon->type, pos, end - pos);
  1568. pos = end + 1;
  1569. end = os_strchr(pos, ':');
  1570. if (end == NULL || end - pos > 255)
  1571. return -1;
  1572. os_memcpy(icon->name, pos, end - pos);
  1573. pos = end + 1;
  1574. if (os_strlen(pos) > 255)
  1575. return -1;
  1576. os_memcpy(icon->file, pos, os_strlen(pos));
  1577. bss->hs20_icons_count++;
  1578. return 0;
  1579. }
  1580. static int hs20_parse_osu_ssid(struct hostapd_bss_config *bss,
  1581. char *pos, int line)
  1582. {
  1583. size_t slen;
  1584. char *str;
  1585. str = wpa_config_parse_string(pos, &slen);
  1586. if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) {
  1587. wpa_printf(MSG_ERROR, "Line %d: Invalid SSID '%s'", line, pos);
  1588. os_free(str);
  1589. return -1;
  1590. }
  1591. os_memcpy(bss->osu_ssid, str, slen);
  1592. bss->osu_ssid_len = slen;
  1593. os_free(str);
  1594. return 0;
  1595. }
  1596. static int hs20_parse_osu_server_uri(struct hostapd_bss_config *bss,
  1597. char *pos, int line)
  1598. {
  1599. struct hs20_osu_provider *p;
  1600. p = os_realloc_array(bss->hs20_osu_providers,
  1601. bss->hs20_osu_providers_count + 1, sizeof(*p));
  1602. if (p == NULL)
  1603. return -1;
  1604. bss->hs20_osu_providers = p;
  1605. bss->last_osu = &bss->hs20_osu_providers[bss->hs20_osu_providers_count];
  1606. bss->hs20_osu_providers_count++;
  1607. os_memset(bss->last_osu, 0, sizeof(*p));
  1608. bss->last_osu->server_uri = os_strdup(pos);
  1609. return 0;
  1610. }
  1611. static int hs20_parse_osu_friendly_name(struct hostapd_bss_config *bss,
  1612. char *pos, int line)
  1613. {
  1614. if (bss->last_osu == NULL) {
  1615. wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
  1616. return -1;
  1617. }
  1618. if (parse_lang_string(&bss->last_osu->friendly_name,
  1619. &bss->last_osu->friendly_name_count, pos)) {
  1620. wpa_printf(MSG_ERROR, "Line %d: Invalid osu_friendly_name '%s'",
  1621. line, pos);
  1622. return -1;
  1623. }
  1624. return 0;
  1625. }
  1626. static int hs20_parse_osu_nai(struct hostapd_bss_config *bss,
  1627. char *pos, int line)
  1628. {
  1629. if (bss->last_osu == NULL) {
  1630. wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
  1631. return -1;
  1632. }
  1633. os_free(bss->last_osu->osu_nai);
  1634. bss->last_osu->osu_nai = os_strdup(pos);
  1635. if (bss->last_osu->osu_nai == NULL)
  1636. return -1;
  1637. return 0;
  1638. }
  1639. static int hs20_parse_osu_method_list(struct hostapd_bss_config *bss, char *pos,
  1640. int line)
  1641. {
  1642. if (bss->last_osu == NULL) {
  1643. wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
  1644. return -1;
  1645. }
  1646. if (hostapd_parse_intlist(&bss->last_osu->method_list, pos)) {
  1647. wpa_printf(MSG_ERROR, "Line %d: Invalid osu_method_list", line);
  1648. return -1;
  1649. }
  1650. return 0;
  1651. }
  1652. static int hs20_parse_osu_icon(struct hostapd_bss_config *bss, char *pos,
  1653. int line)
  1654. {
  1655. char **n;
  1656. struct hs20_osu_provider *p = bss->last_osu;
  1657. if (p == NULL) {
  1658. wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
  1659. return -1;
  1660. }
  1661. n = os_realloc_array(p->icons, p->icons_count + 1, sizeof(char *));
  1662. if (n == NULL)
  1663. return -1;
  1664. p->icons = n;
  1665. p->icons[p->icons_count] = os_strdup(pos);
  1666. if (p->icons[p->icons_count] == NULL)
  1667. return -1;
  1668. p->icons_count++;
  1669. return 0;
  1670. }
  1671. static int hs20_parse_osu_service_desc(struct hostapd_bss_config *bss,
  1672. char *pos, int line)
  1673. {
  1674. if (bss->last_osu == NULL) {
  1675. wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
  1676. return -1;
  1677. }
  1678. if (parse_lang_string(&bss->last_osu->service_desc,
  1679. &bss->last_osu->service_desc_count, pos)) {
  1680. wpa_printf(MSG_ERROR, "Line %d: Invalid osu_service_desc '%s'",
  1681. line, pos);
  1682. return -1;
  1683. }
  1684. return 0;
  1685. }
  1686. #endif /* CONFIG_HS20 */
  1687. #ifdef CONFIG_ACS
  1688. static int hostapd_config_parse_acs_chan_bias(struct hostapd_config *conf,
  1689. char *pos)
  1690. {
  1691. struct acs_bias *bias = NULL, *tmp;
  1692. unsigned int num = 0;
  1693. char *end;
  1694. while (*pos) {
  1695. tmp = os_realloc_array(bias, num + 1, sizeof(*bias));
  1696. if (!tmp)
  1697. goto fail;
  1698. bias = tmp;
  1699. bias[num].channel = atoi(pos);
  1700. if (bias[num].channel <= 0)
  1701. goto fail;
  1702. pos = os_strchr(pos, ':');
  1703. if (!pos)
  1704. goto fail;
  1705. pos++;
  1706. bias[num].bias = strtod(pos, &end);
  1707. if (end == pos || bias[num].bias < 0.0)
  1708. goto fail;
  1709. pos = end;
  1710. if (*pos != ' ' && *pos != '\0')
  1711. goto fail;
  1712. num++;
  1713. }
  1714. os_free(conf->acs_chan_bias);
  1715. conf->acs_chan_bias = bias;
  1716. conf->num_acs_chan_bias = num;
  1717. return 0;
  1718. fail:
  1719. os_free(bias);
  1720. return -1;
  1721. }
  1722. #endif /* CONFIG_ACS */
  1723. static int parse_wpabuf_hex(int line, const char *name, struct wpabuf **buf,
  1724. const char *val)
  1725. {
  1726. struct wpabuf *elems;
  1727. if (val[0] == '\0') {
  1728. wpabuf_free(*buf);
  1729. *buf = NULL;
  1730. return 0;
  1731. }
  1732. elems = wpabuf_parse_bin(val);
  1733. if (!elems) {
  1734. wpa_printf(MSG_ERROR, "Line %d: Invalid %s '%s'",
  1735. line, name, val);
  1736. return -1;
  1737. }
  1738. wpabuf_free(*buf);
  1739. *buf = elems;
  1740. return 0;
  1741. }
  1742. #ifdef CONFIG_FILS
  1743. static int parse_fils_realm(struct hostapd_bss_config *bss, const char *val)
  1744. {
  1745. struct fils_realm *realm;
  1746. size_t len;
  1747. len = os_strlen(val);
  1748. realm = os_zalloc(sizeof(*realm) + len + 1);
  1749. if (!realm)
  1750. return -1;
  1751. os_memcpy(realm->realm, val, len);
  1752. if (fils_domain_name_hash(val, realm->hash) < 0) {
  1753. os_free(realm);
  1754. return -1;
  1755. }
  1756. dl_list_add_tail(&bss->fils_realms, &realm->list);
  1757. return 0;
  1758. }
  1759. #endif /* CONFIG_FILS */
  1760. #ifdef EAP_SERVER
  1761. static unsigned int parse_tls_flags(const char *val)
  1762. {
  1763. unsigned int flags = 0;
  1764. if (os_strstr(val, "[ALLOW-SIGN-RSA-MD5]"))
  1765. flags |= TLS_CONN_ALLOW_SIGN_RSA_MD5;
  1766. if (os_strstr(val, "[DISABLE-TIME-CHECKS]"))
  1767. flags |= TLS_CONN_DISABLE_TIME_CHECKS;
  1768. if (os_strstr(val, "[DISABLE-TLSv1.0]"))
  1769. flags |= TLS_CONN_DISABLE_TLSv1_0;
  1770. if (os_strstr(val, "[DISABLE-TLSv1.1]"))
  1771. flags |= TLS_CONN_DISABLE_TLSv1_1;
  1772. if (os_strstr(val, "[DISABLE-TLSv1.2]"))
  1773. flags |= TLS_CONN_DISABLE_TLSv1_2;
  1774. if (os_strstr(val, "[SUITEB]"))
  1775. flags |= TLS_CONN_SUITEB;
  1776. if (os_strstr(val, "[SUITEB-NO-ECDH]"))
  1777. flags |= TLS_CONN_SUITEB_NO_ECDH | TLS_CONN_SUITEB;
  1778. return flags;
  1779. }
  1780. #endif /* EAP_SERVER */
  1781. static int hostapd_config_fill(struct hostapd_config *conf,
  1782. struct hostapd_bss_config *bss,
  1783. const char *buf, char *pos, int line)
  1784. {
  1785. if (os_strcmp(buf, "interface") == 0) {
  1786. os_strlcpy(conf->bss[0]->iface, pos,
  1787. sizeof(conf->bss[0]->iface));
  1788. } else if (os_strcmp(buf, "bridge") == 0) {
  1789. os_strlcpy(bss->bridge, pos, sizeof(bss->bridge));
  1790. } else if (os_strcmp(buf, "vlan_bridge") == 0) {
  1791. os_strlcpy(bss->vlan_bridge, pos, sizeof(bss->vlan_bridge));
  1792. } else if (os_strcmp(buf, "wds_bridge") == 0) {
  1793. os_strlcpy(bss->wds_bridge, pos, sizeof(bss->wds_bridge));
  1794. } else if (os_strcmp(buf, "driver") == 0) {
  1795. int j;
  1796. const struct wpa_driver_ops *driver = NULL;
  1797. for (j = 0; wpa_drivers[j]; j++) {
  1798. if (os_strcmp(pos, wpa_drivers[j]->name) == 0) {
  1799. driver = wpa_drivers[j];
  1800. break;
  1801. }
  1802. }
  1803. if (!driver) {
  1804. wpa_printf(MSG_ERROR,
  1805. "Line %d: invalid/unknown driver '%s'",
  1806. line, pos);
  1807. return 1;
  1808. }
  1809. conf->driver = driver;
  1810. } else if (os_strcmp(buf, "driver_params") == 0) {
  1811. os_free(conf->driver_params);
  1812. conf->driver_params = os_strdup(pos);
  1813. } else if (os_strcmp(buf, "debug") == 0) {
  1814. wpa_printf(MSG_DEBUG, "Line %d: DEPRECATED: 'debug' configuration variable is not used anymore",
  1815. line);
  1816. } else if (os_strcmp(buf, "logger_syslog_level") == 0) {
  1817. bss->logger_syslog_level = atoi(pos);
  1818. } else if (os_strcmp(buf, "logger_stdout_level") == 0) {
  1819. bss->logger_stdout_level = atoi(pos);
  1820. } else if (os_strcmp(buf, "logger_syslog") == 0) {
  1821. bss->logger_syslog = atoi(pos);
  1822. } else if (os_strcmp(buf, "logger_stdout") == 0) {
  1823. bss->logger_stdout = atoi(pos);
  1824. } else if (os_strcmp(buf, "dump_file") == 0) {
  1825. wpa_printf(MSG_INFO, "Line %d: DEPRECATED: 'dump_file' configuration variable is not used anymore",
  1826. line);
  1827. } else if (os_strcmp(buf, "ssid") == 0) {
  1828. bss->ssid.ssid_len = os_strlen(pos);
  1829. if (bss->ssid.ssid_len > SSID_MAX_LEN ||
  1830. bss->ssid.ssid_len < 1) {
  1831. wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
  1832. line, pos);
  1833. return 1;
  1834. }
  1835. os_memcpy(bss->ssid.ssid, pos, bss->ssid.ssid_len);
  1836. bss->ssid.ssid_set = 1;
  1837. } else if (os_strcmp(buf, "ssid2") == 0) {
  1838. size_t slen;
  1839. char *str = wpa_config_parse_string(pos, &slen);
  1840. if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) {
  1841. wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
  1842. line, pos);
  1843. os_free(str);
  1844. return 1;
  1845. }
  1846. os_memcpy(bss->ssid.ssid, str, slen);
  1847. bss->ssid.ssid_len = slen;
  1848. bss->ssid.ssid_set = 1;
  1849. os_free(str);
  1850. } else if (os_strcmp(buf, "utf8_ssid") == 0) {
  1851. bss->ssid.utf8_ssid = atoi(pos) > 0;
  1852. } else if (os_strcmp(buf, "macaddr_acl") == 0) {
  1853. enum macaddr_acl acl = atoi(pos);
  1854. if (acl != ACCEPT_UNLESS_DENIED &&
  1855. acl != DENY_UNLESS_ACCEPTED &&
  1856. acl != USE_EXTERNAL_RADIUS_AUTH) {
  1857. wpa_printf(MSG_ERROR, "Line %d: unknown macaddr_acl %d",
  1858. line, acl);
  1859. return 1;
  1860. }
  1861. bss->macaddr_acl = acl;
  1862. } else if (os_strcmp(buf, "accept_mac_file") == 0) {
  1863. if (hostapd_config_read_maclist(pos, &bss->accept_mac,
  1864. &bss->num_accept_mac)) {
  1865. wpa_printf(MSG_ERROR, "Line %d: Failed to read accept_mac_file '%s'",
  1866. line, pos);
  1867. return 1;
  1868. }
  1869. } else if (os_strcmp(buf, "deny_mac_file") == 0) {
  1870. if (hostapd_config_read_maclist(pos, &bss->deny_mac,
  1871. &bss->num_deny_mac)) {
  1872. wpa_printf(MSG_ERROR, "Line %d: Failed to read deny_mac_file '%s'",
  1873. line, pos);
  1874. return 1;
  1875. }
  1876. } else if (os_strcmp(buf, "wds_sta") == 0) {
  1877. bss->wds_sta = atoi(pos);
  1878. } else if (os_strcmp(buf, "start_disabled") == 0) {
  1879. bss->start_disabled = atoi(pos);
  1880. } else if (os_strcmp(buf, "ap_isolate") == 0) {
  1881. bss->isolate = atoi(pos);
  1882. } else if (os_strcmp(buf, "ap_max_inactivity") == 0) {
  1883. bss->ap_max_inactivity = atoi(pos);
  1884. } else if (os_strcmp(buf, "skip_inactivity_poll") == 0) {
  1885. bss->skip_inactivity_poll = atoi(pos);
  1886. } else if (os_strcmp(buf, "country_code") == 0) {
  1887. os_memcpy(conf->country, pos, 2);
  1888. } else if (os_strcmp(buf, "country3") == 0) {
  1889. conf->country[2] = strtol(pos, NULL, 16);
  1890. } else if (os_strcmp(buf, "ieee80211d") == 0) {
  1891. conf->ieee80211d = atoi(pos);
  1892. } else if (os_strcmp(buf, "ieee80211h") == 0) {
  1893. conf->ieee80211h = atoi(pos);
  1894. } else if (os_strcmp(buf, "ieee8021x") == 0) {
  1895. bss->ieee802_1x = atoi(pos);
  1896. } else if (os_strcmp(buf, "eapol_version") == 0) {
  1897. int eapol_version = atoi(pos);
  1898. if (eapol_version < 1 || eapol_version > 2) {
  1899. wpa_printf(MSG_ERROR,
  1900. "Line %d: invalid EAPOL version (%d): '%s'.",
  1901. line, eapol_version, pos);
  1902. return 1;
  1903. }
  1904. bss->eapol_version = eapol_version;
  1905. wpa_printf(MSG_DEBUG, "eapol_version=%d", bss->eapol_version);
  1906. #ifdef EAP_SERVER
  1907. } else if (os_strcmp(buf, "eap_authenticator") == 0) {
  1908. bss->eap_server = atoi(pos);
  1909. wpa_printf(MSG_ERROR, "Line %d: obsolete eap_authenticator used; this has been renamed to eap_server", line);
  1910. } else if (os_strcmp(buf, "eap_server") == 0) {
  1911. bss->eap_server = atoi(pos);
  1912. } else if (os_strcmp(buf, "eap_user_file") == 0) {
  1913. if (hostapd_config_read_eap_user(pos, bss))
  1914. return 1;
  1915. } else if (os_strcmp(buf, "ca_cert") == 0) {
  1916. os_free(bss->ca_cert);
  1917. bss->ca_cert = os_strdup(pos);
  1918. } else if (os_strcmp(buf, "server_cert") == 0) {
  1919. os_free(bss->server_cert);
  1920. bss->server_cert = os_strdup(pos);
  1921. } else if (os_strcmp(buf, "private_key") == 0) {
  1922. os_free(bss->private_key);
  1923. bss->private_key = os_strdup(pos);
  1924. } else if (os_strcmp(buf, "private_key_passwd") == 0) {
  1925. os_free(bss->private_key_passwd);
  1926. bss->private_key_passwd = os_strdup(pos);
  1927. } else if (os_strcmp(buf, "check_crl") == 0) {
  1928. bss->check_crl = atoi(pos);
  1929. } else if (os_strcmp(buf, "tls_session_lifetime") == 0) {
  1930. bss->tls_session_lifetime = atoi(pos);
  1931. } else if (os_strcmp(buf, "tls_flags") == 0) {
  1932. bss->tls_flags = parse_tls_flags(pos);
  1933. } else if (os_strcmp(buf, "ocsp_stapling_response") == 0) {
  1934. os_free(bss->ocsp_stapling_response);
  1935. bss->ocsp_stapling_response = os_strdup(pos);
  1936. } else if (os_strcmp(buf, "ocsp_stapling_response_multi") == 0) {
  1937. os_free(bss->ocsp_stapling_response_multi);
  1938. bss->ocsp_stapling_response_multi = os_strdup(pos);
  1939. } else if (os_strcmp(buf, "dh_file") == 0) {
  1940. os_free(bss->dh_file);
  1941. bss->dh_file = os_strdup(pos);
  1942. } else if (os_strcmp(buf, "openssl_ciphers") == 0) {
  1943. os_free(bss->openssl_ciphers);
  1944. bss->openssl_ciphers = os_strdup(pos);
  1945. } else if (os_strcmp(buf, "fragment_size") == 0) {
  1946. bss->fragment_size = atoi(pos);
  1947. #ifdef EAP_SERVER_FAST
  1948. } else if (os_strcmp(buf, "pac_opaque_encr_key") == 0) {
  1949. os_free(bss->pac_opaque_encr_key);
  1950. bss->pac_opaque_encr_key = os_malloc(16);
  1951. if (bss->pac_opaque_encr_key == NULL) {
  1952. wpa_printf(MSG_ERROR,
  1953. "Line %d: No memory for pac_opaque_encr_key",
  1954. line);
  1955. return 1;
  1956. } else if (hexstr2bin(pos, bss->pac_opaque_encr_key, 16)) {
  1957. wpa_printf(MSG_ERROR, "Line %d: Invalid pac_opaque_encr_key",
  1958. line);
  1959. return 1;
  1960. }
  1961. } else if (os_strcmp(buf, "eap_fast_a_id") == 0) {
  1962. size_t idlen = os_strlen(pos);
  1963. if (idlen & 1) {
  1964. wpa_printf(MSG_ERROR, "Line %d: Invalid eap_fast_a_id",
  1965. line);
  1966. return 1;
  1967. }
  1968. os_free(bss->eap_fast_a_id);
  1969. bss->eap_fast_a_id = os_malloc(idlen / 2);
  1970. if (bss->eap_fast_a_id == NULL ||
  1971. hexstr2bin(pos, bss->eap_fast_a_id, idlen / 2)) {
  1972. wpa_printf(MSG_ERROR, "Line %d: Failed to parse eap_fast_a_id",
  1973. line);
  1974. os_free(bss->eap_fast_a_id);
  1975. bss->eap_fast_a_id = NULL;
  1976. return 1;
  1977. } else {
  1978. bss->eap_fast_a_id_len = idlen / 2;
  1979. }
  1980. } else if (os_strcmp(buf, "eap_fast_a_id_info") == 0) {
  1981. os_free(bss->eap_fast_a_id_info);
  1982. bss->eap_fast_a_id_info = os_strdup(pos);
  1983. } else if (os_strcmp(buf, "eap_fast_prov") == 0) {
  1984. bss->eap_fast_prov = atoi(pos);
  1985. } else if (os_strcmp(buf, "pac_key_lifetime") == 0) {
  1986. bss->pac_key_lifetime = atoi(pos);
  1987. } else if (os_strcmp(buf, "pac_key_refresh_time") == 0) {
  1988. bss->pac_key_refresh_time = atoi(pos);
  1989. #endif /* EAP_SERVER_FAST */
  1990. #ifdef EAP_SERVER_SIM
  1991. } else if (os_strcmp(buf, "eap_sim_db") == 0) {
  1992. os_free(bss->eap_sim_db);
  1993. bss->eap_sim_db = os_strdup(pos);
  1994. } else if (os_strcmp(buf, "eap_sim_db_timeout") == 0) {
  1995. bss->eap_sim_db_timeout = atoi(pos);
  1996. } else if (os_strcmp(buf, "eap_sim_aka_result_ind") == 0) {
  1997. bss->eap_sim_aka_result_ind = atoi(pos);
  1998. #endif /* EAP_SERVER_SIM */
  1999. #ifdef EAP_SERVER_TNC
  2000. } else if (os_strcmp(buf, "tnc") == 0) {
  2001. bss->tnc = atoi(pos);
  2002. #endif /* EAP_SERVER_TNC */
  2003. #ifdef EAP_SERVER_PWD
  2004. } else if (os_strcmp(buf, "pwd_group") == 0) {
  2005. bss->pwd_group = atoi(pos);
  2006. #endif /* EAP_SERVER_PWD */
  2007. } else if (os_strcmp(buf, "eap_server_erp") == 0) {
  2008. bss->eap_server_erp = atoi(pos);
  2009. #endif /* EAP_SERVER */
  2010. } else if (os_strcmp(buf, "eap_message") == 0) {
  2011. char *term;
  2012. os_free(bss->eap_req_id_text);
  2013. bss->eap_req_id_text = os_strdup(pos);
  2014. if (bss->eap_req_id_text == NULL) {
  2015. wpa_printf(MSG_ERROR, "Line %d: Failed to allocate memory for eap_req_id_text",
  2016. line);
  2017. return 1;
  2018. }
  2019. bss->eap_req_id_text_len = os_strlen(bss->eap_req_id_text);
  2020. term = os_strstr(bss->eap_req_id_text, "\\0");
  2021. if (term) {
  2022. *term++ = '\0';
  2023. os_memmove(term, term + 1,
  2024. bss->eap_req_id_text_len -
  2025. (term - bss->eap_req_id_text) - 1);
  2026. bss->eap_req_id_text_len--;
  2027. }
  2028. } else if (os_strcmp(buf, "erp_send_reauth_start") == 0) {
  2029. bss->erp_send_reauth_start = atoi(pos);
  2030. } else if (os_strcmp(buf, "erp_domain") == 0) {
  2031. os_free(bss->erp_domain);
  2032. bss->erp_domain = os_strdup(pos);
  2033. } else if (os_strcmp(buf, "wep_key_len_broadcast") == 0) {
  2034. int val = atoi(pos);
  2035. if (val < 0 || val > 13) {
  2036. wpa_printf(MSG_ERROR,
  2037. "Line %d: invalid WEP key len %d (= %d bits)",
  2038. line, val, val * 8);
  2039. return 1;
  2040. }
  2041. bss->default_wep_key_len = val;
  2042. } else if (os_strcmp(buf, "wep_key_len_unicast") == 0) {
  2043. int val = atoi(pos);
  2044. if (val < 0 || val > 13) {
  2045. wpa_printf(MSG_ERROR,
  2046. "Line %d: invalid WEP key len %d (= %d bits)",
  2047. line, val, val * 8);
  2048. return 1;
  2049. }
  2050. bss->individual_wep_key_len = val;
  2051. } else if (os_strcmp(buf, "wep_rekey_period") == 0) {
  2052. bss->wep_rekeying_period = atoi(pos);
  2053. if (bss->wep_rekeying_period < 0) {
  2054. wpa_printf(MSG_ERROR, "Line %d: invalid period %d",
  2055. line, bss->wep_rekeying_period);
  2056. return 1;
  2057. }
  2058. } else if (os_strcmp(buf, "eap_reauth_period") == 0) {
  2059. bss->eap_reauth_period = atoi(pos);
  2060. if (bss->eap_reauth_period < 0) {
  2061. wpa_printf(MSG_ERROR, "Line %d: invalid period %d",
  2062. line, bss->eap_reauth_period);
  2063. return 1;
  2064. }
  2065. } else if (os_strcmp(buf, "eapol_key_index_workaround") == 0) {
  2066. bss->eapol_key_index_workaround = atoi(pos);
  2067. #ifdef CONFIG_IAPP
  2068. } else if (os_strcmp(buf, "iapp_interface") == 0) {
  2069. bss->ieee802_11f = 1;
  2070. os_strlcpy(bss->iapp_iface, pos, sizeof(bss->iapp_iface));
  2071. #endif /* CONFIG_IAPP */
  2072. } else if (os_strcmp(buf, "own_ip_addr") == 0) {
  2073. if (hostapd_parse_ip_addr(pos, &bss->own_ip_addr)) {
  2074. wpa_printf(MSG_ERROR,
  2075. "Line %d: invalid IP address '%s'",
  2076. line, pos);
  2077. return 1;
  2078. }
  2079. } else if (os_strcmp(buf, "nas_identifier") == 0) {
  2080. os_free(bss->nas_identifier);
  2081. bss->nas_identifier = os_strdup(pos);
  2082. #ifndef CONFIG_NO_RADIUS
  2083. } else if (os_strcmp(buf, "radius_client_addr") == 0) {
  2084. if (hostapd_parse_ip_addr(pos, &bss->radius->client_addr)) {
  2085. wpa_printf(MSG_ERROR,
  2086. "Line %d: invalid IP address '%s'",
  2087. line, pos);
  2088. return 1;
  2089. }
  2090. bss->radius->force_client_addr = 1;
  2091. } else if (os_strcmp(buf, "auth_server_addr") == 0) {
  2092. if (hostapd_config_read_radius_addr(
  2093. &bss->radius->auth_servers,
  2094. &bss->radius->num_auth_servers, pos, 1812,
  2095. &bss->radius->auth_server)) {
  2096. wpa_printf(MSG_ERROR,
  2097. "Line %d: invalid IP address '%s'",
  2098. line, pos);
  2099. return 1;
  2100. }
  2101. } else if (bss->radius->auth_server &&
  2102. os_strcmp(buf, "auth_server_addr_replace") == 0) {
  2103. if (hostapd_parse_ip_addr(pos,
  2104. &bss->radius->auth_server->addr)) {
  2105. wpa_printf(MSG_ERROR,
  2106. "Line %d: invalid IP address '%s'",
  2107. line, pos);
  2108. return 1;
  2109. }
  2110. } else if (bss->radius->auth_server &&
  2111. os_strcmp(buf, "auth_server_port") == 0) {
  2112. bss->radius->auth_server->port = atoi(pos);
  2113. } else if (bss->radius->auth_server &&
  2114. os_strcmp(buf, "auth_server_shared_secret") == 0) {
  2115. int len = os_strlen(pos);
  2116. if (len == 0) {
  2117. /* RFC 2865, Ch. 3 */
  2118. wpa_printf(MSG_ERROR, "Line %d: empty shared secret is not allowed",
  2119. line);
  2120. return 1;
  2121. }
  2122. os_free(bss->radius->auth_server->shared_secret);
  2123. bss->radius->auth_server->shared_secret = (u8 *) os_strdup(pos);
  2124. bss->radius->auth_server->shared_secret_len = len;
  2125. } else if (os_strcmp(buf, "acct_server_addr") == 0) {
  2126. if (hostapd_config_read_radius_addr(
  2127. &bss->radius->acct_servers,
  2128. &bss->radius->num_acct_servers, pos, 1813,
  2129. &bss->radius->acct_server)) {
  2130. wpa_printf(MSG_ERROR,
  2131. "Line %d: invalid IP address '%s'",
  2132. line, pos);
  2133. return 1;
  2134. }
  2135. } else if (bss->radius->acct_server &&
  2136. os_strcmp(buf, "acct_server_addr_replace") == 0) {
  2137. if (hostapd_parse_ip_addr(pos,
  2138. &bss->radius->acct_server->addr)) {
  2139. wpa_printf(MSG_ERROR,
  2140. "Line %d: invalid IP address '%s'",
  2141. line, pos);
  2142. return 1;
  2143. }
  2144. } else if (bss->radius->acct_server &&
  2145. os_strcmp(buf, "acct_server_port") == 0) {
  2146. bss->radius->acct_server->port = atoi(pos);
  2147. } else if (bss->radius->acct_server &&
  2148. os_strcmp(buf, "acct_server_shared_secret") == 0) {
  2149. int len = os_strlen(pos);
  2150. if (len == 0) {
  2151. /* RFC 2865, Ch. 3 */
  2152. wpa_printf(MSG_ERROR, "Line %d: empty shared secret is not allowed",
  2153. line);
  2154. return 1;
  2155. }
  2156. os_free(bss->radius->acct_server->shared_secret);
  2157. bss->radius->acct_server->shared_secret = (u8 *) os_strdup(pos);
  2158. bss->radius->acct_server->shared_secret_len = len;
  2159. } else if (os_strcmp(buf, "radius_retry_primary_interval") == 0) {
  2160. bss->radius->retry_primary_interval = atoi(pos);
  2161. } else if (os_strcmp(buf, "radius_acct_interim_interval") == 0) {
  2162. bss->acct_interim_interval = atoi(pos);
  2163. } else if (os_strcmp(buf, "radius_request_cui") == 0) {
  2164. bss->radius_request_cui = atoi(pos);
  2165. } else if (os_strcmp(buf, "radius_auth_req_attr") == 0) {
  2166. struct hostapd_radius_attr *attr, *a;
  2167. attr = hostapd_parse_radius_attr(pos);
  2168. if (attr == NULL) {
  2169. wpa_printf(MSG_ERROR,
  2170. "Line %d: invalid radius_auth_req_attr",
  2171. line);
  2172. return 1;
  2173. } else if (bss->radius_auth_req_attr == NULL) {
  2174. bss->radius_auth_req_attr = attr;
  2175. } else {
  2176. a = bss->radius_auth_req_attr;
  2177. while (a->next)
  2178. a = a->next;
  2179. a->next = attr;
  2180. }
  2181. } else if (os_strcmp(buf, "radius_acct_req_attr") == 0) {
  2182. struct hostapd_radius_attr *attr, *a;
  2183. attr = hostapd_parse_radius_attr(pos);
  2184. if (attr == NULL) {
  2185. wpa_printf(MSG_ERROR,
  2186. "Line %d: invalid radius_acct_req_attr",
  2187. line);
  2188. return 1;
  2189. } else if (bss->radius_acct_req_attr == NULL) {
  2190. bss->radius_acct_req_attr = attr;
  2191. } else {
  2192. a = bss->radius_acct_req_attr;
  2193. while (a->next)
  2194. a = a->next;
  2195. a->next = attr;
  2196. }
  2197. } else if (os_strcmp(buf, "radius_das_port") == 0) {
  2198. bss->radius_das_port = atoi(pos);
  2199. } else if (os_strcmp(buf, "radius_das_client") == 0) {
  2200. if (hostapd_parse_das_client(bss, pos) < 0) {
  2201. wpa_printf(MSG_ERROR, "Line %d: invalid DAS client",
  2202. line);
  2203. return 1;
  2204. }
  2205. } else if (os_strcmp(buf, "radius_das_time_window") == 0) {
  2206. bss->radius_das_time_window = atoi(pos);
  2207. } else if (os_strcmp(buf, "radius_das_require_event_timestamp") == 0) {
  2208. bss->radius_das_require_event_timestamp = atoi(pos);
  2209. } else if (os_strcmp(buf, "radius_das_require_message_authenticator") ==
  2210. 0) {
  2211. bss->radius_das_require_message_authenticator = atoi(pos);
  2212. #endif /* CONFIG_NO_RADIUS */
  2213. } else if (os_strcmp(buf, "auth_algs") == 0) {
  2214. bss->auth_algs = atoi(pos);
  2215. if (bss->auth_algs == 0) {
  2216. wpa_printf(MSG_ERROR, "Line %d: no authentication algorithms allowed",
  2217. line);
  2218. return 1;
  2219. }
  2220. } else if (os_strcmp(buf, "max_num_sta") == 0) {
  2221. bss->max_num_sta = atoi(pos);
  2222. if (bss->max_num_sta < 0 ||
  2223. bss->max_num_sta > MAX_STA_COUNT) {
  2224. wpa_printf(MSG_ERROR, "Line %d: Invalid max_num_sta=%d; allowed range 0..%d",
  2225. line, bss->max_num_sta, MAX_STA_COUNT);
  2226. return 1;
  2227. }
  2228. } else if (os_strcmp(buf, "wpa") == 0) {
  2229. bss->wpa = atoi(pos);
  2230. } else if (os_strcmp(buf, "wpa_group_rekey") == 0) {
  2231. bss->wpa_group_rekey = atoi(pos);
  2232. bss->wpa_group_rekey_set = 1;
  2233. } else if (os_strcmp(buf, "wpa_strict_rekey") == 0) {
  2234. bss->wpa_strict_rekey = atoi(pos);
  2235. } else if (os_strcmp(buf, "wpa_gmk_rekey") == 0) {
  2236. bss->wpa_gmk_rekey = atoi(pos);
  2237. } else if (os_strcmp(buf, "wpa_ptk_rekey") == 0) {
  2238. bss->wpa_ptk_rekey = atoi(pos);
  2239. } else if (os_strcmp(buf, "wpa_group_update_count") == 0) {
  2240. char *endp;
  2241. unsigned long val = strtoul(pos, &endp, 0);
  2242. if (*endp || val < 1 || val > (u32) -1) {
  2243. wpa_printf(MSG_ERROR,
  2244. "Line %d: Invalid wpa_group_update_count=%lu; allowed range 1..4294967295",
  2245. line, val);
  2246. return 1;
  2247. }
  2248. bss->wpa_group_update_count = (u32) val;
  2249. } else if (os_strcmp(buf, "wpa_pairwise_update_count") == 0) {
  2250. char *endp;
  2251. unsigned long val = strtoul(pos, &endp, 0);
  2252. if (*endp || val < 1 || val > (u32) -1) {
  2253. wpa_printf(MSG_ERROR,
  2254. "Line %d: Invalid wpa_pairwise_update_count=%lu; allowed range 1..4294967295",
  2255. line, val);
  2256. return 1;
  2257. }
  2258. bss->wpa_pairwise_update_count = (u32) val;
  2259. } else if (os_strcmp(buf, "wpa_disable_eapol_key_retries") == 0) {
  2260. bss->wpa_disable_eapol_key_retries = atoi(pos);
  2261. } else if (os_strcmp(buf, "wpa_passphrase") == 0) {
  2262. int len = os_strlen(pos);
  2263. if (len < 8 || len > 63) {
  2264. wpa_printf(MSG_ERROR, "Line %d: invalid WPA passphrase length %d (expected 8..63)",
  2265. line, len);
  2266. return 1;
  2267. }
  2268. os_free(bss->ssid.wpa_passphrase);
  2269. bss->ssid.wpa_passphrase = os_strdup(pos);
  2270. if (bss->ssid.wpa_passphrase) {
  2271. hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
  2272. bss->ssid.wpa_passphrase_set = 1;
  2273. }
  2274. } else if (os_strcmp(buf, "wpa_psk") == 0) {
  2275. hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
  2276. bss->ssid.wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
  2277. if (bss->ssid.wpa_psk == NULL)
  2278. return 1;
  2279. if (hexstr2bin(pos, bss->ssid.wpa_psk->psk, PMK_LEN) ||
  2280. pos[PMK_LEN * 2] != '\0') {
  2281. wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
  2282. line, pos);
  2283. hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
  2284. return 1;
  2285. }
  2286. bss->ssid.wpa_psk->group = 1;
  2287. os_free(bss->ssid.wpa_passphrase);
  2288. bss->ssid.wpa_passphrase = NULL;
  2289. bss->ssid.wpa_psk_set = 1;
  2290. } else if (os_strcmp(buf, "wpa_psk_file") == 0) {
  2291. os_free(bss->ssid.wpa_psk_file);
  2292. bss->ssid.wpa_psk_file = os_strdup(pos);
  2293. if (!bss->ssid.wpa_psk_file) {
  2294. wpa_printf(MSG_ERROR, "Line %d: allocation failed",
  2295. line);
  2296. return 1;
  2297. }
  2298. } else if (os_strcmp(buf, "wpa_key_mgmt") == 0) {
  2299. bss->wpa_key_mgmt = hostapd_config_parse_key_mgmt(line, pos);
  2300. if (bss->wpa_key_mgmt == -1)
  2301. return 1;
  2302. } else if (os_strcmp(buf, "wpa_psk_radius") == 0) {
  2303. bss->wpa_psk_radius = atoi(pos);
  2304. if (bss->wpa_psk_radius != PSK_RADIUS_IGNORED &&
  2305. bss->wpa_psk_radius != PSK_RADIUS_ACCEPTED &&
  2306. bss->wpa_psk_radius != PSK_RADIUS_REQUIRED) {
  2307. wpa_printf(MSG_ERROR,
  2308. "Line %d: unknown wpa_psk_radius %d",
  2309. line, bss->wpa_psk_radius);
  2310. return 1;
  2311. }
  2312. } else if (os_strcmp(buf, "wpa_pairwise") == 0) {
  2313. bss->wpa_pairwise = hostapd_config_parse_cipher(line, pos);
  2314. if (bss->wpa_pairwise == -1 || bss->wpa_pairwise == 0)
  2315. return 1;
  2316. if (bss->wpa_pairwise &
  2317. (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
  2318. wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
  2319. line, pos);
  2320. return 1;
  2321. }
  2322. } else if (os_strcmp(buf, "rsn_pairwise") == 0) {
  2323. bss->rsn_pairwise = hostapd_config_parse_cipher(line, pos);
  2324. if (bss->rsn_pairwise == -1 || bss->rsn_pairwise == 0)
  2325. return 1;
  2326. if (bss->rsn_pairwise &
  2327. (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
  2328. wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
  2329. line, pos);
  2330. return 1;
  2331. }
  2332. } else if (os_strcmp(buf, "group_cipher") == 0) {
  2333. bss->group_cipher = hostapd_config_parse_cipher(line, pos);
  2334. if (bss->group_cipher == -1 || bss->group_cipher == 0)
  2335. return 1;
  2336. if (bss->group_cipher != WPA_CIPHER_TKIP &&
  2337. bss->group_cipher != WPA_CIPHER_CCMP &&
  2338. bss->group_cipher != WPA_CIPHER_GCMP &&
  2339. bss->group_cipher != WPA_CIPHER_GCMP_256 &&
  2340. bss->group_cipher != WPA_CIPHER_CCMP_256) {
  2341. wpa_printf(MSG_ERROR,
  2342. "Line %d: unsupported group cipher suite '%s'",
  2343. line, pos);
  2344. return 1;
  2345. }
  2346. #ifdef CONFIG_RSN_PREAUTH
  2347. } else if (os_strcmp(buf, "rsn_preauth") == 0) {
  2348. bss->rsn_preauth = atoi(pos);
  2349. } else if (os_strcmp(buf, "rsn_preauth_interfaces") == 0) {
  2350. os_free(bss->rsn_preauth_interfaces);
  2351. bss->rsn_preauth_interfaces = os_strdup(pos);
  2352. #endif /* CONFIG_RSN_PREAUTH */
  2353. } else if (os_strcmp(buf, "peerkey") == 0) {
  2354. wpa_printf(MSG_INFO,
  2355. "Line %d: Obsolete peerkey parameter ignored", line);
  2356. #ifdef CONFIG_IEEE80211R_AP
  2357. } else if (os_strcmp(buf, "mobility_domain") == 0) {
  2358. if (os_strlen(pos) != 2 * MOBILITY_DOMAIN_ID_LEN ||
  2359. hexstr2bin(pos, bss->mobility_domain,
  2360. MOBILITY_DOMAIN_ID_LEN) != 0) {
  2361. wpa_printf(MSG_ERROR,
  2362. "Line %d: Invalid mobility_domain '%s'",
  2363. line, pos);
  2364. return 1;
  2365. }
  2366. } else if (os_strcmp(buf, "r1_key_holder") == 0) {
  2367. if (os_strlen(pos) != 2 * FT_R1KH_ID_LEN ||
  2368. hexstr2bin(pos, bss->r1_key_holder, FT_R1KH_ID_LEN) != 0) {
  2369. wpa_printf(MSG_ERROR,
  2370. "Line %d: Invalid r1_key_holder '%s'",
  2371. line, pos);
  2372. return 1;
  2373. }
  2374. } else if (os_strcmp(buf, "r0_key_lifetime") == 0) {
  2375. bss->r0_key_lifetime = atoi(pos);
  2376. } else if (os_strcmp(buf, "reassociation_deadline") == 0) {
  2377. bss->reassociation_deadline = atoi(pos);
  2378. } else if (os_strcmp(buf, "rkh_pos_timeout") == 0) {
  2379. bss->rkh_pos_timeout = atoi(pos);
  2380. } else if (os_strcmp(buf, "rkh_neg_timeout") == 0) {
  2381. bss->rkh_neg_timeout = atoi(pos);
  2382. } else if (os_strcmp(buf, "rkh_pull_timeout") == 0) {
  2383. bss->rkh_pull_timeout = atoi(pos);
  2384. } else if (os_strcmp(buf, "rkh_pull_retries") == 0) {
  2385. bss->rkh_pull_retries = atoi(pos);
  2386. } else if (os_strcmp(buf, "r0kh") == 0) {
  2387. if (add_r0kh(bss, pos) < 0) {
  2388. wpa_printf(MSG_DEBUG, "Line %d: Invalid r0kh '%s'",
  2389. line, pos);
  2390. return 1;
  2391. }
  2392. } else if (os_strcmp(buf, "r1kh") == 0) {
  2393. if (add_r1kh(bss, pos) < 0) {
  2394. wpa_printf(MSG_DEBUG, "Line %d: Invalid r1kh '%s'",
  2395. line, pos);
  2396. return 1;
  2397. }
  2398. } else if (os_strcmp(buf, "pmk_r1_push") == 0) {
  2399. bss->pmk_r1_push = atoi(pos);
  2400. } else if (os_strcmp(buf, "ft_over_ds") == 0) {
  2401. bss->ft_over_ds = atoi(pos);
  2402. } else if (os_strcmp(buf, "ft_psk_generate_local") == 0) {
  2403. bss->ft_psk_generate_local = atoi(pos);
  2404. #endif /* CONFIG_IEEE80211R_AP */
  2405. #ifndef CONFIG_NO_CTRL_IFACE
  2406. } else if (os_strcmp(buf, "ctrl_interface") == 0) {
  2407. os_free(bss->ctrl_interface);
  2408. bss->ctrl_interface = os_strdup(pos);
  2409. } else if (os_strcmp(buf, "ctrl_interface_group") == 0) {
  2410. #ifndef CONFIG_NATIVE_WINDOWS
  2411. struct group *grp;
  2412. char *endp;
  2413. const char *group = pos;
  2414. grp = getgrnam(group);
  2415. if (grp) {
  2416. bss->ctrl_interface_gid = grp->gr_gid;
  2417. bss->ctrl_interface_gid_set = 1;
  2418. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d (from group name '%s')",
  2419. bss->ctrl_interface_gid, group);
  2420. return 0;
  2421. }
  2422. /* Group name not found - try to parse this as gid */
  2423. bss->ctrl_interface_gid = strtol(group, &endp, 10);
  2424. if (*group == '\0' || *endp != '\0') {
  2425. wpa_printf(MSG_DEBUG, "Line %d: Invalid group '%s'",
  2426. line, group);
  2427. return 1;
  2428. }
  2429. bss->ctrl_interface_gid_set = 1;
  2430. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
  2431. bss->ctrl_interface_gid);
  2432. #endif /* CONFIG_NATIVE_WINDOWS */
  2433. #endif /* CONFIG_NO_CTRL_IFACE */
  2434. #ifdef RADIUS_SERVER
  2435. } else if (os_strcmp(buf, "radius_server_clients") == 0) {
  2436. os_free(bss->radius_server_clients);
  2437. bss->radius_server_clients = os_strdup(pos);
  2438. } else if (os_strcmp(buf, "radius_server_auth_port") == 0) {
  2439. bss->radius_server_auth_port = atoi(pos);
  2440. } else if (os_strcmp(buf, "radius_server_acct_port") == 0) {
  2441. bss->radius_server_acct_port = atoi(pos);
  2442. } else if (os_strcmp(buf, "radius_server_ipv6") == 0) {
  2443. bss->radius_server_ipv6 = atoi(pos);
  2444. #endif /* RADIUS_SERVER */
  2445. } else if (os_strcmp(buf, "use_pae_group_addr") == 0) {
  2446. bss->use_pae_group_addr = atoi(pos);
  2447. } else if (os_strcmp(buf, "hw_mode") == 0) {
  2448. if (os_strcmp(pos, "a") == 0)
  2449. conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
  2450. else if (os_strcmp(pos, "b") == 0)
  2451. conf->hw_mode = HOSTAPD_MODE_IEEE80211B;
  2452. else if (os_strcmp(pos, "g") == 0)
  2453. conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
  2454. else if (os_strcmp(pos, "ad") == 0)
  2455. conf->hw_mode = HOSTAPD_MODE_IEEE80211AD;
  2456. else if (os_strcmp(pos, "any") == 0)
  2457. conf->hw_mode = HOSTAPD_MODE_IEEE80211ANY;
  2458. else {
  2459. wpa_printf(MSG_ERROR, "Line %d: unknown hw_mode '%s'",
  2460. line, pos);
  2461. return 1;
  2462. }
  2463. } else if (os_strcmp(buf, "wps_rf_bands") == 0) {
  2464. if (os_strcmp(pos, "ad") == 0)
  2465. bss->wps_rf_bands = WPS_RF_60GHZ;
  2466. else if (os_strcmp(pos, "a") == 0)
  2467. bss->wps_rf_bands = WPS_RF_50GHZ;
  2468. else if (os_strcmp(pos, "g") == 0 ||
  2469. os_strcmp(pos, "b") == 0)
  2470. bss->wps_rf_bands = WPS_RF_24GHZ;
  2471. else if (os_strcmp(pos, "ag") == 0 ||
  2472. os_strcmp(pos, "ga") == 0)
  2473. bss->wps_rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ;
  2474. else {
  2475. wpa_printf(MSG_ERROR,
  2476. "Line %d: unknown wps_rf_band '%s'",
  2477. line, pos);
  2478. return 1;
  2479. }
  2480. } else if (os_strcmp(buf, "acs_exclude_dfs") == 0) {
  2481. conf->acs_exclude_dfs = atoi(pos);
  2482. } else if (os_strcmp(buf, "channel") == 0) {
  2483. if (os_strcmp(pos, "acs_survey") == 0) {
  2484. #ifndef CONFIG_ACS
  2485. wpa_printf(MSG_ERROR, "Line %d: tries to enable ACS but CONFIG_ACS disabled",
  2486. line);
  2487. return 1;
  2488. #else /* CONFIG_ACS */
  2489. conf->acs = 1;
  2490. conf->channel = 0;
  2491. #endif /* CONFIG_ACS */
  2492. } else {
  2493. conf->channel = atoi(pos);
  2494. conf->acs = conf->channel == 0;
  2495. }
  2496. } else if (os_strcmp(buf, "chanlist") == 0) {
  2497. if (hostapd_parse_chanlist(conf, pos)) {
  2498. wpa_printf(MSG_ERROR, "Line %d: invalid channel list",
  2499. line);
  2500. return 1;
  2501. }
  2502. } else if (os_strcmp(buf, "beacon_int") == 0) {
  2503. int val = atoi(pos);
  2504. /* MIB defines range as 1..65535, but very small values
  2505. * cause problems with the current implementation.
  2506. * Since it is unlikely that this small numbers are
  2507. * useful in real life scenarios, do not allow beacon
  2508. * period to be set below 15 TU. */
  2509. if (val < 15 || val > 65535) {
  2510. wpa_printf(MSG_ERROR, "Line %d: invalid beacon_int %d (expected 15..65535)",
  2511. line, val);
  2512. return 1;
  2513. }
  2514. conf->beacon_int = val;
  2515. #ifdef CONFIG_ACS
  2516. } else if (os_strcmp(buf, "acs_num_scans") == 0) {
  2517. int val = atoi(pos);
  2518. if (val <= 0 || val > 100) {
  2519. wpa_printf(MSG_ERROR, "Line %d: invalid acs_num_scans %d (expected 1..100)",
  2520. line, val);
  2521. return 1;
  2522. }
  2523. conf->acs_num_scans = val;
  2524. } else if (os_strcmp(buf, "acs_chan_bias") == 0) {
  2525. if (hostapd_config_parse_acs_chan_bias(conf, pos)) {
  2526. wpa_printf(MSG_ERROR, "Line %d: invalid acs_chan_bias",
  2527. line);
  2528. return -1;
  2529. }
  2530. #endif /* CONFIG_ACS */
  2531. } else if (os_strcmp(buf, "dtim_period") == 0) {
  2532. int val = atoi(pos);
  2533. if (val < 1 || val > 255) {
  2534. wpa_printf(MSG_ERROR, "Line %d: invalid dtim_period %d",
  2535. line, val);
  2536. return 1;
  2537. }
  2538. bss->dtim_period = val;
  2539. } else if (os_strcmp(buf, "bss_load_update_period") == 0) {
  2540. int val = atoi(pos);
  2541. if (val < 0 || val > 100) {
  2542. wpa_printf(MSG_ERROR,
  2543. "Line %d: invalid bss_load_update_period %d",
  2544. line, val);
  2545. return 1;
  2546. }
  2547. bss->bss_load_update_period = val;
  2548. } else if (os_strcmp(buf, "chan_util_avg_period") == 0) {
  2549. int val = atoi(pos);
  2550. if (val < 0) {
  2551. wpa_printf(MSG_ERROR,
  2552. "Line %d: invalid chan_util_avg_period",
  2553. line);
  2554. return 1;
  2555. }
  2556. bss->chan_util_avg_period = val;
  2557. } else if (os_strcmp(buf, "rts_threshold") == 0) {
  2558. conf->rts_threshold = atoi(pos);
  2559. if (conf->rts_threshold < -1 || conf->rts_threshold > 65535) {
  2560. wpa_printf(MSG_ERROR,
  2561. "Line %d: invalid rts_threshold %d",
  2562. line, conf->rts_threshold);
  2563. return 1;
  2564. }
  2565. } else if (os_strcmp(buf, "fragm_threshold") == 0) {
  2566. conf->fragm_threshold = atoi(pos);
  2567. if (conf->fragm_threshold == -1) {
  2568. /* allow a value of -1 */
  2569. } else if (conf->fragm_threshold < 256 ||
  2570. conf->fragm_threshold > 2346) {
  2571. wpa_printf(MSG_ERROR,
  2572. "Line %d: invalid fragm_threshold %d",
  2573. line, conf->fragm_threshold);
  2574. return 1;
  2575. }
  2576. } else if (os_strcmp(buf, "send_probe_response") == 0) {
  2577. int val = atoi(pos);
  2578. if (val != 0 && val != 1) {
  2579. wpa_printf(MSG_ERROR, "Line %d: invalid send_probe_response %d (expected 0 or 1)",
  2580. line, val);
  2581. return 1;
  2582. }
  2583. conf->send_probe_response = val;
  2584. } else if (os_strcmp(buf, "supported_rates") == 0) {
  2585. if (hostapd_parse_intlist(&conf->supported_rates, pos)) {
  2586. wpa_printf(MSG_ERROR, "Line %d: invalid rate list",
  2587. line);
  2588. return 1;
  2589. }
  2590. } else if (os_strcmp(buf, "basic_rates") == 0) {
  2591. if (hostapd_parse_intlist(&conf->basic_rates, pos)) {
  2592. wpa_printf(MSG_ERROR, "Line %d: invalid rate list",
  2593. line);
  2594. return 1;
  2595. }
  2596. } else if (os_strcmp(buf, "beacon_rate") == 0) {
  2597. int val;
  2598. if (os_strncmp(pos, "ht:", 3) == 0) {
  2599. val = atoi(pos + 3);
  2600. if (val < 0 || val > 31) {
  2601. wpa_printf(MSG_ERROR,
  2602. "Line %d: invalid beacon_rate HT-MCS %d",
  2603. line, val);
  2604. return 1;
  2605. }
  2606. conf->rate_type = BEACON_RATE_HT;
  2607. conf->beacon_rate = val;
  2608. } else if (os_strncmp(pos, "vht:", 4) == 0) {
  2609. val = atoi(pos + 4);
  2610. if (val < 0 || val > 9) {
  2611. wpa_printf(MSG_ERROR,
  2612. "Line %d: invalid beacon_rate VHT-MCS %d",
  2613. line, val);
  2614. return 1;
  2615. }
  2616. conf->rate_type = BEACON_RATE_VHT;
  2617. conf->beacon_rate = val;
  2618. } else {
  2619. val = atoi(pos);
  2620. if (val < 10 || val > 10000) {
  2621. wpa_printf(MSG_ERROR,
  2622. "Line %d: invalid legacy beacon_rate %d",
  2623. line, val);
  2624. return 1;
  2625. }
  2626. conf->rate_type = BEACON_RATE_LEGACY;
  2627. conf->beacon_rate = val;
  2628. }
  2629. } else if (os_strcmp(buf, "preamble") == 0) {
  2630. if (atoi(pos))
  2631. conf->preamble = SHORT_PREAMBLE;
  2632. else
  2633. conf->preamble = LONG_PREAMBLE;
  2634. } else if (os_strcmp(buf, "ignore_broadcast_ssid") == 0) {
  2635. bss->ignore_broadcast_ssid = atoi(pos);
  2636. } else if (os_strcmp(buf, "no_probe_resp_if_max_sta") == 0) {
  2637. bss->no_probe_resp_if_max_sta = atoi(pos);
  2638. } else if (os_strcmp(buf, "wep_default_key") == 0) {
  2639. bss->ssid.wep.idx = atoi(pos);
  2640. if (bss->ssid.wep.idx > 3) {
  2641. wpa_printf(MSG_ERROR,
  2642. "Invalid wep_default_key index %d",
  2643. bss->ssid.wep.idx);
  2644. return 1;
  2645. }
  2646. } else if (os_strcmp(buf, "wep_key0") == 0 ||
  2647. os_strcmp(buf, "wep_key1") == 0 ||
  2648. os_strcmp(buf, "wep_key2") == 0 ||
  2649. os_strcmp(buf, "wep_key3") == 0) {
  2650. if (hostapd_config_read_wep(&bss->ssid.wep,
  2651. buf[7] - '0', pos)) {
  2652. wpa_printf(MSG_ERROR, "Line %d: invalid WEP key '%s'",
  2653. line, buf);
  2654. return 1;
  2655. }
  2656. #ifndef CONFIG_NO_VLAN
  2657. } else if (os_strcmp(buf, "dynamic_vlan") == 0) {
  2658. bss->ssid.dynamic_vlan = atoi(pos);
  2659. } else if (os_strcmp(buf, "per_sta_vif") == 0) {
  2660. bss->ssid.per_sta_vif = atoi(pos);
  2661. } else if (os_strcmp(buf, "vlan_file") == 0) {
  2662. if (hostapd_config_read_vlan_file(bss, pos)) {
  2663. wpa_printf(MSG_ERROR, "Line %d: failed to read VLAN file '%s'",
  2664. line, pos);
  2665. return 1;
  2666. }
  2667. } else if (os_strcmp(buf, "vlan_naming") == 0) {
  2668. bss->ssid.vlan_naming = atoi(pos);
  2669. if (bss->ssid.vlan_naming >= DYNAMIC_VLAN_NAMING_END ||
  2670. bss->ssid.vlan_naming < 0) {
  2671. wpa_printf(MSG_ERROR,
  2672. "Line %d: invalid naming scheme %d",
  2673. line, bss->ssid.vlan_naming);
  2674. return 1;
  2675. }
  2676. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  2677. } else if (os_strcmp(buf, "vlan_tagged_interface") == 0) {
  2678. os_free(bss->ssid.vlan_tagged_interface);
  2679. bss->ssid.vlan_tagged_interface = os_strdup(pos);
  2680. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  2681. #endif /* CONFIG_NO_VLAN */
  2682. } else if (os_strcmp(buf, "ap_table_max_size") == 0) {
  2683. conf->ap_table_max_size = atoi(pos);
  2684. } else if (os_strcmp(buf, "ap_table_expiration_time") == 0) {
  2685. conf->ap_table_expiration_time = atoi(pos);
  2686. } else if (os_strncmp(buf, "tx_queue_", 9) == 0) {
  2687. if (hostapd_config_tx_queue(conf, buf, pos)) {
  2688. wpa_printf(MSG_ERROR, "Line %d: invalid TX queue item",
  2689. line);
  2690. return 1;
  2691. }
  2692. } else if (os_strcmp(buf, "wme_enabled") == 0 ||
  2693. os_strcmp(buf, "wmm_enabled") == 0) {
  2694. bss->wmm_enabled = atoi(pos);
  2695. } else if (os_strcmp(buf, "uapsd_advertisement_enabled") == 0) {
  2696. bss->wmm_uapsd = atoi(pos);
  2697. } else if (os_strncmp(buf, "wme_ac_", 7) == 0 ||
  2698. os_strncmp(buf, "wmm_ac_", 7) == 0) {
  2699. if (hostapd_config_wmm_ac(conf->wmm_ac_params, buf, pos)) {
  2700. wpa_printf(MSG_ERROR, "Line %d: invalid WMM ac item",
  2701. line);
  2702. return 1;
  2703. }
  2704. } else if (os_strcmp(buf, "bss") == 0) {
  2705. if (hostapd_config_bss(conf, pos)) {
  2706. wpa_printf(MSG_ERROR, "Line %d: invalid bss item",
  2707. line);
  2708. return 1;
  2709. }
  2710. } else if (os_strcmp(buf, "bssid") == 0) {
  2711. if (hwaddr_aton(pos, bss->bssid)) {
  2712. wpa_printf(MSG_ERROR, "Line %d: invalid bssid item",
  2713. line);
  2714. return 1;
  2715. }
  2716. } else if (os_strcmp(buf, "use_driver_iface_addr") == 0) {
  2717. conf->use_driver_iface_addr = atoi(pos);
  2718. #ifdef CONFIG_IEEE80211W
  2719. } else if (os_strcmp(buf, "ieee80211w") == 0) {
  2720. bss->ieee80211w = atoi(pos);
  2721. } else if (os_strcmp(buf, "group_mgmt_cipher") == 0) {
  2722. if (os_strcmp(pos, "AES-128-CMAC") == 0) {
  2723. bss->group_mgmt_cipher = WPA_CIPHER_AES_128_CMAC;
  2724. } else if (os_strcmp(pos, "BIP-GMAC-128") == 0) {
  2725. bss->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_128;
  2726. } else if (os_strcmp(pos, "BIP-GMAC-256") == 0) {
  2727. bss->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_256;
  2728. } else if (os_strcmp(pos, "BIP-CMAC-256") == 0) {
  2729. bss->group_mgmt_cipher = WPA_CIPHER_BIP_CMAC_256;
  2730. } else {
  2731. wpa_printf(MSG_ERROR, "Line %d: invalid group_mgmt_cipher: %s",
  2732. line, pos);
  2733. return 1;
  2734. }
  2735. } else if (os_strcmp(buf, "assoc_sa_query_max_timeout") == 0) {
  2736. bss->assoc_sa_query_max_timeout = atoi(pos);
  2737. if (bss->assoc_sa_query_max_timeout == 0) {
  2738. wpa_printf(MSG_ERROR, "Line %d: invalid assoc_sa_query_max_timeout",
  2739. line);
  2740. return 1;
  2741. }
  2742. } else if (os_strcmp(buf, "assoc_sa_query_retry_timeout") == 0) {
  2743. bss->assoc_sa_query_retry_timeout = atoi(pos);
  2744. if (bss->assoc_sa_query_retry_timeout == 0) {
  2745. wpa_printf(MSG_ERROR, "Line %d: invalid assoc_sa_query_retry_timeout",
  2746. line);
  2747. return 1;
  2748. }
  2749. #endif /* CONFIG_IEEE80211W */
  2750. #ifdef CONFIG_IEEE80211N
  2751. } else if (os_strcmp(buf, "ieee80211n") == 0) {
  2752. conf->ieee80211n = atoi(pos);
  2753. } else if (os_strcmp(buf, "ht_capab") == 0) {
  2754. if (hostapd_config_ht_capab(conf, pos) < 0) {
  2755. wpa_printf(MSG_ERROR, "Line %d: invalid ht_capab",
  2756. line);
  2757. return 1;
  2758. }
  2759. } else if (os_strcmp(buf, "require_ht") == 0) {
  2760. conf->require_ht = atoi(pos);
  2761. } else if (os_strcmp(buf, "obss_interval") == 0) {
  2762. conf->obss_interval = atoi(pos);
  2763. #endif /* CONFIG_IEEE80211N */
  2764. #ifdef CONFIG_IEEE80211AC
  2765. } else if (os_strcmp(buf, "ieee80211ac") == 0) {
  2766. conf->ieee80211ac = atoi(pos);
  2767. } else if (os_strcmp(buf, "vht_capab") == 0) {
  2768. if (hostapd_config_vht_capab(conf, pos) < 0) {
  2769. wpa_printf(MSG_ERROR, "Line %d: invalid vht_capab",
  2770. line);
  2771. return 1;
  2772. }
  2773. } else if (os_strcmp(buf, "require_vht") == 0) {
  2774. conf->require_vht = atoi(pos);
  2775. } else if (os_strcmp(buf, "vht_oper_chwidth") == 0) {
  2776. conf->vht_oper_chwidth = atoi(pos);
  2777. } else if (os_strcmp(buf, "vht_oper_centr_freq_seg0_idx") == 0) {
  2778. conf->vht_oper_centr_freq_seg0_idx = atoi(pos);
  2779. } else if (os_strcmp(buf, "vht_oper_centr_freq_seg1_idx") == 0) {
  2780. conf->vht_oper_centr_freq_seg1_idx = atoi(pos);
  2781. } else if (os_strcmp(buf, "vendor_vht") == 0) {
  2782. bss->vendor_vht = atoi(pos);
  2783. } else if (os_strcmp(buf, "use_sta_nsts") == 0) {
  2784. bss->use_sta_nsts = atoi(pos);
  2785. #endif /* CONFIG_IEEE80211AC */
  2786. #ifdef CONFIG_IEEE80211AX
  2787. } else if (os_strcmp(buf, "ieee80211ax") == 0) {
  2788. conf->ieee80211ax = atoi(pos);
  2789. } else if (os_strcmp(buf, "he_su_beamformer") == 0) {
  2790. conf->he_phy_capab.he_su_beamformer = atoi(pos);
  2791. } else if (os_strcmp(buf, "he_su_beamformee") == 0) {
  2792. conf->he_phy_capab.he_su_beamformee = atoi(pos);
  2793. } else if (os_strcmp(buf, "he_mu_beamformer") == 0) {
  2794. conf->he_phy_capab.he_mu_beamformer = atoi(pos);
  2795. } else if (os_strcmp(buf, "he_bss_color") == 0) {
  2796. conf->he_op.he_bss_color = atoi(pos);
  2797. } else if (os_strcmp(buf, "he_default_pe_duration") == 0) {
  2798. conf->he_op.he_default_pe_duration = atoi(pos);
  2799. } else if (os_strcmp(buf, "he_twt_required") == 0) {
  2800. conf->he_op.he_twt_required = atoi(pos);
  2801. } else if (os_strcmp(buf, "he_rts_threshold") == 0) {
  2802. conf->he_op.he_rts_threshold = atoi(pos);
  2803. #endif /* CONFIG_IEEE80211AX */
  2804. } else if (os_strcmp(buf, "max_listen_interval") == 0) {
  2805. bss->max_listen_interval = atoi(pos);
  2806. } else if (os_strcmp(buf, "disable_pmksa_caching") == 0) {
  2807. bss->disable_pmksa_caching = atoi(pos);
  2808. } else if (os_strcmp(buf, "okc") == 0) {
  2809. bss->okc = atoi(pos);
  2810. #ifdef CONFIG_WPS
  2811. } else if (os_strcmp(buf, "wps_state") == 0) {
  2812. bss->wps_state = atoi(pos);
  2813. if (bss->wps_state < 0 || bss->wps_state > 2) {
  2814. wpa_printf(MSG_ERROR, "Line %d: invalid wps_state",
  2815. line);
  2816. return 1;
  2817. }
  2818. } else if (os_strcmp(buf, "wps_independent") == 0) {
  2819. bss->wps_independent = atoi(pos);
  2820. } else if (os_strcmp(buf, "ap_setup_locked") == 0) {
  2821. bss->ap_setup_locked = atoi(pos);
  2822. } else if (os_strcmp(buf, "uuid") == 0) {
  2823. if (uuid_str2bin(pos, bss->uuid)) {
  2824. wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
  2825. return 1;
  2826. }
  2827. } else if (os_strcmp(buf, "wps_pin_requests") == 0) {
  2828. os_free(bss->wps_pin_requests);
  2829. bss->wps_pin_requests = os_strdup(pos);
  2830. } else if (os_strcmp(buf, "device_name") == 0) {
  2831. if (os_strlen(pos) > WPS_DEV_NAME_MAX_LEN) {
  2832. wpa_printf(MSG_ERROR, "Line %d: Too long "
  2833. "device_name", line);
  2834. return 1;
  2835. }
  2836. os_free(bss->device_name);
  2837. bss->device_name = os_strdup(pos);
  2838. } else if (os_strcmp(buf, "manufacturer") == 0) {
  2839. if (os_strlen(pos) > 64) {
  2840. wpa_printf(MSG_ERROR, "Line %d: Too long manufacturer",
  2841. line);
  2842. return 1;
  2843. }
  2844. os_free(bss->manufacturer);
  2845. bss->manufacturer = os_strdup(pos);
  2846. } else if (os_strcmp(buf, "model_name") == 0) {
  2847. if (os_strlen(pos) > 32) {
  2848. wpa_printf(MSG_ERROR, "Line %d: Too long model_name",
  2849. line);
  2850. return 1;
  2851. }
  2852. os_free(bss->model_name);
  2853. bss->model_name = os_strdup(pos);
  2854. } else if (os_strcmp(buf, "model_number") == 0) {
  2855. if (os_strlen(pos) > 32) {
  2856. wpa_printf(MSG_ERROR, "Line %d: Too long model_number",
  2857. line);
  2858. return 1;
  2859. }
  2860. os_free(bss->model_number);
  2861. bss->model_number = os_strdup(pos);
  2862. } else if (os_strcmp(buf, "serial_number") == 0) {
  2863. if (os_strlen(pos) > 32) {
  2864. wpa_printf(MSG_ERROR, "Line %d: Too long serial_number",
  2865. line);
  2866. return 1;
  2867. }
  2868. os_free(bss->serial_number);
  2869. bss->serial_number = os_strdup(pos);
  2870. } else if (os_strcmp(buf, "device_type") == 0) {
  2871. if (wps_dev_type_str2bin(pos, bss->device_type))
  2872. return 1;
  2873. } else if (os_strcmp(buf, "config_methods") == 0) {
  2874. os_free(bss->config_methods);
  2875. bss->config_methods = os_strdup(pos);
  2876. } else if (os_strcmp(buf, "os_version") == 0) {
  2877. if (hexstr2bin(pos, bss->os_version, 4)) {
  2878. wpa_printf(MSG_ERROR, "Line %d: invalid os_version",
  2879. line);
  2880. return 1;
  2881. }
  2882. } else if (os_strcmp(buf, "ap_pin") == 0) {
  2883. os_free(bss->ap_pin);
  2884. if (*pos == '\0')
  2885. bss->ap_pin = NULL;
  2886. else
  2887. bss->ap_pin = os_strdup(pos);
  2888. } else if (os_strcmp(buf, "skip_cred_build") == 0) {
  2889. bss->skip_cred_build = atoi(pos);
  2890. } else if (os_strcmp(buf, "extra_cred") == 0) {
  2891. os_free(bss->extra_cred);
  2892. bss->extra_cred = (u8 *) os_readfile(pos, &bss->extra_cred_len);
  2893. if (bss->extra_cred == NULL) {
  2894. wpa_printf(MSG_ERROR, "Line %d: could not read Credentials from '%s'",
  2895. line, pos);
  2896. return 1;
  2897. }
  2898. } else if (os_strcmp(buf, "wps_cred_processing") == 0) {
  2899. bss->wps_cred_processing = atoi(pos);
  2900. } else if (os_strcmp(buf, "ap_settings") == 0) {
  2901. os_free(bss->ap_settings);
  2902. bss->ap_settings =
  2903. (u8 *) os_readfile(pos, &bss->ap_settings_len);
  2904. if (bss->ap_settings == NULL) {
  2905. wpa_printf(MSG_ERROR, "Line %d: could not read AP Settings from '%s'",
  2906. line, pos);
  2907. return 1;
  2908. }
  2909. } else if (os_strcmp(buf, "upnp_iface") == 0) {
  2910. os_free(bss->upnp_iface);
  2911. bss->upnp_iface = os_strdup(pos);
  2912. } else if (os_strcmp(buf, "friendly_name") == 0) {
  2913. os_free(bss->friendly_name);
  2914. bss->friendly_name = os_strdup(pos);
  2915. } else if (os_strcmp(buf, "manufacturer_url") == 0) {
  2916. os_free(bss->manufacturer_url);
  2917. bss->manufacturer_url = os_strdup(pos);
  2918. } else if (os_strcmp(buf, "model_description") == 0) {
  2919. os_free(bss->model_description);
  2920. bss->model_description = os_strdup(pos);
  2921. } else if (os_strcmp(buf, "model_url") == 0) {
  2922. os_free(bss->model_url);
  2923. bss->model_url = os_strdup(pos);
  2924. } else if (os_strcmp(buf, "upc") == 0) {
  2925. os_free(bss->upc);
  2926. bss->upc = os_strdup(pos);
  2927. } else if (os_strcmp(buf, "pbc_in_m1") == 0) {
  2928. bss->pbc_in_m1 = atoi(pos);
  2929. } else if (os_strcmp(buf, "server_id") == 0) {
  2930. os_free(bss->server_id);
  2931. bss->server_id = os_strdup(pos);
  2932. #ifdef CONFIG_WPS_NFC
  2933. } else if (os_strcmp(buf, "wps_nfc_dev_pw_id") == 0) {
  2934. bss->wps_nfc_dev_pw_id = atoi(pos);
  2935. if (bss->wps_nfc_dev_pw_id < 0x10 ||
  2936. bss->wps_nfc_dev_pw_id > 0xffff) {
  2937. wpa_printf(MSG_ERROR, "Line %d: Invalid wps_nfc_dev_pw_id value",
  2938. line);
  2939. return 1;
  2940. }
  2941. bss->wps_nfc_pw_from_config = 1;
  2942. } else if (os_strcmp(buf, "wps_nfc_dh_pubkey") == 0) {
  2943. wpabuf_free(bss->wps_nfc_dh_pubkey);
  2944. bss->wps_nfc_dh_pubkey = wpabuf_parse_bin(pos);
  2945. bss->wps_nfc_pw_from_config = 1;
  2946. } else if (os_strcmp(buf, "wps_nfc_dh_privkey") == 0) {
  2947. wpabuf_free(bss->wps_nfc_dh_privkey);
  2948. bss->wps_nfc_dh_privkey = wpabuf_parse_bin(pos);
  2949. bss->wps_nfc_pw_from_config = 1;
  2950. } else if (os_strcmp(buf, "wps_nfc_dev_pw") == 0) {
  2951. wpabuf_free(bss->wps_nfc_dev_pw);
  2952. bss->wps_nfc_dev_pw = wpabuf_parse_bin(pos);
  2953. bss->wps_nfc_pw_from_config = 1;
  2954. #endif /* CONFIG_WPS_NFC */
  2955. #endif /* CONFIG_WPS */
  2956. #ifdef CONFIG_P2P_MANAGER
  2957. } else if (os_strcmp(buf, "manage_p2p") == 0) {
  2958. if (atoi(pos))
  2959. bss->p2p |= P2P_MANAGE;
  2960. else
  2961. bss->p2p &= ~P2P_MANAGE;
  2962. } else if (os_strcmp(buf, "allow_cross_connection") == 0) {
  2963. if (atoi(pos))
  2964. bss->p2p |= P2P_ALLOW_CROSS_CONNECTION;
  2965. else
  2966. bss->p2p &= ~P2P_ALLOW_CROSS_CONNECTION;
  2967. #endif /* CONFIG_P2P_MANAGER */
  2968. } else if (os_strcmp(buf, "disassoc_low_ack") == 0) {
  2969. bss->disassoc_low_ack = atoi(pos);
  2970. } else if (os_strcmp(buf, "tdls_prohibit") == 0) {
  2971. if (atoi(pos))
  2972. bss->tdls |= TDLS_PROHIBIT;
  2973. else
  2974. bss->tdls &= ~TDLS_PROHIBIT;
  2975. } else if (os_strcmp(buf, "tdls_prohibit_chan_switch") == 0) {
  2976. if (atoi(pos))
  2977. bss->tdls |= TDLS_PROHIBIT_CHAN_SWITCH;
  2978. else
  2979. bss->tdls &= ~TDLS_PROHIBIT_CHAN_SWITCH;
  2980. #ifdef CONFIG_RSN_TESTING
  2981. } else if (os_strcmp(buf, "rsn_testing") == 0) {
  2982. extern int rsn_testing;
  2983. rsn_testing = atoi(pos);
  2984. #endif /* CONFIG_RSN_TESTING */
  2985. } else if (os_strcmp(buf, "time_advertisement") == 0) {
  2986. bss->time_advertisement = atoi(pos);
  2987. } else if (os_strcmp(buf, "time_zone") == 0) {
  2988. size_t tz_len = os_strlen(pos);
  2989. if (tz_len < 4 || tz_len > 255) {
  2990. wpa_printf(MSG_DEBUG, "Line %d: invalid time_zone",
  2991. line);
  2992. return 1;
  2993. }
  2994. os_free(bss->time_zone);
  2995. bss->time_zone = os_strdup(pos);
  2996. if (bss->time_zone == NULL)
  2997. return 1;
  2998. #ifdef CONFIG_WNM_AP
  2999. } else if (os_strcmp(buf, "wnm_sleep_mode") == 0) {
  3000. bss->wnm_sleep_mode = atoi(pos);
  3001. } else if (os_strcmp(buf, "wnm_sleep_mode_no_keys") == 0) {
  3002. bss->wnm_sleep_mode_no_keys = atoi(pos);
  3003. } else if (os_strcmp(buf, "bss_transition") == 0) {
  3004. bss->bss_transition = atoi(pos);
  3005. #endif /* CONFIG_WNM_AP */
  3006. #ifdef CONFIG_INTERWORKING
  3007. } else if (os_strcmp(buf, "interworking") == 0) {
  3008. bss->interworking = atoi(pos);
  3009. } else if (os_strcmp(buf, "access_network_type") == 0) {
  3010. bss->access_network_type = atoi(pos);
  3011. if (bss->access_network_type < 0 ||
  3012. bss->access_network_type > 15) {
  3013. wpa_printf(MSG_ERROR,
  3014. "Line %d: invalid access_network_type",
  3015. line);
  3016. return 1;
  3017. }
  3018. } else if (os_strcmp(buf, "internet") == 0) {
  3019. bss->internet = atoi(pos);
  3020. } else if (os_strcmp(buf, "asra") == 0) {
  3021. bss->asra = atoi(pos);
  3022. } else if (os_strcmp(buf, "esr") == 0) {
  3023. bss->esr = atoi(pos);
  3024. } else if (os_strcmp(buf, "uesa") == 0) {
  3025. bss->uesa = atoi(pos);
  3026. } else if (os_strcmp(buf, "venue_group") == 0) {
  3027. bss->venue_group = atoi(pos);
  3028. bss->venue_info_set = 1;
  3029. } else if (os_strcmp(buf, "venue_type") == 0) {
  3030. bss->venue_type = atoi(pos);
  3031. bss->venue_info_set = 1;
  3032. } else if (os_strcmp(buf, "hessid") == 0) {
  3033. if (hwaddr_aton(pos, bss->hessid)) {
  3034. wpa_printf(MSG_ERROR, "Line %d: invalid hessid", line);
  3035. return 1;
  3036. }
  3037. } else if (os_strcmp(buf, "roaming_consortium") == 0) {
  3038. if (parse_roaming_consortium(bss, pos, line) < 0)
  3039. return 1;
  3040. } else if (os_strcmp(buf, "venue_name") == 0) {
  3041. if (parse_venue_name(bss, pos, line) < 0)
  3042. return 1;
  3043. } else if (os_strcmp(buf, "network_auth_type") == 0) {
  3044. u8 auth_type;
  3045. u16 redirect_url_len;
  3046. if (hexstr2bin(pos, &auth_type, 1)) {
  3047. wpa_printf(MSG_ERROR,
  3048. "Line %d: Invalid network_auth_type '%s'",
  3049. line, pos);
  3050. return 1;
  3051. }
  3052. if (auth_type == 0 || auth_type == 2)
  3053. redirect_url_len = os_strlen(pos + 2);
  3054. else
  3055. redirect_url_len = 0;
  3056. os_free(bss->network_auth_type);
  3057. bss->network_auth_type = os_malloc(redirect_url_len + 3 + 1);
  3058. if (bss->network_auth_type == NULL)
  3059. return 1;
  3060. *bss->network_auth_type = auth_type;
  3061. WPA_PUT_LE16(bss->network_auth_type + 1, redirect_url_len);
  3062. if (redirect_url_len)
  3063. os_memcpy(bss->network_auth_type + 3, pos + 2,
  3064. redirect_url_len);
  3065. bss->network_auth_type_len = 3 + redirect_url_len;
  3066. } else if (os_strcmp(buf, "ipaddr_type_availability") == 0) {
  3067. if (hexstr2bin(pos, &bss->ipaddr_type_availability, 1)) {
  3068. wpa_printf(MSG_ERROR, "Line %d: Invalid ipaddr_type_availability '%s'",
  3069. line, pos);
  3070. bss->ipaddr_type_configured = 0;
  3071. return 1;
  3072. }
  3073. bss->ipaddr_type_configured = 1;
  3074. } else if (os_strcmp(buf, "domain_name") == 0) {
  3075. int j, num_domains, domain_len, domain_list_len = 0;
  3076. char *tok_start, *tok_prev;
  3077. u8 *domain_list, *domain_ptr;
  3078. domain_list_len = os_strlen(pos) + 1;
  3079. domain_list = os_malloc(domain_list_len);
  3080. if (domain_list == NULL)
  3081. return 1;
  3082. domain_ptr = domain_list;
  3083. tok_prev = pos;
  3084. num_domains = 1;
  3085. while ((tok_prev = os_strchr(tok_prev, ','))) {
  3086. num_domains++;
  3087. tok_prev++;
  3088. }
  3089. tok_prev = pos;
  3090. for (j = 0; j < num_domains; j++) {
  3091. tok_start = os_strchr(tok_prev, ',');
  3092. if (tok_start) {
  3093. domain_len = tok_start - tok_prev;
  3094. *domain_ptr = domain_len;
  3095. os_memcpy(domain_ptr + 1, tok_prev, domain_len);
  3096. domain_ptr += domain_len + 1;
  3097. tok_prev = ++tok_start;
  3098. } else {
  3099. domain_len = os_strlen(tok_prev);
  3100. *domain_ptr = domain_len;
  3101. os_memcpy(domain_ptr + 1, tok_prev, domain_len);
  3102. domain_ptr += domain_len + 1;
  3103. }
  3104. }
  3105. os_free(bss->domain_name);
  3106. bss->domain_name = domain_list;
  3107. bss->domain_name_len = domain_list_len;
  3108. } else if (os_strcmp(buf, "anqp_3gpp_cell_net") == 0) {
  3109. if (parse_3gpp_cell_net(bss, pos, line) < 0)
  3110. return 1;
  3111. } else if (os_strcmp(buf, "nai_realm") == 0) {
  3112. if (parse_nai_realm(bss, pos, line) < 0)
  3113. return 1;
  3114. } else if (os_strcmp(buf, "anqp_elem") == 0) {
  3115. if (parse_anqp_elem(bss, pos, line) < 0)
  3116. return 1;
  3117. } else if (os_strcmp(buf, "gas_frag_limit") == 0) {
  3118. int val = atoi(pos);
  3119. if (val <= 0) {
  3120. wpa_printf(MSG_ERROR,
  3121. "Line %d: Invalid gas_frag_limit '%s'",
  3122. line, pos);
  3123. return 1;
  3124. }
  3125. bss->gas_frag_limit = val;
  3126. } else if (os_strcmp(buf, "gas_comeback_delay") == 0) {
  3127. bss->gas_comeback_delay = atoi(pos);
  3128. } else if (os_strcmp(buf, "qos_map_set") == 0) {
  3129. if (parse_qos_map_set(bss, pos, line) < 0)
  3130. return 1;
  3131. #endif /* CONFIG_INTERWORKING */
  3132. #ifdef CONFIG_RADIUS_TEST
  3133. } else if (os_strcmp(buf, "dump_msk_file") == 0) {
  3134. os_free(bss->dump_msk_file);
  3135. bss->dump_msk_file = os_strdup(pos);
  3136. #endif /* CONFIG_RADIUS_TEST */
  3137. #ifdef CONFIG_PROXYARP
  3138. } else if (os_strcmp(buf, "proxy_arp") == 0) {
  3139. bss->proxy_arp = atoi(pos);
  3140. #endif /* CONFIG_PROXYARP */
  3141. #ifdef CONFIG_HS20
  3142. } else if (os_strcmp(buf, "hs20") == 0) {
  3143. bss->hs20 = atoi(pos);
  3144. } else if (os_strcmp(buf, "disable_dgaf") == 0) {
  3145. bss->disable_dgaf = atoi(pos);
  3146. } else if (os_strcmp(buf, "na_mcast_to_ucast") == 0) {
  3147. bss->na_mcast_to_ucast = atoi(pos);
  3148. } else if (os_strcmp(buf, "osen") == 0) {
  3149. bss->osen = atoi(pos);
  3150. } else if (os_strcmp(buf, "anqp_domain_id") == 0) {
  3151. bss->anqp_domain_id = atoi(pos);
  3152. } else if (os_strcmp(buf, "hs20_deauth_req_timeout") == 0) {
  3153. bss->hs20_deauth_req_timeout = atoi(pos);
  3154. } else if (os_strcmp(buf, "hs20_oper_friendly_name") == 0) {
  3155. if (hs20_parse_oper_friendly_name(bss, pos, line) < 0)
  3156. return 1;
  3157. } else if (os_strcmp(buf, "hs20_wan_metrics") == 0) {
  3158. if (hs20_parse_wan_metrics(bss, pos, line) < 0)
  3159. return 1;
  3160. } else if (os_strcmp(buf, "hs20_conn_capab") == 0) {
  3161. if (hs20_parse_conn_capab(bss, pos, line) < 0) {
  3162. return 1;
  3163. }
  3164. } else if (os_strcmp(buf, "hs20_operating_class") == 0) {
  3165. u8 *oper_class;
  3166. size_t oper_class_len;
  3167. oper_class_len = os_strlen(pos);
  3168. if (oper_class_len < 2 || (oper_class_len & 0x01)) {
  3169. wpa_printf(MSG_ERROR,
  3170. "Line %d: Invalid hs20_operating_class '%s'",
  3171. line, pos);
  3172. return 1;
  3173. }
  3174. oper_class_len /= 2;
  3175. oper_class = os_malloc(oper_class_len);
  3176. if (oper_class == NULL)
  3177. return 1;
  3178. if (hexstr2bin(pos, oper_class, oper_class_len)) {
  3179. wpa_printf(MSG_ERROR,
  3180. "Line %d: Invalid hs20_operating_class '%s'",
  3181. line, pos);
  3182. os_free(oper_class);
  3183. return 1;
  3184. }
  3185. os_free(bss->hs20_operating_class);
  3186. bss->hs20_operating_class = oper_class;
  3187. bss->hs20_operating_class_len = oper_class_len;
  3188. } else if (os_strcmp(buf, "hs20_icon") == 0) {
  3189. if (hs20_parse_icon(bss, pos) < 0) {
  3190. wpa_printf(MSG_ERROR, "Line %d: Invalid hs20_icon '%s'",
  3191. line, pos);
  3192. return 1;
  3193. }
  3194. } else if (os_strcmp(buf, "osu_ssid") == 0) {
  3195. if (hs20_parse_osu_ssid(bss, pos, line) < 0)
  3196. return 1;
  3197. } else if (os_strcmp(buf, "osu_server_uri") == 0) {
  3198. if (hs20_parse_osu_server_uri(bss, pos, line) < 0)
  3199. return 1;
  3200. } else if (os_strcmp(buf, "osu_friendly_name") == 0) {
  3201. if (hs20_parse_osu_friendly_name(bss, pos, line) < 0)
  3202. return 1;
  3203. } else if (os_strcmp(buf, "osu_nai") == 0) {
  3204. if (hs20_parse_osu_nai(bss, pos, line) < 0)
  3205. return 1;
  3206. } else if (os_strcmp(buf, "osu_method_list") == 0) {
  3207. if (hs20_parse_osu_method_list(bss, pos, line) < 0)
  3208. return 1;
  3209. } else if (os_strcmp(buf, "osu_icon") == 0) {
  3210. if (hs20_parse_osu_icon(bss, pos, line) < 0)
  3211. return 1;
  3212. } else if (os_strcmp(buf, "osu_service_desc") == 0) {
  3213. if (hs20_parse_osu_service_desc(bss, pos, line) < 0)
  3214. return 1;
  3215. } else if (os_strcmp(buf, "subscr_remediation_url") == 0) {
  3216. os_free(bss->subscr_remediation_url);
  3217. bss->subscr_remediation_url = os_strdup(pos);
  3218. } else if (os_strcmp(buf, "subscr_remediation_method") == 0) {
  3219. bss->subscr_remediation_method = atoi(pos);
  3220. #endif /* CONFIG_HS20 */
  3221. #ifdef CONFIG_MBO
  3222. } else if (os_strcmp(buf, "mbo") == 0) {
  3223. bss->mbo_enabled = atoi(pos);
  3224. } else if (os_strcmp(buf, "mbo_cell_data_conn_pref") == 0) {
  3225. bss->mbo_cell_data_conn_pref = atoi(pos);
  3226. } else if (os_strcmp(buf, "oce") == 0) {
  3227. bss->oce = atoi(pos);
  3228. #endif /* CONFIG_MBO */
  3229. #ifdef CONFIG_TESTING_OPTIONS
  3230. #define PARSE_TEST_PROBABILITY(_val) \
  3231. } else if (os_strcmp(buf, #_val) == 0) { \
  3232. char *end; \
  3233. \
  3234. conf->_val = strtod(pos, &end); \
  3235. if (*end || conf->_val < 0.0 || \
  3236. conf->_val > 1.0) { \
  3237. wpa_printf(MSG_ERROR, \
  3238. "Line %d: Invalid value '%s'", \
  3239. line, pos); \
  3240. return 1; \
  3241. }
  3242. PARSE_TEST_PROBABILITY(ignore_probe_probability)
  3243. PARSE_TEST_PROBABILITY(ignore_auth_probability)
  3244. PARSE_TEST_PROBABILITY(ignore_assoc_probability)
  3245. PARSE_TEST_PROBABILITY(ignore_reassoc_probability)
  3246. PARSE_TEST_PROBABILITY(corrupt_gtk_rekey_mic_probability)
  3247. } else if (os_strcmp(buf, "ecsa_ie_only") == 0) {
  3248. conf->ecsa_ie_only = atoi(pos);
  3249. } else if (os_strcmp(buf, "bss_load_test") == 0) {
  3250. WPA_PUT_LE16(bss->bss_load_test, atoi(pos));
  3251. pos = os_strchr(pos, ':');
  3252. if (pos == NULL) {
  3253. wpa_printf(MSG_ERROR, "Line %d: Invalid bss_load_test",
  3254. line);
  3255. return 1;
  3256. }
  3257. pos++;
  3258. bss->bss_load_test[2] = atoi(pos);
  3259. pos = os_strchr(pos, ':');
  3260. if (pos == NULL) {
  3261. wpa_printf(MSG_ERROR, "Line %d: Invalid bss_load_test",
  3262. line);
  3263. return 1;
  3264. }
  3265. pos++;
  3266. WPA_PUT_LE16(&bss->bss_load_test[3], atoi(pos));
  3267. bss->bss_load_test_set = 1;
  3268. } else if (os_strcmp(buf, "radio_measurements") == 0) {
  3269. /*
  3270. * DEPRECATED: This parameter will be removed in the future.
  3271. * Use rrm_neighbor_report instead.
  3272. */
  3273. int val = atoi(pos);
  3274. if (val & BIT(0))
  3275. bss->radio_measurements[0] |=
  3276. WLAN_RRM_CAPS_NEIGHBOR_REPORT;
  3277. } else if (os_strcmp(buf, "own_ie_override") == 0) {
  3278. struct wpabuf *tmp;
  3279. size_t len = os_strlen(pos) / 2;
  3280. tmp = wpabuf_alloc(len);
  3281. if (!tmp)
  3282. return 1;
  3283. if (hexstr2bin(pos, wpabuf_put(tmp, len), len)) {
  3284. wpabuf_free(tmp);
  3285. wpa_printf(MSG_ERROR,
  3286. "Line %d: Invalid own_ie_override '%s'",
  3287. line, pos);
  3288. return 1;
  3289. }
  3290. wpabuf_free(bss->own_ie_override);
  3291. bss->own_ie_override = tmp;
  3292. } else if (os_strcmp(buf, "sae_reflection_attack") == 0) {
  3293. bss->sae_reflection_attack = atoi(pos);
  3294. } else if (os_strcmp(buf, "sae_commit_override") == 0) {
  3295. wpabuf_free(bss->sae_commit_override);
  3296. bss->sae_commit_override = wpabuf_parse_bin(pos);
  3297. } else if (os_strcmp(buf, "sae_password") == 0) {
  3298. os_free(bss->sae_password);
  3299. bss->sae_password = os_strdup(pos);
  3300. #endif /* CONFIG_TESTING_OPTIONS */
  3301. } else if (os_strcmp(buf, "vendor_elements") == 0) {
  3302. if (parse_wpabuf_hex(line, buf, &bss->vendor_elements, pos))
  3303. return 1;
  3304. } else if (os_strcmp(buf, "assocresp_elements") == 0) {
  3305. if (parse_wpabuf_hex(line, buf, &bss->assocresp_elements, pos))
  3306. return 1;
  3307. } else if (os_strcmp(buf, "sae_anti_clogging_threshold") == 0) {
  3308. bss->sae_anti_clogging_threshold = atoi(pos);
  3309. } else if (os_strcmp(buf, "sae_sync") == 0) {
  3310. bss->sae_sync = atoi(pos);
  3311. } else if (os_strcmp(buf, "sae_groups") == 0) {
  3312. if (hostapd_parse_intlist(&bss->sae_groups, pos)) {
  3313. wpa_printf(MSG_ERROR,
  3314. "Line %d: Invalid sae_groups value '%s'",
  3315. line, pos);
  3316. return 1;
  3317. }
  3318. } else if (os_strcmp(buf, "sae_require_mfp") == 0) {
  3319. bss->sae_require_mfp = atoi(pos);
  3320. } else if (os_strcmp(buf, "local_pwr_constraint") == 0) {
  3321. int val = atoi(pos);
  3322. if (val < 0 || val > 255) {
  3323. wpa_printf(MSG_ERROR, "Line %d: Invalid local_pwr_constraint %d (expected 0..255)",
  3324. line, val);
  3325. return 1;
  3326. }
  3327. conf->local_pwr_constraint = val;
  3328. } else if (os_strcmp(buf, "spectrum_mgmt_required") == 0) {
  3329. conf->spectrum_mgmt_required = atoi(pos);
  3330. } else if (os_strcmp(buf, "wowlan_triggers") == 0) {
  3331. os_free(bss->wowlan_triggers);
  3332. bss->wowlan_triggers = os_strdup(pos);
  3333. #ifdef CONFIG_FST
  3334. } else if (os_strcmp(buf, "fst_group_id") == 0) {
  3335. size_t len = os_strlen(pos);
  3336. if (!len || len >= sizeof(conf->fst_cfg.group_id)) {
  3337. wpa_printf(MSG_ERROR,
  3338. "Line %d: Invalid fst_group_id value '%s'",
  3339. line, pos);
  3340. return 1;
  3341. }
  3342. if (conf->fst_cfg.group_id[0]) {
  3343. wpa_printf(MSG_ERROR,
  3344. "Line %d: Duplicate fst_group value '%s'",
  3345. line, pos);
  3346. return 1;
  3347. }
  3348. os_strlcpy(conf->fst_cfg.group_id, pos,
  3349. sizeof(conf->fst_cfg.group_id));
  3350. } else if (os_strcmp(buf, "fst_priority") == 0) {
  3351. char *endp;
  3352. long int val;
  3353. if (!*pos) {
  3354. wpa_printf(MSG_ERROR,
  3355. "Line %d: fst_priority value not supplied (expected 1..%u)",
  3356. line, FST_MAX_PRIO_VALUE);
  3357. return -1;
  3358. }
  3359. val = strtol(pos, &endp, 0);
  3360. if (*endp || val < 1 || val > FST_MAX_PRIO_VALUE) {
  3361. wpa_printf(MSG_ERROR,
  3362. "Line %d: Invalid fst_priority %ld (%s) (expected 1..%u)",
  3363. line, val, pos, FST_MAX_PRIO_VALUE);
  3364. return 1;
  3365. }
  3366. conf->fst_cfg.priority = (u8) val;
  3367. } else if (os_strcmp(buf, "fst_llt") == 0) {
  3368. char *endp;
  3369. long int val;
  3370. if (!*pos) {
  3371. wpa_printf(MSG_ERROR,
  3372. "Line %d: fst_llt value not supplied (expected 1..%u)",
  3373. line, FST_MAX_LLT_MS);
  3374. return -1;
  3375. }
  3376. val = strtol(pos, &endp, 0);
  3377. if (*endp || val < 1 ||
  3378. (unsigned long int) val > FST_MAX_LLT_MS) {
  3379. wpa_printf(MSG_ERROR,
  3380. "Line %d: Invalid fst_llt %ld (%s) (expected 1..%u)",
  3381. line, val, pos, FST_MAX_LLT_MS);
  3382. return 1;
  3383. }
  3384. conf->fst_cfg.llt = (u32) val;
  3385. #endif /* CONFIG_FST */
  3386. } else if (os_strcmp(buf, "track_sta_max_num") == 0) {
  3387. conf->track_sta_max_num = atoi(pos);
  3388. } else if (os_strcmp(buf, "track_sta_max_age") == 0) {
  3389. conf->track_sta_max_age = atoi(pos);
  3390. } else if (os_strcmp(buf, "no_probe_resp_if_seen_on") == 0) {
  3391. os_free(bss->no_probe_resp_if_seen_on);
  3392. bss->no_probe_resp_if_seen_on = os_strdup(pos);
  3393. } else if (os_strcmp(buf, "no_auth_if_seen_on") == 0) {
  3394. os_free(bss->no_auth_if_seen_on);
  3395. bss->no_auth_if_seen_on = os_strdup(pos);
  3396. } else if (os_strcmp(buf, "lci") == 0) {
  3397. wpabuf_free(conf->lci);
  3398. conf->lci = wpabuf_parse_bin(pos);
  3399. if (conf->lci && wpabuf_len(conf->lci) == 0) {
  3400. wpabuf_free(conf->lci);
  3401. conf->lci = NULL;
  3402. }
  3403. } else if (os_strcmp(buf, "civic") == 0) {
  3404. wpabuf_free(conf->civic);
  3405. conf->civic = wpabuf_parse_bin(pos);
  3406. if (conf->civic && wpabuf_len(conf->civic) == 0) {
  3407. wpabuf_free(conf->civic);
  3408. conf->civic = NULL;
  3409. }
  3410. } else if (os_strcmp(buf, "rrm_neighbor_report") == 0) {
  3411. if (atoi(pos))
  3412. bss->radio_measurements[0] |=
  3413. WLAN_RRM_CAPS_NEIGHBOR_REPORT;
  3414. } else if (os_strcmp(buf, "rrm_beacon_report") == 0) {
  3415. if (atoi(pos))
  3416. bss->radio_measurements[0] |=
  3417. WLAN_RRM_CAPS_BEACON_REPORT_PASSIVE |
  3418. WLAN_RRM_CAPS_BEACON_REPORT_ACTIVE |
  3419. WLAN_RRM_CAPS_BEACON_REPORT_TABLE;
  3420. } else if (os_strcmp(buf, "gas_address3") == 0) {
  3421. bss->gas_address3 = atoi(pos);
  3422. } else if (os_strcmp(buf, "stationary_ap") == 0) {
  3423. conf->stationary_ap = atoi(pos);
  3424. } else if (os_strcmp(buf, "ftm_responder") == 0) {
  3425. bss->ftm_responder = atoi(pos);
  3426. } else if (os_strcmp(buf, "ftm_initiator") == 0) {
  3427. bss->ftm_initiator = atoi(pos);
  3428. #ifdef CONFIG_FILS
  3429. } else if (os_strcmp(buf, "fils_cache_id") == 0) {
  3430. if (hexstr2bin(pos, bss->fils_cache_id, FILS_CACHE_ID_LEN)) {
  3431. wpa_printf(MSG_ERROR,
  3432. "Line %d: Invalid fils_cache_id '%s'",
  3433. line, pos);
  3434. return 1;
  3435. }
  3436. bss->fils_cache_id_set = 1;
  3437. } else if (os_strcmp(buf, "fils_realm") == 0) {
  3438. if (parse_fils_realm(bss, pos) < 0)
  3439. return 1;
  3440. } else if (os_strcmp(buf, "fils_dh_group") == 0) {
  3441. bss->fils_dh_group = atoi(pos);
  3442. } else if (os_strcmp(buf, "dhcp_server") == 0) {
  3443. if (hostapd_parse_ip_addr(pos, &bss->dhcp_server)) {
  3444. wpa_printf(MSG_ERROR,
  3445. "Line %d: invalid IP address '%s'",
  3446. line, pos);
  3447. return 1;
  3448. }
  3449. } else if (os_strcmp(buf, "dhcp_rapid_commit_proxy") == 0) {
  3450. bss->dhcp_rapid_commit_proxy = atoi(pos);
  3451. } else if (os_strcmp(buf, "fils_hlp_wait_time") == 0) {
  3452. bss->fils_hlp_wait_time = atoi(pos);
  3453. } else if (os_strcmp(buf, "dhcp_server_port") == 0) {
  3454. bss->dhcp_server_port = atoi(pos);
  3455. } else if (os_strcmp(buf, "dhcp_relay_port") == 0) {
  3456. bss->dhcp_relay_port = atoi(pos);
  3457. #endif /* CONFIG_FILS */
  3458. } else if (os_strcmp(buf, "multicast_to_unicast") == 0) {
  3459. bss->multicast_to_unicast = atoi(pos);
  3460. } else if (os_strcmp(buf, "broadcast_deauth") == 0) {
  3461. bss->broadcast_deauth = atoi(pos);
  3462. #ifdef CONFIG_DPP
  3463. } else if (os_strcmp(buf, "dpp_connector") == 0) {
  3464. os_free(bss->dpp_connector);
  3465. bss->dpp_connector = os_strdup(pos);
  3466. } else if (os_strcmp(buf, "dpp_netaccesskey") == 0) {
  3467. if (parse_wpabuf_hex(line, buf, &bss->dpp_netaccesskey, pos))
  3468. return 1;
  3469. } else if (os_strcmp(buf, "dpp_netaccesskey_expiry") == 0) {
  3470. bss->dpp_netaccesskey_expiry = strtol(pos, NULL, 0);
  3471. } else if (os_strcmp(buf, "dpp_csign") == 0) {
  3472. if (parse_wpabuf_hex(line, buf, &bss->dpp_csign, pos))
  3473. return 1;
  3474. #endif /* CONFIG_DPP */
  3475. #ifdef CONFIG_OWE
  3476. } else if (os_strcmp(buf, "owe_transition_bssid") == 0) {
  3477. if (hwaddr_aton(pos, bss->owe_transition_bssid)) {
  3478. wpa_printf(MSG_ERROR,
  3479. "Line %d: invalid owe_transition_bssid",
  3480. line);
  3481. return 1;
  3482. }
  3483. } else if (os_strcmp(buf, "owe_transition_ssid") == 0) {
  3484. size_t slen;
  3485. char *str = wpa_config_parse_string(pos, &slen);
  3486. if (!str || slen < 1 || slen > SSID_MAX_LEN) {
  3487. wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
  3488. line, pos);
  3489. os_free(str);
  3490. return 1;
  3491. }
  3492. os_memcpy(bss->owe_transition_ssid, str, slen);
  3493. bss->owe_transition_ssid_len = slen;
  3494. os_free(str);
  3495. } else if (os_strcmp(buf, "owe_transition_ifname") == 0) {
  3496. os_strlcpy(bss->owe_transition_ifname, pos,
  3497. sizeof(bss->owe_transition_ifname));
  3498. } else if (os_strcmp(buf, "owe_groups") == 0) {
  3499. if (hostapd_parse_intlist(&bss->owe_groups, pos)) {
  3500. wpa_printf(MSG_ERROR,
  3501. "Line %d: Invalid owe_groups value '%s'",
  3502. line, pos);
  3503. return 1;
  3504. }
  3505. #endif /* CONFIG_OWE */
  3506. } else {
  3507. wpa_printf(MSG_ERROR,
  3508. "Line %d: unknown configuration item '%s'",
  3509. line, buf);
  3510. return 1;
  3511. }
  3512. return 0;
  3513. }
  3514. /**
  3515. * hostapd_config_read - Read and parse a configuration file
  3516. * @fname: Configuration file name (including path, if needed)
  3517. * Returns: Allocated configuration data structure
  3518. */
  3519. struct hostapd_config * hostapd_config_read(const char *fname)
  3520. {
  3521. struct hostapd_config *conf;
  3522. FILE *f;
  3523. char buf[4096], *pos;
  3524. int line = 0;
  3525. int errors = 0;
  3526. size_t i;
  3527. f = fopen(fname, "r");
  3528. if (f == NULL) {
  3529. wpa_printf(MSG_ERROR, "Could not open configuration file '%s' "
  3530. "for reading.", fname);
  3531. return NULL;
  3532. }
  3533. conf = hostapd_config_defaults();
  3534. if (conf == NULL) {
  3535. fclose(f);
  3536. return NULL;
  3537. }
  3538. /* set default driver based on configuration */
  3539. conf->driver = wpa_drivers[0];
  3540. if (conf->driver == NULL) {
  3541. wpa_printf(MSG_ERROR, "No driver wrappers registered!");
  3542. hostapd_config_free(conf);
  3543. fclose(f);
  3544. return NULL;
  3545. }
  3546. conf->last_bss = conf->bss[0];
  3547. while (fgets(buf, sizeof(buf), f)) {
  3548. struct hostapd_bss_config *bss;
  3549. bss = conf->last_bss;
  3550. line++;
  3551. if (buf[0] == '#')
  3552. continue;
  3553. pos = buf;
  3554. while (*pos != '\0') {
  3555. if (*pos == '\n') {
  3556. *pos = '\0';
  3557. break;
  3558. }
  3559. pos++;
  3560. }
  3561. if (buf[0] == '\0')
  3562. continue;
  3563. pos = os_strchr(buf, '=');
  3564. if (pos == NULL) {
  3565. wpa_printf(MSG_ERROR, "Line %d: invalid line '%s'",
  3566. line, buf);
  3567. errors++;
  3568. continue;
  3569. }
  3570. *pos = '\0';
  3571. pos++;
  3572. errors += hostapd_config_fill(conf, bss, buf, pos, line);
  3573. }
  3574. fclose(f);
  3575. for (i = 0; i < conf->num_bss; i++)
  3576. hostapd_set_security_params(conf->bss[i], 1);
  3577. if (hostapd_config_check(conf, 1))
  3578. errors++;
  3579. #ifndef WPA_IGNORE_CONFIG_ERRORS
  3580. if (errors) {
  3581. wpa_printf(MSG_ERROR, "%d errors found in configuration file "
  3582. "'%s'", errors, fname);
  3583. hostapd_config_free(conf);
  3584. conf = NULL;
  3585. }
  3586. #endif /* WPA_IGNORE_CONFIG_ERRORS */
  3587. return conf;
  3588. }
  3589. int hostapd_set_iface(struct hostapd_config *conf,
  3590. struct hostapd_bss_config *bss, const char *field,
  3591. char *value)
  3592. {
  3593. int errors;
  3594. size_t i;
  3595. errors = hostapd_config_fill(conf, bss, field, value, 0);
  3596. if (errors) {
  3597. wpa_printf(MSG_INFO, "Failed to set configuration field '%s' "
  3598. "to value '%s'", field, value);
  3599. return -1;
  3600. }
  3601. for (i = 0; i < conf->num_bss; i++)
  3602. hostapd_set_security_params(conf->bss[i], 0);
  3603. if (hostapd_config_check(conf, 0)) {
  3604. wpa_printf(MSG_ERROR, "Configuration check failed");
  3605. return -1;
  3606. }
  3607. return 0;
  3608. }