config.c 68 KB

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