config_file.c 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664
  1. /*
  2. * hostapd / Configuration file parser
  3. * Copyright (c) 2003-2012, 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. extern struct wpa_driver_ops *wpa_drivers[];
  22. #ifndef CONFIG_NO_VLAN
  23. static int hostapd_config_read_vlan_file(struct hostapd_bss_config *bss,
  24. const char *fname)
  25. {
  26. FILE *f;
  27. char buf[128], *pos, *pos2;
  28. int line = 0, vlan_id;
  29. struct hostapd_vlan *vlan;
  30. f = fopen(fname, "r");
  31. if (!f) {
  32. wpa_printf(MSG_ERROR, "VLAN file '%s' not readable.", fname);
  33. return -1;
  34. }
  35. while (fgets(buf, sizeof(buf), f)) {
  36. line++;
  37. if (buf[0] == '#')
  38. continue;
  39. pos = buf;
  40. while (*pos != '\0') {
  41. if (*pos == '\n') {
  42. *pos = '\0';
  43. break;
  44. }
  45. pos++;
  46. }
  47. if (buf[0] == '\0')
  48. continue;
  49. if (buf[0] == '*') {
  50. vlan_id = VLAN_ID_WILDCARD;
  51. pos = buf + 1;
  52. } else {
  53. vlan_id = strtol(buf, &pos, 10);
  54. if (buf == pos || vlan_id < 1 ||
  55. vlan_id > MAX_VLAN_ID) {
  56. wpa_printf(MSG_ERROR, "Invalid VLAN ID at "
  57. "line %d in '%s'", line, fname);
  58. fclose(f);
  59. return -1;
  60. }
  61. }
  62. while (*pos == ' ' || *pos == '\t')
  63. pos++;
  64. pos2 = pos;
  65. while (*pos2 != ' ' && *pos2 != '\t' && *pos2 != '\0')
  66. pos2++;
  67. *pos2 = '\0';
  68. if (*pos == '\0' || os_strlen(pos) > IFNAMSIZ) {
  69. wpa_printf(MSG_ERROR, "Invalid VLAN ifname at line %d "
  70. "in '%s'", line, fname);
  71. fclose(f);
  72. return -1;
  73. }
  74. vlan = os_malloc(sizeof(*vlan));
  75. if (vlan == NULL) {
  76. wpa_printf(MSG_ERROR, "Out of memory while reading "
  77. "VLAN interfaces from '%s'", fname);
  78. fclose(f);
  79. return -1;
  80. }
  81. os_memset(vlan, 0, sizeof(*vlan));
  82. vlan->vlan_id = vlan_id;
  83. os_strlcpy(vlan->ifname, pos, sizeof(vlan->ifname));
  84. if (bss->vlan_tail)
  85. bss->vlan_tail->next = vlan;
  86. else
  87. bss->vlan = vlan;
  88. bss->vlan_tail = vlan;
  89. }
  90. fclose(f);
  91. return 0;
  92. }
  93. #endif /* CONFIG_NO_VLAN */
  94. static int hostapd_acl_comp(const void *a, const void *b)
  95. {
  96. const struct mac_acl_entry *aa = a;
  97. const struct mac_acl_entry *bb = b;
  98. return os_memcmp(aa->addr, bb->addr, sizeof(macaddr));
  99. }
  100. static int hostapd_config_read_maclist(const char *fname,
  101. struct mac_acl_entry **acl, int *num)
  102. {
  103. FILE *f;
  104. char buf[128], *pos;
  105. int line = 0;
  106. u8 addr[ETH_ALEN];
  107. struct mac_acl_entry *newacl;
  108. int vlan_id;
  109. if (!fname)
  110. return 0;
  111. f = fopen(fname, "r");
  112. if (!f) {
  113. wpa_printf(MSG_ERROR, "MAC list file '%s' not found.", fname);
  114. return -1;
  115. }
  116. while (fgets(buf, sizeof(buf), f)) {
  117. line++;
  118. if (buf[0] == '#')
  119. continue;
  120. pos = buf;
  121. while (*pos != '\0') {
  122. if (*pos == '\n') {
  123. *pos = '\0';
  124. break;
  125. }
  126. pos++;
  127. }
  128. if (buf[0] == '\0')
  129. continue;
  130. if (hwaddr_aton(buf, addr)) {
  131. wpa_printf(MSG_ERROR, "Invalid MAC address '%s' at "
  132. "line %d in '%s'", buf, line, fname);
  133. fclose(f);
  134. return -1;
  135. }
  136. vlan_id = 0;
  137. pos = buf;
  138. while (*pos != '\0' && *pos != ' ' && *pos != '\t')
  139. pos++;
  140. while (*pos == ' ' || *pos == '\t')
  141. pos++;
  142. if (*pos != '\0')
  143. vlan_id = atoi(pos);
  144. newacl = os_realloc_array(*acl, *num + 1, sizeof(**acl));
  145. if (newacl == NULL) {
  146. wpa_printf(MSG_ERROR, "MAC list reallocation failed");
  147. fclose(f);
  148. return -1;
  149. }
  150. *acl = newacl;
  151. os_memcpy((*acl)[*num].addr, addr, ETH_ALEN);
  152. (*acl)[*num].vlan_id = vlan_id;
  153. (*num)++;
  154. }
  155. fclose(f);
  156. qsort(*acl, *num, sizeof(**acl), hostapd_acl_comp);
  157. return 0;
  158. }
  159. #ifdef EAP_SERVER
  160. static int hostapd_config_read_eap_user(const char *fname,
  161. struct hostapd_bss_config *conf)
  162. {
  163. FILE *f;
  164. char buf[512], *pos, *start, *pos2;
  165. int line = 0, ret = 0, num_methods;
  166. struct hostapd_eap_user *user, *tail = NULL;
  167. if (!fname)
  168. return 0;
  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. size_t len;
  496. secret = os_strchr(val, ' ');
  497. if (secret == NULL)
  498. return -1;
  499. secret++;
  500. len = os_strlen(secret);
  501. if (hostapd_parse_ip_addr(val, &bss->radius_das_client_addr))
  502. return -1;
  503. os_free(bss->radius_das_shared_secret);
  504. bss->radius_das_shared_secret = os_malloc(len);
  505. if (bss->radius_das_shared_secret == NULL)
  506. return -1;
  507. os_memcpy(bss->radius_das_shared_secret, secret, len);
  508. bss->radius_das_shared_secret_len = len;
  509. return 0;
  510. }
  511. #endif /* CONFIG_NO_RADIUS */
  512. static int hostapd_config_parse_key_mgmt(int line, const char *value)
  513. {
  514. int val = 0, last;
  515. char *start, *end, *buf;
  516. buf = os_strdup(value);
  517. if (buf == NULL)
  518. return -1;
  519. start = buf;
  520. while (*start != '\0') {
  521. while (*start == ' ' || *start == '\t')
  522. start++;
  523. if (*start == '\0')
  524. break;
  525. end = start;
  526. while (*end != ' ' && *end != '\t' && *end != '\0')
  527. end++;
  528. last = *end == '\0';
  529. *end = '\0';
  530. if (os_strcmp(start, "WPA-PSK") == 0)
  531. val |= WPA_KEY_MGMT_PSK;
  532. else if (os_strcmp(start, "WPA-EAP") == 0)
  533. val |= WPA_KEY_MGMT_IEEE8021X;
  534. #ifdef CONFIG_IEEE80211R
  535. else if (os_strcmp(start, "FT-PSK") == 0)
  536. val |= WPA_KEY_MGMT_FT_PSK;
  537. else if (os_strcmp(start, "FT-EAP") == 0)
  538. val |= WPA_KEY_MGMT_FT_IEEE8021X;
  539. #endif /* CONFIG_IEEE80211R */
  540. #ifdef CONFIG_IEEE80211W
  541. else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
  542. val |= WPA_KEY_MGMT_PSK_SHA256;
  543. else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
  544. val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
  545. #endif /* CONFIG_IEEE80211W */
  546. else {
  547. wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
  548. line, start);
  549. os_free(buf);
  550. return -1;
  551. }
  552. if (last)
  553. break;
  554. start = end + 1;
  555. }
  556. os_free(buf);
  557. if (val == 0) {
  558. wpa_printf(MSG_ERROR, "Line %d: no key_mgmt values "
  559. "configured.", line);
  560. return -1;
  561. }
  562. return val;
  563. }
  564. static int hostapd_config_parse_cipher(int line, const char *value)
  565. {
  566. int val = 0, last;
  567. char *start, *end, *buf;
  568. buf = os_strdup(value);
  569. if (buf == NULL)
  570. return -1;
  571. start = buf;
  572. while (*start != '\0') {
  573. while (*start == ' ' || *start == '\t')
  574. start++;
  575. if (*start == '\0')
  576. break;
  577. end = start;
  578. while (*end != ' ' && *end != '\t' && *end != '\0')
  579. end++;
  580. last = *end == '\0';
  581. *end = '\0';
  582. if (os_strcmp(start, "CCMP") == 0)
  583. val |= WPA_CIPHER_CCMP;
  584. else if (os_strcmp(start, "TKIP") == 0)
  585. val |= WPA_CIPHER_TKIP;
  586. else if (os_strcmp(start, "WEP104") == 0)
  587. val |= WPA_CIPHER_WEP104;
  588. else if (os_strcmp(start, "WEP40") == 0)
  589. val |= WPA_CIPHER_WEP40;
  590. else if (os_strcmp(start, "NONE") == 0)
  591. val |= WPA_CIPHER_NONE;
  592. else {
  593. wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
  594. line, start);
  595. os_free(buf);
  596. return -1;
  597. }
  598. if (last)
  599. break;
  600. start = end + 1;
  601. }
  602. os_free(buf);
  603. if (val == 0) {
  604. wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
  605. line);
  606. return -1;
  607. }
  608. return val;
  609. }
  610. static int hostapd_config_read_wep(struct hostapd_wep_keys *wep, int keyidx,
  611. char *val)
  612. {
  613. size_t len = os_strlen(val);
  614. if (keyidx < 0 || keyidx > 3 || wep->key[keyidx] != NULL)
  615. return -1;
  616. if (val[0] == '"') {
  617. if (len < 2 || val[len - 1] != '"')
  618. return -1;
  619. len -= 2;
  620. wep->key[keyidx] = os_malloc(len);
  621. if (wep->key[keyidx] == NULL)
  622. return -1;
  623. os_memcpy(wep->key[keyidx], val + 1, len);
  624. wep->len[keyidx] = len;
  625. } else {
  626. if (len & 1)
  627. return -1;
  628. len /= 2;
  629. wep->key[keyidx] = os_malloc(len);
  630. if (wep->key[keyidx] == NULL)
  631. return -1;
  632. wep->len[keyidx] = len;
  633. if (hexstr2bin(val, wep->key[keyidx], len) < 0)
  634. return -1;
  635. }
  636. wep->keys_set++;
  637. return 0;
  638. }
  639. static int hostapd_parse_rates(int **rate_list, char *val)
  640. {
  641. int *list;
  642. int count;
  643. char *pos, *end;
  644. os_free(*rate_list);
  645. *rate_list = NULL;
  646. pos = val;
  647. count = 0;
  648. while (*pos != '\0') {
  649. if (*pos == ' ')
  650. count++;
  651. pos++;
  652. }
  653. list = os_malloc(sizeof(int) * (count + 2));
  654. if (list == NULL)
  655. return -1;
  656. pos = val;
  657. count = 0;
  658. while (*pos != '\0') {
  659. end = os_strchr(pos, ' ');
  660. if (end)
  661. *end = '\0';
  662. list[count++] = atoi(pos);
  663. if (!end)
  664. break;
  665. pos = end + 1;
  666. }
  667. list[count] = -1;
  668. *rate_list = list;
  669. return 0;
  670. }
  671. static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname)
  672. {
  673. struct hostapd_bss_config *bss;
  674. if (*ifname == '\0')
  675. return -1;
  676. bss = os_realloc_array(conf->bss, conf->num_bss + 1,
  677. sizeof(struct hostapd_bss_config));
  678. if (bss == NULL) {
  679. wpa_printf(MSG_ERROR, "Failed to allocate memory for "
  680. "multi-BSS entry");
  681. return -1;
  682. }
  683. conf->bss = bss;
  684. bss = &(conf->bss[conf->num_bss]);
  685. os_memset(bss, 0, sizeof(*bss));
  686. bss->radius = os_zalloc(sizeof(*bss->radius));
  687. if (bss->radius == NULL) {
  688. wpa_printf(MSG_ERROR, "Failed to allocate memory for "
  689. "multi-BSS RADIUS data");
  690. return -1;
  691. }
  692. conf->num_bss++;
  693. conf->last_bss = bss;
  694. hostapd_config_defaults_bss(bss);
  695. os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
  696. os_memcpy(bss->ssid.vlan, bss->iface, IFNAMSIZ + 1);
  697. return 0;
  698. }
  699. /* convert floats with one decimal place to value*10 int, i.e.,
  700. * "1.5" will return 15 */
  701. static int hostapd_config_read_int10(const char *value)
  702. {
  703. int i, d;
  704. char *pos;
  705. i = atoi(value);
  706. pos = os_strchr(value, '.');
  707. d = 0;
  708. if (pos) {
  709. pos++;
  710. if (*pos >= '0' && *pos <= '9')
  711. d = *pos - '0';
  712. }
  713. return i * 10 + d;
  714. }
  715. static int valid_cw(int cw)
  716. {
  717. return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 ||
  718. cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023);
  719. }
  720. enum {
  721. IEEE80211_TX_QUEUE_DATA0 = 0, /* used for EDCA AC_VO data */
  722. IEEE80211_TX_QUEUE_DATA1 = 1, /* used for EDCA AC_VI data */
  723. IEEE80211_TX_QUEUE_DATA2 = 2, /* used for EDCA AC_BE data */
  724. IEEE80211_TX_QUEUE_DATA3 = 3 /* used for EDCA AC_BK data */
  725. };
  726. static int hostapd_config_tx_queue(struct hostapd_config *conf, char *name,
  727. char *val)
  728. {
  729. int num;
  730. char *pos;
  731. struct hostapd_tx_queue_params *queue;
  732. /* skip 'tx_queue_' prefix */
  733. pos = name + 9;
  734. if (os_strncmp(pos, "data", 4) == 0 &&
  735. pos[4] >= '0' && pos[4] <= '9' && pos[5] == '_') {
  736. num = pos[4] - '0';
  737. pos += 6;
  738. } else if (os_strncmp(pos, "after_beacon_", 13) == 0 ||
  739. os_strncmp(pos, "beacon_", 7) == 0) {
  740. wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
  741. return 0;
  742. } else {
  743. wpa_printf(MSG_ERROR, "Unknown tx_queue name '%s'", pos);
  744. return -1;
  745. }
  746. if (num >= NUM_TX_QUEUES) {
  747. /* for backwards compatibility, do not trigger failure */
  748. wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
  749. return 0;
  750. }
  751. queue = &conf->tx_queue[num];
  752. if (os_strcmp(pos, "aifs") == 0) {
  753. queue->aifs = atoi(val);
  754. if (queue->aifs < 0 || queue->aifs > 255) {
  755. wpa_printf(MSG_ERROR, "Invalid AIFS value %d",
  756. queue->aifs);
  757. return -1;
  758. }
  759. } else if (os_strcmp(pos, "cwmin") == 0) {
  760. queue->cwmin = atoi(val);
  761. if (!valid_cw(queue->cwmin)) {
  762. wpa_printf(MSG_ERROR, "Invalid cwMin value %d",
  763. queue->cwmin);
  764. return -1;
  765. }
  766. } else if (os_strcmp(pos, "cwmax") == 0) {
  767. queue->cwmax = atoi(val);
  768. if (!valid_cw(queue->cwmax)) {
  769. wpa_printf(MSG_ERROR, "Invalid cwMax value %d",
  770. queue->cwmax);
  771. return -1;
  772. }
  773. } else if (os_strcmp(pos, "burst") == 0) {
  774. queue->burst = hostapd_config_read_int10(val);
  775. } else {
  776. wpa_printf(MSG_ERROR, "Unknown tx_queue field '%s'", pos);
  777. return -1;
  778. }
  779. return 0;
  780. }
  781. #ifdef CONFIG_IEEE80211R
  782. static int add_r0kh(struct hostapd_bss_config *bss, char *value)
  783. {
  784. struct ft_remote_r0kh *r0kh;
  785. char *pos, *next;
  786. r0kh = os_zalloc(sizeof(*r0kh));
  787. if (r0kh == NULL)
  788. return -1;
  789. /* 02:01:02:03:04:05 a.example.com 000102030405060708090a0b0c0d0e0f */
  790. pos = value;
  791. next = os_strchr(pos, ' ');
  792. if (next)
  793. *next++ = '\0';
  794. if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
  795. wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
  796. os_free(r0kh);
  797. return -1;
  798. }
  799. pos = next;
  800. next = os_strchr(pos, ' ');
  801. if (next)
  802. *next++ = '\0';
  803. if (next == NULL || next - pos > FT_R0KH_ID_MAX_LEN) {
  804. wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
  805. os_free(r0kh);
  806. return -1;
  807. }
  808. r0kh->id_len = next - pos - 1;
  809. os_memcpy(r0kh->id, pos, r0kh->id_len);
  810. pos = next;
  811. if (hexstr2bin(pos, r0kh->key, sizeof(r0kh->key))) {
  812. wpa_printf(MSG_ERROR, "Invalid R0KH key: '%s'", pos);
  813. os_free(r0kh);
  814. return -1;
  815. }
  816. r0kh->next = bss->r0kh_list;
  817. bss->r0kh_list = r0kh;
  818. return 0;
  819. }
  820. static int add_r1kh(struct hostapd_bss_config *bss, char *value)
  821. {
  822. struct ft_remote_r1kh *r1kh;
  823. char *pos, *next;
  824. r1kh = os_zalloc(sizeof(*r1kh));
  825. if (r1kh == NULL)
  826. return -1;
  827. /* 02:01:02:03:04:05 02:01:02:03:04:05
  828. * 000102030405060708090a0b0c0d0e0f */
  829. pos = value;
  830. next = os_strchr(pos, ' ');
  831. if (next)
  832. *next++ = '\0';
  833. if (next == NULL || hwaddr_aton(pos, r1kh->addr)) {
  834. wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos);
  835. os_free(r1kh);
  836. return -1;
  837. }
  838. pos = next;
  839. next = os_strchr(pos, ' ');
  840. if (next)
  841. *next++ = '\0';
  842. if (next == NULL || hwaddr_aton(pos, r1kh->id)) {
  843. wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos);
  844. os_free(r1kh);
  845. return -1;
  846. }
  847. pos = next;
  848. if (hexstr2bin(pos, r1kh->key, sizeof(r1kh->key))) {
  849. wpa_printf(MSG_ERROR, "Invalid R1KH key: '%s'", pos);
  850. os_free(r1kh);
  851. return -1;
  852. }
  853. r1kh->next = bss->r1kh_list;
  854. bss->r1kh_list = r1kh;
  855. return 0;
  856. }
  857. #endif /* CONFIG_IEEE80211R */
  858. #ifdef CONFIG_IEEE80211N
  859. static int hostapd_config_ht_capab(struct hostapd_config *conf,
  860. const char *capab)
  861. {
  862. if (os_strstr(capab, "[LDPC]"))
  863. conf->ht_capab |= HT_CAP_INFO_LDPC_CODING_CAP;
  864. if (os_strstr(capab, "[HT40-]")) {
  865. conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
  866. conf->secondary_channel = -1;
  867. }
  868. if (os_strstr(capab, "[HT40+]")) {
  869. conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
  870. conf->secondary_channel = 1;
  871. }
  872. if (os_strstr(capab, "[SMPS-STATIC]")) {
  873. conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
  874. conf->ht_capab |= HT_CAP_INFO_SMPS_STATIC;
  875. }
  876. if (os_strstr(capab, "[SMPS-DYNAMIC]")) {
  877. conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
  878. conf->ht_capab |= HT_CAP_INFO_SMPS_DYNAMIC;
  879. }
  880. if (os_strstr(capab, "[GF]"))
  881. conf->ht_capab |= HT_CAP_INFO_GREEN_FIELD;
  882. if (os_strstr(capab, "[SHORT-GI-20]"))
  883. conf->ht_capab |= HT_CAP_INFO_SHORT_GI20MHZ;
  884. if (os_strstr(capab, "[SHORT-GI-40]"))
  885. conf->ht_capab |= HT_CAP_INFO_SHORT_GI40MHZ;
  886. if (os_strstr(capab, "[TX-STBC]"))
  887. conf->ht_capab |= HT_CAP_INFO_TX_STBC;
  888. if (os_strstr(capab, "[RX-STBC1]")) {
  889. conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
  890. conf->ht_capab |= HT_CAP_INFO_RX_STBC_1;
  891. }
  892. if (os_strstr(capab, "[RX-STBC12]")) {
  893. conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
  894. conf->ht_capab |= HT_CAP_INFO_RX_STBC_12;
  895. }
  896. if (os_strstr(capab, "[RX-STBC123]")) {
  897. conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
  898. conf->ht_capab |= HT_CAP_INFO_RX_STBC_123;
  899. }
  900. if (os_strstr(capab, "[DELAYED-BA]"))
  901. conf->ht_capab |= HT_CAP_INFO_DELAYED_BA;
  902. if (os_strstr(capab, "[MAX-AMSDU-7935]"))
  903. conf->ht_capab |= HT_CAP_INFO_MAX_AMSDU_SIZE;
  904. if (os_strstr(capab, "[DSSS_CCK-40]"))
  905. conf->ht_capab |= HT_CAP_INFO_DSSS_CCK40MHZ;
  906. if (os_strstr(capab, "[PSMP]"))
  907. conf->ht_capab |= HT_CAP_INFO_PSMP_SUPP;
  908. if (os_strstr(capab, "[LSIG-TXOP-PROT]"))
  909. conf->ht_capab |= HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT;
  910. return 0;
  911. }
  912. #endif /* CONFIG_IEEE80211N */
  913. #ifdef CONFIG_IEEE80211AC
  914. static int hostapd_config_vht_capab(struct hostapd_config *conf,
  915. const char *capab)
  916. {
  917. if (os_strstr(capab, "[MAX-MPDU-7991]"))
  918. conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_7991;
  919. if (os_strstr(capab, "[MAX-MPDU-11454]"))
  920. conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_11454;
  921. if (os_strstr(capab, "[VHT160]"))
  922. conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
  923. if (os_strstr(capab, "[VHT160-80PLUS80]"))
  924. conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
  925. if (os_strstr(capab, "[VHT160-80PLUS80]"))
  926. conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
  927. if (os_strstr(capab, "[RXLDPC]"))
  928. conf->vht_capab |= VHT_CAP_RXLDPC;
  929. if (os_strstr(capab, "[SHORT-GI-80]"))
  930. conf->vht_capab |= VHT_CAP_SHORT_GI_80;
  931. if (os_strstr(capab, "[SHORT-GI-160]"))
  932. conf->vht_capab |= VHT_CAP_SHORT_GI_160;
  933. if (os_strstr(capab, "[TX-STBC-2BY1]"))
  934. conf->vht_capab |= VHT_CAP_TXSTBC;
  935. if (os_strstr(capab, "[RX-STBC-1]"))
  936. conf->vht_capab |= VHT_CAP_RXSTBC_1;
  937. if (os_strstr(capab, "[RX-STBC-12]"))
  938. conf->vht_capab |= VHT_CAP_RXSTBC_2;
  939. if (os_strstr(capab, "[RX-STBC-123]"))
  940. conf->vht_capab |= VHT_CAP_RXSTBC_3;
  941. if (os_strstr(capab, "[RX-STBC-1234]"))
  942. conf->vht_capab |= VHT_CAP_RXSTBC_4;
  943. if (os_strstr(capab, "[SU-BEAMFORMER]"))
  944. conf->vht_capab |= VHT_CAP_MU_BEAMFORMER_CAPABLE;
  945. if (os_strstr(capab, "[SU-BEAMFORMEE]"))
  946. conf->vht_capab |= VHT_CAP_MU_BEAMFORMEE_CAPABLE;
  947. if (os_strstr(capab, "[BF-ANTENNA-2]") &&
  948. (conf->vht_capab & VHT_CAP_MU_BEAMFORMER_CAPABLE))
  949. conf->vht_capab |= VHT_CAP_BEAMFORMER_ANTENNAS_MAX;
  950. if (os_strstr(capab, "[SOUNDING-DIMENSION-2]") &&
  951. (conf->vht_capab & VHT_CAP_MU_BEAMFORMER_CAPABLE))
  952. conf->vht_capab |= VHT_CAP_SOUNDING_DIMENTION_MAX;
  953. if (os_strstr(capab, "[MU-BEAMFORMER]"))
  954. conf->vht_capab |= VHT_CAP_MU_BEAMFORMER_CAPABLE;
  955. if (os_strstr(capab, "[MU-BEAMFORMEE]"))
  956. conf->vht_capab |= VHT_CAP_MU_BEAMFORMEE_CAPABLE;
  957. if (os_strstr(capab, "[VHT-TXOP-PS]"))
  958. conf->vht_capab |= VHT_CAP_VHT_TXOP_PS;
  959. if (os_strstr(capab, "[HTC-VHT]"))
  960. conf->vht_capab |= VHT_CAP_HTC_VHT;
  961. if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP0]"))
  962. conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT;
  963. if (os_strstr(capab, "[VHT-LINK-ADAPT2]") &&
  964. (conf->vht_capab & VHT_CAP_HTC_VHT))
  965. conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_UNSOL_MFB;
  966. if (os_strstr(capab, "[VHT-LINK-ADAPT3]") &&
  967. (conf->vht_capab & VHT_CAP_HTC_VHT))
  968. conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB;
  969. if (os_strstr(capab, "[RX-ANTENNA-PATTERN]"))
  970. conf->vht_capab |= VHT_CAP_RX_ANTENNA_PATTERN;
  971. if (os_strstr(capab, "[TX-ANTENNA-PATTERN]"))
  972. conf->vht_capab |= VHT_CAP_TX_ANTENNA_PATTERN;
  973. return 0;
  974. }
  975. #endif /* CONFIG_IEEE80211AC */
  976. static int hostapd_config_check_bss(struct hostapd_bss_config *bss,
  977. struct hostapd_config *conf)
  978. {
  979. if (bss->ieee802_1x && !bss->eap_server &&
  980. !bss->radius->auth_servers) {
  981. wpa_printf(MSG_ERROR, "Invalid IEEE 802.1X configuration (no "
  982. "EAP authenticator configured).");
  983. return -1;
  984. }
  985. if (bss->wpa && bss->wpa_psk_radius != PSK_RADIUS_IGNORED &&
  986. bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH) {
  987. wpa_printf(MSG_ERROR, "WPA-PSK using RADIUS enabled, but no "
  988. "RADIUS checking (macaddr_acl=2) enabled.");
  989. return -1;
  990. }
  991. if (bss->wpa && (bss->wpa_key_mgmt & WPA_KEY_MGMT_PSK) &&
  992. bss->ssid.wpa_psk == NULL && bss->ssid.wpa_passphrase == NULL &&
  993. bss->ssid.wpa_psk_file == NULL &&
  994. (bss->wpa_psk_radius != PSK_RADIUS_REQUIRED ||
  995. bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH)) {
  996. wpa_printf(MSG_ERROR, "WPA-PSK enabled, but PSK or passphrase "
  997. "is not configured.");
  998. return -1;
  999. }
  1000. if (hostapd_mac_comp_empty(bss->bssid) != 0) {
  1001. size_t i;
  1002. for (i = 0; i < conf->num_bss; i++) {
  1003. if ((&conf->bss[i] != bss) &&
  1004. (hostapd_mac_comp(conf->bss[i].bssid,
  1005. bss->bssid) == 0)) {
  1006. wpa_printf(MSG_ERROR, "Duplicate BSSID " MACSTR
  1007. " on interface '%s' and '%s'.",
  1008. MAC2STR(bss->bssid),
  1009. conf->bss[i].iface, bss->iface);
  1010. return -1;
  1011. }
  1012. }
  1013. }
  1014. #ifdef CONFIG_IEEE80211R
  1015. if (wpa_key_mgmt_ft(bss->wpa_key_mgmt) &&
  1016. (bss->nas_identifier == NULL ||
  1017. os_strlen(bss->nas_identifier) < 1 ||
  1018. os_strlen(bss->nas_identifier) > FT_R0KH_ID_MAX_LEN)) {
  1019. wpa_printf(MSG_ERROR, "FT (IEEE 802.11r) requires "
  1020. "nas_identifier to be configured as a 1..48 octet "
  1021. "string");
  1022. return -1;
  1023. }
  1024. #endif /* CONFIG_IEEE80211R */
  1025. #ifdef CONFIG_IEEE80211N
  1026. if (conf->ieee80211n && conf->hw_mode == HOSTAPD_MODE_IEEE80211B) {
  1027. bss->disable_11n = 1;
  1028. wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) in 11b mode is not "
  1029. "allowed, disabling HT capabilites");
  1030. }
  1031. if (conf->ieee80211n &&
  1032. bss->ssid.security_policy == SECURITY_STATIC_WEP) {
  1033. bss->disable_11n = 1;
  1034. wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) with WEP is not "
  1035. "allowed, disabling HT capabilities");
  1036. }
  1037. if (conf->ieee80211n && bss->wpa &&
  1038. !(bss->wpa_pairwise & WPA_CIPHER_CCMP) &&
  1039. !(bss->rsn_pairwise & WPA_CIPHER_CCMP)) {
  1040. bss->disable_11n = 1;
  1041. wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) with WPA/WPA2 "
  1042. "requires CCMP to be enabled, disabling HT "
  1043. "capabilities");
  1044. }
  1045. #endif /* CONFIG_IEEE80211N */
  1046. #ifdef CONFIG_WPS2
  1047. if (bss->wps_state && bss->ignore_broadcast_ssid) {
  1048. wpa_printf(MSG_INFO, "WPS: ignore_broadcast_ssid "
  1049. "configuration forced WPS to be disabled");
  1050. bss->wps_state = 0;
  1051. }
  1052. if (bss->wps_state && bss->ssid.wep.keys_set && bss->wpa == 0) {
  1053. wpa_printf(MSG_INFO, "WPS: WEP configuration forced WPS to be "
  1054. "disabled");
  1055. bss->wps_state = 0;
  1056. }
  1057. #endif /* CONFIG_WPS2 */
  1058. return 0;
  1059. }
  1060. static int hostapd_config_check(struct hostapd_config *conf)
  1061. {
  1062. size_t i;
  1063. if (conf->ieee80211d && (!conf->country[0] || !conf->country[1])) {
  1064. wpa_printf(MSG_ERROR, "Cannot enable IEEE 802.11d without "
  1065. "setting the country_code");
  1066. return -1;
  1067. }
  1068. for (i = 0; i < conf->num_bss; i++) {
  1069. if (hostapd_config_check_bss(&conf->bss[i], conf))
  1070. return -1;
  1071. }
  1072. return 0;
  1073. }
  1074. #ifdef CONFIG_INTERWORKING
  1075. static int parse_roaming_consortium(struct hostapd_bss_config *bss, char *pos,
  1076. int line)
  1077. {
  1078. size_t len = os_strlen(pos);
  1079. u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
  1080. struct hostapd_roaming_consortium *rc;
  1081. if ((len & 1) || len < 2 * 3 || len / 2 > MAX_ROAMING_CONSORTIUM_LEN ||
  1082. hexstr2bin(pos, oi, len / 2)) {
  1083. wpa_printf(MSG_ERROR, "Line %d: invalid roaming_consortium "
  1084. "'%s'", line, pos);
  1085. return -1;
  1086. }
  1087. len /= 2;
  1088. rc = os_realloc_array(bss->roaming_consortium,
  1089. bss->roaming_consortium_count + 1,
  1090. sizeof(struct hostapd_roaming_consortium));
  1091. if (rc == NULL)
  1092. return -1;
  1093. os_memcpy(rc[bss->roaming_consortium_count].oi, oi, len);
  1094. rc[bss->roaming_consortium_count].len = len;
  1095. bss->roaming_consortium = rc;
  1096. bss->roaming_consortium_count++;
  1097. return 0;
  1098. }
  1099. static int parse_venue_name(struct hostapd_bss_config *bss, char *pos,
  1100. int line)
  1101. {
  1102. char *sep;
  1103. size_t clen, nlen;
  1104. struct hostapd_venue_name *vn;
  1105. sep = os_strchr(pos, ':');
  1106. if (sep == NULL)
  1107. goto fail;
  1108. *sep++ = '\0';
  1109. clen = os_strlen(pos);
  1110. if (clen < 2)
  1111. goto fail;
  1112. nlen = os_strlen(sep);
  1113. if (nlen > 252)
  1114. goto fail;
  1115. vn = os_realloc_array(bss->venue_name, bss->venue_name_count + 1,
  1116. sizeof(struct hostapd_venue_name));
  1117. if (vn == NULL)
  1118. return -1;
  1119. bss->venue_name = vn;
  1120. vn = &bss->venue_name[bss->venue_name_count];
  1121. bss->venue_name_count++;
  1122. os_memset(vn->lang, 0, sizeof(vn->lang));
  1123. os_memcpy(vn->lang, pos, clen);
  1124. vn->name_len = nlen;
  1125. os_memcpy(vn->name, sep, nlen);
  1126. return 0;
  1127. fail:
  1128. wpa_printf(MSG_ERROR, "Line %d: Invalid venue_name '%s'",
  1129. line, pos);
  1130. return -1;
  1131. }
  1132. #endif /* CONFIG_INTERWORKING */
  1133. #ifdef CONFIG_WPS_NFC
  1134. static struct wpabuf * hostapd_parse_bin(const char *buf)
  1135. {
  1136. size_t len;
  1137. struct wpabuf *ret;
  1138. len = os_strlen(buf);
  1139. if (len & 0x01)
  1140. return NULL;
  1141. len /= 2;
  1142. ret = wpabuf_alloc(len);
  1143. if (ret == NULL)
  1144. return NULL;
  1145. if (hexstr2bin(buf, wpabuf_put(ret, len), len)) {
  1146. wpabuf_free(ret);
  1147. return NULL;
  1148. }
  1149. return ret;
  1150. }
  1151. #endif /* CONFIG_WPS_NFC */
  1152. static int hostapd_config_fill(struct hostapd_config *conf,
  1153. struct hostapd_bss_config *bss,
  1154. char *buf, char *pos, int line)
  1155. {
  1156. int errors = 0;
  1157. {
  1158. if (os_strcmp(buf, "interface") == 0) {
  1159. os_strlcpy(conf->bss[0].iface, pos,
  1160. sizeof(conf->bss[0].iface));
  1161. } else if (os_strcmp(buf, "bridge") == 0) {
  1162. os_strlcpy(bss->bridge, pos, sizeof(bss->bridge));
  1163. } else if (os_strcmp(buf, "wds_bridge") == 0) {
  1164. os_strlcpy(bss->wds_bridge, pos,
  1165. sizeof(bss->wds_bridge));
  1166. } else if (os_strcmp(buf, "driver") == 0) {
  1167. int j;
  1168. /* clear to get error below if setting is invalid */
  1169. conf->driver = NULL;
  1170. for (j = 0; wpa_drivers[j]; j++) {
  1171. if (os_strcmp(pos, wpa_drivers[j]->name) == 0)
  1172. {
  1173. conf->driver = wpa_drivers[j];
  1174. break;
  1175. }
  1176. }
  1177. if (conf->driver == NULL) {
  1178. wpa_printf(MSG_ERROR, "Line %d: invalid/"
  1179. "unknown driver '%s'", line, pos);
  1180. errors++;
  1181. }
  1182. } else if (os_strcmp(buf, "debug") == 0) {
  1183. wpa_printf(MSG_DEBUG, "Line %d: DEPRECATED: 'debug' "
  1184. "configuration variable is not used "
  1185. "anymore", line);
  1186. } else if (os_strcmp(buf, "logger_syslog_level") == 0) {
  1187. bss->logger_syslog_level = atoi(pos);
  1188. } else if (os_strcmp(buf, "logger_stdout_level") == 0) {
  1189. bss->logger_stdout_level = atoi(pos);
  1190. } else if (os_strcmp(buf, "logger_syslog") == 0) {
  1191. bss->logger_syslog = atoi(pos);
  1192. } else if (os_strcmp(buf, "logger_stdout") == 0) {
  1193. bss->logger_stdout = atoi(pos);
  1194. } else if (os_strcmp(buf, "dump_file") == 0) {
  1195. bss->dump_log_name = os_strdup(pos);
  1196. } else if (os_strcmp(buf, "ssid") == 0) {
  1197. bss->ssid.ssid_len = os_strlen(pos);
  1198. if (bss->ssid.ssid_len > HOSTAPD_MAX_SSID_LEN ||
  1199. bss->ssid.ssid_len < 1) {
  1200. wpa_printf(MSG_ERROR, "Line %d: invalid SSID "
  1201. "'%s'", line, pos);
  1202. errors++;
  1203. } else {
  1204. os_memcpy(bss->ssid.ssid, pos,
  1205. bss->ssid.ssid_len);
  1206. bss->ssid.ssid_set = 1;
  1207. }
  1208. } else if (os_strcmp(buf, "ssid2") == 0) {
  1209. size_t slen;
  1210. char *str = wpa_config_parse_string(pos, &slen);
  1211. if (str == NULL || slen < 1 ||
  1212. slen > HOSTAPD_MAX_SSID_LEN) {
  1213. wpa_printf(MSG_ERROR, "Line %d: invalid SSID "
  1214. "'%s'", line, pos);
  1215. errors++;
  1216. } else {
  1217. os_memcpy(bss->ssid.ssid, str, slen);
  1218. bss->ssid.ssid_len = slen;
  1219. bss->ssid.ssid_set = 1;
  1220. }
  1221. os_free(str);
  1222. } else if (os_strcmp(buf, "macaddr_acl") == 0) {
  1223. bss->macaddr_acl = atoi(pos);
  1224. if (bss->macaddr_acl != ACCEPT_UNLESS_DENIED &&
  1225. bss->macaddr_acl != DENY_UNLESS_ACCEPTED &&
  1226. bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH) {
  1227. wpa_printf(MSG_ERROR, "Line %d: unknown "
  1228. "macaddr_acl %d",
  1229. line, bss->macaddr_acl);
  1230. }
  1231. } else if (os_strcmp(buf, "accept_mac_file") == 0) {
  1232. if (hostapd_config_read_maclist(pos, &bss->accept_mac,
  1233. &bss->num_accept_mac))
  1234. {
  1235. wpa_printf(MSG_ERROR, "Line %d: Failed to "
  1236. "read accept_mac_file '%s'",
  1237. line, pos);
  1238. errors++;
  1239. }
  1240. } else if (os_strcmp(buf, "deny_mac_file") == 0) {
  1241. if (hostapd_config_read_maclist(pos, &bss->deny_mac,
  1242. &bss->num_deny_mac)) {
  1243. wpa_printf(MSG_ERROR, "Line %d: Failed to "
  1244. "read deny_mac_file '%s'",
  1245. line, pos);
  1246. errors++;
  1247. }
  1248. } else if (os_strcmp(buf, "wds_sta") == 0) {
  1249. bss->wds_sta = atoi(pos);
  1250. } else if (os_strcmp(buf, "ap_isolate") == 0) {
  1251. bss->isolate = atoi(pos);
  1252. } else if (os_strcmp(buf, "ap_max_inactivity") == 0) {
  1253. bss->ap_max_inactivity = atoi(pos);
  1254. } else if (os_strcmp(buf, "skip_inactivity_poll") == 0) {
  1255. bss->skip_inactivity_poll = atoi(pos);
  1256. } else if (os_strcmp(buf, "country_code") == 0) {
  1257. os_memcpy(conf->country, pos, 2);
  1258. /* FIX: make this configurable */
  1259. conf->country[2] = ' ';
  1260. } else if (os_strcmp(buf, "ieee80211d") == 0) {
  1261. conf->ieee80211d = atoi(pos);
  1262. } else if (os_strcmp(buf, "ieee8021x") == 0) {
  1263. bss->ieee802_1x = atoi(pos);
  1264. } else if (os_strcmp(buf, "eapol_version") == 0) {
  1265. bss->eapol_version = atoi(pos);
  1266. if (bss->eapol_version < 1 ||
  1267. bss->eapol_version > 2) {
  1268. wpa_printf(MSG_ERROR, "Line %d: invalid EAPOL "
  1269. "version (%d): '%s'.",
  1270. line, bss->eapol_version, pos);
  1271. errors++;
  1272. } else
  1273. wpa_printf(MSG_DEBUG, "eapol_version=%d",
  1274. bss->eapol_version);
  1275. #ifdef EAP_SERVER
  1276. } else if (os_strcmp(buf, "eap_authenticator") == 0) {
  1277. bss->eap_server = atoi(pos);
  1278. wpa_printf(MSG_ERROR, "Line %d: obsolete "
  1279. "eap_authenticator used; this has been "
  1280. "renamed to eap_server", line);
  1281. } else if (os_strcmp(buf, "eap_server") == 0) {
  1282. bss->eap_server = atoi(pos);
  1283. } else if (os_strcmp(buf, "eap_user_file") == 0) {
  1284. if (hostapd_config_read_eap_user(pos, bss))
  1285. errors++;
  1286. } else if (os_strcmp(buf, "ca_cert") == 0) {
  1287. os_free(bss->ca_cert);
  1288. bss->ca_cert = os_strdup(pos);
  1289. } else if (os_strcmp(buf, "server_cert") == 0) {
  1290. os_free(bss->server_cert);
  1291. bss->server_cert = os_strdup(pos);
  1292. } else if (os_strcmp(buf, "private_key") == 0) {
  1293. os_free(bss->private_key);
  1294. bss->private_key = os_strdup(pos);
  1295. } else if (os_strcmp(buf, "private_key_passwd") == 0) {
  1296. os_free(bss->private_key_passwd);
  1297. bss->private_key_passwd = os_strdup(pos);
  1298. } else if (os_strcmp(buf, "check_crl") == 0) {
  1299. bss->check_crl = atoi(pos);
  1300. } else if (os_strcmp(buf, "dh_file") == 0) {
  1301. os_free(bss->dh_file);
  1302. bss->dh_file = os_strdup(pos);
  1303. } else if (os_strcmp(buf, "fragment_size") == 0) {
  1304. bss->fragment_size = atoi(pos);
  1305. #ifdef EAP_SERVER_FAST
  1306. } else if (os_strcmp(buf, "pac_opaque_encr_key") == 0) {
  1307. os_free(bss->pac_opaque_encr_key);
  1308. bss->pac_opaque_encr_key = os_malloc(16);
  1309. if (bss->pac_opaque_encr_key == NULL) {
  1310. wpa_printf(MSG_ERROR, "Line %d: No memory for "
  1311. "pac_opaque_encr_key", line);
  1312. errors++;
  1313. } else if (hexstr2bin(pos, bss->pac_opaque_encr_key,
  1314. 16)) {
  1315. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  1316. "pac_opaque_encr_key", line);
  1317. errors++;
  1318. }
  1319. } else if (os_strcmp(buf, "eap_fast_a_id") == 0) {
  1320. size_t idlen = os_strlen(pos);
  1321. if (idlen & 1) {
  1322. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  1323. "eap_fast_a_id", line);
  1324. errors++;
  1325. } else {
  1326. os_free(bss->eap_fast_a_id);
  1327. bss->eap_fast_a_id = os_malloc(idlen / 2);
  1328. if (bss->eap_fast_a_id == NULL ||
  1329. hexstr2bin(pos, bss->eap_fast_a_id,
  1330. idlen / 2)) {
  1331. wpa_printf(MSG_ERROR, "Line %d: "
  1332. "Failed to parse "
  1333. "eap_fast_a_id", line);
  1334. errors++;
  1335. } else
  1336. bss->eap_fast_a_id_len = idlen / 2;
  1337. }
  1338. } else if (os_strcmp(buf, "eap_fast_a_id_info") == 0) {
  1339. os_free(bss->eap_fast_a_id_info);
  1340. bss->eap_fast_a_id_info = os_strdup(pos);
  1341. } else if (os_strcmp(buf, "eap_fast_prov") == 0) {
  1342. bss->eap_fast_prov = atoi(pos);
  1343. } else if (os_strcmp(buf, "pac_key_lifetime") == 0) {
  1344. bss->pac_key_lifetime = atoi(pos);
  1345. } else if (os_strcmp(buf, "pac_key_refresh_time") == 0) {
  1346. bss->pac_key_refresh_time = atoi(pos);
  1347. #endif /* EAP_SERVER_FAST */
  1348. #ifdef EAP_SERVER_SIM
  1349. } else if (os_strcmp(buf, "eap_sim_db") == 0) {
  1350. os_free(bss->eap_sim_db);
  1351. bss->eap_sim_db = os_strdup(pos);
  1352. } else if (os_strcmp(buf, "eap_sim_aka_result_ind") == 0) {
  1353. bss->eap_sim_aka_result_ind = atoi(pos);
  1354. #endif /* EAP_SERVER_SIM */
  1355. #ifdef EAP_SERVER_TNC
  1356. } else if (os_strcmp(buf, "tnc") == 0) {
  1357. bss->tnc = atoi(pos);
  1358. #endif /* EAP_SERVER_TNC */
  1359. #ifdef EAP_SERVER_PWD
  1360. } else if (os_strcmp(buf, "pwd_group") == 0) {
  1361. bss->pwd_group = atoi(pos);
  1362. #endif /* EAP_SERVER_PWD */
  1363. #endif /* EAP_SERVER */
  1364. } else if (os_strcmp(buf, "eap_message") == 0) {
  1365. char *term;
  1366. bss->eap_req_id_text = os_strdup(pos);
  1367. if (bss->eap_req_id_text == NULL) {
  1368. wpa_printf(MSG_ERROR, "Line %d: Failed to "
  1369. "allocate memory for "
  1370. "eap_req_id_text", line);
  1371. errors++;
  1372. return errors;
  1373. }
  1374. bss->eap_req_id_text_len =
  1375. os_strlen(bss->eap_req_id_text);
  1376. term = os_strstr(bss->eap_req_id_text, "\\0");
  1377. if (term) {
  1378. *term++ = '\0';
  1379. os_memmove(term, term + 1,
  1380. bss->eap_req_id_text_len -
  1381. (term - bss->eap_req_id_text) - 1);
  1382. bss->eap_req_id_text_len--;
  1383. }
  1384. } else if (os_strcmp(buf, "wep_key_len_broadcast") == 0) {
  1385. bss->default_wep_key_len = atoi(pos);
  1386. if (bss->default_wep_key_len > 13) {
  1387. wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
  1388. "key len %lu (= %lu bits)", line,
  1389. (unsigned long)
  1390. bss->default_wep_key_len,
  1391. (unsigned long)
  1392. bss->default_wep_key_len * 8);
  1393. errors++;
  1394. }
  1395. } else if (os_strcmp(buf, "wep_key_len_unicast") == 0) {
  1396. bss->individual_wep_key_len = atoi(pos);
  1397. if (bss->individual_wep_key_len < 0 ||
  1398. bss->individual_wep_key_len > 13) {
  1399. wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
  1400. "key len %d (= %d bits)", line,
  1401. bss->individual_wep_key_len,
  1402. bss->individual_wep_key_len * 8);
  1403. errors++;
  1404. }
  1405. } else if (os_strcmp(buf, "wep_rekey_period") == 0) {
  1406. bss->wep_rekeying_period = atoi(pos);
  1407. if (bss->wep_rekeying_period < 0) {
  1408. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1409. "period %d",
  1410. line, bss->wep_rekeying_period);
  1411. errors++;
  1412. }
  1413. } else if (os_strcmp(buf, "eap_reauth_period") == 0) {
  1414. bss->eap_reauth_period = atoi(pos);
  1415. if (bss->eap_reauth_period < 0) {
  1416. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1417. "period %d",
  1418. line, bss->eap_reauth_period);
  1419. errors++;
  1420. }
  1421. } else if (os_strcmp(buf, "eapol_key_index_workaround") == 0) {
  1422. bss->eapol_key_index_workaround = atoi(pos);
  1423. #ifdef CONFIG_IAPP
  1424. } else if (os_strcmp(buf, "iapp_interface") == 0) {
  1425. bss->ieee802_11f = 1;
  1426. os_strlcpy(bss->iapp_iface, pos,
  1427. sizeof(bss->iapp_iface));
  1428. #endif /* CONFIG_IAPP */
  1429. } else if (os_strcmp(buf, "own_ip_addr") == 0) {
  1430. if (hostapd_parse_ip_addr(pos, &bss->own_ip_addr)) {
  1431. wpa_printf(MSG_ERROR, "Line %d: invalid IP "
  1432. "address '%s'", line, pos);
  1433. errors++;
  1434. }
  1435. } else if (os_strcmp(buf, "nas_identifier") == 0) {
  1436. bss->nas_identifier = os_strdup(pos);
  1437. #ifndef CONFIG_NO_RADIUS
  1438. } else if (os_strcmp(buf, "auth_server_addr") == 0) {
  1439. if (hostapd_config_read_radius_addr(
  1440. &bss->radius->auth_servers,
  1441. &bss->radius->num_auth_servers, pos, 1812,
  1442. &bss->radius->auth_server)) {
  1443. wpa_printf(MSG_ERROR, "Line %d: invalid IP "
  1444. "address '%s'", line, pos);
  1445. errors++;
  1446. }
  1447. } else if (bss->radius->auth_server &&
  1448. os_strcmp(buf, "auth_server_port") == 0) {
  1449. bss->radius->auth_server->port = atoi(pos);
  1450. } else if (bss->radius->auth_server &&
  1451. os_strcmp(buf, "auth_server_shared_secret") == 0) {
  1452. int len = os_strlen(pos);
  1453. if (len == 0) {
  1454. /* RFC 2865, Ch. 3 */
  1455. wpa_printf(MSG_ERROR, "Line %d: empty shared "
  1456. "secret is not allowed.", line);
  1457. errors++;
  1458. }
  1459. bss->radius->auth_server->shared_secret =
  1460. (u8 *) os_strdup(pos);
  1461. bss->radius->auth_server->shared_secret_len = len;
  1462. } else if (os_strcmp(buf, "acct_server_addr") == 0) {
  1463. if (hostapd_config_read_radius_addr(
  1464. &bss->radius->acct_servers,
  1465. &bss->radius->num_acct_servers, pos, 1813,
  1466. &bss->radius->acct_server)) {
  1467. wpa_printf(MSG_ERROR, "Line %d: invalid IP "
  1468. "address '%s'", line, pos);
  1469. errors++;
  1470. }
  1471. } else if (bss->radius->acct_server &&
  1472. os_strcmp(buf, "acct_server_port") == 0) {
  1473. bss->radius->acct_server->port = atoi(pos);
  1474. } else if (bss->radius->acct_server &&
  1475. os_strcmp(buf, "acct_server_shared_secret") == 0) {
  1476. int len = os_strlen(pos);
  1477. if (len == 0) {
  1478. /* RFC 2865, Ch. 3 */
  1479. wpa_printf(MSG_ERROR, "Line %d: empty shared "
  1480. "secret is not allowed.", line);
  1481. errors++;
  1482. }
  1483. bss->radius->acct_server->shared_secret =
  1484. (u8 *) os_strdup(pos);
  1485. bss->radius->acct_server->shared_secret_len = len;
  1486. } else if (os_strcmp(buf, "radius_retry_primary_interval") ==
  1487. 0) {
  1488. bss->radius->retry_primary_interval = atoi(pos);
  1489. } else if (os_strcmp(buf, "radius_acct_interim_interval") == 0)
  1490. {
  1491. bss->acct_interim_interval = atoi(pos);
  1492. } else if (os_strcmp(buf, "radius_request_cui") == 0) {
  1493. bss->radius_request_cui = atoi(pos);
  1494. } else if (os_strcmp(buf, "radius_auth_req_attr") == 0) {
  1495. struct hostapd_radius_attr *attr, *a;
  1496. attr = hostapd_parse_radius_attr(pos);
  1497. if (attr == NULL) {
  1498. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1499. "radius_auth_req_attr", line);
  1500. errors++;
  1501. } else if (bss->radius_auth_req_attr == NULL) {
  1502. bss->radius_auth_req_attr = attr;
  1503. } else {
  1504. a = bss->radius_auth_req_attr;
  1505. while (a->next)
  1506. a = a->next;
  1507. a->next = attr;
  1508. }
  1509. } else if (os_strcmp(buf, "radius_acct_req_attr") == 0) {
  1510. struct hostapd_radius_attr *attr, *a;
  1511. attr = hostapd_parse_radius_attr(pos);
  1512. if (attr == NULL) {
  1513. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1514. "radius_acct_req_attr", line);
  1515. errors++;
  1516. } else if (bss->radius_acct_req_attr == NULL) {
  1517. bss->radius_acct_req_attr = attr;
  1518. } else {
  1519. a = bss->radius_acct_req_attr;
  1520. while (a->next)
  1521. a = a->next;
  1522. a->next = attr;
  1523. }
  1524. } else if (os_strcmp(buf, "radius_das_port") == 0) {
  1525. bss->radius_das_port = atoi(pos);
  1526. } else if (os_strcmp(buf, "radius_das_client") == 0) {
  1527. if (hostapd_parse_das_client(bss, pos) < 0) {
  1528. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1529. "DAS client", line);
  1530. errors++;
  1531. }
  1532. } else if (os_strcmp(buf, "radius_das_time_window") == 0) {
  1533. bss->radius_das_time_window = atoi(pos);
  1534. } else if (os_strcmp(buf, "radius_das_require_event_timestamp")
  1535. == 0) {
  1536. bss->radius_das_require_event_timestamp = atoi(pos);
  1537. #endif /* CONFIG_NO_RADIUS */
  1538. } else if (os_strcmp(buf, "auth_algs") == 0) {
  1539. bss->auth_algs = atoi(pos);
  1540. if (bss->auth_algs == 0) {
  1541. wpa_printf(MSG_ERROR, "Line %d: no "
  1542. "authentication algorithms allowed",
  1543. line);
  1544. errors++;
  1545. }
  1546. } else if (os_strcmp(buf, "max_num_sta") == 0) {
  1547. bss->max_num_sta = atoi(pos);
  1548. if (bss->max_num_sta < 0 ||
  1549. bss->max_num_sta > MAX_STA_COUNT) {
  1550. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  1551. "max_num_sta=%d; allowed range "
  1552. "0..%d", line, bss->max_num_sta,
  1553. MAX_STA_COUNT);
  1554. errors++;
  1555. }
  1556. } else if (os_strcmp(buf, "wpa") == 0) {
  1557. bss->wpa = atoi(pos);
  1558. } else if (os_strcmp(buf, "wpa_group_rekey") == 0) {
  1559. bss->wpa_group_rekey = atoi(pos);
  1560. } else if (os_strcmp(buf, "wpa_strict_rekey") == 0) {
  1561. bss->wpa_strict_rekey = atoi(pos);
  1562. } else if (os_strcmp(buf, "wpa_gmk_rekey") == 0) {
  1563. bss->wpa_gmk_rekey = atoi(pos);
  1564. } else if (os_strcmp(buf, "wpa_ptk_rekey") == 0) {
  1565. bss->wpa_ptk_rekey = atoi(pos);
  1566. } else if (os_strcmp(buf, "wpa_passphrase") == 0) {
  1567. int len = os_strlen(pos);
  1568. if (len < 8 || len > 63) {
  1569. wpa_printf(MSG_ERROR, "Line %d: invalid WPA "
  1570. "passphrase length %d (expected "
  1571. "8..63)", line, len);
  1572. errors++;
  1573. } else {
  1574. os_free(bss->ssid.wpa_passphrase);
  1575. bss->ssid.wpa_passphrase = os_strdup(pos);
  1576. os_free(bss->ssid.wpa_psk);
  1577. bss->ssid.wpa_psk = NULL;
  1578. }
  1579. } else if (os_strcmp(buf, "wpa_psk") == 0) {
  1580. os_free(bss->ssid.wpa_psk);
  1581. bss->ssid.wpa_psk =
  1582. os_zalloc(sizeof(struct hostapd_wpa_psk));
  1583. if (bss->ssid.wpa_psk == NULL)
  1584. errors++;
  1585. else if (hexstr2bin(pos, bss->ssid.wpa_psk->psk,
  1586. PMK_LEN) ||
  1587. pos[PMK_LEN * 2] != '\0') {
  1588. wpa_printf(MSG_ERROR, "Line %d: Invalid PSK "
  1589. "'%s'.", line, pos);
  1590. errors++;
  1591. } else {
  1592. bss->ssid.wpa_psk->group = 1;
  1593. os_free(bss->ssid.wpa_passphrase);
  1594. bss->ssid.wpa_passphrase = NULL;
  1595. }
  1596. } else if (os_strcmp(buf, "wpa_psk_file") == 0) {
  1597. os_free(bss->ssid.wpa_psk_file);
  1598. bss->ssid.wpa_psk_file = os_strdup(pos);
  1599. if (!bss->ssid.wpa_psk_file) {
  1600. wpa_printf(MSG_ERROR, "Line %d: allocation "
  1601. "failed", line);
  1602. errors++;
  1603. }
  1604. } else if (os_strcmp(buf, "wpa_key_mgmt") == 0) {
  1605. bss->wpa_key_mgmt =
  1606. hostapd_config_parse_key_mgmt(line, pos);
  1607. if (bss->wpa_key_mgmt == -1)
  1608. errors++;
  1609. } else if (os_strcmp(buf, "wpa_psk_radius") == 0) {
  1610. bss->wpa_psk_radius = atoi(pos);
  1611. if (bss->wpa_psk_radius != PSK_RADIUS_IGNORED &&
  1612. bss->wpa_psk_radius != PSK_RADIUS_ACCEPTED &&
  1613. bss->wpa_psk_radius != PSK_RADIUS_REQUIRED) {
  1614. wpa_printf(MSG_ERROR, "Line %d: unknown "
  1615. "wpa_psk_radius %d",
  1616. line, bss->wpa_psk_radius);
  1617. errors++;
  1618. }
  1619. } else if (os_strcmp(buf, "wpa_pairwise") == 0) {
  1620. bss->wpa_pairwise =
  1621. hostapd_config_parse_cipher(line, pos);
  1622. if (bss->wpa_pairwise == -1 ||
  1623. bss->wpa_pairwise == 0)
  1624. errors++;
  1625. else if (bss->wpa_pairwise &
  1626. (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 |
  1627. WPA_CIPHER_WEP104)) {
  1628. wpa_printf(MSG_ERROR, "Line %d: unsupported "
  1629. "pairwise cipher suite '%s'",
  1630. bss->wpa_pairwise, pos);
  1631. errors++;
  1632. }
  1633. } else if (os_strcmp(buf, "rsn_pairwise") == 0) {
  1634. bss->rsn_pairwise =
  1635. hostapd_config_parse_cipher(line, pos);
  1636. if (bss->rsn_pairwise == -1 ||
  1637. bss->rsn_pairwise == 0)
  1638. errors++;
  1639. else if (bss->rsn_pairwise &
  1640. (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 |
  1641. WPA_CIPHER_WEP104)) {
  1642. wpa_printf(MSG_ERROR, "Line %d: unsupported "
  1643. "pairwise cipher suite '%s'",
  1644. bss->rsn_pairwise, pos);
  1645. errors++;
  1646. }
  1647. #ifdef CONFIG_RSN_PREAUTH
  1648. } else if (os_strcmp(buf, "rsn_preauth") == 0) {
  1649. bss->rsn_preauth = atoi(pos);
  1650. } else if (os_strcmp(buf, "rsn_preauth_interfaces") == 0) {
  1651. bss->rsn_preauth_interfaces = os_strdup(pos);
  1652. #endif /* CONFIG_RSN_PREAUTH */
  1653. #ifdef CONFIG_PEERKEY
  1654. } else if (os_strcmp(buf, "peerkey") == 0) {
  1655. bss->peerkey = atoi(pos);
  1656. #endif /* CONFIG_PEERKEY */
  1657. #ifdef CONFIG_IEEE80211R
  1658. } else if (os_strcmp(buf, "mobility_domain") == 0) {
  1659. if (os_strlen(pos) != 2 * MOBILITY_DOMAIN_ID_LEN ||
  1660. hexstr2bin(pos, bss->mobility_domain,
  1661. MOBILITY_DOMAIN_ID_LEN) != 0) {
  1662. wpa_printf(MSG_DEBUG, "Line %d: Invalid "
  1663. "mobility_domain '%s'", line, pos);
  1664. errors++;
  1665. return errors;
  1666. }
  1667. } else if (os_strcmp(buf, "r1_key_holder") == 0) {
  1668. if (os_strlen(pos) != 2 * FT_R1KH_ID_LEN ||
  1669. hexstr2bin(pos, bss->r1_key_holder,
  1670. FT_R1KH_ID_LEN) != 0) {
  1671. wpa_printf(MSG_DEBUG, "Line %d: Invalid "
  1672. "r1_key_holder '%s'", line, pos);
  1673. errors++;
  1674. return errors;
  1675. }
  1676. } else if (os_strcmp(buf, "r0_key_lifetime") == 0) {
  1677. bss->r0_key_lifetime = atoi(pos);
  1678. } else if (os_strcmp(buf, "reassociation_deadline") == 0) {
  1679. bss->reassociation_deadline = atoi(pos);
  1680. } else if (os_strcmp(buf, "r0kh") == 0) {
  1681. if (add_r0kh(bss, pos) < 0) {
  1682. wpa_printf(MSG_DEBUG, "Line %d: Invalid "
  1683. "r0kh '%s'", line, pos);
  1684. errors++;
  1685. return errors;
  1686. }
  1687. } else if (os_strcmp(buf, "r1kh") == 0) {
  1688. if (add_r1kh(bss, pos) < 0) {
  1689. wpa_printf(MSG_DEBUG, "Line %d: Invalid "
  1690. "r1kh '%s'", line, pos);
  1691. errors++;
  1692. return errors;
  1693. }
  1694. } else if (os_strcmp(buf, "pmk_r1_push") == 0) {
  1695. bss->pmk_r1_push = atoi(pos);
  1696. } else if (os_strcmp(buf, "ft_over_ds") == 0) {
  1697. bss->ft_over_ds = atoi(pos);
  1698. #endif /* CONFIG_IEEE80211R */
  1699. #ifndef CONFIG_NO_CTRL_IFACE
  1700. } else if (os_strcmp(buf, "ctrl_interface") == 0) {
  1701. os_free(bss->ctrl_interface);
  1702. bss->ctrl_interface = os_strdup(pos);
  1703. } else if (os_strcmp(buf, "ctrl_interface_group") == 0) {
  1704. #ifndef CONFIG_NATIVE_WINDOWS
  1705. struct group *grp;
  1706. char *endp;
  1707. const char *group = pos;
  1708. grp = getgrnam(group);
  1709. if (grp) {
  1710. bss->ctrl_interface_gid = grp->gr_gid;
  1711. bss->ctrl_interface_gid_set = 1;
  1712. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
  1713. " (from group name '%s')",
  1714. bss->ctrl_interface_gid, group);
  1715. return errors;
  1716. }
  1717. /* Group name not found - try to parse this as gid */
  1718. bss->ctrl_interface_gid = strtol(group, &endp, 10);
  1719. if (*group == '\0' || *endp != '\0') {
  1720. wpa_printf(MSG_DEBUG, "Line %d: Invalid group "
  1721. "'%s'", line, group);
  1722. errors++;
  1723. return errors;
  1724. }
  1725. bss->ctrl_interface_gid_set = 1;
  1726. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
  1727. bss->ctrl_interface_gid);
  1728. #endif /* CONFIG_NATIVE_WINDOWS */
  1729. #endif /* CONFIG_NO_CTRL_IFACE */
  1730. #ifdef RADIUS_SERVER
  1731. } else if (os_strcmp(buf, "radius_server_clients") == 0) {
  1732. os_free(bss->radius_server_clients);
  1733. bss->radius_server_clients = os_strdup(pos);
  1734. } else if (os_strcmp(buf, "radius_server_auth_port") == 0) {
  1735. bss->radius_server_auth_port = atoi(pos);
  1736. } else if (os_strcmp(buf, "radius_server_ipv6") == 0) {
  1737. bss->radius_server_ipv6 = atoi(pos);
  1738. #endif /* RADIUS_SERVER */
  1739. } else if (os_strcmp(buf, "test_socket") == 0) {
  1740. os_free(bss->test_socket);
  1741. bss->test_socket = os_strdup(pos);
  1742. } else if (os_strcmp(buf, "use_pae_group_addr") == 0) {
  1743. bss->use_pae_group_addr = atoi(pos);
  1744. } else if (os_strcmp(buf, "hw_mode") == 0) {
  1745. if (os_strcmp(pos, "a") == 0)
  1746. conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
  1747. else if (os_strcmp(pos, "b") == 0)
  1748. conf->hw_mode = HOSTAPD_MODE_IEEE80211B;
  1749. else if (os_strcmp(pos, "g") == 0)
  1750. conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
  1751. else {
  1752. wpa_printf(MSG_ERROR, "Line %d: unknown "
  1753. "hw_mode '%s'", line, pos);
  1754. errors++;
  1755. }
  1756. } else if (os_strcmp(buf, "wps_rf_bands") == 0) {
  1757. if (os_strcmp(pos, "a") == 0)
  1758. bss->wps_rf_bands = WPS_RF_50GHZ;
  1759. else if (os_strcmp(pos, "g") == 0 ||
  1760. os_strcmp(pos, "b") == 0)
  1761. bss->wps_rf_bands = WPS_RF_24GHZ;
  1762. else if (os_strcmp(pos, "ag") == 0 ||
  1763. os_strcmp(pos, "ga") == 0)
  1764. bss->wps_rf_bands =
  1765. WPS_RF_24GHZ | WPS_RF_50GHZ;
  1766. else {
  1767. wpa_printf(MSG_ERROR, "Line %d: unknown "
  1768. "wps_rf_band '%s'", line, pos);
  1769. errors++;
  1770. }
  1771. } else if (os_strcmp(buf, "channel") == 0) {
  1772. conf->channel = atoi(pos);
  1773. } else if (os_strcmp(buf, "beacon_int") == 0) {
  1774. int val = atoi(pos);
  1775. /* MIB defines range as 1..65535, but very small values
  1776. * cause problems with the current implementation.
  1777. * Since it is unlikely that this small numbers are
  1778. * useful in real life scenarios, do not allow beacon
  1779. * period to be set below 15 TU. */
  1780. if (val < 15 || val > 65535) {
  1781. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1782. "beacon_int %d (expected "
  1783. "15..65535)", line, val);
  1784. errors++;
  1785. } else
  1786. conf->beacon_int = val;
  1787. } else if (os_strcmp(buf, "dtim_period") == 0) {
  1788. bss->dtim_period = atoi(pos);
  1789. if (bss->dtim_period < 1 || bss->dtim_period > 255) {
  1790. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1791. "dtim_period %d",
  1792. line, bss->dtim_period);
  1793. errors++;
  1794. }
  1795. } else if (os_strcmp(buf, "rts_threshold") == 0) {
  1796. conf->rts_threshold = atoi(pos);
  1797. if (conf->rts_threshold < 0 ||
  1798. conf->rts_threshold > 2347) {
  1799. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1800. "rts_threshold %d",
  1801. line, conf->rts_threshold);
  1802. errors++;
  1803. }
  1804. } else if (os_strcmp(buf, "fragm_threshold") == 0) {
  1805. conf->fragm_threshold = atoi(pos);
  1806. if (conf->fragm_threshold < 256 ||
  1807. conf->fragm_threshold > 2346) {
  1808. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1809. "fragm_threshold %d",
  1810. line, conf->fragm_threshold);
  1811. errors++;
  1812. }
  1813. } else if (os_strcmp(buf, "send_probe_response") == 0) {
  1814. int val = atoi(pos);
  1815. if (val != 0 && val != 1) {
  1816. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1817. "send_probe_response %d (expected "
  1818. "0 or 1)", line, val);
  1819. } else
  1820. conf->send_probe_response = val;
  1821. } else if (os_strcmp(buf, "supported_rates") == 0) {
  1822. if (hostapd_parse_rates(&conf->supported_rates, pos)) {
  1823. wpa_printf(MSG_ERROR, "Line %d: invalid rate "
  1824. "list", line);
  1825. errors++;
  1826. }
  1827. } else if (os_strcmp(buf, "basic_rates") == 0) {
  1828. if (hostapd_parse_rates(&conf->basic_rates, pos)) {
  1829. wpa_printf(MSG_ERROR, "Line %d: invalid rate "
  1830. "list", line);
  1831. errors++;
  1832. }
  1833. } else if (os_strcmp(buf, "preamble") == 0) {
  1834. if (atoi(pos))
  1835. conf->preamble = SHORT_PREAMBLE;
  1836. else
  1837. conf->preamble = LONG_PREAMBLE;
  1838. } else if (os_strcmp(buf, "ignore_broadcast_ssid") == 0) {
  1839. bss->ignore_broadcast_ssid = atoi(pos);
  1840. } else if (os_strcmp(buf, "wep_default_key") == 0) {
  1841. bss->ssid.wep.idx = atoi(pos);
  1842. if (bss->ssid.wep.idx > 3) {
  1843. wpa_printf(MSG_ERROR, "Invalid "
  1844. "wep_default_key index %d",
  1845. bss->ssid.wep.idx);
  1846. errors++;
  1847. }
  1848. } else if (os_strcmp(buf, "wep_key0") == 0 ||
  1849. os_strcmp(buf, "wep_key1") == 0 ||
  1850. os_strcmp(buf, "wep_key2") == 0 ||
  1851. os_strcmp(buf, "wep_key3") == 0) {
  1852. if (hostapd_config_read_wep(&bss->ssid.wep,
  1853. buf[7] - '0', pos)) {
  1854. wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
  1855. "key '%s'", line, buf);
  1856. errors++;
  1857. }
  1858. #ifndef CONFIG_NO_VLAN
  1859. } else if (os_strcmp(buf, "dynamic_vlan") == 0) {
  1860. bss->ssid.dynamic_vlan = atoi(pos);
  1861. } else if (os_strcmp(buf, "vlan_file") == 0) {
  1862. if (hostapd_config_read_vlan_file(bss, pos)) {
  1863. wpa_printf(MSG_ERROR, "Line %d: failed to "
  1864. "read VLAN file '%s'", line, pos);
  1865. errors++;
  1866. }
  1867. } else if (os_strcmp(buf, "vlan_naming") == 0) {
  1868. bss->ssid.vlan_naming = atoi(pos);
  1869. if (bss->ssid.vlan_naming >= DYNAMIC_VLAN_NAMING_END ||
  1870. bss->ssid.vlan_naming < 0) {
  1871. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1872. "naming scheme %d", line,
  1873. bss->ssid.vlan_naming);
  1874. errors++;
  1875. }
  1876. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  1877. } else if (os_strcmp(buf, "vlan_tagged_interface") == 0) {
  1878. bss->ssid.vlan_tagged_interface = os_strdup(pos);
  1879. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  1880. #endif /* CONFIG_NO_VLAN */
  1881. } else if (os_strcmp(buf, "ap_table_max_size") == 0) {
  1882. conf->ap_table_max_size = atoi(pos);
  1883. } else if (os_strcmp(buf, "ap_table_expiration_time") == 0) {
  1884. conf->ap_table_expiration_time = atoi(pos);
  1885. } else if (os_strncmp(buf, "tx_queue_", 9) == 0) {
  1886. if (hostapd_config_tx_queue(conf, buf, pos)) {
  1887. wpa_printf(MSG_ERROR, "Line %d: invalid TX "
  1888. "queue item", line);
  1889. errors++;
  1890. }
  1891. } else if (os_strcmp(buf, "wme_enabled") == 0 ||
  1892. os_strcmp(buf, "wmm_enabled") == 0) {
  1893. bss->wmm_enabled = atoi(pos);
  1894. } else if (os_strcmp(buf, "uapsd_advertisement_enabled") == 0) {
  1895. bss->wmm_uapsd = atoi(pos);
  1896. } else if (os_strncmp(buf, "wme_ac_", 7) == 0 ||
  1897. os_strncmp(buf, "wmm_ac_", 7) == 0) {
  1898. if (hostapd_config_wmm_ac(conf->wmm_ac_params, buf,
  1899. pos)) {
  1900. wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
  1901. "ac item", line);
  1902. errors++;
  1903. }
  1904. } else if (os_strcmp(buf, "bss") == 0) {
  1905. if (hostapd_config_bss(conf, pos)) {
  1906. wpa_printf(MSG_ERROR, "Line %d: invalid bss "
  1907. "item", line);
  1908. errors++;
  1909. }
  1910. } else if (os_strcmp(buf, "bssid") == 0) {
  1911. if (hwaddr_aton(pos, bss->bssid)) {
  1912. wpa_printf(MSG_ERROR, "Line %d: invalid bssid "
  1913. "item", line);
  1914. errors++;
  1915. }
  1916. #ifdef CONFIG_IEEE80211W
  1917. } else if (os_strcmp(buf, "ieee80211w") == 0) {
  1918. bss->ieee80211w = atoi(pos);
  1919. } else if (os_strcmp(buf, "assoc_sa_query_max_timeout") == 0) {
  1920. bss->assoc_sa_query_max_timeout = atoi(pos);
  1921. if (bss->assoc_sa_query_max_timeout == 0) {
  1922. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1923. "assoc_sa_query_max_timeout", line);
  1924. errors++;
  1925. }
  1926. } else if (os_strcmp(buf, "assoc_sa_query_retry_timeout") == 0)
  1927. {
  1928. bss->assoc_sa_query_retry_timeout = atoi(pos);
  1929. if (bss->assoc_sa_query_retry_timeout == 0) {
  1930. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1931. "assoc_sa_query_retry_timeout",
  1932. line);
  1933. errors++;
  1934. }
  1935. #endif /* CONFIG_IEEE80211W */
  1936. #ifdef CONFIG_IEEE80211N
  1937. } else if (os_strcmp(buf, "ieee80211n") == 0) {
  1938. conf->ieee80211n = atoi(pos);
  1939. } else if (os_strcmp(buf, "ht_capab") == 0) {
  1940. if (hostapd_config_ht_capab(conf, pos) < 0) {
  1941. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1942. "ht_capab", line);
  1943. errors++;
  1944. }
  1945. } else if (os_strcmp(buf, "require_ht") == 0) {
  1946. conf->require_ht = atoi(pos);
  1947. #endif /* CONFIG_IEEE80211N */
  1948. #ifdef CONFIG_IEEE80211AC
  1949. } else if (os_strcmp(buf, "ieee80211ac") == 0) {
  1950. conf->ieee80211ac = atoi(pos);
  1951. } else if (os_strcmp(buf, "vht_capab") == 0) {
  1952. if (hostapd_config_vht_capab(conf, pos) < 0) {
  1953. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1954. "vht_capab", line);
  1955. errors++;
  1956. }
  1957. } else if (os_strcmp(buf, "require_vht") == 0) {
  1958. conf->require_vht = atoi(pos);
  1959. } else if (os_strcmp(buf, "vht_oper_chwidth") == 0) {
  1960. conf->vht_oper_chwidth = atoi(pos);
  1961. } else if (os_strcmp(buf, "vht_oper_centr_freq_seg0_idx") == 0)
  1962. {
  1963. conf->vht_oper_centr_freq_seg0_idx = atoi(pos);
  1964. #endif /* CONFIG_IEEE80211AC */
  1965. } else if (os_strcmp(buf, "max_listen_interval") == 0) {
  1966. bss->max_listen_interval = atoi(pos);
  1967. } else if (os_strcmp(buf, "disable_pmksa_caching") == 0) {
  1968. bss->disable_pmksa_caching = atoi(pos);
  1969. } else if (os_strcmp(buf, "okc") == 0) {
  1970. bss->okc = atoi(pos);
  1971. #ifdef CONFIG_WPS
  1972. } else if (os_strcmp(buf, "wps_state") == 0) {
  1973. bss->wps_state = atoi(pos);
  1974. if (bss->wps_state < 0 || bss->wps_state > 2) {
  1975. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1976. "wps_state", line);
  1977. errors++;
  1978. }
  1979. } else if (os_strcmp(buf, "ap_setup_locked") == 0) {
  1980. bss->ap_setup_locked = atoi(pos);
  1981. } else if (os_strcmp(buf, "uuid") == 0) {
  1982. if (uuid_str2bin(pos, bss->uuid)) {
  1983. wpa_printf(MSG_ERROR, "Line %d: invalid UUID",
  1984. line);
  1985. errors++;
  1986. }
  1987. } else if (os_strcmp(buf, "wps_pin_requests") == 0) {
  1988. os_free(bss->wps_pin_requests);
  1989. bss->wps_pin_requests = os_strdup(pos);
  1990. } else if (os_strcmp(buf, "device_name") == 0) {
  1991. if (os_strlen(pos) > 32) {
  1992. wpa_printf(MSG_ERROR, "Line %d: Too long "
  1993. "device_name", line);
  1994. errors++;
  1995. }
  1996. os_free(bss->device_name);
  1997. bss->device_name = os_strdup(pos);
  1998. } else if (os_strcmp(buf, "manufacturer") == 0) {
  1999. if (os_strlen(pos) > 64) {
  2000. wpa_printf(MSG_ERROR, "Line %d: Too long "
  2001. "manufacturer", line);
  2002. errors++;
  2003. }
  2004. os_free(bss->manufacturer);
  2005. bss->manufacturer = os_strdup(pos);
  2006. } else if (os_strcmp(buf, "model_name") == 0) {
  2007. if (os_strlen(pos) > 32) {
  2008. wpa_printf(MSG_ERROR, "Line %d: Too long "
  2009. "model_name", line);
  2010. errors++;
  2011. }
  2012. os_free(bss->model_name);
  2013. bss->model_name = os_strdup(pos);
  2014. } else if (os_strcmp(buf, "model_number") == 0) {
  2015. if (os_strlen(pos) > 32) {
  2016. wpa_printf(MSG_ERROR, "Line %d: Too long "
  2017. "model_number", line);
  2018. errors++;
  2019. }
  2020. os_free(bss->model_number);
  2021. bss->model_number = os_strdup(pos);
  2022. } else if (os_strcmp(buf, "serial_number") == 0) {
  2023. if (os_strlen(pos) > 32) {
  2024. wpa_printf(MSG_ERROR, "Line %d: Too long "
  2025. "serial_number", line);
  2026. errors++;
  2027. }
  2028. os_free(bss->serial_number);
  2029. bss->serial_number = os_strdup(pos);
  2030. } else if (os_strcmp(buf, "device_type") == 0) {
  2031. if (wps_dev_type_str2bin(pos, bss->device_type))
  2032. errors++;
  2033. } else if (os_strcmp(buf, "config_methods") == 0) {
  2034. os_free(bss->config_methods);
  2035. bss->config_methods = os_strdup(pos);
  2036. } else if (os_strcmp(buf, "os_version") == 0) {
  2037. if (hexstr2bin(pos, bss->os_version, 4)) {
  2038. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2039. "os_version", line);
  2040. errors++;
  2041. }
  2042. } else if (os_strcmp(buf, "ap_pin") == 0) {
  2043. os_free(bss->ap_pin);
  2044. bss->ap_pin = os_strdup(pos);
  2045. } else if (os_strcmp(buf, "skip_cred_build") == 0) {
  2046. bss->skip_cred_build = atoi(pos);
  2047. } else if (os_strcmp(buf, "extra_cred") == 0) {
  2048. os_free(bss->extra_cred);
  2049. bss->extra_cred =
  2050. (u8 *) os_readfile(pos, &bss->extra_cred_len);
  2051. if (bss->extra_cred == NULL) {
  2052. wpa_printf(MSG_ERROR, "Line %d: could not "
  2053. "read Credentials from '%s'",
  2054. line, pos);
  2055. errors++;
  2056. }
  2057. } else if (os_strcmp(buf, "wps_cred_processing") == 0) {
  2058. bss->wps_cred_processing = atoi(pos);
  2059. } else if (os_strcmp(buf, "ap_settings") == 0) {
  2060. os_free(bss->ap_settings);
  2061. bss->ap_settings =
  2062. (u8 *) os_readfile(pos, &bss->ap_settings_len);
  2063. if (bss->ap_settings == NULL) {
  2064. wpa_printf(MSG_ERROR, "Line %d: could not "
  2065. "read AP Settings from '%s'",
  2066. line, pos);
  2067. errors++;
  2068. }
  2069. } else if (os_strcmp(buf, "upnp_iface") == 0) {
  2070. bss->upnp_iface = os_strdup(pos);
  2071. } else if (os_strcmp(buf, "friendly_name") == 0) {
  2072. os_free(bss->friendly_name);
  2073. bss->friendly_name = os_strdup(pos);
  2074. } else if (os_strcmp(buf, "manufacturer_url") == 0) {
  2075. os_free(bss->manufacturer_url);
  2076. bss->manufacturer_url = os_strdup(pos);
  2077. } else if (os_strcmp(buf, "model_description") == 0) {
  2078. os_free(bss->model_description);
  2079. bss->model_description = os_strdup(pos);
  2080. } else if (os_strcmp(buf, "model_url") == 0) {
  2081. os_free(bss->model_url);
  2082. bss->model_url = os_strdup(pos);
  2083. } else if (os_strcmp(buf, "upc") == 0) {
  2084. os_free(bss->upc);
  2085. bss->upc = os_strdup(pos);
  2086. } else if (os_strcmp(buf, "pbc_in_m1") == 0) {
  2087. bss->pbc_in_m1 = atoi(pos);
  2088. #ifdef CONFIG_WPS_NFC
  2089. } else if (os_strcmp(buf, "wps_nfc_dev_pw_id") == 0) {
  2090. bss->wps_nfc_dev_pw_id = atoi(pos);
  2091. if (bss->wps_nfc_dev_pw_id < 0x10 ||
  2092. bss->wps_nfc_dev_pw_id > 0xffff) {
  2093. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  2094. "wps_nfc_dev_pw_id value", line);
  2095. errors++;
  2096. }
  2097. } else if (os_strcmp(buf, "wps_nfc_dh_pubkey") == 0) {
  2098. wpabuf_free(bss->wps_nfc_dh_pubkey);
  2099. bss->wps_nfc_dh_pubkey = hostapd_parse_bin(pos);
  2100. } else if (os_strcmp(buf, "wps_nfc_dh_privkey") == 0) {
  2101. wpabuf_free(bss->wps_nfc_dh_privkey);
  2102. bss->wps_nfc_dh_privkey = hostapd_parse_bin(pos);
  2103. } else if (os_strcmp(buf, "wps_nfc_dev_pw") == 0) {
  2104. wpabuf_free(bss->wps_nfc_dev_pw);
  2105. bss->wps_nfc_dev_pw = hostapd_parse_bin(pos);
  2106. #endif /* CONFIG_WPS_NFC */
  2107. #endif /* CONFIG_WPS */
  2108. #ifdef CONFIG_P2P_MANAGER
  2109. } else if (os_strcmp(buf, "manage_p2p") == 0) {
  2110. int manage = atoi(pos);
  2111. if (manage)
  2112. bss->p2p |= P2P_MANAGE;
  2113. else
  2114. bss->p2p &= ~P2P_MANAGE;
  2115. } else if (os_strcmp(buf, "allow_cross_connection") == 0) {
  2116. if (atoi(pos))
  2117. bss->p2p |= P2P_ALLOW_CROSS_CONNECTION;
  2118. else
  2119. bss->p2p &= ~P2P_ALLOW_CROSS_CONNECTION;
  2120. #endif /* CONFIG_P2P_MANAGER */
  2121. } else if (os_strcmp(buf, "disassoc_low_ack") == 0) {
  2122. bss->disassoc_low_ack = atoi(pos);
  2123. } else if (os_strcmp(buf, "tdls_prohibit") == 0) {
  2124. int val = atoi(pos);
  2125. if (val)
  2126. bss->tdls |= TDLS_PROHIBIT;
  2127. else
  2128. bss->tdls &= ~TDLS_PROHIBIT;
  2129. } else if (os_strcmp(buf, "tdls_prohibit_chan_switch") == 0) {
  2130. int val = atoi(pos);
  2131. if (val)
  2132. bss->tdls |= TDLS_PROHIBIT_CHAN_SWITCH;
  2133. else
  2134. bss->tdls &= ~TDLS_PROHIBIT_CHAN_SWITCH;
  2135. #ifdef CONFIG_RSN_TESTING
  2136. } else if (os_strcmp(buf, "rsn_testing") == 0) {
  2137. extern int rsn_testing;
  2138. rsn_testing = atoi(pos);
  2139. #endif /* CONFIG_RSN_TESTING */
  2140. } else if (os_strcmp(buf, "time_advertisement") == 0) {
  2141. bss->time_advertisement = atoi(pos);
  2142. } else if (os_strcmp(buf, "time_zone") == 0) {
  2143. size_t tz_len = os_strlen(pos);
  2144. if (tz_len < 4 || tz_len > 255) {
  2145. wpa_printf(MSG_DEBUG, "Line %d: invalid "
  2146. "time_zone", line);
  2147. errors++;
  2148. return errors;
  2149. }
  2150. os_free(bss->time_zone);
  2151. bss->time_zone = os_strdup(pos);
  2152. if (bss->time_zone == NULL)
  2153. errors++;
  2154. #ifdef CONFIG_INTERWORKING
  2155. } else if (os_strcmp(buf, "interworking") == 0) {
  2156. bss->interworking = atoi(pos);
  2157. } else if (os_strcmp(buf, "access_network_type") == 0) {
  2158. bss->access_network_type = atoi(pos);
  2159. if (bss->access_network_type < 0 ||
  2160. bss->access_network_type > 15) {
  2161. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2162. "access_network_type", line);
  2163. errors++;
  2164. }
  2165. } else if (os_strcmp(buf, "internet") == 0) {
  2166. bss->internet = atoi(pos);
  2167. } else if (os_strcmp(buf, "asra") == 0) {
  2168. bss->asra = atoi(pos);
  2169. } else if (os_strcmp(buf, "esr") == 0) {
  2170. bss->esr = atoi(pos);
  2171. } else if (os_strcmp(buf, "uesa") == 0) {
  2172. bss->uesa = atoi(pos);
  2173. } else if (os_strcmp(buf, "venue_group") == 0) {
  2174. bss->venue_group = atoi(pos);
  2175. bss->venue_info_set = 1;
  2176. } else if (os_strcmp(buf, "venue_type") == 0) {
  2177. bss->venue_type = atoi(pos);
  2178. bss->venue_info_set = 1;
  2179. } else if (os_strcmp(buf, "hessid") == 0) {
  2180. if (hwaddr_aton(pos, bss->hessid)) {
  2181. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2182. "hessid", line);
  2183. errors++;
  2184. }
  2185. } else if (os_strcmp(buf, "roaming_consortium") == 0) {
  2186. if (parse_roaming_consortium(bss, pos, line) < 0)
  2187. errors++;
  2188. } else if (os_strcmp(buf, "venue_name") == 0) {
  2189. if (parse_venue_name(bss, pos, line) < 0)
  2190. errors++;
  2191. } else if (os_strcmp(buf, "network_auth_type") == 0) {
  2192. u8 auth_type;
  2193. u16 redirect_url_len;
  2194. if (hexstr2bin(pos, &auth_type, 1)) {
  2195. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  2196. "network_auth_type '%s'",
  2197. line, pos);
  2198. errors++;
  2199. return errors;
  2200. }
  2201. if (auth_type == 0 || auth_type == 2)
  2202. redirect_url_len = os_strlen(pos + 2);
  2203. else
  2204. redirect_url_len = 0;
  2205. os_free(bss->network_auth_type);
  2206. bss->network_auth_type =
  2207. os_malloc(redirect_url_len + 3 + 1);
  2208. if (bss->network_auth_type == NULL) {
  2209. errors++;
  2210. return errors;
  2211. }
  2212. *bss->network_auth_type = auth_type;
  2213. WPA_PUT_LE16(bss->network_auth_type + 1,
  2214. redirect_url_len);
  2215. if (redirect_url_len)
  2216. os_memcpy(bss->network_auth_type + 3,
  2217. pos + 2, redirect_url_len);
  2218. bss->network_auth_type_len = 3 + redirect_url_len;
  2219. } else if (os_strcmp(buf, "ipaddr_type_availability") == 0) {
  2220. if (hexstr2bin(pos, &bss->ipaddr_type_availability, 1))
  2221. {
  2222. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  2223. "ipaddr_type_availability '%s'",
  2224. line, pos);
  2225. bss->ipaddr_type_configured = 0;
  2226. errors++;
  2227. return errors;
  2228. }
  2229. bss->ipaddr_type_configured = 1;
  2230. } else if (os_strcmp(buf, "domain_name") == 0) {
  2231. int j, num_domains, domain_len, domain_list_len = 0;
  2232. char *tok_start, *tok_prev;
  2233. u8 *domain_list, *domain_ptr;
  2234. domain_list_len = os_strlen(pos) + 1;
  2235. domain_list = os_malloc(domain_list_len);
  2236. if (domain_list == NULL) {
  2237. errors++;
  2238. return errors;
  2239. }
  2240. domain_ptr = domain_list;
  2241. tok_prev = pos;
  2242. num_domains = 1;
  2243. while ((tok_prev = os_strchr(tok_prev, ','))) {
  2244. num_domains++;
  2245. tok_prev++;
  2246. }
  2247. tok_prev = pos;
  2248. for (j = 0; j < num_domains; j++) {
  2249. tok_start = os_strchr(tok_prev, ',');
  2250. if (tok_start) {
  2251. domain_len = tok_start - tok_prev;
  2252. *domain_ptr = domain_len;
  2253. os_memcpy(domain_ptr + 1, tok_prev,
  2254. domain_len);
  2255. domain_ptr += domain_len + 1;
  2256. tok_prev = ++tok_start;
  2257. } else {
  2258. domain_len = os_strlen(tok_prev);
  2259. *domain_ptr = domain_len;
  2260. os_memcpy(domain_ptr + 1, tok_prev,
  2261. domain_len);
  2262. domain_ptr += domain_len + 1;
  2263. }
  2264. }
  2265. os_free(bss->domain_name);
  2266. bss->domain_name = domain_list;
  2267. bss->domain_name_len = domain_list_len;
  2268. } else if (os_strcmp(buf, "gas_frag_limit") == 0) {
  2269. bss->gas_frag_limit = atoi(pos);
  2270. } else if (os_strcmp(buf, "gas_comeback_delay") == 0) {
  2271. bss->gas_comeback_delay = atoi(pos);
  2272. #endif /* CONFIG_INTERWORKING */
  2273. #ifdef CONFIG_RADIUS_TEST
  2274. } else if (os_strcmp(buf, "dump_msk_file") == 0) {
  2275. os_free(bss->dump_msk_file);
  2276. bss->dump_msk_file = os_strdup(pos);
  2277. #endif /* CONFIG_RADIUS_TEST */
  2278. #ifdef CONFIG_HS20
  2279. } else if (os_strcmp(buf, "hs20") == 0) {
  2280. bss->hs20 = atoi(pos);
  2281. } else if (os_strcmp(buf, "disable_dgaf") == 0) {
  2282. bss->disable_dgaf = atoi(pos);
  2283. #endif /* CONFIG_HS20 */
  2284. } else {
  2285. wpa_printf(MSG_ERROR, "Line %d: unknown configuration "
  2286. "item '%s'", line, buf);
  2287. errors++;
  2288. }
  2289. }
  2290. return errors;
  2291. }
  2292. static void hostapd_set_security_params(struct hostapd_bss_config *bss)
  2293. {
  2294. int pairwise;
  2295. if (bss->individual_wep_key_len == 0) {
  2296. /* individual keys are not use; can use key idx0 for
  2297. * broadcast keys */
  2298. bss->broadcast_key_idx_min = 0;
  2299. }
  2300. /* Select group cipher based on the enabled pairwise cipher
  2301. * suites */
  2302. pairwise = 0;
  2303. if (bss->wpa & 1)
  2304. pairwise |= bss->wpa_pairwise;
  2305. if (bss->wpa & 2) {
  2306. if (bss->rsn_pairwise == 0)
  2307. bss->rsn_pairwise = bss->wpa_pairwise;
  2308. pairwise |= bss->rsn_pairwise;
  2309. }
  2310. if (pairwise & WPA_CIPHER_TKIP)
  2311. bss->wpa_group = WPA_CIPHER_TKIP;
  2312. else
  2313. bss->wpa_group = WPA_CIPHER_CCMP;
  2314. bss->radius->auth_server = bss->radius->auth_servers;
  2315. bss->radius->acct_server = bss->radius->acct_servers;
  2316. if (bss->wpa && bss->ieee802_1x) {
  2317. bss->ssid.security_policy = SECURITY_WPA;
  2318. } else if (bss->wpa) {
  2319. bss->ssid.security_policy = SECURITY_WPA_PSK;
  2320. } else if (bss->ieee802_1x) {
  2321. int cipher = WPA_CIPHER_NONE;
  2322. bss->ssid.security_policy = SECURITY_IEEE_802_1X;
  2323. bss->ssid.wep.default_len = bss->default_wep_key_len;
  2324. if (bss->default_wep_key_len)
  2325. cipher = bss->default_wep_key_len >= 13 ?
  2326. WPA_CIPHER_WEP104 : WPA_CIPHER_WEP40;
  2327. bss->wpa_group = cipher;
  2328. bss->wpa_pairwise = cipher;
  2329. bss->rsn_pairwise = cipher;
  2330. } else if (bss->ssid.wep.keys_set) {
  2331. int cipher = WPA_CIPHER_WEP40;
  2332. if (bss->ssid.wep.len[0] >= 13)
  2333. cipher = WPA_CIPHER_WEP104;
  2334. bss->ssid.security_policy = SECURITY_STATIC_WEP;
  2335. bss->wpa_group = cipher;
  2336. bss->wpa_pairwise = cipher;
  2337. bss->rsn_pairwise = cipher;
  2338. } else {
  2339. bss->ssid.security_policy = SECURITY_PLAINTEXT;
  2340. bss->wpa_group = WPA_CIPHER_NONE;
  2341. bss->wpa_pairwise = WPA_CIPHER_NONE;
  2342. bss->rsn_pairwise = WPA_CIPHER_NONE;
  2343. }
  2344. }
  2345. /**
  2346. * hostapd_config_read - Read and parse a configuration file
  2347. * @fname: Configuration file name (including path, if needed)
  2348. * Returns: Allocated configuration data structure
  2349. */
  2350. struct hostapd_config * hostapd_config_read(const char *fname)
  2351. {
  2352. struct hostapd_config *conf;
  2353. struct hostapd_bss_config *bss;
  2354. FILE *f;
  2355. char buf[512], *pos;
  2356. int line = 0;
  2357. int errors = 0;
  2358. size_t i;
  2359. f = fopen(fname, "r");
  2360. if (f == NULL) {
  2361. wpa_printf(MSG_ERROR, "Could not open configuration file '%s' "
  2362. "for reading.", fname);
  2363. return NULL;
  2364. }
  2365. conf = hostapd_config_defaults();
  2366. if (conf == NULL) {
  2367. fclose(f);
  2368. return NULL;
  2369. }
  2370. /* set default driver based on configuration */
  2371. conf->driver = wpa_drivers[0];
  2372. if (conf->driver == NULL) {
  2373. wpa_printf(MSG_ERROR, "No driver wrappers registered!");
  2374. hostapd_config_free(conf);
  2375. fclose(f);
  2376. return NULL;
  2377. }
  2378. bss = conf->last_bss = conf->bss;
  2379. while (fgets(buf, sizeof(buf), f)) {
  2380. bss = conf->last_bss;
  2381. line++;
  2382. if (buf[0] == '#')
  2383. continue;
  2384. pos = buf;
  2385. while (*pos != '\0') {
  2386. if (*pos == '\n') {
  2387. *pos = '\0';
  2388. break;
  2389. }
  2390. pos++;
  2391. }
  2392. if (buf[0] == '\0')
  2393. continue;
  2394. pos = os_strchr(buf, '=');
  2395. if (pos == NULL) {
  2396. wpa_printf(MSG_ERROR, "Line %d: invalid line '%s'",
  2397. line, buf);
  2398. errors++;
  2399. continue;
  2400. }
  2401. *pos = '\0';
  2402. pos++;
  2403. errors += hostapd_config_fill(conf, bss, buf, pos, line);
  2404. }
  2405. fclose(f);
  2406. for (i = 0; i < conf->num_bss; i++)
  2407. hostapd_set_security_params(&conf->bss[i]);
  2408. if (hostapd_config_check(conf))
  2409. errors++;
  2410. #ifndef WPA_IGNORE_CONFIG_ERRORS
  2411. if (errors) {
  2412. wpa_printf(MSG_ERROR, "%d errors found in configuration file "
  2413. "'%s'", errors, fname);
  2414. hostapd_config_free(conf);
  2415. conf = NULL;
  2416. }
  2417. #endif /* WPA_IGNORE_CONFIG_ERRORS */
  2418. return conf;
  2419. }
  2420. int hostapd_set_iface(struct hostapd_config *conf,
  2421. struct hostapd_bss_config *bss, char *field, char *value)
  2422. {
  2423. int errors;
  2424. size_t i;
  2425. errors = hostapd_config_fill(conf, bss, field, value, 0);
  2426. if (errors) {
  2427. wpa_printf(MSG_INFO, "Failed to set configuration field '%s' "
  2428. "to value '%s'", field, value);
  2429. return -1;
  2430. }
  2431. for (i = 0; i < conf->num_bss; i++)
  2432. hostapd_set_security_params(&conf->bss[i]);
  2433. if (hostapd_config_check(conf)) {
  2434. wpa_printf(MSG_ERROR, "Configuration check failed");
  2435. return -1;
  2436. }
  2437. return 0;
  2438. }