config_file.c 81 KB

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