config_file.c 87 KB

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