config_file.c 91 KB

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