config_file.c 99 KB

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