config_file.c 105 KB

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