config_file.c 103 KB

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