config.c 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622
  1. /*
  2. * hostapd / Configuration file
  3. * Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2007-2008, Intel Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #include "includes.h"
  16. #ifndef CONFIG_NATIVE_WINDOWS
  17. #include <grp.h>
  18. #endif /* CONFIG_NATIVE_WINDOWS */
  19. #include "common.h"
  20. #include "crypto/sha1.h"
  21. #include "drivers/driver.h"
  22. #include "radius/radius_client.h"
  23. #include "common/ieee802_11_defs.h"
  24. #include "common/wpa_common.h"
  25. #include "eap_common/eap_wsc_common.h"
  26. #include "eap_server/eap.h"
  27. #include "hostapd.h"
  28. #include "wpa.h"
  29. #include "uuid.h"
  30. #include "sta_info.h"
  31. #include "config.h"
  32. #define MAX_STA_COUNT 2007
  33. extern struct wpa_driver_ops *wpa_drivers[];
  34. #ifndef CONFIG_NO_VLAN
  35. static int hostapd_config_read_vlan_file(struct hostapd_bss_config *bss,
  36. const char *fname)
  37. {
  38. FILE *f;
  39. char buf[128], *pos, *pos2;
  40. int line = 0, vlan_id;
  41. struct hostapd_vlan *vlan;
  42. f = fopen(fname, "r");
  43. if (!f) {
  44. wpa_printf(MSG_ERROR, "VLAN file '%s' not readable.", fname);
  45. return -1;
  46. }
  47. while (fgets(buf, sizeof(buf), f)) {
  48. line++;
  49. if (buf[0] == '#')
  50. continue;
  51. pos = buf;
  52. while (*pos != '\0') {
  53. if (*pos == '\n') {
  54. *pos = '\0';
  55. break;
  56. }
  57. pos++;
  58. }
  59. if (buf[0] == '\0')
  60. continue;
  61. if (buf[0] == '*') {
  62. vlan_id = VLAN_ID_WILDCARD;
  63. pos = buf + 1;
  64. } else {
  65. vlan_id = strtol(buf, &pos, 10);
  66. if (buf == pos || vlan_id < 1 ||
  67. vlan_id > MAX_VLAN_ID) {
  68. wpa_printf(MSG_ERROR, "Invalid VLAN ID at "
  69. "line %d in '%s'", line, fname);
  70. fclose(f);
  71. return -1;
  72. }
  73. }
  74. while (*pos == ' ' || *pos == '\t')
  75. pos++;
  76. pos2 = pos;
  77. while (*pos2 != ' ' && *pos2 != '\t' && *pos2 != '\0')
  78. pos2++;
  79. *pos2 = '\0';
  80. if (*pos == '\0' || os_strlen(pos) > IFNAMSIZ) {
  81. wpa_printf(MSG_ERROR, "Invalid VLAN ifname at line %d "
  82. "in '%s'", line, fname);
  83. fclose(f);
  84. return -1;
  85. }
  86. vlan = os_malloc(sizeof(*vlan));
  87. if (vlan == NULL) {
  88. wpa_printf(MSG_ERROR, "Out of memory while reading "
  89. "VLAN interfaces from '%s'", fname);
  90. fclose(f);
  91. return -1;
  92. }
  93. os_memset(vlan, 0, sizeof(*vlan));
  94. vlan->vlan_id = vlan_id;
  95. os_strlcpy(vlan->ifname, pos, sizeof(vlan->ifname));
  96. if (bss->vlan_tail)
  97. bss->vlan_tail->next = vlan;
  98. else
  99. bss->vlan = vlan;
  100. bss->vlan_tail = vlan;
  101. }
  102. fclose(f);
  103. return 0;
  104. }
  105. #endif /* CONFIG_NO_VLAN */
  106. static void hostapd_config_free_vlan(struct hostapd_bss_config *bss)
  107. {
  108. struct hostapd_vlan *vlan, *prev;
  109. vlan = bss->vlan;
  110. prev = NULL;
  111. while (vlan) {
  112. prev = vlan;
  113. vlan = vlan->next;
  114. os_free(prev);
  115. }
  116. bss->vlan = NULL;
  117. }
  118. /* convert floats with one decimal place to value*10 int, i.e.,
  119. * "1.5" will return 15 */
  120. static int hostapd_config_read_int10(const char *value)
  121. {
  122. int i, d;
  123. char *pos;
  124. i = atoi(value);
  125. pos = os_strchr(value, '.');
  126. d = 0;
  127. if (pos) {
  128. pos++;
  129. if (*pos >= '0' && *pos <= '9')
  130. d = *pos - '0';
  131. }
  132. return i * 10 + d;
  133. }
  134. static void hostapd_config_defaults_bss(struct hostapd_bss_config *bss)
  135. {
  136. bss->logger_syslog_level = HOSTAPD_LEVEL_INFO;
  137. bss->logger_stdout_level = HOSTAPD_LEVEL_INFO;
  138. bss->logger_syslog = (unsigned int) -1;
  139. bss->logger_stdout = (unsigned int) -1;
  140. bss->auth_algs = WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED;
  141. bss->wep_rekeying_period = 300;
  142. /* use key0 in individual key and key1 in broadcast key */
  143. bss->broadcast_key_idx_min = 1;
  144. bss->broadcast_key_idx_max = 2;
  145. bss->eap_reauth_period = 3600;
  146. bss->wpa_group_rekey = 600;
  147. bss->wpa_gmk_rekey = 86400;
  148. bss->wpa_key_mgmt = WPA_KEY_MGMT_PSK;
  149. bss->wpa_pairwise = WPA_CIPHER_TKIP;
  150. bss->wpa_group = WPA_CIPHER_TKIP;
  151. bss->rsn_pairwise = 0;
  152. bss->max_num_sta = MAX_STA_COUNT;
  153. bss->dtim_period = 2;
  154. bss->radius_server_auth_port = 1812;
  155. bss->ap_max_inactivity = AP_MAX_INACTIVITY;
  156. bss->eapol_version = EAPOL_VERSION;
  157. bss->max_listen_interval = 65535;
  158. #ifdef CONFIG_IEEE80211W
  159. bss->assoc_sa_query_max_timeout = 1000;
  160. bss->assoc_sa_query_retry_timeout = 201;
  161. #endif /* CONFIG_IEEE80211W */
  162. #ifdef EAP_SERVER_FAST
  163. /* both anonymous and authenticated provisioning */
  164. bss->eap_fast_prov = 3;
  165. bss->pac_key_lifetime = 7 * 24 * 60 * 60;
  166. bss->pac_key_refresh_time = 1 * 24 * 60 * 60;
  167. #endif /* EAP_SERVER_FAST */
  168. }
  169. struct hostapd_config * hostapd_config_defaults(void)
  170. {
  171. struct hostapd_config *conf;
  172. struct hostapd_bss_config *bss;
  173. int i;
  174. const int aCWmin = 15, aCWmax = 1024;
  175. const struct hostapd_wmm_ac_params ac_bk =
  176. { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
  177. const struct hostapd_wmm_ac_params ac_be =
  178. { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
  179. const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
  180. { aCWmin >> 1, aCWmin, 2, 3000 / 32, 1 };
  181. const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
  182. { aCWmin >> 2, aCWmin >> 1, 2, 1500 / 32, 1 };
  183. conf = os_zalloc(sizeof(*conf));
  184. bss = os_zalloc(sizeof(*bss));
  185. if (conf == NULL || bss == NULL) {
  186. wpa_printf(MSG_ERROR, "Failed to allocate memory for "
  187. "configuration data.");
  188. os_free(conf);
  189. os_free(bss);
  190. return NULL;
  191. }
  192. /* set default driver based on configuration */
  193. conf->driver = wpa_drivers[0];
  194. if (conf->driver == NULL) {
  195. wpa_printf(MSG_ERROR, "No driver wrappers registered!");
  196. os_free(conf);
  197. os_free(bss);
  198. return NULL;
  199. }
  200. bss->radius = os_zalloc(sizeof(*bss->radius));
  201. if (bss->radius == NULL) {
  202. os_free(conf);
  203. os_free(bss);
  204. return NULL;
  205. }
  206. hostapd_config_defaults_bss(bss);
  207. conf->num_bss = 1;
  208. conf->bss = bss;
  209. conf->beacon_int = 100;
  210. conf->rts_threshold = -1; /* use driver default: 2347 */
  211. conf->fragm_threshold = -1; /* user driver default: 2346 */
  212. conf->send_probe_response = 1;
  213. conf->bridge_packets = INTERNAL_BRIDGE_DO_NOT_CONTROL;
  214. for (i = 0; i < NUM_TX_QUEUES; i++)
  215. conf->tx_queue[i].aifs = -1; /* use hw default */
  216. conf->wmm_ac_params[0] = ac_be;
  217. conf->wmm_ac_params[1] = ac_bk;
  218. conf->wmm_ac_params[2] = ac_vi;
  219. conf->wmm_ac_params[3] = ac_vo;
  220. #ifdef CONFIG_IEEE80211N
  221. conf->ht_capab = HT_CAP_INFO_SMPS_DISABLED;
  222. #endif /* CONFIG_IEEE80211N */
  223. return conf;
  224. }
  225. int hostapd_mac_comp(const void *a, const void *b)
  226. {
  227. return os_memcmp(a, b, sizeof(macaddr));
  228. }
  229. int hostapd_mac_comp_empty(const void *a)
  230. {
  231. macaddr empty = { 0 };
  232. return os_memcmp(a, empty, sizeof(macaddr));
  233. }
  234. static int hostapd_acl_comp(const void *a, const void *b)
  235. {
  236. const struct mac_acl_entry *aa = a;
  237. const struct mac_acl_entry *bb = b;
  238. return os_memcmp(aa->addr, bb->addr, sizeof(macaddr));
  239. }
  240. static int hostapd_config_read_maclist(const char *fname,
  241. struct mac_acl_entry **acl, int *num)
  242. {
  243. FILE *f;
  244. char buf[128], *pos;
  245. int line = 0;
  246. u8 addr[ETH_ALEN];
  247. struct mac_acl_entry *newacl;
  248. int vlan_id;
  249. if (!fname)
  250. return 0;
  251. f = fopen(fname, "r");
  252. if (!f) {
  253. wpa_printf(MSG_ERROR, "MAC list file '%s' not found.", fname);
  254. return -1;
  255. }
  256. while (fgets(buf, sizeof(buf), f)) {
  257. line++;
  258. if (buf[0] == '#')
  259. continue;
  260. pos = buf;
  261. while (*pos != '\0') {
  262. if (*pos == '\n') {
  263. *pos = '\0';
  264. break;
  265. }
  266. pos++;
  267. }
  268. if (buf[0] == '\0')
  269. continue;
  270. if (hwaddr_aton(buf, addr)) {
  271. wpa_printf(MSG_ERROR, "Invalid MAC address '%s' at "
  272. "line %d in '%s'", buf, line, fname);
  273. fclose(f);
  274. return -1;
  275. }
  276. vlan_id = 0;
  277. pos = buf;
  278. while (*pos != '\0' && *pos != ' ' && *pos != '\t')
  279. pos++;
  280. while (*pos == ' ' || *pos == '\t')
  281. pos++;
  282. if (*pos != '\0')
  283. vlan_id = atoi(pos);
  284. newacl = os_realloc(*acl, (*num + 1) * sizeof(**acl));
  285. if (newacl == NULL) {
  286. wpa_printf(MSG_ERROR, "MAC list reallocation failed");
  287. fclose(f);
  288. return -1;
  289. }
  290. *acl = newacl;
  291. os_memcpy((*acl)[*num].addr, addr, ETH_ALEN);
  292. (*acl)[*num].vlan_id = vlan_id;
  293. (*num)++;
  294. }
  295. fclose(f);
  296. qsort(*acl, *num, sizeof(**acl), hostapd_acl_comp);
  297. return 0;
  298. }
  299. static int hostapd_config_read_wpa_psk(const char *fname,
  300. struct hostapd_ssid *ssid)
  301. {
  302. FILE *f;
  303. char buf[128], *pos;
  304. int line = 0, ret = 0, len, ok;
  305. u8 addr[ETH_ALEN];
  306. struct hostapd_wpa_psk *psk;
  307. if (!fname)
  308. return 0;
  309. f = fopen(fname, "r");
  310. if (!f) {
  311. wpa_printf(MSG_ERROR, "WPA PSK file '%s' not found.", fname);
  312. return -1;
  313. }
  314. while (fgets(buf, sizeof(buf), f)) {
  315. line++;
  316. if (buf[0] == '#')
  317. continue;
  318. pos = buf;
  319. while (*pos != '\0') {
  320. if (*pos == '\n') {
  321. *pos = '\0';
  322. break;
  323. }
  324. pos++;
  325. }
  326. if (buf[0] == '\0')
  327. continue;
  328. if (hwaddr_aton(buf, addr)) {
  329. wpa_printf(MSG_ERROR, "Invalid MAC address '%s' on "
  330. "line %d in '%s'", buf, line, fname);
  331. ret = -1;
  332. break;
  333. }
  334. psk = os_zalloc(sizeof(*psk));
  335. if (psk == NULL) {
  336. wpa_printf(MSG_ERROR, "WPA PSK allocation failed");
  337. ret = -1;
  338. break;
  339. }
  340. if (is_zero_ether_addr(addr))
  341. psk->group = 1;
  342. else
  343. os_memcpy(psk->addr, addr, ETH_ALEN);
  344. pos = buf + 17;
  345. if (*pos == '\0') {
  346. wpa_printf(MSG_ERROR, "No PSK on line %d in '%s'",
  347. line, fname);
  348. os_free(psk);
  349. ret = -1;
  350. break;
  351. }
  352. pos++;
  353. ok = 0;
  354. len = os_strlen(pos);
  355. if (len == 64 && hexstr2bin(pos, psk->psk, PMK_LEN) == 0)
  356. ok = 1;
  357. else if (len >= 8 && len < 64) {
  358. pbkdf2_sha1(pos, ssid->ssid, ssid->ssid_len,
  359. 4096, psk->psk, PMK_LEN);
  360. ok = 1;
  361. }
  362. if (!ok) {
  363. wpa_printf(MSG_ERROR, "Invalid PSK '%s' on line %d in "
  364. "'%s'", pos, line, fname);
  365. os_free(psk);
  366. ret = -1;
  367. break;
  368. }
  369. psk->next = ssid->wpa_psk;
  370. ssid->wpa_psk = psk;
  371. }
  372. fclose(f);
  373. return ret;
  374. }
  375. int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf)
  376. {
  377. struct hostapd_ssid *ssid = &conf->ssid;
  378. if (ssid->wpa_passphrase != NULL) {
  379. if (ssid->wpa_psk != NULL) {
  380. wpa_printf(MSG_ERROR, "Warning: both WPA PSK and "
  381. "passphrase set. Using passphrase.");
  382. os_free(ssid->wpa_psk);
  383. }
  384. ssid->wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
  385. if (ssid->wpa_psk == NULL) {
  386. wpa_printf(MSG_ERROR, "Unable to alloc space for PSK");
  387. return -1;
  388. }
  389. wpa_hexdump_ascii(MSG_DEBUG, "SSID",
  390. (u8 *) ssid->ssid, ssid->ssid_len);
  391. wpa_hexdump_ascii(MSG_DEBUG, "PSK (ASCII passphrase)",
  392. (u8 *) ssid->wpa_passphrase,
  393. os_strlen(ssid->wpa_passphrase));
  394. pbkdf2_sha1(ssid->wpa_passphrase,
  395. ssid->ssid, ssid->ssid_len,
  396. 4096, ssid->wpa_psk->psk, PMK_LEN);
  397. wpa_hexdump(MSG_DEBUG, "PSK (from passphrase)",
  398. ssid->wpa_psk->psk, PMK_LEN);
  399. ssid->wpa_psk->group = 1;
  400. }
  401. if (ssid->wpa_psk_file) {
  402. if (hostapd_config_read_wpa_psk(ssid->wpa_psk_file,
  403. &conf->ssid))
  404. return -1;
  405. }
  406. return 0;
  407. }
  408. #ifdef EAP_SERVER
  409. static int hostapd_config_read_eap_user(const char *fname,
  410. struct hostapd_bss_config *conf)
  411. {
  412. FILE *f;
  413. char buf[512], *pos, *start, *pos2;
  414. int line = 0, ret = 0, num_methods;
  415. struct hostapd_eap_user *user, *tail = NULL;
  416. if (!fname)
  417. return 0;
  418. f = fopen(fname, "r");
  419. if (!f) {
  420. wpa_printf(MSG_ERROR, "EAP user file '%s' not found.", fname);
  421. return -1;
  422. }
  423. /* Lines: "user" METHOD,METHOD2 "password" (password optional) */
  424. while (fgets(buf, sizeof(buf), f)) {
  425. line++;
  426. if (buf[0] == '#')
  427. continue;
  428. pos = buf;
  429. while (*pos != '\0') {
  430. if (*pos == '\n') {
  431. *pos = '\0';
  432. break;
  433. }
  434. pos++;
  435. }
  436. if (buf[0] == '\0')
  437. continue;
  438. user = NULL;
  439. if (buf[0] != '"' && buf[0] != '*') {
  440. wpa_printf(MSG_ERROR, "Invalid EAP identity (no \" in "
  441. "start) on line %d in '%s'", line, fname);
  442. goto failed;
  443. }
  444. user = os_zalloc(sizeof(*user));
  445. if (user == NULL) {
  446. wpa_printf(MSG_ERROR, "EAP user allocation failed");
  447. goto failed;
  448. }
  449. user->force_version = -1;
  450. if (buf[0] == '*') {
  451. pos = buf;
  452. } else {
  453. pos = buf + 1;
  454. start = pos;
  455. while (*pos != '"' && *pos != '\0')
  456. pos++;
  457. if (*pos == '\0') {
  458. wpa_printf(MSG_ERROR, "Invalid EAP identity "
  459. "(no \" in end) on line %d in '%s'",
  460. line, fname);
  461. goto failed;
  462. }
  463. user->identity = os_malloc(pos - start);
  464. if (user->identity == NULL) {
  465. wpa_printf(MSG_ERROR, "Failed to allocate "
  466. "memory for EAP identity");
  467. goto failed;
  468. }
  469. os_memcpy(user->identity, start, pos - start);
  470. user->identity_len = pos - start;
  471. if (pos[0] == '"' && pos[1] == '*') {
  472. user->wildcard_prefix = 1;
  473. pos++;
  474. }
  475. }
  476. pos++;
  477. while (*pos == ' ' || *pos == '\t')
  478. pos++;
  479. if (*pos == '\0') {
  480. wpa_printf(MSG_ERROR, "No EAP method on line %d in "
  481. "'%s'", line, fname);
  482. goto failed;
  483. }
  484. start = pos;
  485. while (*pos != ' ' && *pos != '\t' && *pos != '\0')
  486. pos++;
  487. if (*pos == '\0') {
  488. pos = NULL;
  489. } else {
  490. *pos = '\0';
  491. pos++;
  492. }
  493. num_methods = 0;
  494. while (*start) {
  495. char *pos3 = os_strchr(start, ',');
  496. if (pos3) {
  497. *pos3++ = '\0';
  498. }
  499. user->methods[num_methods].method =
  500. eap_server_get_type(
  501. start,
  502. &user->methods[num_methods].vendor);
  503. if (user->methods[num_methods].vendor ==
  504. EAP_VENDOR_IETF &&
  505. user->methods[num_methods].method == EAP_TYPE_NONE)
  506. {
  507. if (os_strcmp(start, "TTLS-PAP") == 0) {
  508. user->ttls_auth |= EAP_TTLS_AUTH_PAP;
  509. goto skip_eap;
  510. }
  511. if (os_strcmp(start, "TTLS-CHAP") == 0) {
  512. user->ttls_auth |= EAP_TTLS_AUTH_CHAP;
  513. goto skip_eap;
  514. }
  515. if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
  516. user->ttls_auth |=
  517. EAP_TTLS_AUTH_MSCHAP;
  518. goto skip_eap;
  519. }
  520. if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
  521. user->ttls_auth |=
  522. EAP_TTLS_AUTH_MSCHAPV2;
  523. goto skip_eap;
  524. }
  525. wpa_printf(MSG_ERROR, "Unsupported EAP type "
  526. "'%s' on line %d in '%s'",
  527. start, line, fname);
  528. goto failed;
  529. }
  530. num_methods++;
  531. if (num_methods >= EAP_USER_MAX_METHODS)
  532. break;
  533. skip_eap:
  534. if (pos3 == NULL)
  535. break;
  536. start = pos3;
  537. }
  538. if (num_methods == 0 && user->ttls_auth == 0) {
  539. wpa_printf(MSG_ERROR, "No EAP types configured on "
  540. "line %d in '%s'", line, fname);
  541. goto failed;
  542. }
  543. if (pos == NULL)
  544. goto done;
  545. while (*pos == ' ' || *pos == '\t')
  546. pos++;
  547. if (*pos == '\0')
  548. goto done;
  549. if (os_strncmp(pos, "[ver=0]", 7) == 0) {
  550. user->force_version = 0;
  551. goto done;
  552. }
  553. if (os_strncmp(pos, "[ver=1]", 7) == 0) {
  554. user->force_version = 1;
  555. goto done;
  556. }
  557. if (os_strncmp(pos, "[2]", 3) == 0) {
  558. user->phase2 = 1;
  559. goto done;
  560. }
  561. if (*pos == '"') {
  562. pos++;
  563. start = pos;
  564. while (*pos != '"' && *pos != '\0')
  565. pos++;
  566. if (*pos == '\0') {
  567. wpa_printf(MSG_ERROR, "Invalid EAP password "
  568. "(no \" in end) on line %d in '%s'",
  569. line, fname);
  570. goto failed;
  571. }
  572. user->password = os_malloc(pos - start);
  573. if (user->password == NULL) {
  574. wpa_printf(MSG_ERROR, "Failed to allocate "
  575. "memory for EAP password");
  576. goto failed;
  577. }
  578. os_memcpy(user->password, start, pos - start);
  579. user->password_len = pos - start;
  580. pos++;
  581. } else if (os_strncmp(pos, "hash:", 5) == 0) {
  582. pos += 5;
  583. pos2 = pos;
  584. while (*pos2 != '\0' && *pos2 != ' ' &&
  585. *pos2 != '\t' && *pos2 != '#')
  586. pos2++;
  587. if (pos2 - pos != 32) {
  588. wpa_printf(MSG_ERROR, "Invalid password hash "
  589. "on line %d in '%s'", line, fname);
  590. goto failed;
  591. }
  592. user->password = os_malloc(16);
  593. if (user->password == NULL) {
  594. wpa_printf(MSG_ERROR, "Failed to allocate "
  595. "memory for EAP password hash");
  596. goto failed;
  597. }
  598. if (hexstr2bin(pos, user->password, 16) < 0) {
  599. wpa_printf(MSG_ERROR, "Invalid hash password "
  600. "on line %d in '%s'", line, fname);
  601. goto failed;
  602. }
  603. user->password_len = 16;
  604. user->password_hash = 1;
  605. pos = pos2;
  606. } else {
  607. pos2 = pos;
  608. while (*pos2 != '\0' && *pos2 != ' ' &&
  609. *pos2 != '\t' && *pos2 != '#')
  610. pos2++;
  611. if ((pos2 - pos) & 1) {
  612. wpa_printf(MSG_ERROR, "Invalid hex password "
  613. "on line %d in '%s'", line, fname);
  614. goto failed;
  615. }
  616. user->password = os_malloc((pos2 - pos) / 2);
  617. if (user->password == NULL) {
  618. wpa_printf(MSG_ERROR, "Failed to allocate "
  619. "memory for EAP password");
  620. goto failed;
  621. }
  622. if (hexstr2bin(pos, user->password,
  623. (pos2 - pos) / 2) < 0) {
  624. wpa_printf(MSG_ERROR, "Invalid hex password "
  625. "on line %d in '%s'", line, fname);
  626. goto failed;
  627. }
  628. user->password_len = (pos2 - pos) / 2;
  629. pos = pos2;
  630. }
  631. while (*pos == ' ' || *pos == '\t')
  632. pos++;
  633. if (os_strncmp(pos, "[2]", 3) == 0) {
  634. user->phase2 = 1;
  635. }
  636. done:
  637. if (tail == NULL) {
  638. tail = conf->eap_user = user;
  639. } else {
  640. tail->next = user;
  641. tail = user;
  642. }
  643. continue;
  644. failed:
  645. if (user) {
  646. os_free(user->password);
  647. os_free(user->identity);
  648. os_free(user);
  649. }
  650. ret = -1;
  651. break;
  652. }
  653. fclose(f);
  654. return ret;
  655. }
  656. #endif /* EAP_SERVER */
  657. #ifndef CONFIG_NO_RADIUS
  658. static int
  659. hostapd_config_read_radius_addr(struct hostapd_radius_server **server,
  660. int *num_server, const char *val, int def_port,
  661. struct hostapd_radius_server **curr_serv)
  662. {
  663. struct hostapd_radius_server *nserv;
  664. int ret;
  665. static int server_index = 1;
  666. nserv = os_realloc(*server, (*num_server + 1) * sizeof(*nserv));
  667. if (nserv == NULL)
  668. return -1;
  669. *server = nserv;
  670. nserv = &nserv[*num_server];
  671. (*num_server)++;
  672. (*curr_serv) = nserv;
  673. os_memset(nserv, 0, sizeof(*nserv));
  674. nserv->port = def_port;
  675. ret = hostapd_parse_ip_addr(val, &nserv->addr);
  676. nserv->index = server_index++;
  677. return ret;
  678. }
  679. #endif /* CONFIG_NO_RADIUS */
  680. static int hostapd_config_parse_key_mgmt(int line, const char *value)
  681. {
  682. int val = 0, last;
  683. char *start, *end, *buf;
  684. buf = os_strdup(value);
  685. if (buf == NULL)
  686. return -1;
  687. start = buf;
  688. while (*start != '\0') {
  689. while (*start == ' ' || *start == '\t')
  690. start++;
  691. if (*start == '\0')
  692. break;
  693. end = start;
  694. while (*end != ' ' && *end != '\t' && *end != '\0')
  695. end++;
  696. last = *end == '\0';
  697. *end = '\0';
  698. if (os_strcmp(start, "WPA-PSK") == 0)
  699. val |= WPA_KEY_MGMT_PSK;
  700. else if (os_strcmp(start, "WPA-EAP") == 0)
  701. val |= WPA_KEY_MGMT_IEEE8021X;
  702. #ifdef CONFIG_IEEE80211R
  703. else if (os_strcmp(start, "FT-PSK") == 0)
  704. val |= WPA_KEY_MGMT_FT_PSK;
  705. else if (os_strcmp(start, "FT-EAP") == 0)
  706. val |= WPA_KEY_MGMT_FT_IEEE8021X;
  707. #endif /* CONFIG_IEEE80211R */
  708. #ifdef CONFIG_IEEE80211W
  709. else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
  710. val |= WPA_KEY_MGMT_PSK_SHA256;
  711. else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
  712. val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
  713. #endif /* CONFIG_IEEE80211W */
  714. else {
  715. wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
  716. line, start);
  717. os_free(buf);
  718. return -1;
  719. }
  720. if (last)
  721. break;
  722. start = end + 1;
  723. }
  724. os_free(buf);
  725. if (val == 0) {
  726. wpa_printf(MSG_ERROR, "Line %d: no key_mgmt values "
  727. "configured.", line);
  728. return -1;
  729. }
  730. return val;
  731. }
  732. static int hostapd_config_parse_cipher(int line, const char *value)
  733. {
  734. int val = 0, last;
  735. char *start, *end, *buf;
  736. buf = os_strdup(value);
  737. if (buf == NULL)
  738. return -1;
  739. start = buf;
  740. while (*start != '\0') {
  741. while (*start == ' ' || *start == '\t')
  742. start++;
  743. if (*start == '\0')
  744. break;
  745. end = start;
  746. while (*end != ' ' && *end != '\t' && *end != '\0')
  747. end++;
  748. last = *end == '\0';
  749. *end = '\0';
  750. if (os_strcmp(start, "CCMP") == 0)
  751. val |= WPA_CIPHER_CCMP;
  752. else if (os_strcmp(start, "TKIP") == 0)
  753. val |= WPA_CIPHER_TKIP;
  754. else if (os_strcmp(start, "WEP104") == 0)
  755. val |= WPA_CIPHER_WEP104;
  756. else if (os_strcmp(start, "WEP40") == 0)
  757. val |= WPA_CIPHER_WEP40;
  758. else if (os_strcmp(start, "NONE") == 0)
  759. val |= WPA_CIPHER_NONE;
  760. else {
  761. wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
  762. line, start);
  763. os_free(buf);
  764. return -1;
  765. }
  766. if (last)
  767. break;
  768. start = end + 1;
  769. }
  770. os_free(buf);
  771. if (val == 0) {
  772. wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
  773. line);
  774. return -1;
  775. }
  776. return val;
  777. }
  778. static int hostapd_config_check_bss(struct hostapd_bss_config *bss,
  779. struct hostapd_config *conf)
  780. {
  781. if (bss->ieee802_1x && !bss->eap_server &&
  782. !bss->radius->auth_servers) {
  783. wpa_printf(MSG_ERROR, "Invalid IEEE 802.1X configuration (no "
  784. "EAP authenticator configured).");
  785. return -1;
  786. }
  787. if (bss->wpa && (bss->wpa_key_mgmt & WPA_KEY_MGMT_PSK) &&
  788. bss->ssid.wpa_psk == NULL && bss->ssid.wpa_passphrase == NULL &&
  789. bss->ssid.wpa_psk_file == NULL) {
  790. wpa_printf(MSG_ERROR, "WPA-PSK enabled, but PSK or passphrase "
  791. "is not configured.");
  792. return -1;
  793. }
  794. if (hostapd_mac_comp_empty(bss->bssid) != 0) {
  795. size_t i;
  796. for (i = 0; i < conf->num_bss; i++) {
  797. if ((&conf->bss[i] != bss) &&
  798. (hostapd_mac_comp(conf->bss[i].bssid,
  799. bss->bssid) == 0)) {
  800. wpa_printf(MSG_ERROR, "Duplicate BSSID " MACSTR
  801. " on interface '%s' and '%s'.",
  802. MAC2STR(bss->bssid),
  803. conf->bss[i].iface, bss->iface);
  804. return -1;
  805. }
  806. }
  807. }
  808. #ifdef CONFIG_IEEE80211R
  809. if ((bss->wpa_key_mgmt &
  810. (WPA_KEY_MGMT_FT_PSK | WPA_KEY_MGMT_FT_IEEE8021X)) &&
  811. (bss->nas_identifier == NULL ||
  812. os_strlen(bss->nas_identifier) < 1 ||
  813. os_strlen(bss->nas_identifier) > FT_R0KH_ID_MAX_LEN)) {
  814. wpa_printf(MSG_ERROR, "FT (IEEE 802.11r) requires "
  815. "nas_identifier to be configured as a 1..48 octet "
  816. "string");
  817. return -1;
  818. }
  819. #endif /* CONFIG_IEEE80211R */
  820. #ifdef CONFIG_IEEE80211N
  821. if (conf->ieee80211n && bss->wpa &&
  822. !(bss->wpa_pairwise & WPA_CIPHER_CCMP) &&
  823. !(bss->rsn_pairwise & WPA_CIPHER_CCMP)) {
  824. wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) with WPA/WPA2 "
  825. "requires CCMP to be enabled");
  826. return -1;
  827. }
  828. #endif /* CONFIG_IEEE80211N */
  829. return 0;
  830. }
  831. static int hostapd_config_check(struct hostapd_config *conf)
  832. {
  833. size_t i;
  834. if (conf->ieee80211d && (!conf->country[0] || !conf->country[1])) {
  835. wpa_printf(MSG_ERROR, "Cannot enable IEEE 802.11d without "
  836. "setting the country_code");
  837. return -1;
  838. }
  839. for (i = 0; i < conf->num_bss; i++) {
  840. if (hostapd_config_check_bss(&conf->bss[i], conf))
  841. return -1;
  842. }
  843. return 0;
  844. }
  845. static int hostapd_config_read_wep(struct hostapd_wep_keys *wep, int keyidx,
  846. char *val)
  847. {
  848. size_t len = os_strlen(val);
  849. if (keyidx < 0 || keyidx > 3 || wep->key[keyidx] != NULL)
  850. return -1;
  851. if (val[0] == '"') {
  852. if (len < 2 || val[len - 1] != '"')
  853. return -1;
  854. len -= 2;
  855. wep->key[keyidx] = os_malloc(len);
  856. if (wep->key[keyidx] == NULL)
  857. return -1;
  858. os_memcpy(wep->key[keyidx], val + 1, len);
  859. wep->len[keyidx] = len;
  860. } else {
  861. if (len & 1)
  862. return -1;
  863. len /= 2;
  864. wep->key[keyidx] = os_malloc(len);
  865. if (wep->key[keyidx] == NULL)
  866. return -1;
  867. wep->len[keyidx] = len;
  868. if (hexstr2bin(val, wep->key[keyidx], len) < 0)
  869. return -1;
  870. }
  871. wep->keys_set++;
  872. return 0;
  873. }
  874. static int hostapd_parse_rates(int **rate_list, char *val)
  875. {
  876. int *list;
  877. int count;
  878. char *pos, *end;
  879. os_free(*rate_list);
  880. *rate_list = NULL;
  881. pos = val;
  882. count = 0;
  883. while (*pos != '\0') {
  884. if (*pos == ' ')
  885. count++;
  886. pos++;
  887. }
  888. list = os_malloc(sizeof(int) * (count + 2));
  889. if (list == NULL)
  890. return -1;
  891. pos = val;
  892. count = 0;
  893. while (*pos != '\0') {
  894. end = os_strchr(pos, ' ');
  895. if (end)
  896. *end = '\0';
  897. list[count++] = atoi(pos);
  898. if (!end)
  899. break;
  900. pos = end + 1;
  901. }
  902. list[count] = -1;
  903. *rate_list = list;
  904. return 0;
  905. }
  906. static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname)
  907. {
  908. struct hostapd_bss_config *bss;
  909. if (*ifname == '\0')
  910. return -1;
  911. bss = os_realloc(conf->bss, (conf->num_bss + 1) *
  912. sizeof(struct hostapd_bss_config));
  913. if (bss == NULL) {
  914. wpa_printf(MSG_ERROR, "Failed to allocate memory for "
  915. "multi-BSS entry");
  916. return -1;
  917. }
  918. conf->bss = bss;
  919. bss = &(conf->bss[conf->num_bss]);
  920. os_memset(bss, 0, sizeof(*bss));
  921. bss->radius = os_zalloc(sizeof(*bss->radius));
  922. if (bss->radius == NULL) {
  923. wpa_printf(MSG_ERROR, "Failed to allocate memory for "
  924. "multi-BSS RADIUS data");
  925. return -1;
  926. }
  927. conf->num_bss++;
  928. conf->last_bss = bss;
  929. hostapd_config_defaults_bss(bss);
  930. os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
  931. os_memcpy(bss->ssid.vlan, bss->iface, IFNAMSIZ + 1);
  932. return 0;
  933. }
  934. static int valid_cw(int cw)
  935. {
  936. return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 ||
  937. cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023);
  938. }
  939. enum {
  940. IEEE80211_TX_QUEUE_DATA0 = 0, /* used for EDCA AC_VO data */
  941. IEEE80211_TX_QUEUE_DATA1 = 1, /* used for EDCA AC_VI data */
  942. IEEE80211_TX_QUEUE_DATA2 = 2, /* used for EDCA AC_BE data */
  943. IEEE80211_TX_QUEUE_DATA3 = 3, /* used for EDCA AC_BK data */
  944. IEEE80211_TX_QUEUE_DATA4 = 4,
  945. IEEE80211_TX_QUEUE_AFTER_BEACON = 6,
  946. IEEE80211_TX_QUEUE_BEACON = 7
  947. };
  948. static int hostapd_config_tx_queue(struct hostapd_config *conf, char *name,
  949. char *val)
  950. {
  951. int num;
  952. char *pos;
  953. struct hostapd_tx_queue_params *queue;
  954. /* skip 'tx_queue_' prefix */
  955. pos = name + 9;
  956. if (os_strncmp(pos, "data", 4) == 0 &&
  957. pos[4] >= '0' && pos[4] <= '9' && pos[5] == '_') {
  958. num = pos[4] - '0';
  959. pos += 6;
  960. } else if (os_strncmp(pos, "after_beacon_", 13) == 0) {
  961. num = IEEE80211_TX_QUEUE_AFTER_BEACON;
  962. pos += 13;
  963. } else if (os_strncmp(pos, "beacon_", 7) == 0) {
  964. num = IEEE80211_TX_QUEUE_BEACON;
  965. pos += 7;
  966. } else {
  967. wpa_printf(MSG_ERROR, "Unknown tx_queue name '%s'", pos);
  968. return -1;
  969. }
  970. queue = &conf->tx_queue[num];
  971. if (os_strcmp(pos, "aifs") == 0) {
  972. queue->aifs = atoi(val);
  973. if (queue->aifs < 0 || queue->aifs > 255) {
  974. wpa_printf(MSG_ERROR, "Invalid AIFS value %d",
  975. queue->aifs);
  976. return -1;
  977. }
  978. } else if (os_strcmp(pos, "cwmin") == 0) {
  979. queue->cwmin = atoi(val);
  980. if (!valid_cw(queue->cwmin)) {
  981. wpa_printf(MSG_ERROR, "Invalid cwMin value %d",
  982. queue->cwmin);
  983. return -1;
  984. }
  985. } else if (os_strcmp(pos, "cwmax") == 0) {
  986. queue->cwmax = atoi(val);
  987. if (!valid_cw(queue->cwmax)) {
  988. wpa_printf(MSG_ERROR, "Invalid cwMax value %d",
  989. queue->cwmax);
  990. return -1;
  991. }
  992. } else if (os_strcmp(pos, "burst") == 0) {
  993. queue->burst = hostapd_config_read_int10(val);
  994. } else {
  995. wpa_printf(MSG_ERROR, "Unknown tx_queue field '%s'", pos);
  996. return -1;
  997. }
  998. queue->configured = 1;
  999. return 0;
  1000. }
  1001. static int hostapd_config_wmm_ac(struct hostapd_config *conf, char *name,
  1002. char *val)
  1003. {
  1004. int num, v;
  1005. char *pos;
  1006. struct hostapd_wmm_ac_params *ac;
  1007. /* skip 'wme_ac_' or 'wmm_ac_' prefix */
  1008. pos = name + 7;
  1009. if (os_strncmp(pos, "be_", 3) == 0) {
  1010. num = 0;
  1011. pos += 3;
  1012. } else if (os_strncmp(pos, "bk_", 3) == 0) {
  1013. num = 1;
  1014. pos += 3;
  1015. } else if (os_strncmp(pos, "vi_", 3) == 0) {
  1016. num = 2;
  1017. pos += 3;
  1018. } else if (os_strncmp(pos, "vo_", 3) == 0) {
  1019. num = 3;
  1020. pos += 3;
  1021. } else {
  1022. wpa_printf(MSG_ERROR, "Unknown WMM name '%s'", pos);
  1023. return -1;
  1024. }
  1025. ac = &conf->wmm_ac_params[num];
  1026. if (os_strcmp(pos, "aifs") == 0) {
  1027. v = atoi(val);
  1028. if (v < 1 || v > 255) {
  1029. wpa_printf(MSG_ERROR, "Invalid AIFS value %d", v);
  1030. return -1;
  1031. }
  1032. ac->aifs = v;
  1033. } else if (os_strcmp(pos, "cwmin") == 0) {
  1034. v = atoi(val);
  1035. if (v < 0 || v > 12) {
  1036. wpa_printf(MSG_ERROR, "Invalid cwMin value %d", v);
  1037. return -1;
  1038. }
  1039. ac->cwmin = v;
  1040. } else if (os_strcmp(pos, "cwmax") == 0) {
  1041. v = atoi(val);
  1042. if (v < 0 || v > 12) {
  1043. wpa_printf(MSG_ERROR, "Invalid cwMax value %d", v);
  1044. return -1;
  1045. }
  1046. ac->cwmax = v;
  1047. } else if (os_strcmp(pos, "txop_limit") == 0) {
  1048. v = atoi(val);
  1049. if (v < 0 || v > 0xffff) {
  1050. wpa_printf(MSG_ERROR, "Invalid txop value %d", v);
  1051. return -1;
  1052. }
  1053. ac->txop_limit = v;
  1054. } else if (os_strcmp(pos, "acm") == 0) {
  1055. v = atoi(val);
  1056. if (v < 0 || v > 1) {
  1057. wpa_printf(MSG_ERROR, "Invalid acm value %d", v);
  1058. return -1;
  1059. }
  1060. ac->admission_control_mandatory = v;
  1061. } else {
  1062. wpa_printf(MSG_ERROR, "Unknown wmm_ac_ field '%s'", pos);
  1063. return -1;
  1064. }
  1065. return 0;
  1066. }
  1067. #ifdef CONFIG_IEEE80211R
  1068. static int add_r0kh(struct hostapd_bss_config *bss, char *value)
  1069. {
  1070. struct ft_remote_r0kh *r0kh;
  1071. char *pos, *next;
  1072. r0kh = os_zalloc(sizeof(*r0kh));
  1073. if (r0kh == NULL)
  1074. return -1;
  1075. /* 02:01:02:03:04:05 a.example.com 000102030405060708090a0b0c0d0e0f */
  1076. pos = value;
  1077. next = os_strchr(pos, ' ');
  1078. if (next)
  1079. *next++ = '\0';
  1080. if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
  1081. wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
  1082. os_free(r0kh);
  1083. return -1;
  1084. }
  1085. pos = next;
  1086. next = os_strchr(pos, ' ');
  1087. if (next)
  1088. *next++ = '\0';
  1089. if (next == NULL || next - pos > FT_R0KH_ID_MAX_LEN) {
  1090. wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
  1091. os_free(r0kh);
  1092. return -1;
  1093. }
  1094. r0kh->id_len = next - pos - 1;
  1095. os_memcpy(r0kh->id, pos, r0kh->id_len);
  1096. pos = next;
  1097. if (hexstr2bin(pos, r0kh->key, sizeof(r0kh->key))) {
  1098. wpa_printf(MSG_ERROR, "Invalid R0KH key: '%s'", pos);
  1099. os_free(r0kh);
  1100. return -1;
  1101. }
  1102. r0kh->next = bss->r0kh_list;
  1103. bss->r0kh_list = r0kh;
  1104. return 0;
  1105. }
  1106. static int add_r1kh(struct hostapd_bss_config *bss, char *value)
  1107. {
  1108. struct ft_remote_r1kh *r1kh;
  1109. char *pos, *next;
  1110. r1kh = os_zalloc(sizeof(*r1kh));
  1111. if (r1kh == NULL)
  1112. return -1;
  1113. /* 02:01:02:03:04:05 02:01:02:03:04:05
  1114. * 000102030405060708090a0b0c0d0e0f */
  1115. pos = value;
  1116. next = os_strchr(pos, ' ');
  1117. if (next)
  1118. *next++ = '\0';
  1119. if (next == NULL || hwaddr_aton(pos, r1kh->addr)) {
  1120. wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos);
  1121. os_free(r1kh);
  1122. return -1;
  1123. }
  1124. pos = next;
  1125. next = os_strchr(pos, ' ');
  1126. if (next)
  1127. *next++ = '\0';
  1128. if (next == NULL || hwaddr_aton(pos, r1kh->id)) {
  1129. wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos);
  1130. os_free(r1kh);
  1131. return -1;
  1132. }
  1133. pos = next;
  1134. if (hexstr2bin(pos, r1kh->key, sizeof(r1kh->key))) {
  1135. wpa_printf(MSG_ERROR, "Invalid R1KH key: '%s'", pos);
  1136. os_free(r1kh);
  1137. return -1;
  1138. }
  1139. r1kh->next = bss->r1kh_list;
  1140. bss->r1kh_list = r1kh;
  1141. return 0;
  1142. }
  1143. #endif /* CONFIG_IEEE80211R */
  1144. #ifdef CONFIG_IEEE80211N
  1145. static int hostapd_config_ht_capab(struct hostapd_config *conf,
  1146. const char *capab)
  1147. {
  1148. if (os_strstr(capab, "[LDPC]"))
  1149. conf->ht_capab |= HT_CAP_INFO_LDPC_CODING_CAP;
  1150. if (os_strstr(capab, "[HT40-]")) {
  1151. conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
  1152. conf->secondary_channel = -1;
  1153. }
  1154. if (os_strstr(capab, "[HT40+]")) {
  1155. conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
  1156. conf->secondary_channel = 1;
  1157. }
  1158. if (os_strstr(capab, "[SMPS-STATIC]")) {
  1159. conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
  1160. conf->ht_capab |= HT_CAP_INFO_SMPS_STATIC;
  1161. }
  1162. if (os_strstr(capab, "[SMPS-DYNAMIC]")) {
  1163. conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
  1164. conf->ht_capab |= HT_CAP_INFO_SMPS_DYNAMIC;
  1165. }
  1166. if (os_strstr(capab, "[GF]"))
  1167. conf->ht_capab |= HT_CAP_INFO_GREEN_FIELD;
  1168. if (os_strstr(capab, "[SHORT-GI-20]"))
  1169. conf->ht_capab |= HT_CAP_INFO_SHORT_GI20MHZ;
  1170. if (os_strstr(capab, "[SHORT-GI-40]"))
  1171. conf->ht_capab |= HT_CAP_INFO_SHORT_GI40MHZ;
  1172. if (os_strstr(capab, "[TX-STBC]"))
  1173. conf->ht_capab |= HT_CAP_INFO_TX_STBC;
  1174. if (os_strstr(capab, "[RX-STBC1]")) {
  1175. conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
  1176. conf->ht_capab |= HT_CAP_INFO_RX_STBC_1;
  1177. }
  1178. if (os_strstr(capab, "[RX-STBC12]")) {
  1179. conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
  1180. conf->ht_capab |= HT_CAP_INFO_RX_STBC_12;
  1181. }
  1182. if (os_strstr(capab, "[RX-STBC123]")) {
  1183. conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
  1184. conf->ht_capab |= HT_CAP_INFO_RX_STBC_123;
  1185. }
  1186. if (os_strstr(capab, "[DELAYED-BA]"))
  1187. conf->ht_capab |= HT_CAP_INFO_DELAYED_BA;
  1188. if (os_strstr(capab, "[MAX-AMSDU-7935]"))
  1189. conf->ht_capab |= HT_CAP_INFO_MAX_AMSDU_SIZE;
  1190. if (os_strstr(capab, "[DSSS_CCK-40]"))
  1191. conf->ht_capab |= HT_CAP_INFO_DSSS_CCK40MHZ;
  1192. if (os_strstr(capab, "[PSMP]"))
  1193. conf->ht_capab |= HT_CAP_INFO_PSMP_SUPP;
  1194. if (os_strstr(capab, "[LSIG-TXOP-PROT]"))
  1195. conf->ht_capab |= HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT;
  1196. return 0;
  1197. }
  1198. #endif /* CONFIG_IEEE80211N */
  1199. /**
  1200. * hostapd_config_read - Read and parse a configuration file
  1201. * @fname: Configuration file name (including path, if needed)
  1202. * Returns: Allocated configuration data structure
  1203. */
  1204. struct hostapd_config * hostapd_config_read(const char *fname)
  1205. {
  1206. struct hostapd_config *conf;
  1207. struct hostapd_bss_config *bss;
  1208. FILE *f;
  1209. char buf[256], *pos;
  1210. int line = 0;
  1211. int errors = 0;
  1212. int pairwise;
  1213. size_t i;
  1214. f = fopen(fname, "r");
  1215. if (f == NULL) {
  1216. wpa_printf(MSG_ERROR, "Could not open configuration file '%s' "
  1217. "for reading.", fname);
  1218. return NULL;
  1219. }
  1220. conf = hostapd_config_defaults();
  1221. if (conf == NULL) {
  1222. fclose(f);
  1223. return NULL;
  1224. }
  1225. bss = conf->last_bss = conf->bss;
  1226. while (fgets(buf, sizeof(buf), f)) {
  1227. bss = conf->last_bss;
  1228. line++;
  1229. if (buf[0] == '#')
  1230. continue;
  1231. pos = buf;
  1232. while (*pos != '\0') {
  1233. if (*pos == '\n') {
  1234. *pos = '\0';
  1235. break;
  1236. }
  1237. pos++;
  1238. }
  1239. if (buf[0] == '\0')
  1240. continue;
  1241. pos = os_strchr(buf, '=');
  1242. if (pos == NULL) {
  1243. wpa_printf(MSG_ERROR, "Line %d: invalid line '%s'",
  1244. line, buf);
  1245. errors++;
  1246. continue;
  1247. }
  1248. *pos = '\0';
  1249. pos++;
  1250. if (os_strcmp(buf, "interface") == 0) {
  1251. os_strlcpy(conf->bss[0].iface, pos,
  1252. sizeof(conf->bss[0].iface));
  1253. } else if (os_strcmp(buf, "bridge") == 0) {
  1254. os_strlcpy(bss->bridge, pos, sizeof(bss->bridge));
  1255. } else if (os_strcmp(buf, "driver") == 0) {
  1256. int j;
  1257. /* clear to get error below if setting is invalid */
  1258. conf->driver = NULL;
  1259. for (j = 0; wpa_drivers[j]; j++) {
  1260. if (os_strcmp(pos, wpa_drivers[j]->name) == 0)
  1261. {
  1262. conf->driver = wpa_drivers[j];
  1263. break;
  1264. }
  1265. }
  1266. if (conf->driver == NULL) {
  1267. wpa_printf(MSG_ERROR, "Line %d: invalid/"
  1268. "unknown driver '%s'", line, pos);
  1269. errors++;
  1270. }
  1271. } else if (os_strcmp(buf, "debug") == 0) {
  1272. wpa_printf(MSG_DEBUG, "Line %d: DEPRECATED: 'debug' "
  1273. "configuration variable is not used "
  1274. "anymore", line);
  1275. } else if (os_strcmp(buf, "logger_syslog_level") == 0) {
  1276. bss->logger_syslog_level = atoi(pos);
  1277. } else if (os_strcmp(buf, "logger_stdout_level") == 0) {
  1278. bss->logger_stdout_level = atoi(pos);
  1279. } else if (os_strcmp(buf, "logger_syslog") == 0) {
  1280. bss->logger_syslog = atoi(pos);
  1281. } else if (os_strcmp(buf, "logger_stdout") == 0) {
  1282. bss->logger_stdout = atoi(pos);
  1283. } else if (os_strcmp(buf, "dump_file") == 0) {
  1284. bss->dump_log_name = os_strdup(pos);
  1285. } else if (os_strcmp(buf, "ssid") == 0) {
  1286. bss->ssid.ssid_len = os_strlen(pos);
  1287. if (bss->ssid.ssid_len > HOSTAPD_MAX_SSID_LEN ||
  1288. bss->ssid.ssid_len < 1) {
  1289. wpa_printf(MSG_ERROR, "Line %d: invalid SSID "
  1290. "'%s'", line, pos);
  1291. errors++;
  1292. } else {
  1293. os_memcpy(bss->ssid.ssid, pos,
  1294. bss->ssid.ssid_len);
  1295. bss->ssid.ssid[bss->ssid.ssid_len] = '\0';
  1296. bss->ssid.ssid_set = 1;
  1297. }
  1298. } else if (os_strcmp(buf, "macaddr_acl") == 0) {
  1299. bss->macaddr_acl = atoi(pos);
  1300. if (bss->macaddr_acl != ACCEPT_UNLESS_DENIED &&
  1301. bss->macaddr_acl != DENY_UNLESS_ACCEPTED &&
  1302. bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH) {
  1303. wpa_printf(MSG_ERROR, "Line %d: unknown "
  1304. "macaddr_acl %d",
  1305. line, bss->macaddr_acl);
  1306. }
  1307. } else if (os_strcmp(buf, "accept_mac_file") == 0) {
  1308. if (hostapd_config_read_maclist(pos, &bss->accept_mac,
  1309. &bss->num_accept_mac))
  1310. {
  1311. wpa_printf(MSG_ERROR, "Line %d: Failed to "
  1312. "read accept_mac_file '%s'",
  1313. line, pos);
  1314. errors++;
  1315. }
  1316. } else if (os_strcmp(buf, "deny_mac_file") == 0) {
  1317. if (hostapd_config_read_maclist(pos, &bss->deny_mac,
  1318. &bss->num_deny_mac)) {
  1319. wpa_printf(MSG_ERROR, "Line %d: Failed to "
  1320. "read deny_mac_file '%s'",
  1321. line, pos);
  1322. errors++;
  1323. }
  1324. } else if (os_strcmp(buf, "ap_max_inactivity") == 0) {
  1325. bss->ap_max_inactivity = atoi(pos);
  1326. } else if (os_strcmp(buf, "country_code") == 0) {
  1327. os_memcpy(conf->country, pos, 2);
  1328. /* FIX: make this configurable */
  1329. conf->country[2] = ' ';
  1330. } else if (os_strcmp(buf, "ieee80211d") == 0) {
  1331. conf->ieee80211d = atoi(pos);
  1332. } else if (os_strcmp(buf, "ieee8021x") == 0) {
  1333. bss->ieee802_1x = atoi(pos);
  1334. } else if (os_strcmp(buf, "eapol_version") == 0) {
  1335. bss->eapol_version = atoi(pos);
  1336. if (bss->eapol_version < 1 ||
  1337. bss->eapol_version > 2) {
  1338. wpa_printf(MSG_ERROR, "Line %d: invalid EAPOL "
  1339. "version (%d): '%s'.",
  1340. line, bss->eapol_version, pos);
  1341. errors++;
  1342. } else
  1343. wpa_printf(MSG_DEBUG, "eapol_version=%d",
  1344. bss->eapol_version);
  1345. #ifdef EAP_SERVER
  1346. } else if (os_strcmp(buf, "eap_authenticator") == 0) {
  1347. bss->eap_server = atoi(pos);
  1348. wpa_printf(MSG_ERROR, "Line %d: obsolete "
  1349. "eap_authenticator used; this has been "
  1350. "renamed to eap_server", line);
  1351. } else if (os_strcmp(buf, "eap_server") == 0) {
  1352. bss->eap_server = atoi(pos);
  1353. } else if (os_strcmp(buf, "eap_user_file") == 0) {
  1354. if (hostapd_config_read_eap_user(pos, bss))
  1355. errors++;
  1356. } else if (os_strcmp(buf, "ca_cert") == 0) {
  1357. os_free(bss->ca_cert);
  1358. bss->ca_cert = os_strdup(pos);
  1359. } else if (os_strcmp(buf, "server_cert") == 0) {
  1360. os_free(bss->server_cert);
  1361. bss->server_cert = os_strdup(pos);
  1362. } else if (os_strcmp(buf, "private_key") == 0) {
  1363. os_free(bss->private_key);
  1364. bss->private_key = os_strdup(pos);
  1365. } else if (os_strcmp(buf, "private_key_passwd") == 0) {
  1366. os_free(bss->private_key_passwd);
  1367. bss->private_key_passwd = os_strdup(pos);
  1368. } else if (os_strcmp(buf, "check_crl") == 0) {
  1369. bss->check_crl = atoi(pos);
  1370. } else if (os_strcmp(buf, "dh_file") == 0) {
  1371. os_free(bss->dh_file);
  1372. bss->dh_file = os_strdup(pos);
  1373. #ifdef EAP_SERVER_FAST
  1374. } else if (os_strcmp(buf, "pac_opaque_encr_key") == 0) {
  1375. os_free(bss->pac_opaque_encr_key);
  1376. bss->pac_opaque_encr_key = os_malloc(16);
  1377. if (bss->pac_opaque_encr_key == NULL) {
  1378. wpa_printf(MSG_ERROR, "Line %d: No memory for "
  1379. "pac_opaque_encr_key", line);
  1380. errors++;
  1381. } else if (hexstr2bin(pos, bss->pac_opaque_encr_key,
  1382. 16)) {
  1383. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  1384. "pac_opaque_encr_key", line);
  1385. errors++;
  1386. }
  1387. } else if (os_strcmp(buf, "eap_fast_a_id") == 0) {
  1388. size_t idlen = os_strlen(pos);
  1389. if (idlen & 1) {
  1390. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  1391. "eap_fast_a_id", line);
  1392. errors++;
  1393. } else {
  1394. os_free(bss->eap_fast_a_id);
  1395. bss->eap_fast_a_id = os_malloc(idlen / 2);
  1396. if (bss->eap_fast_a_id == NULL ||
  1397. hexstr2bin(pos, bss->eap_fast_a_id,
  1398. idlen / 2)) {
  1399. wpa_printf(MSG_ERROR, "Line %d: "
  1400. "Failed to parse "
  1401. "eap_fast_a_id", line);
  1402. errors++;
  1403. } else
  1404. bss->eap_fast_a_id_len = idlen / 2;
  1405. }
  1406. } else if (os_strcmp(buf, "eap_fast_a_id_info") == 0) {
  1407. os_free(bss->eap_fast_a_id_info);
  1408. bss->eap_fast_a_id_info = os_strdup(pos);
  1409. } else if (os_strcmp(buf, "eap_fast_prov") == 0) {
  1410. bss->eap_fast_prov = atoi(pos);
  1411. } else if (os_strcmp(buf, "pac_key_lifetime") == 0) {
  1412. bss->pac_key_lifetime = atoi(pos);
  1413. } else if (os_strcmp(buf, "pac_key_refresh_time") == 0) {
  1414. bss->pac_key_refresh_time = atoi(pos);
  1415. #endif /* EAP_SERVER_FAST */
  1416. #ifdef EAP_SERVER_SIM
  1417. } else if (os_strcmp(buf, "eap_sim_db") == 0) {
  1418. os_free(bss->eap_sim_db);
  1419. bss->eap_sim_db = os_strdup(pos);
  1420. } else if (os_strcmp(buf, "eap_sim_aka_result_ind") == 0) {
  1421. bss->eap_sim_aka_result_ind = atoi(pos);
  1422. #endif /* EAP_SERVER_SIM */
  1423. #ifdef EAP_SERVER_TNC
  1424. } else if (os_strcmp(buf, "tnc") == 0) {
  1425. bss->tnc = atoi(pos);
  1426. #endif /* EAP_SERVER_TNC */
  1427. #endif /* EAP_SERVER */
  1428. } else if (os_strcmp(buf, "eap_message") == 0) {
  1429. char *term;
  1430. bss->eap_req_id_text = os_strdup(pos);
  1431. if (bss->eap_req_id_text == NULL) {
  1432. wpa_printf(MSG_ERROR, "Line %d: Failed to "
  1433. "allocate memory for "
  1434. "eap_req_id_text", line);
  1435. errors++;
  1436. continue;
  1437. }
  1438. bss->eap_req_id_text_len =
  1439. os_strlen(bss->eap_req_id_text);
  1440. term = os_strstr(bss->eap_req_id_text, "\\0");
  1441. if (term) {
  1442. *term++ = '\0';
  1443. os_memmove(term, term + 1,
  1444. bss->eap_req_id_text_len -
  1445. (term - bss->eap_req_id_text) - 1);
  1446. bss->eap_req_id_text_len--;
  1447. }
  1448. } else if (os_strcmp(buf, "wep_key_len_broadcast") == 0) {
  1449. bss->default_wep_key_len = atoi(pos);
  1450. if (bss->default_wep_key_len > 13) {
  1451. wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
  1452. "key len %lu (= %lu bits)", line,
  1453. (unsigned long)
  1454. bss->default_wep_key_len,
  1455. (unsigned long)
  1456. bss->default_wep_key_len * 8);
  1457. errors++;
  1458. }
  1459. } else if (os_strcmp(buf, "wep_key_len_unicast") == 0) {
  1460. bss->individual_wep_key_len = atoi(pos);
  1461. if (bss->individual_wep_key_len < 0 ||
  1462. bss->individual_wep_key_len > 13) {
  1463. wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
  1464. "key len %d (= %d bits)", line,
  1465. bss->individual_wep_key_len,
  1466. bss->individual_wep_key_len * 8);
  1467. errors++;
  1468. }
  1469. } else if (os_strcmp(buf, "wep_rekey_period") == 0) {
  1470. bss->wep_rekeying_period = atoi(pos);
  1471. if (bss->wep_rekeying_period < 0) {
  1472. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1473. "period %d",
  1474. line, bss->wep_rekeying_period);
  1475. errors++;
  1476. }
  1477. } else if (os_strcmp(buf, "eap_reauth_period") == 0) {
  1478. bss->eap_reauth_period = atoi(pos);
  1479. if (bss->eap_reauth_period < 0) {
  1480. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1481. "period %d",
  1482. line, bss->eap_reauth_period);
  1483. errors++;
  1484. }
  1485. } else if (os_strcmp(buf, "eapol_key_index_workaround") == 0) {
  1486. bss->eapol_key_index_workaround = atoi(pos);
  1487. #ifdef CONFIG_IAPP
  1488. } else if (os_strcmp(buf, "iapp_interface") == 0) {
  1489. bss->ieee802_11f = 1;
  1490. os_strlcpy(bss->iapp_iface, pos,
  1491. sizeof(bss->iapp_iface));
  1492. #endif /* CONFIG_IAPP */
  1493. } else if (os_strcmp(buf, "own_ip_addr") == 0) {
  1494. if (hostapd_parse_ip_addr(pos, &bss->own_ip_addr)) {
  1495. wpa_printf(MSG_ERROR, "Line %d: invalid IP "
  1496. "address '%s'", line, pos);
  1497. errors++;
  1498. }
  1499. } else if (os_strcmp(buf, "nas_identifier") == 0) {
  1500. bss->nas_identifier = os_strdup(pos);
  1501. #ifndef CONFIG_NO_RADIUS
  1502. } else if (os_strcmp(buf, "auth_server_addr") == 0) {
  1503. if (hostapd_config_read_radius_addr(
  1504. &bss->radius->auth_servers,
  1505. &bss->radius->num_auth_servers, pos, 1812,
  1506. &bss->radius->auth_server)) {
  1507. wpa_printf(MSG_ERROR, "Line %d: invalid IP "
  1508. "address '%s'", line, pos);
  1509. errors++;
  1510. }
  1511. } else if (bss->radius->auth_server &&
  1512. os_strcmp(buf, "auth_server_port") == 0) {
  1513. bss->radius->auth_server->port = atoi(pos);
  1514. } else if (bss->radius->auth_server &&
  1515. os_strcmp(buf, "auth_server_shared_secret") == 0) {
  1516. int len = os_strlen(pos);
  1517. if (len == 0) {
  1518. /* RFC 2865, Ch. 3 */
  1519. wpa_printf(MSG_ERROR, "Line %d: empty shared "
  1520. "secret is not allowed.", line);
  1521. errors++;
  1522. }
  1523. bss->radius->auth_server->shared_secret =
  1524. (u8 *) os_strdup(pos);
  1525. bss->radius->auth_server->shared_secret_len = len;
  1526. } else if (os_strcmp(buf, "acct_server_addr") == 0) {
  1527. if (hostapd_config_read_radius_addr(
  1528. &bss->radius->acct_servers,
  1529. &bss->radius->num_acct_servers, pos, 1813,
  1530. &bss->radius->acct_server)) {
  1531. wpa_printf(MSG_ERROR, "Line %d: invalid IP "
  1532. "address '%s'", line, pos);
  1533. errors++;
  1534. }
  1535. } else if (bss->radius->acct_server &&
  1536. os_strcmp(buf, "acct_server_port") == 0) {
  1537. bss->radius->acct_server->port = atoi(pos);
  1538. } else if (bss->radius->acct_server &&
  1539. os_strcmp(buf, "acct_server_shared_secret") == 0) {
  1540. int len = os_strlen(pos);
  1541. if (len == 0) {
  1542. /* RFC 2865, Ch. 3 */
  1543. wpa_printf(MSG_ERROR, "Line %d: empty shared "
  1544. "secret is not allowed.", line);
  1545. errors++;
  1546. }
  1547. bss->radius->acct_server->shared_secret =
  1548. (u8 *) os_strdup(pos);
  1549. bss->radius->acct_server->shared_secret_len = len;
  1550. } else if (os_strcmp(buf, "radius_retry_primary_interval") ==
  1551. 0) {
  1552. bss->radius->retry_primary_interval = atoi(pos);
  1553. } else if (os_strcmp(buf, "radius_acct_interim_interval") == 0)
  1554. {
  1555. bss->acct_interim_interval = atoi(pos);
  1556. #endif /* CONFIG_NO_RADIUS */
  1557. } else if (os_strcmp(buf, "auth_algs") == 0) {
  1558. bss->auth_algs = atoi(pos);
  1559. if (bss->auth_algs == 0) {
  1560. wpa_printf(MSG_ERROR, "Line %d: no "
  1561. "authentication algorithms allowed",
  1562. line);
  1563. errors++;
  1564. }
  1565. } else if (os_strcmp(buf, "max_num_sta") == 0) {
  1566. bss->max_num_sta = atoi(pos);
  1567. if (bss->max_num_sta < 0 ||
  1568. bss->max_num_sta > MAX_STA_COUNT) {
  1569. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  1570. "max_num_sta=%d; allowed range "
  1571. "0..%d", line, bss->max_num_sta,
  1572. MAX_STA_COUNT);
  1573. errors++;
  1574. }
  1575. } else if (os_strcmp(buf, "wpa") == 0) {
  1576. bss->wpa = atoi(pos);
  1577. } else if (os_strcmp(buf, "wpa_group_rekey") == 0) {
  1578. bss->wpa_group_rekey = atoi(pos);
  1579. } else if (os_strcmp(buf, "wpa_strict_rekey") == 0) {
  1580. bss->wpa_strict_rekey = atoi(pos);
  1581. } else if (os_strcmp(buf, "wpa_gmk_rekey") == 0) {
  1582. bss->wpa_gmk_rekey = atoi(pos);
  1583. } else if (os_strcmp(buf, "wpa_ptk_rekey") == 0) {
  1584. bss->wpa_ptk_rekey = atoi(pos);
  1585. } else if (os_strcmp(buf, "wpa_passphrase") == 0) {
  1586. int len = os_strlen(pos);
  1587. if (len < 8 || len > 63) {
  1588. wpa_printf(MSG_ERROR, "Line %d: invalid WPA "
  1589. "passphrase length %d (expected "
  1590. "8..63)", line, len);
  1591. errors++;
  1592. } else {
  1593. os_free(bss->ssid.wpa_passphrase);
  1594. bss->ssid.wpa_passphrase = os_strdup(pos);
  1595. }
  1596. } else if (os_strcmp(buf, "wpa_psk") == 0) {
  1597. os_free(bss->ssid.wpa_psk);
  1598. bss->ssid.wpa_psk =
  1599. os_zalloc(sizeof(struct hostapd_wpa_psk));
  1600. if (bss->ssid.wpa_psk == NULL)
  1601. errors++;
  1602. else if (hexstr2bin(pos, bss->ssid.wpa_psk->psk,
  1603. PMK_LEN) ||
  1604. pos[PMK_LEN * 2] != '\0') {
  1605. wpa_printf(MSG_ERROR, "Line %d: Invalid PSK "
  1606. "'%s'.", line, pos);
  1607. errors++;
  1608. } else {
  1609. bss->ssid.wpa_psk->group = 1;
  1610. }
  1611. } else if (os_strcmp(buf, "wpa_psk_file") == 0) {
  1612. os_free(bss->ssid.wpa_psk_file);
  1613. bss->ssid.wpa_psk_file = os_strdup(pos);
  1614. if (!bss->ssid.wpa_psk_file) {
  1615. wpa_printf(MSG_ERROR, "Line %d: allocation "
  1616. "failed", line);
  1617. errors++;
  1618. }
  1619. } else if (os_strcmp(buf, "wpa_key_mgmt") == 0) {
  1620. bss->wpa_key_mgmt =
  1621. hostapd_config_parse_key_mgmt(line, pos);
  1622. if (bss->wpa_key_mgmt == -1)
  1623. errors++;
  1624. } else if (os_strcmp(buf, "wpa_pairwise") == 0) {
  1625. bss->wpa_pairwise =
  1626. hostapd_config_parse_cipher(line, pos);
  1627. if (bss->wpa_pairwise == -1 ||
  1628. bss->wpa_pairwise == 0)
  1629. errors++;
  1630. else if (bss->wpa_pairwise &
  1631. (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 |
  1632. WPA_CIPHER_WEP104)) {
  1633. wpa_printf(MSG_ERROR, "Line %d: unsupported "
  1634. "pairwise cipher suite '%s'",
  1635. bss->wpa_pairwise, pos);
  1636. errors++;
  1637. }
  1638. } else if (os_strcmp(buf, "rsn_pairwise") == 0) {
  1639. bss->rsn_pairwise =
  1640. hostapd_config_parse_cipher(line, pos);
  1641. if (bss->rsn_pairwise == -1 ||
  1642. bss->rsn_pairwise == 0)
  1643. errors++;
  1644. else if (bss->rsn_pairwise &
  1645. (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 |
  1646. WPA_CIPHER_WEP104)) {
  1647. wpa_printf(MSG_ERROR, "Line %d: unsupported "
  1648. "pairwise cipher suite '%s'",
  1649. bss->rsn_pairwise, pos);
  1650. errors++;
  1651. }
  1652. #ifdef CONFIG_RSN_PREAUTH
  1653. } else if (os_strcmp(buf, "rsn_preauth") == 0) {
  1654. bss->rsn_preauth = atoi(pos);
  1655. } else if (os_strcmp(buf, "rsn_preauth_interfaces") == 0) {
  1656. bss->rsn_preauth_interfaces = os_strdup(pos);
  1657. #endif /* CONFIG_RSN_PREAUTH */
  1658. #ifdef CONFIG_PEERKEY
  1659. } else if (os_strcmp(buf, "peerkey") == 0) {
  1660. bss->peerkey = atoi(pos);
  1661. #endif /* CONFIG_PEERKEY */
  1662. #ifdef CONFIG_IEEE80211R
  1663. } else if (os_strcmp(buf, "mobility_domain") == 0) {
  1664. if (os_strlen(pos) != 2 * MOBILITY_DOMAIN_ID_LEN ||
  1665. hexstr2bin(pos, bss->mobility_domain,
  1666. MOBILITY_DOMAIN_ID_LEN) != 0) {
  1667. wpa_printf(MSG_DEBUG, "Line %d: Invalid "
  1668. "mobility_domain '%s'", line, pos);
  1669. errors++;
  1670. continue;
  1671. }
  1672. } else if (os_strcmp(buf, "r1_key_holder") == 0) {
  1673. if (os_strlen(pos) != 2 * FT_R1KH_ID_LEN ||
  1674. hexstr2bin(pos, bss->r1_key_holder,
  1675. FT_R1KH_ID_LEN) != 0) {
  1676. wpa_printf(MSG_DEBUG, "Line %d: Invalid "
  1677. "r1_key_holder '%s'", line, pos);
  1678. errors++;
  1679. continue;
  1680. }
  1681. } else if (os_strcmp(buf, "r0_key_lifetime") == 0) {
  1682. bss->r0_key_lifetime = atoi(pos);
  1683. } else if (os_strcmp(buf, "reassociation_deadline") == 0) {
  1684. bss->reassociation_deadline = atoi(pos);
  1685. } else if (os_strcmp(buf, "r0kh") == 0) {
  1686. if (add_r0kh(bss, pos) < 0) {
  1687. wpa_printf(MSG_DEBUG, "Line %d: Invalid "
  1688. "r0kh '%s'", line, pos);
  1689. errors++;
  1690. continue;
  1691. }
  1692. } else if (os_strcmp(buf, "r1kh") == 0) {
  1693. if (add_r1kh(bss, pos) < 0) {
  1694. wpa_printf(MSG_DEBUG, "Line %d: Invalid "
  1695. "r1kh '%s'", line, pos);
  1696. errors++;
  1697. continue;
  1698. }
  1699. } else if (os_strcmp(buf, "pmk_r1_push") == 0) {
  1700. bss->pmk_r1_push = atoi(pos);
  1701. #endif /* CONFIG_IEEE80211R */
  1702. #ifndef CONFIG_NO_CTRL_IFACE
  1703. } else if (os_strcmp(buf, "ctrl_interface") == 0) {
  1704. os_free(bss->ctrl_interface);
  1705. bss->ctrl_interface = os_strdup(pos);
  1706. } else if (os_strcmp(buf, "ctrl_interface_group") == 0) {
  1707. #ifndef CONFIG_NATIVE_WINDOWS
  1708. struct group *grp;
  1709. char *endp;
  1710. const char *group = pos;
  1711. grp = getgrnam(group);
  1712. if (grp) {
  1713. bss->ctrl_interface_gid = grp->gr_gid;
  1714. bss->ctrl_interface_gid_set = 1;
  1715. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
  1716. " (from group name '%s')",
  1717. bss->ctrl_interface_gid, group);
  1718. continue;
  1719. }
  1720. /* Group name not found - try to parse this as gid */
  1721. bss->ctrl_interface_gid = strtol(group, &endp, 10);
  1722. if (*group == '\0' || *endp != '\0') {
  1723. wpa_printf(MSG_DEBUG, "Line %d: Invalid group "
  1724. "'%s'", line, group);
  1725. errors++;
  1726. continue;
  1727. }
  1728. bss->ctrl_interface_gid_set = 1;
  1729. wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
  1730. bss->ctrl_interface_gid);
  1731. #endif /* CONFIG_NATIVE_WINDOWS */
  1732. #endif /* CONFIG_NO_CTRL_IFACE */
  1733. #ifdef RADIUS_SERVER
  1734. } else if (os_strcmp(buf, "radius_server_clients") == 0) {
  1735. os_free(bss->radius_server_clients);
  1736. bss->radius_server_clients = os_strdup(pos);
  1737. } else if (os_strcmp(buf, "radius_server_auth_port") == 0) {
  1738. bss->radius_server_auth_port = atoi(pos);
  1739. } else if (os_strcmp(buf, "radius_server_ipv6") == 0) {
  1740. bss->radius_server_ipv6 = atoi(pos);
  1741. #endif /* RADIUS_SERVER */
  1742. } else if (os_strcmp(buf, "test_socket") == 0) {
  1743. os_free(bss->test_socket);
  1744. bss->test_socket = os_strdup(pos);
  1745. } else if (os_strcmp(buf, "use_pae_group_addr") == 0) {
  1746. bss->use_pae_group_addr = atoi(pos);
  1747. } else if (os_strcmp(buf, "hw_mode") == 0) {
  1748. if (os_strcmp(pos, "a") == 0)
  1749. conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
  1750. else if (os_strcmp(pos, "b") == 0)
  1751. conf->hw_mode = HOSTAPD_MODE_IEEE80211B;
  1752. else if (os_strcmp(pos, "g") == 0)
  1753. conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
  1754. else {
  1755. wpa_printf(MSG_ERROR, "Line %d: unknown "
  1756. "hw_mode '%s'", line, pos);
  1757. errors++;
  1758. }
  1759. } else if (os_strcmp(buf, "channel") == 0) {
  1760. conf->channel = atoi(pos);
  1761. } else if (os_strcmp(buf, "beacon_int") == 0) {
  1762. int val = atoi(pos);
  1763. /* MIB defines range as 1..65535, but very small values
  1764. * cause problems with the current implementation.
  1765. * Since it is unlikely that this small numbers are
  1766. * useful in real life scenarios, do not allow beacon
  1767. * period to be set below 15 TU. */
  1768. if (val < 15 || val > 65535) {
  1769. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1770. "beacon_int %d (expected "
  1771. "15..65535)", line, val);
  1772. errors++;
  1773. } else
  1774. conf->beacon_int = val;
  1775. } else if (os_strcmp(buf, "dtim_period") == 0) {
  1776. bss->dtim_period = atoi(pos);
  1777. if (bss->dtim_period < 1 || bss->dtim_period > 255) {
  1778. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1779. "dtim_period %d",
  1780. line, bss->dtim_period);
  1781. errors++;
  1782. }
  1783. } else if (os_strcmp(buf, "rts_threshold") == 0) {
  1784. conf->rts_threshold = atoi(pos);
  1785. if (conf->rts_threshold < 0 ||
  1786. conf->rts_threshold > 2347) {
  1787. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1788. "rts_threshold %d",
  1789. line, conf->rts_threshold);
  1790. errors++;
  1791. }
  1792. } else if (os_strcmp(buf, "fragm_threshold") == 0) {
  1793. conf->fragm_threshold = atoi(pos);
  1794. if (conf->fragm_threshold < 256 ||
  1795. conf->fragm_threshold > 2346) {
  1796. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1797. "fragm_threshold %d",
  1798. line, conf->fragm_threshold);
  1799. errors++;
  1800. }
  1801. } else if (os_strcmp(buf, "send_probe_response") == 0) {
  1802. int val = atoi(pos);
  1803. if (val != 0 && val != 1) {
  1804. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1805. "send_probe_response %d (expected "
  1806. "0 or 1)", line, val);
  1807. } else
  1808. conf->send_probe_response = val;
  1809. } else if (os_strcmp(buf, "supported_rates") == 0) {
  1810. if (hostapd_parse_rates(&conf->supported_rates, pos)) {
  1811. wpa_printf(MSG_ERROR, "Line %d: invalid rate "
  1812. "list", line);
  1813. errors++;
  1814. }
  1815. } else if (os_strcmp(buf, "basic_rates") == 0) {
  1816. if (hostapd_parse_rates(&conf->basic_rates, pos)) {
  1817. wpa_printf(MSG_ERROR, "Line %d: invalid rate "
  1818. "list", line);
  1819. errors++;
  1820. }
  1821. } else if (os_strcmp(buf, "preamble") == 0) {
  1822. if (atoi(pos))
  1823. conf->preamble = SHORT_PREAMBLE;
  1824. else
  1825. conf->preamble = LONG_PREAMBLE;
  1826. } else if (os_strcmp(buf, "ignore_broadcast_ssid") == 0) {
  1827. bss->ignore_broadcast_ssid = atoi(pos);
  1828. } else if (os_strcmp(buf, "bridge_packets") == 0) {
  1829. conf->bridge_packets = atoi(pos);
  1830. } else if (os_strcmp(buf, "wep_default_key") == 0) {
  1831. bss->ssid.wep.idx = atoi(pos);
  1832. if (bss->ssid.wep.idx > 3) {
  1833. wpa_printf(MSG_ERROR, "Invalid "
  1834. "wep_default_key index %d",
  1835. bss->ssid.wep.idx);
  1836. errors++;
  1837. }
  1838. } else if (os_strcmp(buf, "wep_key0") == 0 ||
  1839. os_strcmp(buf, "wep_key1") == 0 ||
  1840. os_strcmp(buf, "wep_key2") == 0 ||
  1841. os_strcmp(buf, "wep_key3") == 0) {
  1842. if (hostapd_config_read_wep(&bss->ssid.wep,
  1843. buf[7] - '0', pos)) {
  1844. wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
  1845. "key '%s'", line, buf);
  1846. errors++;
  1847. }
  1848. #ifndef CONFIG_NO_VLAN
  1849. } else if (os_strcmp(buf, "dynamic_vlan") == 0) {
  1850. bss->ssid.dynamic_vlan = atoi(pos);
  1851. } else if (os_strcmp(buf, "vlan_file") == 0) {
  1852. if (hostapd_config_read_vlan_file(bss, pos)) {
  1853. wpa_printf(MSG_ERROR, "Line %d: failed to "
  1854. "read VLAN file '%s'", line, pos);
  1855. errors++;
  1856. }
  1857. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  1858. } else if (os_strcmp(buf, "vlan_tagged_interface") == 0) {
  1859. bss->ssid.vlan_tagged_interface = os_strdup(pos);
  1860. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  1861. #endif /* CONFIG_NO_VLAN */
  1862. } else if (os_strcmp(buf, "ap_table_max_size") == 0) {
  1863. conf->ap_table_max_size = atoi(pos);
  1864. } else if (os_strcmp(buf, "ap_table_expiration_time") == 0) {
  1865. conf->ap_table_expiration_time = atoi(pos);
  1866. } else if (os_strncmp(buf, "tx_queue_", 9) == 0) {
  1867. if (hostapd_config_tx_queue(conf, buf, pos)) {
  1868. wpa_printf(MSG_ERROR, "Line %d: invalid TX "
  1869. "queue item", line);
  1870. errors++;
  1871. }
  1872. } else if (os_strcmp(buf, "wme_enabled") == 0 ||
  1873. os_strcmp(buf, "wmm_enabled") == 0) {
  1874. bss->wmm_enabled = atoi(pos);
  1875. } else if (os_strncmp(buf, "wme_ac_", 7) == 0 ||
  1876. os_strncmp(buf, "wmm_ac_", 7) == 0) {
  1877. if (hostapd_config_wmm_ac(conf, buf, pos)) {
  1878. wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
  1879. "ac item", line);
  1880. errors++;
  1881. }
  1882. } else if (os_strcmp(buf, "bss") == 0) {
  1883. if (hostapd_config_bss(conf, pos)) {
  1884. wpa_printf(MSG_ERROR, "Line %d: invalid bss "
  1885. "item", line);
  1886. errors++;
  1887. }
  1888. } else if (os_strcmp(buf, "bssid") == 0) {
  1889. if (hwaddr_aton(pos, bss->bssid)) {
  1890. wpa_printf(MSG_ERROR, "Line %d: invalid bssid "
  1891. "item", line);
  1892. errors++;
  1893. }
  1894. #ifdef CONFIG_IEEE80211W
  1895. } else if (os_strcmp(buf, "ieee80211w") == 0) {
  1896. bss->ieee80211w = atoi(pos);
  1897. } else if (os_strcmp(buf, "assoc_sa_query_max_timeout") == 0) {
  1898. bss->assoc_sa_query_max_timeout = atoi(pos);
  1899. if (bss->assoc_sa_query_max_timeout == 0) {
  1900. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1901. "assoc_sa_query_max_timeout", line);
  1902. errors++;
  1903. }
  1904. } else if (os_strcmp(buf, "assoc_sa_query_retry_timeout") == 0)
  1905. {
  1906. bss->assoc_sa_query_retry_timeout = atoi(pos);
  1907. if (bss->assoc_sa_query_retry_timeout == 0) {
  1908. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1909. "assoc_sa_query_retry_timeout",
  1910. line);
  1911. errors++;
  1912. }
  1913. #endif /* CONFIG_IEEE80211W */
  1914. #ifdef CONFIG_IEEE80211N
  1915. } else if (os_strcmp(buf, "ieee80211n") == 0) {
  1916. conf->ieee80211n = atoi(pos);
  1917. } else if (os_strcmp(buf, "ht_capab") == 0) {
  1918. if (hostapd_config_ht_capab(conf, pos) < 0) {
  1919. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1920. "ht_capab", line);
  1921. errors++;
  1922. }
  1923. #endif /* CONFIG_IEEE80211N */
  1924. } else if (os_strcmp(buf, "max_listen_interval") == 0) {
  1925. bss->max_listen_interval = atoi(pos);
  1926. } else if (os_strcmp(buf, "okc") == 0) {
  1927. bss->okc = atoi(pos);
  1928. #ifdef CONFIG_WPS
  1929. } else if (os_strcmp(buf, "wps_state") == 0) {
  1930. bss->wps_state = atoi(pos);
  1931. if (bss->wps_state < 0 || bss->wps_state > 2) {
  1932. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1933. "wps_state", line);
  1934. errors++;
  1935. }
  1936. } else if (os_strcmp(buf, "ap_setup_locked") == 0) {
  1937. bss->ap_setup_locked = atoi(pos);
  1938. } else if (os_strcmp(buf, "uuid") == 0) {
  1939. if (uuid_str2bin(pos, bss->uuid)) {
  1940. wpa_printf(MSG_ERROR, "Line %d: invalid UUID",
  1941. line);
  1942. errors++;
  1943. }
  1944. } else if (os_strcmp(buf, "wps_pin_requests") == 0) {
  1945. os_free(bss->wps_pin_requests);
  1946. bss->wps_pin_requests = os_strdup(pos);
  1947. } else if (os_strcmp(buf, "device_name") == 0) {
  1948. if (os_strlen(pos) > 32) {
  1949. wpa_printf(MSG_ERROR, "Line %d: Too long "
  1950. "device_name", line);
  1951. errors++;
  1952. }
  1953. os_free(bss->device_name);
  1954. bss->device_name = os_strdup(pos);
  1955. } else if (os_strcmp(buf, "manufacturer") == 0) {
  1956. if (os_strlen(pos) > 64) {
  1957. wpa_printf(MSG_ERROR, "Line %d: Too long "
  1958. "manufacturer", line);
  1959. errors++;
  1960. }
  1961. os_free(bss->manufacturer);
  1962. bss->manufacturer = os_strdup(pos);
  1963. } else if (os_strcmp(buf, "model_name") == 0) {
  1964. if (os_strlen(pos) > 32) {
  1965. wpa_printf(MSG_ERROR, "Line %d: Too long "
  1966. "model_name", line);
  1967. errors++;
  1968. }
  1969. os_free(bss->model_name);
  1970. bss->model_name = os_strdup(pos);
  1971. } else if (os_strcmp(buf, "model_number") == 0) {
  1972. if (os_strlen(pos) > 32) {
  1973. wpa_printf(MSG_ERROR, "Line %d: Too long "
  1974. "model_number", line);
  1975. errors++;
  1976. }
  1977. os_free(bss->model_number);
  1978. bss->model_number = os_strdup(pos);
  1979. } else if (os_strcmp(buf, "serial_number") == 0) {
  1980. if (os_strlen(pos) > 32) {
  1981. wpa_printf(MSG_ERROR, "Line %d: Too long "
  1982. "serial_number", line);
  1983. errors++;
  1984. }
  1985. os_free(bss->serial_number);
  1986. bss->serial_number = os_strdup(pos);
  1987. } else if (os_strcmp(buf, "device_type") == 0) {
  1988. os_free(bss->device_type);
  1989. bss->device_type = os_strdup(pos);
  1990. } else if (os_strcmp(buf, "config_methods") == 0) {
  1991. os_free(bss->config_methods);
  1992. bss->config_methods = os_strdup(pos);
  1993. } else if (os_strcmp(buf, "os_version") == 0) {
  1994. if (hexstr2bin(pos, bss->os_version, 4)) {
  1995. wpa_printf(MSG_ERROR, "Line %d: invalid "
  1996. "os_version", line);
  1997. errors++;
  1998. }
  1999. } else if (os_strcmp(buf, "ap_pin") == 0) {
  2000. os_free(bss->ap_pin);
  2001. bss->ap_pin = os_strdup(pos);
  2002. } else if (os_strcmp(buf, "skip_cred_build") == 0) {
  2003. bss->skip_cred_build = atoi(pos);
  2004. } else if (os_strcmp(buf, "extra_cred") == 0) {
  2005. os_free(bss->extra_cred);
  2006. bss->extra_cred =
  2007. (u8 *) os_readfile(pos, &bss->extra_cred_len);
  2008. if (bss->extra_cred == NULL) {
  2009. wpa_printf(MSG_ERROR, "Line %d: could not "
  2010. "read Credentials from '%s'",
  2011. line, pos);
  2012. errors++;
  2013. }
  2014. } else if (os_strcmp(buf, "wps_cred_processing") == 0) {
  2015. bss->wps_cred_processing = atoi(pos);
  2016. } else if (os_strcmp(buf, "ap_settings") == 0) {
  2017. os_free(bss->ap_settings);
  2018. bss->ap_settings =
  2019. (u8 *) os_readfile(pos, &bss->ap_settings_len);
  2020. if (bss->ap_settings == NULL) {
  2021. wpa_printf(MSG_ERROR, "Line %d: could not "
  2022. "read AP Settings from '%s'",
  2023. line, pos);
  2024. errors++;
  2025. }
  2026. } else if (os_strcmp(buf, "upnp_iface") == 0) {
  2027. bss->upnp_iface = os_strdup(pos);
  2028. } else if (os_strcmp(buf, "friendly_name") == 0) {
  2029. os_free(bss->friendly_name);
  2030. bss->friendly_name = os_strdup(pos);
  2031. } else if (os_strcmp(buf, "manufacturer_url") == 0) {
  2032. os_free(bss->manufacturer_url);
  2033. bss->manufacturer_url = os_strdup(pos);
  2034. } else if (os_strcmp(buf, "model_description") == 0) {
  2035. os_free(bss->model_description);
  2036. bss->model_description = os_strdup(pos);
  2037. } else if (os_strcmp(buf, "model_url") == 0) {
  2038. os_free(bss->model_url);
  2039. bss->model_url = os_strdup(pos);
  2040. } else if (os_strcmp(buf, "upc") == 0) {
  2041. os_free(bss->upc);
  2042. bss->upc = os_strdup(pos);
  2043. #endif /* CONFIG_WPS */
  2044. } else {
  2045. wpa_printf(MSG_ERROR, "Line %d: unknown configuration "
  2046. "item '%s'", line, buf);
  2047. errors++;
  2048. }
  2049. }
  2050. fclose(f);
  2051. for (i = 0; i < conf->num_bss; i++) {
  2052. bss = &conf->bss[i];
  2053. if (bss->individual_wep_key_len == 0) {
  2054. /* individual keys are not use; can use key idx0 for
  2055. * broadcast keys */
  2056. bss->broadcast_key_idx_min = 0;
  2057. }
  2058. /* Select group cipher based on the enabled pairwise cipher
  2059. * suites */
  2060. pairwise = 0;
  2061. if (bss->wpa & 1)
  2062. pairwise |= bss->wpa_pairwise;
  2063. if (bss->wpa & 2) {
  2064. if (bss->rsn_pairwise == 0)
  2065. bss->rsn_pairwise = bss->wpa_pairwise;
  2066. pairwise |= bss->rsn_pairwise;
  2067. }
  2068. if (pairwise & WPA_CIPHER_TKIP)
  2069. bss->wpa_group = WPA_CIPHER_TKIP;
  2070. else
  2071. bss->wpa_group = WPA_CIPHER_CCMP;
  2072. bss->radius->auth_server = bss->radius->auth_servers;
  2073. bss->radius->acct_server = bss->radius->acct_servers;
  2074. if (bss->wpa && bss->ieee802_1x) {
  2075. bss->ssid.security_policy = SECURITY_WPA;
  2076. } else if (bss->wpa) {
  2077. bss->ssid.security_policy = SECURITY_WPA_PSK;
  2078. } else if (bss->ieee802_1x) {
  2079. bss->ssid.security_policy = SECURITY_IEEE_802_1X;
  2080. bss->ssid.wep.default_len = bss->default_wep_key_len;
  2081. } else if (bss->ssid.wep.keys_set)
  2082. bss->ssid.security_policy = SECURITY_STATIC_WEP;
  2083. else
  2084. bss->ssid.security_policy = SECURITY_PLAINTEXT;
  2085. }
  2086. if (hostapd_config_check(conf))
  2087. errors++;
  2088. if (errors) {
  2089. wpa_printf(MSG_ERROR, "%d errors found in configuration file "
  2090. "'%s'", errors, fname);
  2091. hostapd_config_free(conf);
  2092. conf = NULL;
  2093. }
  2094. return conf;
  2095. }
  2096. int hostapd_wep_key_cmp(struct hostapd_wep_keys *a, struct hostapd_wep_keys *b)
  2097. {
  2098. int i;
  2099. if (a->idx != b->idx || a->default_len != b->default_len)
  2100. return 1;
  2101. for (i = 0; i < NUM_WEP_KEYS; i++)
  2102. if (a->len[i] != b->len[i] ||
  2103. os_memcmp(a->key[i], b->key[i], a->len[i]) != 0)
  2104. return 1;
  2105. return 0;
  2106. }
  2107. static void hostapd_config_free_radius(struct hostapd_radius_server *servers,
  2108. int num_servers)
  2109. {
  2110. int i;
  2111. for (i = 0; i < num_servers; i++) {
  2112. os_free(servers[i].shared_secret);
  2113. }
  2114. os_free(servers);
  2115. }
  2116. static void hostapd_config_free_eap_user(struct hostapd_eap_user *user)
  2117. {
  2118. os_free(user->identity);
  2119. os_free(user->password);
  2120. os_free(user);
  2121. }
  2122. static void hostapd_config_free_wep(struct hostapd_wep_keys *keys)
  2123. {
  2124. int i;
  2125. for (i = 0; i < NUM_WEP_KEYS; i++) {
  2126. os_free(keys->key[i]);
  2127. keys->key[i] = NULL;
  2128. }
  2129. }
  2130. static void hostapd_config_free_bss(struct hostapd_bss_config *conf)
  2131. {
  2132. struct hostapd_wpa_psk *psk, *prev;
  2133. struct hostapd_eap_user *user, *prev_user;
  2134. if (conf == NULL)
  2135. return;
  2136. psk = conf->ssid.wpa_psk;
  2137. while (psk) {
  2138. prev = psk;
  2139. psk = psk->next;
  2140. os_free(prev);
  2141. }
  2142. os_free(conf->ssid.wpa_passphrase);
  2143. os_free(conf->ssid.wpa_psk_file);
  2144. #ifdef CONFIG_FULL_DYNAMIC_VLAN
  2145. os_free(conf->ssid.vlan_tagged_interface);
  2146. #endif /* CONFIG_FULL_DYNAMIC_VLAN */
  2147. user = conf->eap_user;
  2148. while (user) {
  2149. prev_user = user;
  2150. user = user->next;
  2151. hostapd_config_free_eap_user(prev_user);
  2152. }
  2153. os_free(conf->dump_log_name);
  2154. os_free(conf->eap_req_id_text);
  2155. os_free(conf->accept_mac);
  2156. os_free(conf->deny_mac);
  2157. os_free(conf->nas_identifier);
  2158. hostapd_config_free_radius(conf->radius->auth_servers,
  2159. conf->radius->num_auth_servers);
  2160. hostapd_config_free_radius(conf->radius->acct_servers,
  2161. conf->radius->num_acct_servers);
  2162. os_free(conf->rsn_preauth_interfaces);
  2163. os_free(conf->ctrl_interface);
  2164. os_free(conf->ca_cert);
  2165. os_free(conf->server_cert);
  2166. os_free(conf->private_key);
  2167. os_free(conf->private_key_passwd);
  2168. os_free(conf->dh_file);
  2169. os_free(conf->pac_opaque_encr_key);
  2170. os_free(conf->eap_fast_a_id);
  2171. os_free(conf->eap_fast_a_id_info);
  2172. os_free(conf->eap_sim_db);
  2173. os_free(conf->radius_server_clients);
  2174. os_free(conf->test_socket);
  2175. os_free(conf->radius);
  2176. hostapd_config_free_vlan(conf);
  2177. if (conf->ssid.dyn_vlan_keys) {
  2178. struct hostapd_ssid *ssid = &conf->ssid;
  2179. size_t i;
  2180. for (i = 0; i <= ssid->max_dyn_vlan_keys; i++) {
  2181. if (ssid->dyn_vlan_keys[i] == NULL)
  2182. continue;
  2183. hostapd_config_free_wep(ssid->dyn_vlan_keys[i]);
  2184. os_free(ssid->dyn_vlan_keys[i]);
  2185. }
  2186. os_free(ssid->dyn_vlan_keys);
  2187. ssid->dyn_vlan_keys = NULL;
  2188. }
  2189. #ifdef CONFIG_IEEE80211R
  2190. {
  2191. struct ft_remote_r0kh *r0kh, *r0kh_prev;
  2192. struct ft_remote_r1kh *r1kh, *r1kh_prev;
  2193. r0kh = conf->r0kh_list;
  2194. conf->r0kh_list = NULL;
  2195. while (r0kh) {
  2196. r0kh_prev = r0kh;
  2197. r0kh = r0kh->next;
  2198. os_free(r0kh_prev);
  2199. }
  2200. r1kh = conf->r1kh_list;
  2201. conf->r1kh_list = NULL;
  2202. while (r1kh) {
  2203. r1kh_prev = r1kh;
  2204. r1kh = r1kh->next;
  2205. os_free(r1kh_prev);
  2206. }
  2207. }
  2208. #endif /* CONFIG_IEEE80211R */
  2209. #ifdef CONFIG_WPS
  2210. os_free(conf->wps_pin_requests);
  2211. os_free(conf->device_name);
  2212. os_free(conf->manufacturer);
  2213. os_free(conf->model_name);
  2214. os_free(conf->model_number);
  2215. os_free(conf->serial_number);
  2216. os_free(conf->device_type);
  2217. os_free(conf->config_methods);
  2218. os_free(conf->ap_pin);
  2219. os_free(conf->extra_cred);
  2220. os_free(conf->ap_settings);
  2221. os_free(conf->upnp_iface);
  2222. os_free(conf->friendly_name);
  2223. os_free(conf->manufacturer_url);
  2224. os_free(conf->model_description);
  2225. os_free(conf->model_url);
  2226. os_free(conf->upc);
  2227. #endif /* CONFIG_WPS */
  2228. }
  2229. /**
  2230. * hostapd_config_free - Free hostapd configuration
  2231. * @conf: Configuration data from hostapd_config_read().
  2232. */
  2233. void hostapd_config_free(struct hostapd_config *conf)
  2234. {
  2235. size_t i;
  2236. if (conf == NULL)
  2237. return;
  2238. for (i = 0; i < conf->num_bss; i++)
  2239. hostapd_config_free_bss(&conf->bss[i]);
  2240. os_free(conf->bss);
  2241. os_free(conf);
  2242. }
  2243. /**
  2244. * hostapd_maclist_found - Find a MAC address from a list
  2245. * @list: MAC address list
  2246. * @num_entries: Number of addresses in the list
  2247. * @addr: Address to search for
  2248. * @vlan_id: Buffer for returning VLAN ID or %NULL if not needed
  2249. * Returns: 1 if address is in the list or 0 if not.
  2250. *
  2251. * Perform a binary search for given MAC address from a pre-sorted list.
  2252. */
  2253. int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
  2254. const u8 *addr, int *vlan_id)
  2255. {
  2256. int start, end, middle, res;
  2257. start = 0;
  2258. end = num_entries - 1;
  2259. while (start <= end) {
  2260. middle = (start + end) / 2;
  2261. res = os_memcmp(list[middle].addr, addr, ETH_ALEN);
  2262. if (res == 0) {
  2263. if (vlan_id)
  2264. *vlan_id = list[middle].vlan_id;
  2265. return 1;
  2266. }
  2267. if (res < 0)
  2268. start = middle + 1;
  2269. else
  2270. end = middle - 1;
  2271. }
  2272. return 0;
  2273. }
  2274. int hostapd_rate_found(int *list, int rate)
  2275. {
  2276. int i;
  2277. if (list == NULL)
  2278. return 0;
  2279. for (i = 0; list[i] >= 0; i++)
  2280. if (list[i] == rate)
  2281. return 1;
  2282. return 0;
  2283. }
  2284. const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan, int vlan_id)
  2285. {
  2286. struct hostapd_vlan *v = vlan;
  2287. while (v) {
  2288. if (v->vlan_id == vlan_id || v->vlan_id == VLAN_ID_WILDCARD)
  2289. return v->ifname;
  2290. v = v->next;
  2291. }
  2292. return NULL;
  2293. }
  2294. const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
  2295. const u8 *addr, const u8 *prev_psk)
  2296. {
  2297. struct hostapd_wpa_psk *psk;
  2298. int next_ok = prev_psk == NULL;
  2299. for (psk = conf->ssid.wpa_psk; psk != NULL; psk = psk->next) {
  2300. if (next_ok &&
  2301. (psk->group || os_memcmp(psk->addr, addr, ETH_ALEN) == 0))
  2302. return psk->psk;
  2303. if (psk->psk == prev_psk)
  2304. next_ok = 1;
  2305. }
  2306. return NULL;
  2307. }
  2308. const struct hostapd_eap_user *
  2309. hostapd_get_eap_user(const struct hostapd_bss_config *conf, const u8 *identity,
  2310. size_t identity_len, int phase2)
  2311. {
  2312. struct hostapd_eap_user *user = conf->eap_user;
  2313. #ifdef CONFIG_WPS
  2314. if (conf->wps_state && identity_len == WSC_ID_ENROLLEE_LEN &&
  2315. os_memcmp(identity, WSC_ID_ENROLLEE, WSC_ID_ENROLLEE_LEN) == 0) {
  2316. static struct hostapd_eap_user wsc_enrollee;
  2317. os_memset(&wsc_enrollee, 0, sizeof(wsc_enrollee));
  2318. wsc_enrollee.methods[0].method = eap_server_get_type(
  2319. "WSC", &wsc_enrollee.methods[0].vendor);
  2320. return &wsc_enrollee;
  2321. }
  2322. if (conf->wps_state && conf->ap_pin &&
  2323. identity_len == WSC_ID_REGISTRAR_LEN &&
  2324. os_memcmp(identity, WSC_ID_REGISTRAR, WSC_ID_REGISTRAR_LEN) == 0) {
  2325. static struct hostapd_eap_user wsc_registrar;
  2326. os_memset(&wsc_registrar, 0, sizeof(wsc_registrar));
  2327. wsc_registrar.methods[0].method = eap_server_get_type(
  2328. "WSC", &wsc_registrar.methods[0].vendor);
  2329. wsc_registrar.password = (u8 *) conf->ap_pin;
  2330. wsc_registrar.password_len = os_strlen(conf->ap_pin);
  2331. return &wsc_registrar;
  2332. }
  2333. #endif /* CONFIG_WPS */
  2334. while (user) {
  2335. if (!phase2 && user->identity == NULL) {
  2336. /* Wildcard match */
  2337. break;
  2338. }
  2339. if (user->phase2 == !!phase2 && user->wildcard_prefix &&
  2340. identity_len >= user->identity_len &&
  2341. os_memcmp(user->identity, identity, user->identity_len) ==
  2342. 0) {
  2343. /* Wildcard prefix match */
  2344. break;
  2345. }
  2346. if (user->phase2 == !!phase2 &&
  2347. user->identity_len == identity_len &&
  2348. os_memcmp(user->identity, identity, identity_len) == 0)
  2349. break;
  2350. user = user->next;
  2351. }
  2352. return user;
  2353. }