config.c 67 KB

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