config_file.c 88 KB

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