config_file.c 85 KB

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