config.c 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654
  1. /*
  2. * WPA Supplicant / Configuration parser and common functions
  3. * Copyright (c) 2003-2012, 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 "includes.h"
  9. #include "common.h"
  10. #include "utils/uuid.h"
  11. #include "utils/ip_addr.h"
  12. #include "crypto/sha1.h"
  13. #include "rsn_supp/wpa.h"
  14. #include "eap_peer/eap.h"
  15. #include "p2p/p2p.h"
  16. #include "config.h"
  17. #if !defined(CONFIG_CTRL_IFACE) && defined(CONFIG_NO_CONFIG_WRITE)
  18. #define NO_CONFIG_WRITE
  19. #endif
  20. /*
  21. * Structure for network configuration parsing. This data is used to implement
  22. * a generic parser for each network block variable. The table of configuration
  23. * variables is defined below in this file (ssid_fields[]).
  24. */
  25. struct parse_data {
  26. /* Configuration variable name */
  27. char *name;
  28. /* Parser function for this variable */
  29. int (*parser)(const struct parse_data *data, struct wpa_ssid *ssid,
  30. int line, const char *value);
  31. #ifndef NO_CONFIG_WRITE
  32. /* Writer function (i.e., to get the variable in text format from
  33. * internal presentation). */
  34. char * (*writer)(const struct parse_data *data, struct wpa_ssid *ssid);
  35. #endif /* NO_CONFIG_WRITE */
  36. /* Variable specific parameters for the parser. */
  37. void *param1, *param2, *param3, *param4;
  38. /* 0 = this variable can be included in debug output and ctrl_iface
  39. * 1 = this variable contains key/private data and it must not be
  40. * included in debug output unless explicitly requested. In
  41. * addition, this variable will not be readable through the
  42. * ctrl_iface.
  43. */
  44. int key_data;
  45. };
  46. static int wpa_config_parse_str(const struct parse_data *data,
  47. struct wpa_ssid *ssid,
  48. int line, const char *value)
  49. {
  50. size_t res_len, *dst_len;
  51. char **dst, *tmp;
  52. if (os_strcmp(value, "NULL") == 0) {
  53. wpa_printf(MSG_DEBUG, "Unset configuration string '%s'",
  54. data->name);
  55. tmp = NULL;
  56. res_len = 0;
  57. goto set;
  58. }
  59. tmp = wpa_config_parse_string(value, &res_len);
  60. if (tmp == NULL) {
  61. wpa_printf(MSG_ERROR, "Line %d: failed to parse %s '%s'.",
  62. line, data->name,
  63. data->key_data ? "[KEY DATA REMOVED]" : value);
  64. return -1;
  65. }
  66. if (data->key_data) {
  67. wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
  68. (u8 *) tmp, res_len);
  69. } else {
  70. wpa_hexdump_ascii(MSG_MSGDUMP, data->name,
  71. (u8 *) tmp, res_len);
  72. }
  73. if (data->param3 && res_len < (size_t) data->param3) {
  74. wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
  75. "min_len=%ld)", line, data->name,
  76. (unsigned long) res_len, (long) data->param3);
  77. os_free(tmp);
  78. return -1;
  79. }
  80. if (data->param4 && res_len > (size_t) data->param4) {
  81. wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
  82. "max_len=%ld)", line, data->name,
  83. (unsigned long) res_len, (long) data->param4);
  84. os_free(tmp);
  85. return -1;
  86. }
  87. set:
  88. dst = (char **) (((u8 *) ssid) + (long) data->param1);
  89. dst_len = (size_t *) (((u8 *) ssid) + (long) data->param2);
  90. os_free(*dst);
  91. *dst = tmp;
  92. if (data->param2)
  93. *dst_len = res_len;
  94. return 0;
  95. }
  96. #ifndef NO_CONFIG_WRITE
  97. static char * wpa_config_write_string_ascii(const u8 *value, size_t len)
  98. {
  99. char *buf;
  100. buf = os_malloc(len + 3);
  101. if (buf == NULL)
  102. return NULL;
  103. buf[0] = '"';
  104. os_memcpy(buf + 1, value, len);
  105. buf[len + 1] = '"';
  106. buf[len + 2] = '\0';
  107. return buf;
  108. }
  109. static char * wpa_config_write_string_hex(const u8 *value, size_t len)
  110. {
  111. char *buf;
  112. buf = os_zalloc(2 * len + 1);
  113. if (buf == NULL)
  114. return NULL;
  115. wpa_snprintf_hex(buf, 2 * len + 1, value, len);
  116. return buf;
  117. }
  118. static char * wpa_config_write_string(const u8 *value, size_t len)
  119. {
  120. if (value == NULL)
  121. return NULL;
  122. if (is_hex(value, len))
  123. return wpa_config_write_string_hex(value, len);
  124. else
  125. return wpa_config_write_string_ascii(value, len);
  126. }
  127. static char * wpa_config_write_str(const struct parse_data *data,
  128. struct wpa_ssid *ssid)
  129. {
  130. size_t len;
  131. char **src;
  132. src = (char **) (((u8 *) ssid) + (long) data->param1);
  133. if (*src == NULL)
  134. return NULL;
  135. if (data->param2)
  136. len = *((size_t *) (((u8 *) ssid) + (long) data->param2));
  137. else
  138. len = os_strlen(*src);
  139. return wpa_config_write_string((const u8 *) *src, len);
  140. }
  141. #endif /* NO_CONFIG_WRITE */
  142. static int wpa_config_parse_int(const struct parse_data *data,
  143. struct wpa_ssid *ssid,
  144. int line, const char *value)
  145. {
  146. int val, *dst;
  147. char *end;
  148. dst = (int *) (((u8 *) ssid) + (long) data->param1);
  149. val = strtol(value, &end, 0);
  150. if (*end) {
  151. wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
  152. line, value);
  153. return -1;
  154. }
  155. *dst = val;
  156. wpa_printf(MSG_MSGDUMP, "%s=%d (0x%x)", data->name, *dst, *dst);
  157. if (data->param3 && *dst < (long) data->param3) {
  158. wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
  159. "min_value=%ld)", line, data->name, *dst,
  160. (long) data->param3);
  161. *dst = (long) data->param3;
  162. return -1;
  163. }
  164. if (data->param4 && *dst > (long) data->param4) {
  165. wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
  166. "max_value=%ld)", line, data->name, *dst,
  167. (long) data->param4);
  168. *dst = (long) data->param4;
  169. return -1;
  170. }
  171. return 0;
  172. }
  173. #ifndef NO_CONFIG_WRITE
  174. static char * wpa_config_write_int(const struct parse_data *data,
  175. struct wpa_ssid *ssid)
  176. {
  177. int *src, res;
  178. char *value;
  179. src = (int *) (((u8 *) ssid) + (long) data->param1);
  180. value = os_malloc(20);
  181. if (value == NULL)
  182. return NULL;
  183. res = os_snprintf(value, 20, "%d", *src);
  184. if (res < 0 || res >= 20) {
  185. os_free(value);
  186. return NULL;
  187. }
  188. value[20 - 1] = '\0';
  189. return value;
  190. }
  191. #endif /* NO_CONFIG_WRITE */
  192. static int wpa_config_parse_bssid(const struct parse_data *data,
  193. struct wpa_ssid *ssid, int line,
  194. const char *value)
  195. {
  196. if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
  197. os_strcmp(value, "any") == 0) {
  198. ssid->bssid_set = 0;
  199. wpa_printf(MSG_MSGDUMP, "BSSID any");
  200. return 0;
  201. }
  202. if (hwaddr_aton(value, ssid->bssid)) {
  203. wpa_printf(MSG_ERROR, "Line %d: Invalid BSSID '%s'.",
  204. line, value);
  205. return -1;
  206. }
  207. ssid->bssid_set = 1;
  208. wpa_hexdump(MSG_MSGDUMP, "BSSID", ssid->bssid, ETH_ALEN);
  209. return 0;
  210. }
  211. #ifndef NO_CONFIG_WRITE
  212. static char * wpa_config_write_bssid(const struct parse_data *data,
  213. struct wpa_ssid *ssid)
  214. {
  215. char *value;
  216. int res;
  217. if (!ssid->bssid_set)
  218. return NULL;
  219. value = os_malloc(20);
  220. if (value == NULL)
  221. return NULL;
  222. res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->bssid));
  223. if (res < 0 || res >= 20) {
  224. os_free(value);
  225. return NULL;
  226. }
  227. value[20 - 1] = '\0';
  228. return value;
  229. }
  230. #endif /* NO_CONFIG_WRITE */
  231. static int wpa_config_parse_psk(const struct parse_data *data,
  232. struct wpa_ssid *ssid, int line,
  233. const char *value)
  234. {
  235. #ifdef CONFIG_EXT_PASSWORD
  236. if (os_strncmp(value, "ext:", 4) == 0) {
  237. os_free(ssid->passphrase);
  238. ssid->passphrase = NULL;
  239. ssid->psk_set = 0;
  240. os_free(ssid->ext_psk);
  241. ssid->ext_psk = os_strdup(value + 4);
  242. if (ssid->ext_psk == NULL)
  243. return -1;
  244. wpa_printf(MSG_DEBUG, "PSK: External password '%s'",
  245. ssid->ext_psk);
  246. return 0;
  247. }
  248. #endif /* CONFIG_EXT_PASSWORD */
  249. if (*value == '"') {
  250. #ifndef CONFIG_NO_PBKDF2
  251. const char *pos;
  252. size_t len;
  253. value++;
  254. pos = os_strrchr(value, '"');
  255. if (pos)
  256. len = pos - value;
  257. else
  258. len = os_strlen(value);
  259. if (len < 8 || len > 63) {
  260. wpa_printf(MSG_ERROR, "Line %d: Invalid passphrase "
  261. "length %lu (expected: 8..63) '%s'.",
  262. line, (unsigned long) len, value);
  263. return -1;
  264. }
  265. wpa_hexdump_ascii_key(MSG_MSGDUMP, "PSK (ASCII passphrase)",
  266. (u8 *) value, len);
  267. if (ssid->passphrase && os_strlen(ssid->passphrase) == len &&
  268. os_memcmp(ssid->passphrase, value, len) == 0)
  269. return 0;
  270. ssid->psk_set = 0;
  271. os_free(ssid->passphrase);
  272. ssid->passphrase = dup_binstr(value, len);
  273. if (ssid->passphrase == NULL)
  274. return -1;
  275. return 0;
  276. #else /* CONFIG_NO_PBKDF2 */
  277. wpa_printf(MSG_ERROR, "Line %d: ASCII passphrase not "
  278. "supported.", line);
  279. return -1;
  280. #endif /* CONFIG_NO_PBKDF2 */
  281. }
  282. if (hexstr2bin(value, ssid->psk, PMK_LEN) ||
  283. value[PMK_LEN * 2] != '\0') {
  284. wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
  285. line, value);
  286. return -1;
  287. }
  288. os_free(ssid->passphrase);
  289. ssid->passphrase = NULL;
  290. ssid->psk_set = 1;
  291. wpa_hexdump_key(MSG_MSGDUMP, "PSK", ssid->psk, PMK_LEN);
  292. return 0;
  293. }
  294. #ifndef NO_CONFIG_WRITE
  295. static char * wpa_config_write_psk(const struct parse_data *data,
  296. struct wpa_ssid *ssid)
  297. {
  298. #ifdef CONFIG_EXT_PASSWORD
  299. if (ssid->ext_psk) {
  300. size_t len = 4 + os_strlen(ssid->ext_psk) + 1;
  301. char *buf = os_malloc(len);
  302. if (buf == NULL)
  303. return NULL;
  304. os_snprintf(buf, len, "ext:%s", ssid->ext_psk);
  305. return buf;
  306. }
  307. #endif /* CONFIG_EXT_PASSWORD */
  308. if (ssid->passphrase)
  309. return wpa_config_write_string_ascii(
  310. (const u8 *) ssid->passphrase,
  311. os_strlen(ssid->passphrase));
  312. if (ssid->psk_set)
  313. return wpa_config_write_string_hex(ssid->psk, PMK_LEN);
  314. return NULL;
  315. }
  316. #endif /* NO_CONFIG_WRITE */
  317. static int wpa_config_parse_proto(const struct parse_data *data,
  318. struct wpa_ssid *ssid, int line,
  319. const char *value)
  320. {
  321. int val = 0, last, errors = 0;
  322. char *start, *end, *buf;
  323. buf = os_strdup(value);
  324. if (buf == NULL)
  325. return -1;
  326. start = buf;
  327. while (*start != '\0') {
  328. while (*start == ' ' || *start == '\t')
  329. start++;
  330. if (*start == '\0')
  331. break;
  332. end = start;
  333. while (*end != ' ' && *end != '\t' && *end != '\0')
  334. end++;
  335. last = *end == '\0';
  336. *end = '\0';
  337. if (os_strcmp(start, "WPA") == 0)
  338. val |= WPA_PROTO_WPA;
  339. else if (os_strcmp(start, "RSN") == 0 ||
  340. os_strcmp(start, "WPA2") == 0)
  341. val |= WPA_PROTO_RSN;
  342. else if (os_strcmp(start, "OSEN") == 0)
  343. val |= WPA_PROTO_OSEN;
  344. else {
  345. wpa_printf(MSG_ERROR, "Line %d: invalid proto '%s'",
  346. line, start);
  347. errors++;
  348. }
  349. if (last)
  350. break;
  351. start = end + 1;
  352. }
  353. os_free(buf);
  354. if (val == 0) {
  355. wpa_printf(MSG_ERROR,
  356. "Line %d: no proto values configured.", line);
  357. errors++;
  358. }
  359. wpa_printf(MSG_MSGDUMP, "proto: 0x%x", val);
  360. ssid->proto = val;
  361. return errors ? -1 : 0;
  362. }
  363. #ifndef NO_CONFIG_WRITE
  364. static char * wpa_config_write_proto(const struct parse_data *data,
  365. struct wpa_ssid *ssid)
  366. {
  367. int first = 1, ret;
  368. char *buf, *pos, *end;
  369. pos = buf = os_zalloc(10);
  370. if (buf == NULL)
  371. return NULL;
  372. end = buf + 10;
  373. if (ssid->proto & WPA_PROTO_WPA) {
  374. ret = os_snprintf(pos, end - pos, "%sWPA", first ? "" : " ");
  375. if (ret < 0 || ret >= end - pos)
  376. return buf;
  377. pos += ret;
  378. first = 0;
  379. }
  380. if (ssid->proto & WPA_PROTO_RSN) {
  381. ret = os_snprintf(pos, end - pos, "%sRSN", first ? "" : " ");
  382. if (ret < 0 || ret >= end - pos)
  383. return buf;
  384. pos += ret;
  385. first = 0;
  386. }
  387. return buf;
  388. }
  389. #endif /* NO_CONFIG_WRITE */
  390. static int wpa_config_parse_key_mgmt(const struct parse_data *data,
  391. struct wpa_ssid *ssid, int line,
  392. const char *value)
  393. {
  394. int val = 0, last, errors = 0;
  395. char *start, *end, *buf;
  396. buf = os_strdup(value);
  397. if (buf == NULL)
  398. return -1;
  399. start = buf;
  400. while (*start != '\0') {
  401. while (*start == ' ' || *start == '\t')
  402. start++;
  403. if (*start == '\0')
  404. break;
  405. end = start;
  406. while (*end != ' ' && *end != '\t' && *end != '\0')
  407. end++;
  408. last = *end == '\0';
  409. *end = '\0';
  410. if (os_strcmp(start, "WPA-PSK") == 0)
  411. val |= WPA_KEY_MGMT_PSK;
  412. else if (os_strcmp(start, "WPA-EAP") == 0)
  413. val |= WPA_KEY_MGMT_IEEE8021X;
  414. else if (os_strcmp(start, "IEEE8021X") == 0)
  415. val |= WPA_KEY_MGMT_IEEE8021X_NO_WPA;
  416. else if (os_strcmp(start, "NONE") == 0)
  417. val |= WPA_KEY_MGMT_NONE;
  418. else if (os_strcmp(start, "WPA-NONE") == 0)
  419. val |= WPA_KEY_MGMT_WPA_NONE;
  420. #ifdef CONFIG_IEEE80211R
  421. else if (os_strcmp(start, "FT-PSK") == 0)
  422. val |= WPA_KEY_MGMT_FT_PSK;
  423. else if (os_strcmp(start, "FT-EAP") == 0)
  424. val |= WPA_KEY_MGMT_FT_IEEE8021X;
  425. #endif /* CONFIG_IEEE80211R */
  426. #ifdef CONFIG_IEEE80211W
  427. else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
  428. val |= WPA_KEY_MGMT_PSK_SHA256;
  429. else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
  430. val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
  431. #endif /* CONFIG_IEEE80211W */
  432. #ifdef CONFIG_WPS
  433. else if (os_strcmp(start, "WPS") == 0)
  434. val |= WPA_KEY_MGMT_WPS;
  435. #endif /* CONFIG_WPS */
  436. #ifdef CONFIG_SAE
  437. else if (os_strcmp(start, "SAE") == 0)
  438. val |= WPA_KEY_MGMT_SAE;
  439. else if (os_strcmp(start, "FT-SAE") == 0)
  440. val |= WPA_KEY_MGMT_FT_SAE;
  441. #endif /* CONFIG_SAE */
  442. #ifdef CONFIG_HS20
  443. else if (os_strcmp(start, "OSEN") == 0)
  444. val |= WPA_KEY_MGMT_OSEN;
  445. #endif /* CONFIG_HS20 */
  446. else {
  447. wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
  448. line, start);
  449. errors++;
  450. }
  451. if (last)
  452. break;
  453. start = end + 1;
  454. }
  455. os_free(buf);
  456. if (val == 0) {
  457. wpa_printf(MSG_ERROR,
  458. "Line %d: no key_mgmt values configured.", line);
  459. errors++;
  460. }
  461. wpa_printf(MSG_MSGDUMP, "key_mgmt: 0x%x", val);
  462. ssid->key_mgmt = val;
  463. return errors ? -1 : 0;
  464. }
  465. #ifndef NO_CONFIG_WRITE
  466. static char * wpa_config_write_key_mgmt(const struct parse_data *data,
  467. struct wpa_ssid *ssid)
  468. {
  469. char *buf, *pos, *end;
  470. int ret;
  471. pos = buf = os_zalloc(100);
  472. if (buf == NULL)
  473. return NULL;
  474. end = buf + 100;
  475. if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) {
  476. ret = os_snprintf(pos, end - pos, "%sWPA-PSK",
  477. pos == buf ? "" : " ");
  478. if (ret < 0 || ret >= end - pos) {
  479. end[-1] = '\0';
  480. return buf;
  481. }
  482. pos += ret;
  483. }
  484. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  485. ret = os_snprintf(pos, end - pos, "%sWPA-EAP",
  486. pos == buf ? "" : " ");
  487. if (ret < 0 || ret >= end - pos) {
  488. end[-1] = '\0';
  489. return buf;
  490. }
  491. pos += ret;
  492. }
  493. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  494. ret = os_snprintf(pos, end - pos, "%sIEEE8021X",
  495. pos == buf ? "" : " ");
  496. if (ret < 0 || ret >= end - pos) {
  497. end[-1] = '\0';
  498. return buf;
  499. }
  500. pos += ret;
  501. }
  502. if (ssid->key_mgmt & WPA_KEY_MGMT_NONE) {
  503. ret = os_snprintf(pos, end - pos, "%sNONE",
  504. pos == buf ? "" : " ");
  505. if (ret < 0 || ret >= end - pos) {
  506. end[-1] = '\0';
  507. return buf;
  508. }
  509. pos += ret;
  510. }
  511. if (ssid->key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
  512. ret = os_snprintf(pos, end - pos, "%sWPA-NONE",
  513. pos == buf ? "" : " ");
  514. if (ret < 0 || ret >= end - pos) {
  515. end[-1] = '\0';
  516. return buf;
  517. }
  518. pos += ret;
  519. }
  520. #ifdef CONFIG_IEEE80211R
  521. if (ssid->key_mgmt & WPA_KEY_MGMT_FT_PSK) {
  522. ret = os_snprintf(pos, end - pos, "%sFT-PSK",
  523. pos == buf ? "" : " ");
  524. if (ret < 0 || ret >= end - pos) {
  525. end[-1] = '\0';
  526. return buf;
  527. }
  528. pos += ret;
  529. }
  530. if (ssid->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
  531. ret = os_snprintf(pos, end - pos, "%sFT-EAP",
  532. pos == buf ? "" : " ");
  533. if (ret < 0 || ret >= end - pos) {
  534. end[-1] = '\0';
  535. return buf;
  536. }
  537. pos += ret;
  538. }
  539. #endif /* CONFIG_IEEE80211R */
  540. #ifdef CONFIG_IEEE80211W
  541. if (ssid->key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
  542. ret = os_snprintf(pos, end - pos, "%sWPA-PSK-SHA256",
  543. pos == buf ? "" : " ");
  544. if (ret < 0 || ret >= end - pos) {
  545. end[-1] = '\0';
  546. return buf;
  547. }
  548. pos += ret;
  549. }
  550. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
  551. ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SHA256",
  552. pos == buf ? "" : " ");
  553. if (ret < 0 || ret >= end - pos) {
  554. end[-1] = '\0';
  555. return buf;
  556. }
  557. pos += ret;
  558. }
  559. #endif /* CONFIG_IEEE80211W */
  560. #ifdef CONFIG_WPS
  561. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
  562. ret = os_snprintf(pos, end - pos, "%sWPS",
  563. pos == buf ? "" : " ");
  564. if (ret < 0 || ret >= end - pos) {
  565. end[-1] = '\0';
  566. return buf;
  567. }
  568. pos += ret;
  569. }
  570. #endif /* CONFIG_WPS */
  571. return buf;
  572. }
  573. #endif /* NO_CONFIG_WRITE */
  574. static int wpa_config_parse_cipher(int line, const char *value)
  575. {
  576. int val = wpa_parse_cipher(value);
  577. if (val < 0) {
  578. wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
  579. line, value);
  580. return -1;
  581. }
  582. if (val == 0) {
  583. wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
  584. line);
  585. return -1;
  586. }
  587. return val;
  588. }
  589. #ifndef NO_CONFIG_WRITE
  590. static char * wpa_config_write_cipher(int cipher)
  591. {
  592. char *buf = os_zalloc(50);
  593. if (buf == NULL)
  594. return NULL;
  595. if (wpa_write_ciphers(buf, buf + 50, cipher, " ") < 0) {
  596. os_free(buf);
  597. return NULL;
  598. }
  599. return buf;
  600. }
  601. #endif /* NO_CONFIG_WRITE */
  602. static int wpa_config_parse_pairwise(const struct parse_data *data,
  603. struct wpa_ssid *ssid, int line,
  604. const char *value)
  605. {
  606. int val;
  607. val = wpa_config_parse_cipher(line, value);
  608. if (val == -1)
  609. return -1;
  610. if (val & ~WPA_ALLOWED_PAIRWISE_CIPHERS) {
  611. wpa_printf(MSG_ERROR, "Line %d: not allowed pairwise cipher "
  612. "(0x%x).", line, val);
  613. return -1;
  614. }
  615. wpa_printf(MSG_MSGDUMP, "pairwise: 0x%x", val);
  616. ssid->pairwise_cipher = val;
  617. return 0;
  618. }
  619. #ifndef NO_CONFIG_WRITE
  620. static char * wpa_config_write_pairwise(const struct parse_data *data,
  621. struct wpa_ssid *ssid)
  622. {
  623. return wpa_config_write_cipher(ssid->pairwise_cipher);
  624. }
  625. #endif /* NO_CONFIG_WRITE */
  626. static int wpa_config_parse_group(const struct parse_data *data,
  627. struct wpa_ssid *ssid, int line,
  628. const char *value)
  629. {
  630. int val;
  631. val = wpa_config_parse_cipher(line, value);
  632. if (val == -1)
  633. return -1;
  634. if (val & ~WPA_ALLOWED_GROUP_CIPHERS) {
  635. wpa_printf(MSG_ERROR, "Line %d: not allowed group cipher "
  636. "(0x%x).", line, val);
  637. return -1;
  638. }
  639. wpa_printf(MSG_MSGDUMP, "group: 0x%x", val);
  640. ssid->group_cipher = val;
  641. return 0;
  642. }
  643. #ifndef NO_CONFIG_WRITE
  644. static char * wpa_config_write_group(const struct parse_data *data,
  645. struct wpa_ssid *ssid)
  646. {
  647. return wpa_config_write_cipher(ssid->group_cipher);
  648. }
  649. #endif /* NO_CONFIG_WRITE */
  650. static int wpa_config_parse_auth_alg(const struct parse_data *data,
  651. struct wpa_ssid *ssid, int line,
  652. const char *value)
  653. {
  654. int val = 0, last, errors = 0;
  655. char *start, *end, *buf;
  656. buf = os_strdup(value);
  657. if (buf == NULL)
  658. return -1;
  659. start = buf;
  660. while (*start != '\0') {
  661. while (*start == ' ' || *start == '\t')
  662. start++;
  663. if (*start == '\0')
  664. break;
  665. end = start;
  666. while (*end != ' ' && *end != '\t' && *end != '\0')
  667. end++;
  668. last = *end == '\0';
  669. *end = '\0';
  670. if (os_strcmp(start, "OPEN") == 0)
  671. val |= WPA_AUTH_ALG_OPEN;
  672. else if (os_strcmp(start, "SHARED") == 0)
  673. val |= WPA_AUTH_ALG_SHARED;
  674. else if (os_strcmp(start, "LEAP") == 0)
  675. val |= WPA_AUTH_ALG_LEAP;
  676. else {
  677. wpa_printf(MSG_ERROR, "Line %d: invalid auth_alg '%s'",
  678. line, start);
  679. errors++;
  680. }
  681. if (last)
  682. break;
  683. start = end + 1;
  684. }
  685. os_free(buf);
  686. if (val == 0) {
  687. wpa_printf(MSG_ERROR,
  688. "Line %d: no auth_alg values configured.", line);
  689. errors++;
  690. }
  691. wpa_printf(MSG_MSGDUMP, "auth_alg: 0x%x", val);
  692. ssid->auth_alg = val;
  693. return errors ? -1 : 0;
  694. }
  695. #ifndef NO_CONFIG_WRITE
  696. static char * wpa_config_write_auth_alg(const struct parse_data *data,
  697. struct wpa_ssid *ssid)
  698. {
  699. char *buf, *pos, *end;
  700. int ret;
  701. pos = buf = os_zalloc(30);
  702. if (buf == NULL)
  703. return NULL;
  704. end = buf + 30;
  705. if (ssid->auth_alg & WPA_AUTH_ALG_OPEN) {
  706. ret = os_snprintf(pos, end - pos, "%sOPEN",
  707. pos == buf ? "" : " ");
  708. if (ret < 0 || ret >= end - pos) {
  709. end[-1] = '\0';
  710. return buf;
  711. }
  712. pos += ret;
  713. }
  714. if (ssid->auth_alg & WPA_AUTH_ALG_SHARED) {
  715. ret = os_snprintf(pos, end - pos, "%sSHARED",
  716. pos == buf ? "" : " ");
  717. if (ret < 0 || ret >= end - pos) {
  718. end[-1] = '\0';
  719. return buf;
  720. }
  721. pos += ret;
  722. }
  723. if (ssid->auth_alg & WPA_AUTH_ALG_LEAP) {
  724. ret = os_snprintf(pos, end - pos, "%sLEAP",
  725. pos == buf ? "" : " ");
  726. if (ret < 0 || ret >= end - pos) {
  727. end[-1] = '\0';
  728. return buf;
  729. }
  730. pos += ret;
  731. }
  732. return buf;
  733. }
  734. #endif /* NO_CONFIG_WRITE */
  735. static int * wpa_config_parse_int_array(const char *value)
  736. {
  737. int *freqs;
  738. size_t used, len;
  739. const char *pos;
  740. used = 0;
  741. len = 10;
  742. freqs = os_calloc(len + 1, sizeof(int));
  743. if (freqs == NULL)
  744. return NULL;
  745. pos = value;
  746. while (pos) {
  747. while (*pos == ' ')
  748. pos++;
  749. if (used == len) {
  750. int *n;
  751. size_t i;
  752. n = os_realloc_array(freqs, len * 2 + 1, sizeof(int));
  753. if (n == NULL) {
  754. os_free(freqs);
  755. return NULL;
  756. }
  757. for (i = len; i <= len * 2; i++)
  758. n[i] = 0;
  759. freqs = n;
  760. len *= 2;
  761. }
  762. freqs[used] = atoi(pos);
  763. if (freqs[used] == 0)
  764. break;
  765. used++;
  766. pos = os_strchr(pos + 1, ' ');
  767. }
  768. return freqs;
  769. }
  770. static int wpa_config_parse_scan_freq(const struct parse_data *data,
  771. struct wpa_ssid *ssid, int line,
  772. const char *value)
  773. {
  774. int *freqs;
  775. freqs = wpa_config_parse_int_array(value);
  776. if (freqs == NULL)
  777. return -1;
  778. if (freqs[0] == 0) {
  779. os_free(freqs);
  780. freqs = NULL;
  781. }
  782. os_free(ssid->scan_freq);
  783. ssid->scan_freq = freqs;
  784. return 0;
  785. }
  786. static int wpa_config_parse_freq_list(const struct parse_data *data,
  787. struct wpa_ssid *ssid, int line,
  788. const char *value)
  789. {
  790. int *freqs;
  791. freqs = wpa_config_parse_int_array(value);
  792. if (freqs == NULL)
  793. return -1;
  794. if (freqs[0] == 0) {
  795. os_free(freqs);
  796. freqs = NULL;
  797. }
  798. os_free(ssid->freq_list);
  799. ssid->freq_list = freqs;
  800. return 0;
  801. }
  802. #ifndef NO_CONFIG_WRITE
  803. static char * wpa_config_write_freqs(const struct parse_data *data,
  804. const int *freqs)
  805. {
  806. char *buf, *pos, *end;
  807. int i, ret;
  808. size_t count;
  809. if (freqs == NULL)
  810. return NULL;
  811. count = 0;
  812. for (i = 0; freqs[i]; i++)
  813. count++;
  814. pos = buf = os_zalloc(10 * count + 1);
  815. if (buf == NULL)
  816. return NULL;
  817. end = buf + 10 * count + 1;
  818. for (i = 0; freqs[i]; i++) {
  819. ret = os_snprintf(pos, end - pos, "%s%u",
  820. i == 0 ? "" : " ", freqs[i]);
  821. if (ret < 0 || ret >= end - pos) {
  822. end[-1] = '\0';
  823. return buf;
  824. }
  825. pos += ret;
  826. }
  827. return buf;
  828. }
  829. static char * wpa_config_write_scan_freq(const struct parse_data *data,
  830. struct wpa_ssid *ssid)
  831. {
  832. return wpa_config_write_freqs(data, ssid->scan_freq);
  833. }
  834. static char * wpa_config_write_freq_list(const struct parse_data *data,
  835. struct wpa_ssid *ssid)
  836. {
  837. return wpa_config_write_freqs(data, ssid->freq_list);
  838. }
  839. #endif /* NO_CONFIG_WRITE */
  840. #ifdef IEEE8021X_EAPOL
  841. static int wpa_config_parse_eap(const struct parse_data *data,
  842. struct wpa_ssid *ssid, int line,
  843. const char *value)
  844. {
  845. int last, errors = 0;
  846. char *start, *end, *buf;
  847. struct eap_method_type *methods = NULL, *tmp;
  848. size_t num_methods = 0;
  849. buf = os_strdup(value);
  850. if (buf == NULL)
  851. return -1;
  852. start = buf;
  853. while (*start != '\0') {
  854. while (*start == ' ' || *start == '\t')
  855. start++;
  856. if (*start == '\0')
  857. break;
  858. end = start;
  859. while (*end != ' ' && *end != '\t' && *end != '\0')
  860. end++;
  861. last = *end == '\0';
  862. *end = '\0';
  863. tmp = methods;
  864. methods = os_realloc_array(methods, num_methods + 1,
  865. sizeof(*methods));
  866. if (methods == NULL) {
  867. os_free(tmp);
  868. os_free(buf);
  869. return -1;
  870. }
  871. methods[num_methods].method = eap_peer_get_type(
  872. start, &methods[num_methods].vendor);
  873. if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
  874. methods[num_methods].method == EAP_TYPE_NONE) {
  875. wpa_printf(MSG_ERROR, "Line %d: unknown EAP method "
  876. "'%s'", line, start);
  877. wpa_printf(MSG_ERROR, "You may need to add support for"
  878. " this EAP method during wpa_supplicant\n"
  879. "build time configuration.\n"
  880. "See README for more information.");
  881. errors++;
  882. } else if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
  883. methods[num_methods].method == EAP_TYPE_LEAP)
  884. ssid->leap++;
  885. else
  886. ssid->non_leap++;
  887. num_methods++;
  888. if (last)
  889. break;
  890. start = end + 1;
  891. }
  892. os_free(buf);
  893. tmp = methods;
  894. methods = os_realloc_array(methods, num_methods + 1, sizeof(*methods));
  895. if (methods == NULL) {
  896. os_free(tmp);
  897. return -1;
  898. }
  899. methods[num_methods].vendor = EAP_VENDOR_IETF;
  900. methods[num_methods].method = EAP_TYPE_NONE;
  901. num_methods++;
  902. wpa_hexdump(MSG_MSGDUMP, "eap methods",
  903. (u8 *) methods, num_methods * sizeof(*methods));
  904. os_free(ssid->eap.eap_methods);
  905. ssid->eap.eap_methods = methods;
  906. return errors ? -1 : 0;
  907. }
  908. static char * wpa_config_write_eap(const struct parse_data *data,
  909. struct wpa_ssid *ssid)
  910. {
  911. int i, ret;
  912. char *buf, *pos, *end;
  913. const struct eap_method_type *eap_methods = ssid->eap.eap_methods;
  914. const char *name;
  915. if (eap_methods == NULL)
  916. return NULL;
  917. pos = buf = os_zalloc(100);
  918. if (buf == NULL)
  919. return NULL;
  920. end = buf + 100;
  921. for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
  922. eap_methods[i].method != EAP_TYPE_NONE; i++) {
  923. name = eap_get_name(eap_methods[i].vendor,
  924. eap_methods[i].method);
  925. if (name) {
  926. ret = os_snprintf(pos, end - pos, "%s%s",
  927. pos == buf ? "" : " ", name);
  928. if (ret < 0 || ret >= end - pos)
  929. break;
  930. pos += ret;
  931. }
  932. }
  933. end[-1] = '\0';
  934. return buf;
  935. }
  936. static int wpa_config_parse_password(const struct parse_data *data,
  937. struct wpa_ssid *ssid, int line,
  938. const char *value)
  939. {
  940. u8 *hash;
  941. if (os_strcmp(value, "NULL") == 0) {
  942. wpa_printf(MSG_DEBUG, "Unset configuration string 'password'");
  943. os_free(ssid->eap.password);
  944. ssid->eap.password = NULL;
  945. ssid->eap.password_len = 0;
  946. return 0;
  947. }
  948. #ifdef CONFIG_EXT_PASSWORD
  949. if (os_strncmp(value, "ext:", 4) == 0) {
  950. char *name = os_strdup(value + 4);
  951. if (name == NULL)
  952. return -1;
  953. os_free(ssid->eap.password);
  954. ssid->eap.password = (u8 *) name;
  955. ssid->eap.password_len = os_strlen(name);
  956. ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
  957. ssid->eap.flags |= EAP_CONFIG_FLAGS_EXT_PASSWORD;
  958. return 0;
  959. }
  960. #endif /* CONFIG_EXT_PASSWORD */
  961. if (os_strncmp(value, "hash:", 5) != 0) {
  962. char *tmp;
  963. size_t res_len;
  964. tmp = wpa_config_parse_string(value, &res_len);
  965. if (tmp == NULL) {
  966. wpa_printf(MSG_ERROR, "Line %d: failed to parse "
  967. "password.", line);
  968. return -1;
  969. }
  970. wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
  971. (u8 *) tmp, res_len);
  972. os_free(ssid->eap.password);
  973. ssid->eap.password = (u8 *) tmp;
  974. ssid->eap.password_len = res_len;
  975. ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
  976. ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
  977. return 0;
  978. }
  979. /* NtPasswordHash: hash:<32 hex digits> */
  980. if (os_strlen(value + 5) != 2 * 16) {
  981. wpa_printf(MSG_ERROR, "Line %d: Invalid password hash length "
  982. "(expected 32 hex digits)", line);
  983. return -1;
  984. }
  985. hash = os_malloc(16);
  986. if (hash == NULL)
  987. return -1;
  988. if (hexstr2bin(value + 5, hash, 16)) {
  989. os_free(hash);
  990. wpa_printf(MSG_ERROR, "Line %d: Invalid password hash", line);
  991. return -1;
  992. }
  993. wpa_hexdump_key(MSG_MSGDUMP, data->name, hash, 16);
  994. os_free(ssid->eap.password);
  995. ssid->eap.password = hash;
  996. ssid->eap.password_len = 16;
  997. ssid->eap.flags |= EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
  998. ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
  999. return 0;
  1000. }
  1001. static char * wpa_config_write_password(const struct parse_data *data,
  1002. struct wpa_ssid *ssid)
  1003. {
  1004. char *buf;
  1005. if (ssid->eap.password == NULL)
  1006. return NULL;
  1007. #ifdef CONFIG_EXT_PASSWORD
  1008. if (ssid->eap.flags & EAP_CONFIG_FLAGS_EXT_PASSWORD) {
  1009. buf = os_zalloc(4 + ssid->eap.password_len + 1);
  1010. if (buf == NULL)
  1011. return NULL;
  1012. os_memcpy(buf, "ext:", 4);
  1013. os_memcpy(buf + 4, ssid->eap.password, ssid->eap.password_len);
  1014. return buf;
  1015. }
  1016. #endif /* CONFIG_EXT_PASSWORD */
  1017. if (!(ssid->eap.flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH)) {
  1018. return wpa_config_write_string(
  1019. ssid->eap.password, ssid->eap.password_len);
  1020. }
  1021. buf = os_malloc(5 + 32 + 1);
  1022. if (buf == NULL)
  1023. return NULL;
  1024. os_memcpy(buf, "hash:", 5);
  1025. wpa_snprintf_hex(buf + 5, 32 + 1, ssid->eap.password, 16);
  1026. return buf;
  1027. }
  1028. #endif /* IEEE8021X_EAPOL */
  1029. static int wpa_config_parse_wep_key(u8 *key, size_t *len, int line,
  1030. const char *value, int idx)
  1031. {
  1032. char *buf, title[20];
  1033. int res;
  1034. buf = wpa_config_parse_string(value, len);
  1035. if (buf == NULL) {
  1036. wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key %d '%s'.",
  1037. line, idx, value);
  1038. return -1;
  1039. }
  1040. if (*len > MAX_WEP_KEY_LEN) {
  1041. wpa_printf(MSG_ERROR, "Line %d: Too long WEP key %d '%s'.",
  1042. line, idx, value);
  1043. os_free(buf);
  1044. return -1;
  1045. }
  1046. if (*len && *len != 5 && *len != 13 && *len != 16) {
  1047. wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key length %u - "
  1048. "this network block will be ignored",
  1049. line, (unsigned int) *len);
  1050. }
  1051. os_memcpy(key, buf, *len);
  1052. os_free(buf);
  1053. res = os_snprintf(title, sizeof(title), "wep_key%d", idx);
  1054. if (res >= 0 && (size_t) res < sizeof(title))
  1055. wpa_hexdump_key(MSG_MSGDUMP, title, key, *len);
  1056. return 0;
  1057. }
  1058. static int wpa_config_parse_wep_key0(const struct parse_data *data,
  1059. struct wpa_ssid *ssid, int line,
  1060. const char *value)
  1061. {
  1062. return wpa_config_parse_wep_key(ssid->wep_key[0],
  1063. &ssid->wep_key_len[0], line,
  1064. value, 0);
  1065. }
  1066. static int wpa_config_parse_wep_key1(const struct parse_data *data,
  1067. struct wpa_ssid *ssid, int line,
  1068. const char *value)
  1069. {
  1070. return wpa_config_parse_wep_key(ssid->wep_key[1],
  1071. &ssid->wep_key_len[1], line,
  1072. value, 1);
  1073. }
  1074. static int wpa_config_parse_wep_key2(const struct parse_data *data,
  1075. struct wpa_ssid *ssid, int line,
  1076. const char *value)
  1077. {
  1078. return wpa_config_parse_wep_key(ssid->wep_key[2],
  1079. &ssid->wep_key_len[2], line,
  1080. value, 2);
  1081. }
  1082. static int wpa_config_parse_wep_key3(const struct parse_data *data,
  1083. struct wpa_ssid *ssid, int line,
  1084. const char *value)
  1085. {
  1086. return wpa_config_parse_wep_key(ssid->wep_key[3],
  1087. &ssid->wep_key_len[3], line,
  1088. value, 3);
  1089. }
  1090. #ifndef NO_CONFIG_WRITE
  1091. static char * wpa_config_write_wep_key(struct wpa_ssid *ssid, int idx)
  1092. {
  1093. if (ssid->wep_key_len[idx] == 0)
  1094. return NULL;
  1095. return wpa_config_write_string(ssid->wep_key[idx],
  1096. ssid->wep_key_len[idx]);
  1097. }
  1098. static char * wpa_config_write_wep_key0(const struct parse_data *data,
  1099. struct wpa_ssid *ssid)
  1100. {
  1101. return wpa_config_write_wep_key(ssid, 0);
  1102. }
  1103. static char * wpa_config_write_wep_key1(const struct parse_data *data,
  1104. struct wpa_ssid *ssid)
  1105. {
  1106. return wpa_config_write_wep_key(ssid, 1);
  1107. }
  1108. static char * wpa_config_write_wep_key2(const struct parse_data *data,
  1109. struct wpa_ssid *ssid)
  1110. {
  1111. return wpa_config_write_wep_key(ssid, 2);
  1112. }
  1113. static char * wpa_config_write_wep_key3(const struct parse_data *data,
  1114. struct wpa_ssid *ssid)
  1115. {
  1116. return wpa_config_write_wep_key(ssid, 3);
  1117. }
  1118. #endif /* NO_CONFIG_WRITE */
  1119. #ifdef CONFIG_P2P
  1120. static int wpa_config_parse_go_p2p_dev_addr(const struct parse_data *data,
  1121. struct wpa_ssid *ssid, int line,
  1122. const char *value)
  1123. {
  1124. if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
  1125. os_strcmp(value, "any") == 0) {
  1126. os_memset(ssid->go_p2p_dev_addr, 0, ETH_ALEN);
  1127. wpa_printf(MSG_MSGDUMP, "GO P2P Device Address any");
  1128. return 0;
  1129. }
  1130. if (hwaddr_aton(value, ssid->go_p2p_dev_addr)) {
  1131. wpa_printf(MSG_ERROR, "Line %d: Invalid GO P2P Device Address '%s'.",
  1132. line, value);
  1133. return -1;
  1134. }
  1135. ssid->bssid_set = 1;
  1136. wpa_printf(MSG_MSGDUMP, "GO P2P Device Address " MACSTR,
  1137. MAC2STR(ssid->go_p2p_dev_addr));
  1138. return 0;
  1139. }
  1140. #ifndef NO_CONFIG_WRITE
  1141. static char * wpa_config_write_go_p2p_dev_addr(const struct parse_data *data,
  1142. struct wpa_ssid *ssid)
  1143. {
  1144. char *value;
  1145. int res;
  1146. if (is_zero_ether_addr(ssid->go_p2p_dev_addr))
  1147. return NULL;
  1148. value = os_malloc(20);
  1149. if (value == NULL)
  1150. return NULL;
  1151. res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->go_p2p_dev_addr));
  1152. if (res < 0 || res >= 20) {
  1153. os_free(value);
  1154. return NULL;
  1155. }
  1156. value[20 - 1] = '\0';
  1157. return value;
  1158. }
  1159. #endif /* NO_CONFIG_WRITE */
  1160. static int wpa_config_parse_p2p_client_list(const struct parse_data *data,
  1161. struct wpa_ssid *ssid, int line,
  1162. const char *value)
  1163. {
  1164. const char *pos;
  1165. u8 *buf, *n, addr[ETH_ALEN];
  1166. size_t count;
  1167. buf = NULL;
  1168. count = 0;
  1169. pos = value;
  1170. while (pos && *pos) {
  1171. while (*pos == ' ')
  1172. pos++;
  1173. if (hwaddr_aton(pos, addr)) {
  1174. if (count == 0) {
  1175. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  1176. "p2p_client_list address '%s'.",
  1177. line, value);
  1178. os_free(buf);
  1179. return -1;
  1180. }
  1181. /* continue anyway since this could have been from a
  1182. * truncated configuration file line */
  1183. wpa_printf(MSG_INFO, "Line %d: Ignore likely "
  1184. "truncated p2p_client_list address '%s'",
  1185. line, pos);
  1186. } else {
  1187. n = os_realloc_array(buf, count + 1, ETH_ALEN);
  1188. if (n == NULL) {
  1189. os_free(buf);
  1190. return -1;
  1191. }
  1192. buf = n;
  1193. os_memmove(buf + ETH_ALEN, buf, count * ETH_ALEN);
  1194. os_memcpy(buf, addr, ETH_ALEN);
  1195. count++;
  1196. wpa_hexdump(MSG_MSGDUMP, "p2p_client_list",
  1197. addr, ETH_ALEN);
  1198. }
  1199. pos = os_strchr(pos, ' ');
  1200. }
  1201. os_free(ssid->p2p_client_list);
  1202. ssid->p2p_client_list = buf;
  1203. ssid->num_p2p_clients = count;
  1204. return 0;
  1205. }
  1206. #ifndef NO_CONFIG_WRITE
  1207. static char * wpa_config_write_p2p_client_list(const struct parse_data *data,
  1208. struct wpa_ssid *ssid)
  1209. {
  1210. char *value, *end, *pos;
  1211. int res;
  1212. size_t i;
  1213. if (ssid->p2p_client_list == NULL || ssid->num_p2p_clients == 0)
  1214. return NULL;
  1215. value = os_malloc(20 * ssid->num_p2p_clients);
  1216. if (value == NULL)
  1217. return NULL;
  1218. pos = value;
  1219. end = value + 20 * ssid->num_p2p_clients;
  1220. for (i = ssid->num_p2p_clients; i > 0; i--) {
  1221. res = os_snprintf(pos, end - pos, MACSTR " ",
  1222. MAC2STR(ssid->p2p_client_list +
  1223. (i - 1) * ETH_ALEN));
  1224. if (res < 0 || res >= end - pos) {
  1225. os_free(value);
  1226. return NULL;
  1227. }
  1228. pos += res;
  1229. }
  1230. if (pos > value)
  1231. pos[-1] = '\0';
  1232. return value;
  1233. }
  1234. #endif /* NO_CONFIG_WRITE */
  1235. static int wpa_config_parse_psk_list(const struct parse_data *data,
  1236. struct wpa_ssid *ssid, int line,
  1237. const char *value)
  1238. {
  1239. struct psk_list_entry *p;
  1240. const char *pos;
  1241. p = os_zalloc(sizeof(*p));
  1242. if (p == NULL)
  1243. return -1;
  1244. pos = value;
  1245. if (os_strncmp(pos, "P2P-", 4) == 0) {
  1246. p->p2p = 1;
  1247. pos += 4;
  1248. }
  1249. if (hwaddr_aton(pos, p->addr)) {
  1250. wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list address '%s'",
  1251. line, pos);
  1252. os_free(p);
  1253. return -1;
  1254. }
  1255. pos += 17;
  1256. if (*pos != '-') {
  1257. wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list '%s'",
  1258. line, pos);
  1259. os_free(p);
  1260. return -1;
  1261. }
  1262. pos++;
  1263. if (hexstr2bin(pos, p->psk, PMK_LEN) || pos[PMK_LEN * 2] != '\0') {
  1264. wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list PSK '%s'",
  1265. line, pos);
  1266. os_free(p);
  1267. return -1;
  1268. }
  1269. dl_list_add(&ssid->psk_list, &p->list);
  1270. return 0;
  1271. }
  1272. #ifndef NO_CONFIG_WRITE
  1273. static char * wpa_config_write_psk_list(const struct parse_data *data,
  1274. struct wpa_ssid *ssid)
  1275. {
  1276. return NULL;
  1277. }
  1278. #endif /* NO_CONFIG_WRITE */
  1279. #endif /* CONFIG_P2P */
  1280. /* Helper macros for network block parser */
  1281. #ifdef OFFSET
  1282. #undef OFFSET
  1283. #endif /* OFFSET */
  1284. /* OFFSET: Get offset of a variable within the wpa_ssid structure */
  1285. #define OFFSET(v) ((void *) &((struct wpa_ssid *) 0)->v)
  1286. /* STR: Define a string variable for an ASCII string; f = field name */
  1287. #ifdef NO_CONFIG_WRITE
  1288. #define _STR(f) #f, wpa_config_parse_str, OFFSET(f)
  1289. #define _STRe(f) #f, wpa_config_parse_str, OFFSET(eap.f)
  1290. #else /* NO_CONFIG_WRITE */
  1291. #define _STR(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(f)
  1292. #define _STRe(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(eap.f)
  1293. #endif /* NO_CONFIG_WRITE */
  1294. #define STR(f) _STR(f), NULL, NULL, NULL, 0
  1295. #define STRe(f) _STRe(f), NULL, NULL, NULL, 0
  1296. #define STR_KEY(f) _STR(f), NULL, NULL, NULL, 1
  1297. #define STR_KEYe(f) _STRe(f), NULL, NULL, NULL, 1
  1298. /* STR_LEN: Define a string variable with a separate variable for storing the
  1299. * data length. Unlike STR(), this can be used to store arbitrary binary data
  1300. * (i.e., even nul termination character). */
  1301. #define _STR_LEN(f) _STR(f), OFFSET(f ## _len)
  1302. #define _STR_LENe(f) _STRe(f), OFFSET(eap.f ## _len)
  1303. #define STR_LEN(f) _STR_LEN(f), NULL, NULL, 0
  1304. #define STR_LENe(f) _STR_LENe(f), NULL, NULL, 0
  1305. #define STR_LEN_KEY(f) _STR_LEN(f), NULL, NULL, 1
  1306. /* STR_RANGE: Like STR_LEN(), but with minimum and maximum allowed length
  1307. * explicitly specified. */
  1308. #define _STR_RANGE(f, min, max) _STR_LEN(f), (void *) (min), (void *) (max)
  1309. #define STR_RANGE(f, min, max) _STR_RANGE(f, min, max), 0
  1310. #define STR_RANGE_KEY(f, min, max) _STR_RANGE(f, min, max), 1
  1311. #ifdef NO_CONFIG_WRITE
  1312. #define _INT(f) #f, wpa_config_parse_int, OFFSET(f), (void *) 0
  1313. #define _INTe(f) #f, wpa_config_parse_int, OFFSET(eap.f), (void *) 0
  1314. #else /* NO_CONFIG_WRITE */
  1315. #define _INT(f) #f, wpa_config_parse_int, wpa_config_write_int, \
  1316. OFFSET(f), (void *) 0
  1317. #define _INTe(f) #f, wpa_config_parse_int, wpa_config_write_int, \
  1318. OFFSET(eap.f), (void *) 0
  1319. #endif /* NO_CONFIG_WRITE */
  1320. /* INT: Define an integer variable */
  1321. #define INT(f) _INT(f), NULL, NULL, 0
  1322. #define INTe(f) _INTe(f), NULL, NULL, 0
  1323. /* INT_RANGE: Define an integer variable with allowed value range */
  1324. #define INT_RANGE(f, min, max) _INT(f), (void *) (min), (void *) (max), 0
  1325. /* FUNC: Define a configuration variable that uses a custom function for
  1326. * parsing and writing the value. */
  1327. #ifdef NO_CONFIG_WRITE
  1328. #define _FUNC(f) #f, wpa_config_parse_ ## f, NULL, NULL, NULL, NULL
  1329. #else /* NO_CONFIG_WRITE */
  1330. #define _FUNC(f) #f, wpa_config_parse_ ## f, wpa_config_write_ ## f, \
  1331. NULL, NULL, NULL, NULL
  1332. #endif /* NO_CONFIG_WRITE */
  1333. #define FUNC(f) _FUNC(f), 0
  1334. #define FUNC_KEY(f) _FUNC(f), 1
  1335. /*
  1336. * Table of network configuration variables. This table is used to parse each
  1337. * network configuration variable, e.g., each line in wpa_supplicant.conf file
  1338. * that is inside a network block.
  1339. *
  1340. * This table is generated using the helper macros defined above and with
  1341. * generous help from the C pre-processor. The field name is stored as a string
  1342. * into .name and for STR and INT types, the offset of the target buffer within
  1343. * struct wpa_ssid is stored in .param1. .param2 (if not NULL) is similar
  1344. * offset to the field containing the length of the configuration variable.
  1345. * .param3 and .param4 can be used to mark the allowed range (length for STR
  1346. * and value for INT).
  1347. *
  1348. * For each configuration line in wpa_supplicant.conf, the parser goes through
  1349. * this table and select the entry that matches with the field name. The parser
  1350. * function (.parser) is then called to parse the actual value of the field.
  1351. *
  1352. * This kind of mechanism makes it easy to add new configuration parameters,
  1353. * since only one line needs to be added into this table and into the
  1354. * struct wpa_ssid definition if the new variable is either a string or
  1355. * integer. More complex types will need to use their own parser and writer
  1356. * functions.
  1357. */
  1358. static const struct parse_data ssid_fields[] = {
  1359. { STR_RANGE(ssid, 0, MAX_SSID_LEN) },
  1360. { INT_RANGE(scan_ssid, 0, 1) },
  1361. { FUNC(bssid) },
  1362. { FUNC_KEY(psk) },
  1363. { FUNC(proto) },
  1364. { FUNC(key_mgmt) },
  1365. { INT(bg_scan_period) },
  1366. { FUNC(pairwise) },
  1367. { FUNC(group) },
  1368. { FUNC(auth_alg) },
  1369. { FUNC(scan_freq) },
  1370. { FUNC(freq_list) },
  1371. #ifdef IEEE8021X_EAPOL
  1372. { FUNC(eap) },
  1373. { STR_LENe(identity) },
  1374. { STR_LENe(anonymous_identity) },
  1375. { FUNC_KEY(password) },
  1376. { STRe(ca_cert) },
  1377. { STRe(ca_path) },
  1378. { STRe(client_cert) },
  1379. { STRe(private_key) },
  1380. { STR_KEYe(private_key_passwd) },
  1381. { STRe(dh_file) },
  1382. { STRe(subject_match) },
  1383. { STRe(altsubject_match) },
  1384. { STRe(domain_suffix_match) },
  1385. { STRe(ca_cert2) },
  1386. { STRe(ca_path2) },
  1387. { STRe(client_cert2) },
  1388. { STRe(private_key2) },
  1389. { STR_KEYe(private_key2_passwd) },
  1390. { STRe(dh_file2) },
  1391. { STRe(subject_match2) },
  1392. { STRe(altsubject_match2) },
  1393. { STRe(domain_suffix_match2) },
  1394. { STRe(phase1) },
  1395. { STRe(phase2) },
  1396. { STRe(pcsc) },
  1397. { STR_KEYe(pin) },
  1398. { STRe(engine_id) },
  1399. { STRe(key_id) },
  1400. { STRe(cert_id) },
  1401. { STRe(ca_cert_id) },
  1402. { STR_KEYe(pin2) },
  1403. { STRe(engine2_id) },
  1404. { STRe(key2_id) },
  1405. { STRe(cert2_id) },
  1406. { STRe(ca_cert2_id) },
  1407. { INTe(engine) },
  1408. { INTe(engine2) },
  1409. { INT(eapol_flags) },
  1410. #endif /* IEEE8021X_EAPOL */
  1411. { FUNC_KEY(wep_key0) },
  1412. { FUNC_KEY(wep_key1) },
  1413. { FUNC_KEY(wep_key2) },
  1414. { FUNC_KEY(wep_key3) },
  1415. { INT(wep_tx_keyidx) },
  1416. { INT(priority) },
  1417. #ifdef IEEE8021X_EAPOL
  1418. { INT(eap_workaround) },
  1419. { STRe(pac_file) },
  1420. { INTe(fragment_size) },
  1421. { INTe(ocsp) },
  1422. #endif /* IEEE8021X_EAPOL */
  1423. { INT_RANGE(mode, 0, 4) },
  1424. { INT_RANGE(proactive_key_caching, 0, 1) },
  1425. { INT_RANGE(disabled, 0, 2) },
  1426. { STR(id_str) },
  1427. #ifdef CONFIG_IEEE80211W
  1428. { INT_RANGE(ieee80211w, 0, 2) },
  1429. #endif /* CONFIG_IEEE80211W */
  1430. { INT_RANGE(peerkey, 0, 1) },
  1431. { INT_RANGE(mixed_cell, 0, 1) },
  1432. { INT_RANGE(frequency, 0, 65000) },
  1433. { INT(wpa_ptk_rekey) },
  1434. { STR(bgscan) },
  1435. { INT_RANGE(ignore_broadcast_ssid, 0, 2) },
  1436. #ifdef CONFIG_P2P
  1437. { FUNC(go_p2p_dev_addr) },
  1438. { FUNC(p2p_client_list) },
  1439. { FUNC(psk_list) },
  1440. #endif /* CONFIG_P2P */
  1441. #ifdef CONFIG_HT_OVERRIDES
  1442. { INT_RANGE(disable_ht, 0, 1) },
  1443. { INT_RANGE(disable_ht40, -1, 1) },
  1444. { INT_RANGE(disable_sgi, 0, 1) },
  1445. { INT_RANGE(disable_max_amsdu, -1, 1) },
  1446. { INT_RANGE(ampdu_factor, -1, 3) },
  1447. { INT_RANGE(ampdu_density, -1, 7) },
  1448. { STR(ht_mcs) },
  1449. #endif /* CONFIG_HT_OVERRIDES */
  1450. #ifdef CONFIG_VHT_OVERRIDES
  1451. { INT_RANGE(disable_vht, 0, 1) },
  1452. { INT(vht_capa) },
  1453. { INT(vht_capa_mask) },
  1454. { INT_RANGE(vht_rx_mcs_nss_1, -1, 3) },
  1455. { INT_RANGE(vht_rx_mcs_nss_2, -1, 3) },
  1456. { INT_RANGE(vht_rx_mcs_nss_3, -1, 3) },
  1457. { INT_RANGE(vht_rx_mcs_nss_4, -1, 3) },
  1458. { INT_RANGE(vht_rx_mcs_nss_5, -1, 3) },
  1459. { INT_RANGE(vht_rx_mcs_nss_6, -1, 3) },
  1460. { INT_RANGE(vht_rx_mcs_nss_7, -1, 3) },
  1461. { INT_RANGE(vht_rx_mcs_nss_8, -1, 3) },
  1462. { INT_RANGE(vht_tx_mcs_nss_1, -1, 3) },
  1463. { INT_RANGE(vht_tx_mcs_nss_2, -1, 3) },
  1464. { INT_RANGE(vht_tx_mcs_nss_3, -1, 3) },
  1465. { INT_RANGE(vht_tx_mcs_nss_4, -1, 3) },
  1466. { INT_RANGE(vht_tx_mcs_nss_5, -1, 3) },
  1467. { INT_RANGE(vht_tx_mcs_nss_6, -1, 3) },
  1468. { INT_RANGE(vht_tx_mcs_nss_7, -1, 3) },
  1469. { INT_RANGE(vht_tx_mcs_nss_8, -1, 3) },
  1470. #endif /* CONFIG_VHT_OVERRIDES */
  1471. { INT(ap_max_inactivity) },
  1472. { INT(dtim_period) },
  1473. { INT(beacon_int) },
  1474. };
  1475. #undef OFFSET
  1476. #undef _STR
  1477. #undef STR
  1478. #undef STR_KEY
  1479. #undef _STR_LEN
  1480. #undef STR_LEN
  1481. #undef STR_LEN_KEY
  1482. #undef _STR_RANGE
  1483. #undef STR_RANGE
  1484. #undef STR_RANGE_KEY
  1485. #undef _INT
  1486. #undef INT
  1487. #undef INT_RANGE
  1488. #undef _FUNC
  1489. #undef FUNC
  1490. #undef FUNC_KEY
  1491. #define NUM_SSID_FIELDS ARRAY_SIZE(ssid_fields)
  1492. /**
  1493. * wpa_config_add_prio_network - Add a network to priority lists
  1494. * @config: Configuration data from wpa_config_read()
  1495. * @ssid: Pointer to the network configuration to be added to the list
  1496. * Returns: 0 on success, -1 on failure
  1497. *
  1498. * This function is used to add a network block to the priority list of
  1499. * networks. This must be called for each network when reading in the full
  1500. * configuration. In addition, this can be used indirectly when updating
  1501. * priorities by calling wpa_config_update_prio_list().
  1502. */
  1503. int wpa_config_add_prio_network(struct wpa_config *config,
  1504. struct wpa_ssid *ssid)
  1505. {
  1506. int prio;
  1507. struct wpa_ssid *prev, **nlist;
  1508. /*
  1509. * Add to an existing priority list if one is available for the
  1510. * configured priority level for this network.
  1511. */
  1512. for (prio = 0; prio < config->num_prio; prio++) {
  1513. prev = config->pssid[prio];
  1514. if (prev->priority == ssid->priority) {
  1515. while (prev->pnext)
  1516. prev = prev->pnext;
  1517. prev->pnext = ssid;
  1518. return 0;
  1519. }
  1520. }
  1521. /* First network for this priority - add a new priority list */
  1522. nlist = os_realloc_array(config->pssid, config->num_prio + 1,
  1523. sizeof(struct wpa_ssid *));
  1524. if (nlist == NULL)
  1525. return -1;
  1526. for (prio = 0; prio < config->num_prio; prio++) {
  1527. if (nlist[prio]->priority < ssid->priority) {
  1528. os_memmove(&nlist[prio + 1], &nlist[prio],
  1529. (config->num_prio - prio) *
  1530. sizeof(struct wpa_ssid *));
  1531. break;
  1532. }
  1533. }
  1534. nlist[prio] = ssid;
  1535. config->num_prio++;
  1536. config->pssid = nlist;
  1537. return 0;
  1538. }
  1539. /**
  1540. * wpa_config_update_prio_list - Update network priority list
  1541. * @config: Configuration data from wpa_config_read()
  1542. * Returns: 0 on success, -1 on failure
  1543. *
  1544. * This function is called to update the priority list of networks in the
  1545. * configuration when a network is being added or removed. This is also called
  1546. * if a priority for a network is changed.
  1547. */
  1548. int wpa_config_update_prio_list(struct wpa_config *config)
  1549. {
  1550. struct wpa_ssid *ssid;
  1551. int ret = 0;
  1552. os_free(config->pssid);
  1553. config->pssid = NULL;
  1554. config->num_prio = 0;
  1555. ssid = config->ssid;
  1556. while (ssid) {
  1557. ssid->pnext = NULL;
  1558. if (wpa_config_add_prio_network(config, ssid) < 0)
  1559. ret = -1;
  1560. ssid = ssid->next;
  1561. }
  1562. return ret;
  1563. }
  1564. #ifdef IEEE8021X_EAPOL
  1565. static void eap_peer_config_free(struct eap_peer_config *eap)
  1566. {
  1567. os_free(eap->eap_methods);
  1568. os_free(eap->identity);
  1569. os_free(eap->anonymous_identity);
  1570. os_free(eap->password);
  1571. os_free(eap->ca_cert);
  1572. os_free(eap->ca_path);
  1573. os_free(eap->client_cert);
  1574. os_free(eap->private_key);
  1575. os_free(eap->private_key_passwd);
  1576. os_free(eap->dh_file);
  1577. os_free(eap->subject_match);
  1578. os_free(eap->altsubject_match);
  1579. os_free(eap->domain_suffix_match);
  1580. os_free(eap->ca_cert2);
  1581. os_free(eap->ca_path2);
  1582. os_free(eap->client_cert2);
  1583. os_free(eap->private_key2);
  1584. os_free(eap->private_key2_passwd);
  1585. os_free(eap->dh_file2);
  1586. os_free(eap->subject_match2);
  1587. os_free(eap->altsubject_match2);
  1588. os_free(eap->domain_suffix_match2);
  1589. os_free(eap->phase1);
  1590. os_free(eap->phase2);
  1591. os_free(eap->pcsc);
  1592. os_free(eap->pin);
  1593. os_free(eap->engine_id);
  1594. os_free(eap->key_id);
  1595. os_free(eap->cert_id);
  1596. os_free(eap->ca_cert_id);
  1597. os_free(eap->key2_id);
  1598. os_free(eap->cert2_id);
  1599. os_free(eap->ca_cert2_id);
  1600. os_free(eap->pin2);
  1601. os_free(eap->engine2_id);
  1602. os_free(eap->otp);
  1603. os_free(eap->pending_req_otp);
  1604. os_free(eap->pac_file);
  1605. os_free(eap->new_password);
  1606. os_free(eap->external_sim_resp);
  1607. }
  1608. #endif /* IEEE8021X_EAPOL */
  1609. /**
  1610. * wpa_config_free_ssid - Free network/ssid configuration data
  1611. * @ssid: Configuration data for the network
  1612. *
  1613. * This function frees all resources allocated for the network configuration
  1614. * data.
  1615. */
  1616. void wpa_config_free_ssid(struct wpa_ssid *ssid)
  1617. {
  1618. struct psk_list_entry *psk;
  1619. os_free(ssid->ssid);
  1620. os_free(ssid->passphrase);
  1621. os_free(ssid->ext_psk);
  1622. #ifdef IEEE8021X_EAPOL
  1623. eap_peer_config_free(&ssid->eap);
  1624. #endif /* IEEE8021X_EAPOL */
  1625. os_free(ssid->id_str);
  1626. os_free(ssid->scan_freq);
  1627. os_free(ssid->freq_list);
  1628. os_free(ssid->bgscan);
  1629. os_free(ssid->p2p_client_list);
  1630. #ifdef CONFIG_HT_OVERRIDES
  1631. os_free(ssid->ht_mcs);
  1632. #endif /* CONFIG_HT_OVERRIDES */
  1633. while ((psk = dl_list_first(&ssid->psk_list, struct psk_list_entry,
  1634. list))) {
  1635. dl_list_del(&psk->list);
  1636. os_free(psk);
  1637. }
  1638. os_free(ssid);
  1639. }
  1640. void wpa_config_free_cred(struct wpa_cred *cred)
  1641. {
  1642. size_t i;
  1643. os_free(cred->realm);
  1644. os_free(cred->username);
  1645. os_free(cred->password);
  1646. os_free(cred->ca_cert);
  1647. os_free(cred->client_cert);
  1648. os_free(cred->private_key);
  1649. os_free(cred->private_key_passwd);
  1650. os_free(cred->imsi);
  1651. os_free(cred->milenage);
  1652. for (i = 0; i < cred->num_domain; i++)
  1653. os_free(cred->domain[i]);
  1654. os_free(cred->domain);
  1655. os_free(cred->domain_suffix_match);
  1656. os_free(cred->eap_method);
  1657. os_free(cred->phase1);
  1658. os_free(cred->phase2);
  1659. os_free(cred->excluded_ssid);
  1660. os_free(cred->roaming_partner);
  1661. os_free(cred->provisioning_sp);
  1662. for (i = 0; i < cred->num_req_conn_capab; i++)
  1663. os_free(cred->req_conn_capab_port[i]);
  1664. os_free(cred->req_conn_capab_port);
  1665. os_free(cred->req_conn_capab_proto);
  1666. os_free(cred);
  1667. }
  1668. void wpa_config_flush_blobs(struct wpa_config *config)
  1669. {
  1670. #ifndef CONFIG_NO_CONFIG_BLOBS
  1671. struct wpa_config_blob *blob, *prev;
  1672. blob = config->blobs;
  1673. config->blobs = NULL;
  1674. while (blob) {
  1675. prev = blob;
  1676. blob = blob->next;
  1677. wpa_config_free_blob(prev);
  1678. }
  1679. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1680. }
  1681. /**
  1682. * wpa_config_free - Free configuration data
  1683. * @config: Configuration data from wpa_config_read()
  1684. *
  1685. * This function frees all resources allocated for the configuration data by
  1686. * wpa_config_read().
  1687. */
  1688. void wpa_config_free(struct wpa_config *config)
  1689. {
  1690. struct wpa_ssid *ssid, *prev = NULL;
  1691. struct wpa_cred *cred, *cprev;
  1692. ssid = config->ssid;
  1693. while (ssid) {
  1694. prev = ssid;
  1695. ssid = ssid->next;
  1696. wpa_config_free_ssid(prev);
  1697. }
  1698. cred = config->cred;
  1699. while (cred) {
  1700. cprev = cred;
  1701. cred = cred->next;
  1702. wpa_config_free_cred(cprev);
  1703. }
  1704. wpa_config_flush_blobs(config);
  1705. wpabuf_free(config->wps_vendor_ext_m1);
  1706. os_free(config->ctrl_interface);
  1707. os_free(config->ctrl_interface_group);
  1708. os_free(config->opensc_engine_path);
  1709. os_free(config->pkcs11_engine_path);
  1710. os_free(config->pkcs11_module_path);
  1711. os_free(config->pcsc_reader);
  1712. os_free(config->pcsc_pin);
  1713. os_free(config->driver_param);
  1714. os_free(config->device_name);
  1715. os_free(config->manufacturer);
  1716. os_free(config->model_name);
  1717. os_free(config->model_number);
  1718. os_free(config->serial_number);
  1719. os_free(config->config_methods);
  1720. os_free(config->p2p_ssid_postfix);
  1721. os_free(config->pssid);
  1722. os_free(config->p2p_pref_chan);
  1723. os_free(config->p2p_no_go_freq.range);
  1724. os_free(config->autoscan);
  1725. os_free(config->freq_list);
  1726. wpabuf_free(config->wps_nfc_dh_pubkey);
  1727. wpabuf_free(config->wps_nfc_dh_privkey);
  1728. wpabuf_free(config->wps_nfc_dev_pw);
  1729. os_free(config->ext_password_backend);
  1730. os_free(config->sae_groups);
  1731. wpabuf_free(config->ap_vendor_elements);
  1732. os_free(config->osu_dir);
  1733. os_free(config);
  1734. }
  1735. /**
  1736. * wpa_config_foreach_network - Iterate over each configured network
  1737. * @config: Configuration data from wpa_config_read()
  1738. * @func: Callback function to process each network
  1739. * @arg: Opaque argument to pass to callback function
  1740. *
  1741. * Iterate over the set of configured networks calling the specified
  1742. * function for each item. We guard against callbacks removing the
  1743. * supplied network.
  1744. */
  1745. void wpa_config_foreach_network(struct wpa_config *config,
  1746. void (*func)(void *, struct wpa_ssid *),
  1747. void *arg)
  1748. {
  1749. struct wpa_ssid *ssid, *next;
  1750. ssid = config->ssid;
  1751. while (ssid) {
  1752. next = ssid->next;
  1753. func(arg, ssid);
  1754. ssid = next;
  1755. }
  1756. }
  1757. /**
  1758. * wpa_config_get_network - Get configured network based on id
  1759. * @config: Configuration data from wpa_config_read()
  1760. * @id: Unique network id to search for
  1761. * Returns: Network configuration or %NULL if not found
  1762. */
  1763. struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id)
  1764. {
  1765. struct wpa_ssid *ssid;
  1766. ssid = config->ssid;
  1767. while (ssid) {
  1768. if (id == ssid->id)
  1769. break;
  1770. ssid = ssid->next;
  1771. }
  1772. return ssid;
  1773. }
  1774. /**
  1775. * wpa_config_add_network - Add a new network with empty configuration
  1776. * @config: Configuration data from wpa_config_read()
  1777. * Returns: The new network configuration or %NULL if operation failed
  1778. */
  1779. struct wpa_ssid * wpa_config_add_network(struct wpa_config *config)
  1780. {
  1781. int id;
  1782. struct wpa_ssid *ssid, *last = NULL;
  1783. id = -1;
  1784. ssid = config->ssid;
  1785. while (ssid) {
  1786. if (ssid->id > id)
  1787. id = ssid->id;
  1788. last = ssid;
  1789. ssid = ssid->next;
  1790. }
  1791. id++;
  1792. ssid = os_zalloc(sizeof(*ssid));
  1793. if (ssid == NULL)
  1794. return NULL;
  1795. ssid->id = id;
  1796. dl_list_init(&ssid->psk_list);
  1797. if (last)
  1798. last->next = ssid;
  1799. else
  1800. config->ssid = ssid;
  1801. wpa_config_update_prio_list(config);
  1802. return ssid;
  1803. }
  1804. /**
  1805. * wpa_config_remove_network - Remove a configured network based on id
  1806. * @config: Configuration data from wpa_config_read()
  1807. * @id: Unique network id to search for
  1808. * Returns: 0 on success, or -1 if the network was not found
  1809. */
  1810. int wpa_config_remove_network(struct wpa_config *config, int id)
  1811. {
  1812. struct wpa_ssid *ssid, *prev = NULL;
  1813. ssid = config->ssid;
  1814. while (ssid) {
  1815. if (id == ssid->id)
  1816. break;
  1817. prev = ssid;
  1818. ssid = ssid->next;
  1819. }
  1820. if (ssid == NULL)
  1821. return -1;
  1822. if (prev)
  1823. prev->next = ssid->next;
  1824. else
  1825. config->ssid = ssid->next;
  1826. wpa_config_update_prio_list(config);
  1827. wpa_config_free_ssid(ssid);
  1828. return 0;
  1829. }
  1830. /**
  1831. * wpa_config_set_network_defaults - Set network default values
  1832. * @ssid: Pointer to network configuration data
  1833. */
  1834. void wpa_config_set_network_defaults(struct wpa_ssid *ssid)
  1835. {
  1836. ssid->proto = DEFAULT_PROTO;
  1837. ssid->pairwise_cipher = DEFAULT_PAIRWISE;
  1838. ssid->group_cipher = DEFAULT_GROUP;
  1839. ssid->key_mgmt = DEFAULT_KEY_MGMT;
  1840. ssid->bg_scan_period = DEFAULT_BG_SCAN_PERIOD;
  1841. #ifdef IEEE8021X_EAPOL
  1842. ssid->eapol_flags = DEFAULT_EAPOL_FLAGS;
  1843. ssid->eap_workaround = DEFAULT_EAP_WORKAROUND;
  1844. ssid->eap.fragment_size = DEFAULT_FRAGMENT_SIZE;
  1845. #endif /* IEEE8021X_EAPOL */
  1846. #ifdef CONFIG_HT_OVERRIDES
  1847. ssid->disable_ht = DEFAULT_DISABLE_HT;
  1848. ssid->disable_ht40 = DEFAULT_DISABLE_HT40;
  1849. ssid->disable_sgi = DEFAULT_DISABLE_SGI;
  1850. ssid->disable_max_amsdu = DEFAULT_DISABLE_MAX_AMSDU;
  1851. ssid->ampdu_factor = DEFAULT_AMPDU_FACTOR;
  1852. ssid->ampdu_density = DEFAULT_AMPDU_DENSITY;
  1853. #endif /* CONFIG_HT_OVERRIDES */
  1854. #ifdef CONFIG_VHT_OVERRIDES
  1855. ssid->vht_rx_mcs_nss_1 = -1;
  1856. ssid->vht_rx_mcs_nss_2 = -1;
  1857. ssid->vht_rx_mcs_nss_3 = -1;
  1858. ssid->vht_rx_mcs_nss_4 = -1;
  1859. ssid->vht_rx_mcs_nss_5 = -1;
  1860. ssid->vht_rx_mcs_nss_6 = -1;
  1861. ssid->vht_rx_mcs_nss_7 = -1;
  1862. ssid->vht_rx_mcs_nss_8 = -1;
  1863. ssid->vht_tx_mcs_nss_1 = -1;
  1864. ssid->vht_tx_mcs_nss_2 = -1;
  1865. ssid->vht_tx_mcs_nss_3 = -1;
  1866. ssid->vht_tx_mcs_nss_4 = -1;
  1867. ssid->vht_tx_mcs_nss_5 = -1;
  1868. ssid->vht_tx_mcs_nss_6 = -1;
  1869. ssid->vht_tx_mcs_nss_7 = -1;
  1870. ssid->vht_tx_mcs_nss_8 = -1;
  1871. #endif /* CONFIG_VHT_OVERRIDES */
  1872. ssid->proactive_key_caching = -1;
  1873. #ifdef CONFIG_IEEE80211W
  1874. ssid->ieee80211w = MGMT_FRAME_PROTECTION_DEFAULT;
  1875. #endif /* CONFIG_IEEE80211W */
  1876. }
  1877. /**
  1878. * wpa_config_set - Set a variable in network configuration
  1879. * @ssid: Pointer to network configuration data
  1880. * @var: Variable name, e.g., "ssid"
  1881. * @value: Variable value
  1882. * @line: Line number in configuration file or 0 if not used
  1883. * Returns: 0 on success, -1 on failure
  1884. *
  1885. * This function can be used to set network configuration variables based on
  1886. * both the configuration file and management interface input. The value
  1887. * parameter must be in the same format as the text-based configuration file is
  1888. * using. For example, strings are using double quotation marks.
  1889. */
  1890. int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
  1891. int line)
  1892. {
  1893. size_t i;
  1894. int ret = 0;
  1895. if (ssid == NULL || var == NULL || value == NULL)
  1896. return -1;
  1897. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1898. const struct parse_data *field = &ssid_fields[i];
  1899. if (os_strcmp(var, field->name) != 0)
  1900. continue;
  1901. if (field->parser(field, ssid, line, value)) {
  1902. if (line) {
  1903. wpa_printf(MSG_ERROR, "Line %d: failed to "
  1904. "parse %s '%s'.", line, var, value);
  1905. }
  1906. ret = -1;
  1907. }
  1908. break;
  1909. }
  1910. if (i == NUM_SSID_FIELDS) {
  1911. if (line) {
  1912. wpa_printf(MSG_ERROR, "Line %d: unknown network field "
  1913. "'%s'.", line, var);
  1914. }
  1915. ret = -1;
  1916. }
  1917. return ret;
  1918. }
  1919. int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
  1920. const char *value)
  1921. {
  1922. size_t len;
  1923. char *buf;
  1924. int ret;
  1925. len = os_strlen(value);
  1926. buf = os_malloc(len + 3);
  1927. if (buf == NULL)
  1928. return -1;
  1929. buf[0] = '"';
  1930. os_memcpy(buf + 1, value, len);
  1931. buf[len + 1] = '"';
  1932. buf[len + 2] = '\0';
  1933. ret = wpa_config_set(ssid, var, buf, 0);
  1934. os_free(buf);
  1935. return ret;
  1936. }
  1937. /**
  1938. * wpa_config_get_all - Get all options from network configuration
  1939. * @ssid: Pointer to network configuration data
  1940. * @get_keys: Determines if keys/passwords will be included in returned list
  1941. * (if they may be exported)
  1942. * Returns: %NULL terminated list of all set keys and their values in the form
  1943. * of [key1, val1, key2, val2, ... , NULL]
  1944. *
  1945. * This function can be used to get list of all configured network properties.
  1946. * The caller is responsible for freeing the returned list and all its
  1947. * elements.
  1948. */
  1949. char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
  1950. {
  1951. const struct parse_data *field;
  1952. char *key, *value;
  1953. size_t i;
  1954. char **props;
  1955. int fields_num;
  1956. get_keys = get_keys && ssid->export_keys;
  1957. props = os_calloc(2 * NUM_SSID_FIELDS + 1, sizeof(char *));
  1958. if (!props)
  1959. return NULL;
  1960. fields_num = 0;
  1961. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1962. field = &ssid_fields[i];
  1963. if (field->key_data && !get_keys)
  1964. continue;
  1965. value = field->writer(field, ssid);
  1966. if (value == NULL)
  1967. continue;
  1968. if (os_strlen(value) == 0) {
  1969. os_free(value);
  1970. continue;
  1971. }
  1972. key = os_strdup(field->name);
  1973. if (key == NULL) {
  1974. os_free(value);
  1975. goto err;
  1976. }
  1977. props[fields_num * 2] = key;
  1978. props[fields_num * 2 + 1] = value;
  1979. fields_num++;
  1980. }
  1981. return props;
  1982. err:
  1983. value = *props;
  1984. while (value)
  1985. os_free(value++);
  1986. os_free(props);
  1987. return NULL;
  1988. }
  1989. #ifndef NO_CONFIG_WRITE
  1990. /**
  1991. * wpa_config_get - Get a variable in network configuration
  1992. * @ssid: Pointer to network configuration data
  1993. * @var: Variable name, e.g., "ssid"
  1994. * Returns: Value of the variable or %NULL on failure
  1995. *
  1996. * This function can be used to get network configuration variables. The
  1997. * returned value is a copy of the configuration variable in text format, i.e,.
  1998. * the same format that the text-based configuration file and wpa_config_set()
  1999. * are using for the value. The caller is responsible for freeing the returned
  2000. * value.
  2001. */
  2002. char * wpa_config_get(struct wpa_ssid *ssid, const char *var)
  2003. {
  2004. size_t i;
  2005. if (ssid == NULL || var == NULL)
  2006. return NULL;
  2007. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  2008. const struct parse_data *field = &ssid_fields[i];
  2009. if (os_strcmp(var, field->name) == 0)
  2010. return field->writer(field, ssid);
  2011. }
  2012. return NULL;
  2013. }
  2014. /**
  2015. * wpa_config_get_no_key - Get a variable in network configuration (no keys)
  2016. * @ssid: Pointer to network configuration data
  2017. * @var: Variable name, e.g., "ssid"
  2018. * Returns: Value of the variable or %NULL on failure
  2019. *
  2020. * This function can be used to get network configuration variable like
  2021. * wpa_config_get(). The only difference is that this functions does not expose
  2022. * key/password material from the configuration. In case a key/password field
  2023. * is requested, the returned value is an empty string or %NULL if the variable
  2024. * is not set or "*" if the variable is set (regardless of its value). The
  2025. * returned value is a copy of the configuration variable in text format, i.e,.
  2026. * the same format that the text-based configuration file and wpa_config_set()
  2027. * are using for the value. The caller is responsible for freeing the returned
  2028. * value.
  2029. */
  2030. char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var)
  2031. {
  2032. size_t i;
  2033. if (ssid == NULL || var == NULL)
  2034. return NULL;
  2035. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  2036. const struct parse_data *field = &ssid_fields[i];
  2037. if (os_strcmp(var, field->name) == 0) {
  2038. char *res = field->writer(field, ssid);
  2039. if (field->key_data) {
  2040. if (res && res[0]) {
  2041. wpa_printf(MSG_DEBUG, "Do not allow "
  2042. "key_data field to be "
  2043. "exposed");
  2044. os_free(res);
  2045. return os_strdup("*");
  2046. }
  2047. os_free(res);
  2048. return NULL;
  2049. }
  2050. return res;
  2051. }
  2052. }
  2053. return NULL;
  2054. }
  2055. #endif /* NO_CONFIG_WRITE */
  2056. /**
  2057. * wpa_config_update_psk - Update WPA PSK based on passphrase and SSID
  2058. * @ssid: Pointer to network configuration data
  2059. *
  2060. * This function must be called to update WPA PSK when either SSID or the
  2061. * passphrase has changed for the network configuration.
  2062. */
  2063. void wpa_config_update_psk(struct wpa_ssid *ssid)
  2064. {
  2065. #ifndef CONFIG_NO_PBKDF2
  2066. pbkdf2_sha1(ssid->passphrase, ssid->ssid, ssid->ssid_len, 4096,
  2067. ssid->psk, PMK_LEN);
  2068. wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
  2069. ssid->psk, PMK_LEN);
  2070. ssid->psk_set = 1;
  2071. #endif /* CONFIG_NO_PBKDF2 */
  2072. }
  2073. static int wpa_config_set_cred_req_conn_capab(struct wpa_cred *cred,
  2074. const char *value)
  2075. {
  2076. u8 *proto;
  2077. int **port;
  2078. int *ports, *nports;
  2079. const char *pos;
  2080. unsigned int num_ports;
  2081. proto = os_realloc_array(cred->req_conn_capab_proto,
  2082. cred->num_req_conn_capab + 1, sizeof(u8));
  2083. if (proto == NULL)
  2084. return -1;
  2085. cred->req_conn_capab_proto = proto;
  2086. port = os_realloc_array(cred->req_conn_capab_port,
  2087. cred->num_req_conn_capab + 1, sizeof(int *));
  2088. if (port == NULL)
  2089. return -1;
  2090. cred->req_conn_capab_port = port;
  2091. proto[cred->num_req_conn_capab] = atoi(value);
  2092. pos = os_strchr(value, ':');
  2093. if (pos == NULL) {
  2094. port[cred->num_req_conn_capab] = NULL;
  2095. cred->num_req_conn_capab++;
  2096. return 0;
  2097. }
  2098. pos++;
  2099. ports = NULL;
  2100. num_ports = 0;
  2101. while (*pos) {
  2102. nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
  2103. if (nports == NULL) {
  2104. os_free(ports);
  2105. return -1;
  2106. }
  2107. ports = nports;
  2108. ports[num_ports++] = atoi(pos);
  2109. pos = os_strchr(pos, ',');
  2110. if (pos == NULL)
  2111. break;
  2112. pos++;
  2113. }
  2114. nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
  2115. if (nports == NULL) {
  2116. os_free(ports);
  2117. return -1;
  2118. }
  2119. ports = nports;
  2120. ports[num_ports] = -1;
  2121. port[cred->num_req_conn_capab] = ports;
  2122. cred->num_req_conn_capab++;
  2123. return 0;
  2124. }
  2125. int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
  2126. const char *value, int line)
  2127. {
  2128. char *val;
  2129. size_t len;
  2130. if (os_strcmp(var, "temporary") == 0) {
  2131. cred->temporary = atoi(value);
  2132. return 0;
  2133. }
  2134. if (os_strcmp(var, "priority") == 0) {
  2135. cred->priority = atoi(value);
  2136. return 0;
  2137. }
  2138. if (os_strcmp(var, "sp_priority") == 0) {
  2139. int prio = atoi(value);
  2140. if (prio < 0 || prio > 255)
  2141. return -1;
  2142. cred->sp_priority = prio;
  2143. return 0;
  2144. }
  2145. if (os_strcmp(var, "pcsc") == 0) {
  2146. cred->pcsc = atoi(value);
  2147. return 0;
  2148. }
  2149. if (os_strcmp(var, "eap") == 0) {
  2150. struct eap_method_type method;
  2151. method.method = eap_peer_get_type(value, &method.vendor);
  2152. if (method.vendor == EAP_VENDOR_IETF &&
  2153. method.method == EAP_TYPE_NONE) {
  2154. wpa_printf(MSG_ERROR, "Line %d: unknown EAP type '%s' "
  2155. "for a credential", line, value);
  2156. return -1;
  2157. }
  2158. os_free(cred->eap_method);
  2159. cred->eap_method = os_malloc(sizeof(*cred->eap_method));
  2160. if (cred->eap_method == NULL)
  2161. return -1;
  2162. os_memcpy(cred->eap_method, &method, sizeof(method));
  2163. return 0;
  2164. }
  2165. if (os_strcmp(var, "password") == 0 &&
  2166. os_strncmp(value, "ext:", 4) == 0) {
  2167. os_free(cred->password);
  2168. cred->password = os_strdup(value);
  2169. cred->ext_password = 1;
  2170. return 0;
  2171. }
  2172. if (os_strcmp(var, "update_identifier") == 0) {
  2173. cred->update_identifier = atoi(value);
  2174. return 0;
  2175. }
  2176. if (os_strcmp(var, "min_dl_bandwidth_home") == 0) {
  2177. cred->min_dl_bandwidth_home = atoi(value);
  2178. return 0;
  2179. }
  2180. if (os_strcmp(var, "min_ul_bandwidth_home") == 0) {
  2181. cred->min_ul_bandwidth_home = atoi(value);
  2182. return 0;
  2183. }
  2184. if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0) {
  2185. cred->min_dl_bandwidth_roaming = atoi(value);
  2186. return 0;
  2187. }
  2188. if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0) {
  2189. cred->min_ul_bandwidth_roaming = atoi(value);
  2190. return 0;
  2191. }
  2192. if (os_strcmp(var, "max_bss_load") == 0) {
  2193. cred->max_bss_load = atoi(value);
  2194. return 0;
  2195. }
  2196. if (os_strcmp(var, "req_conn_capab") == 0)
  2197. return wpa_config_set_cred_req_conn_capab(cred, value);
  2198. if (os_strcmp(var, "ocsp") == 0) {
  2199. cred->ocsp = atoi(value);
  2200. return 0;
  2201. }
  2202. val = wpa_config_parse_string(value, &len);
  2203. if (val == NULL) {
  2204. wpa_printf(MSG_ERROR, "Line %d: invalid field '%s' string "
  2205. "value '%s'.", line, var, value);
  2206. return -1;
  2207. }
  2208. if (os_strcmp(var, "realm") == 0) {
  2209. os_free(cred->realm);
  2210. cred->realm = val;
  2211. return 0;
  2212. }
  2213. if (os_strcmp(var, "username") == 0) {
  2214. os_free(cred->username);
  2215. cred->username = val;
  2216. return 0;
  2217. }
  2218. if (os_strcmp(var, "password") == 0) {
  2219. os_free(cred->password);
  2220. cred->password = val;
  2221. cred->ext_password = 0;
  2222. return 0;
  2223. }
  2224. if (os_strcmp(var, "ca_cert") == 0) {
  2225. os_free(cred->ca_cert);
  2226. cred->ca_cert = val;
  2227. return 0;
  2228. }
  2229. if (os_strcmp(var, "client_cert") == 0) {
  2230. os_free(cred->client_cert);
  2231. cred->client_cert = val;
  2232. return 0;
  2233. }
  2234. if (os_strcmp(var, "private_key") == 0) {
  2235. os_free(cred->private_key);
  2236. cred->private_key = val;
  2237. return 0;
  2238. }
  2239. if (os_strcmp(var, "private_key_passwd") == 0) {
  2240. os_free(cred->private_key_passwd);
  2241. cred->private_key_passwd = val;
  2242. return 0;
  2243. }
  2244. if (os_strcmp(var, "imsi") == 0) {
  2245. os_free(cred->imsi);
  2246. cred->imsi = val;
  2247. return 0;
  2248. }
  2249. if (os_strcmp(var, "milenage") == 0) {
  2250. os_free(cred->milenage);
  2251. cred->milenage = val;
  2252. return 0;
  2253. }
  2254. if (os_strcmp(var, "domain_suffix_match") == 0) {
  2255. os_free(cred->domain_suffix_match);
  2256. cred->domain_suffix_match = val;
  2257. return 0;
  2258. }
  2259. if (os_strcmp(var, "domain") == 0) {
  2260. char **new_domain;
  2261. new_domain = os_realloc_array(cred->domain,
  2262. cred->num_domain + 1,
  2263. sizeof(char *));
  2264. if (new_domain == NULL) {
  2265. os_free(val);
  2266. return -1;
  2267. }
  2268. new_domain[cred->num_domain++] = val;
  2269. cred->domain = new_domain;
  2270. return 0;
  2271. }
  2272. if (os_strcmp(var, "phase1") == 0) {
  2273. os_free(cred->phase1);
  2274. cred->phase1 = val;
  2275. return 0;
  2276. }
  2277. if (os_strcmp(var, "phase2") == 0) {
  2278. os_free(cred->phase2);
  2279. cred->phase2 = val;
  2280. return 0;
  2281. }
  2282. if (os_strcmp(var, "roaming_consortium") == 0) {
  2283. if (len < 3 || len > sizeof(cred->roaming_consortium)) {
  2284. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2285. "roaming_consortium length %d (3..15 "
  2286. "expected)", line, (int) len);
  2287. os_free(val);
  2288. return -1;
  2289. }
  2290. os_memcpy(cred->roaming_consortium, val, len);
  2291. cred->roaming_consortium_len = len;
  2292. os_free(val);
  2293. return 0;
  2294. }
  2295. if (os_strcmp(var, "required_roaming_consortium") == 0) {
  2296. if (len < 3 || len > sizeof(cred->required_roaming_consortium))
  2297. {
  2298. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2299. "required_roaming_consortium length %d "
  2300. "(3..15 expected)", line, (int) len);
  2301. os_free(val);
  2302. return -1;
  2303. }
  2304. os_memcpy(cred->required_roaming_consortium, val, len);
  2305. cred->required_roaming_consortium_len = len;
  2306. os_free(val);
  2307. return 0;
  2308. }
  2309. if (os_strcmp(var, "excluded_ssid") == 0) {
  2310. struct excluded_ssid *e;
  2311. if (len > MAX_SSID_LEN) {
  2312. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2313. "excluded_ssid length %d", line, (int) len);
  2314. os_free(val);
  2315. return -1;
  2316. }
  2317. e = os_realloc_array(cred->excluded_ssid,
  2318. cred->num_excluded_ssid + 1,
  2319. sizeof(struct excluded_ssid));
  2320. if (e == NULL) {
  2321. os_free(val);
  2322. return -1;
  2323. }
  2324. cred->excluded_ssid = e;
  2325. e = &cred->excluded_ssid[cred->num_excluded_ssid++];
  2326. os_memcpy(e->ssid, val, len);
  2327. e->ssid_len = len;
  2328. os_free(val);
  2329. return 0;
  2330. }
  2331. if (os_strcmp(var, "roaming_partner") == 0) {
  2332. struct roaming_partner *p;
  2333. char *pos;
  2334. p = os_realloc_array(cred->roaming_partner,
  2335. cred->num_roaming_partner + 1,
  2336. sizeof(struct roaming_partner));
  2337. if (p == NULL) {
  2338. os_free(val);
  2339. return -1;
  2340. }
  2341. cred->roaming_partner = p;
  2342. p = &cred->roaming_partner[cred->num_roaming_partner];
  2343. pos = os_strchr(val, ',');
  2344. if (pos == NULL) {
  2345. os_free(val);
  2346. return -1;
  2347. }
  2348. *pos++ = '\0';
  2349. if (pos - val - 1 >= (int) sizeof(p->fqdn)) {
  2350. os_free(val);
  2351. return -1;
  2352. }
  2353. os_memcpy(p->fqdn, val, pos - val);
  2354. p->exact_match = atoi(pos);
  2355. pos = os_strchr(pos, ',');
  2356. if (pos == NULL) {
  2357. os_free(val);
  2358. return -1;
  2359. }
  2360. *pos++ = '\0';
  2361. p->priority = atoi(pos);
  2362. pos = os_strchr(pos, ',');
  2363. if (pos == NULL) {
  2364. os_free(val);
  2365. return -1;
  2366. }
  2367. *pos++ = '\0';
  2368. if (os_strlen(pos) >= sizeof(p->country)) {
  2369. os_free(val);
  2370. return -1;
  2371. }
  2372. os_memcpy(p->country, pos, os_strlen(pos) + 1);
  2373. cred->num_roaming_partner++;
  2374. os_free(val);
  2375. return 0;
  2376. }
  2377. if (os_strcmp(var, "provisioning_sp") == 0) {
  2378. os_free(cred->provisioning_sp);
  2379. cred->provisioning_sp = val;
  2380. return 0;
  2381. }
  2382. if (line) {
  2383. wpa_printf(MSG_ERROR, "Line %d: unknown cred field '%s'.",
  2384. line, var);
  2385. }
  2386. os_free(val);
  2387. return -1;
  2388. }
  2389. struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id)
  2390. {
  2391. struct wpa_cred *cred;
  2392. cred = config->cred;
  2393. while (cred) {
  2394. if (id == cred->id)
  2395. break;
  2396. cred = cred->next;
  2397. }
  2398. return cred;
  2399. }
  2400. struct wpa_cred * wpa_config_add_cred(struct wpa_config *config)
  2401. {
  2402. int id;
  2403. struct wpa_cred *cred, *last = NULL;
  2404. id = -1;
  2405. cred = config->cred;
  2406. while (cred) {
  2407. if (cred->id > id)
  2408. id = cred->id;
  2409. last = cred;
  2410. cred = cred->next;
  2411. }
  2412. id++;
  2413. cred = os_zalloc(sizeof(*cred));
  2414. if (cred == NULL)
  2415. return NULL;
  2416. cred->id = id;
  2417. if (last)
  2418. last->next = cred;
  2419. else
  2420. config->cred = cred;
  2421. return cred;
  2422. }
  2423. int wpa_config_remove_cred(struct wpa_config *config, int id)
  2424. {
  2425. struct wpa_cred *cred, *prev = NULL;
  2426. cred = config->cred;
  2427. while (cred) {
  2428. if (id == cred->id)
  2429. break;
  2430. prev = cred;
  2431. cred = cred->next;
  2432. }
  2433. if (cred == NULL)
  2434. return -1;
  2435. if (prev)
  2436. prev->next = cred->next;
  2437. else
  2438. config->cred = cred->next;
  2439. wpa_config_free_cred(cred);
  2440. return 0;
  2441. }
  2442. #ifndef CONFIG_NO_CONFIG_BLOBS
  2443. /**
  2444. * wpa_config_get_blob - Get a named configuration blob
  2445. * @config: Configuration data from wpa_config_read()
  2446. * @name: Name of the blob
  2447. * Returns: Pointer to blob data or %NULL if not found
  2448. */
  2449. const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
  2450. const char *name)
  2451. {
  2452. struct wpa_config_blob *blob = config->blobs;
  2453. while (blob) {
  2454. if (os_strcmp(blob->name, name) == 0)
  2455. return blob;
  2456. blob = blob->next;
  2457. }
  2458. return NULL;
  2459. }
  2460. /**
  2461. * wpa_config_set_blob - Set or add a named configuration blob
  2462. * @config: Configuration data from wpa_config_read()
  2463. * @blob: New value for the blob
  2464. *
  2465. * Adds a new configuration blob or replaces the current value of an existing
  2466. * blob.
  2467. */
  2468. void wpa_config_set_blob(struct wpa_config *config,
  2469. struct wpa_config_blob *blob)
  2470. {
  2471. wpa_config_remove_blob(config, blob->name);
  2472. blob->next = config->blobs;
  2473. config->blobs = blob;
  2474. }
  2475. /**
  2476. * wpa_config_free_blob - Free blob data
  2477. * @blob: Pointer to blob to be freed
  2478. */
  2479. void wpa_config_free_blob(struct wpa_config_blob *blob)
  2480. {
  2481. if (blob) {
  2482. os_free(blob->name);
  2483. os_free(blob->data);
  2484. os_free(blob);
  2485. }
  2486. }
  2487. /**
  2488. * wpa_config_remove_blob - Remove a named configuration blob
  2489. * @config: Configuration data from wpa_config_read()
  2490. * @name: Name of the blob to remove
  2491. * Returns: 0 if blob was removed or -1 if blob was not found
  2492. */
  2493. int wpa_config_remove_blob(struct wpa_config *config, const char *name)
  2494. {
  2495. struct wpa_config_blob *pos = config->blobs, *prev = NULL;
  2496. while (pos) {
  2497. if (os_strcmp(pos->name, name) == 0) {
  2498. if (prev)
  2499. prev->next = pos->next;
  2500. else
  2501. config->blobs = pos->next;
  2502. wpa_config_free_blob(pos);
  2503. return 0;
  2504. }
  2505. prev = pos;
  2506. pos = pos->next;
  2507. }
  2508. return -1;
  2509. }
  2510. #endif /* CONFIG_NO_CONFIG_BLOBS */
  2511. /**
  2512. * wpa_config_alloc_empty - Allocate an empty configuration
  2513. * @ctrl_interface: Control interface parameters, e.g., path to UNIX domain
  2514. * socket
  2515. * @driver_param: Driver parameters
  2516. * Returns: Pointer to allocated configuration data or %NULL on failure
  2517. */
  2518. struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
  2519. const char *driver_param)
  2520. {
  2521. struct wpa_config *config;
  2522. const int aCWmin = 4, aCWmax = 10;
  2523. const struct hostapd_wmm_ac_params ac_bk =
  2524. { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
  2525. const struct hostapd_wmm_ac_params ac_be =
  2526. { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
  2527. const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
  2528. { aCWmin - 1, aCWmin, 2, 3000 / 32, 0 };
  2529. const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
  2530. { aCWmin - 2, aCWmin - 1, 2, 1500 / 32, 0 };
  2531. config = os_zalloc(sizeof(*config));
  2532. if (config == NULL)
  2533. return NULL;
  2534. config->eapol_version = DEFAULT_EAPOL_VERSION;
  2535. config->ap_scan = DEFAULT_AP_SCAN;
  2536. config->fast_reauth = DEFAULT_FAST_REAUTH;
  2537. config->p2p_go_intent = DEFAULT_P2P_GO_INTENT;
  2538. config->p2p_intra_bss = DEFAULT_P2P_INTRA_BSS;
  2539. config->p2p_go_max_inactivity = DEFAULT_P2P_GO_MAX_INACTIVITY;
  2540. config->bss_max_count = DEFAULT_BSS_MAX_COUNT;
  2541. config->bss_expiration_age = DEFAULT_BSS_EXPIRATION_AGE;
  2542. config->bss_expiration_scan_count = DEFAULT_BSS_EXPIRATION_SCAN_COUNT;
  2543. config->max_num_sta = DEFAULT_MAX_NUM_STA;
  2544. config->access_network_type = DEFAULT_ACCESS_NETWORK_TYPE;
  2545. config->scan_cur_freq = DEFAULT_SCAN_CUR_FREQ;
  2546. config->wmm_ac_params[0] = ac_be;
  2547. config->wmm_ac_params[1] = ac_bk;
  2548. config->wmm_ac_params[2] = ac_vi;
  2549. config->wmm_ac_params[3] = ac_vo;
  2550. if (ctrl_interface)
  2551. config->ctrl_interface = os_strdup(ctrl_interface);
  2552. if (driver_param)
  2553. config->driver_param = os_strdup(driver_param);
  2554. return config;
  2555. }
  2556. #ifndef CONFIG_NO_STDOUT_DEBUG
  2557. /**
  2558. * wpa_config_debug_dump_networks - Debug dump of configured networks
  2559. * @config: Configuration data from wpa_config_read()
  2560. */
  2561. void wpa_config_debug_dump_networks(struct wpa_config *config)
  2562. {
  2563. int prio;
  2564. struct wpa_ssid *ssid;
  2565. for (prio = 0; prio < config->num_prio; prio++) {
  2566. ssid = config->pssid[prio];
  2567. wpa_printf(MSG_DEBUG, "Priority group %d",
  2568. ssid->priority);
  2569. while (ssid) {
  2570. wpa_printf(MSG_DEBUG, " id=%d ssid='%s'",
  2571. ssid->id,
  2572. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  2573. ssid = ssid->pnext;
  2574. }
  2575. }
  2576. }
  2577. #endif /* CONFIG_NO_STDOUT_DEBUG */
  2578. struct global_parse_data {
  2579. char *name;
  2580. int (*parser)(const struct global_parse_data *data,
  2581. struct wpa_config *config, int line, const char *value);
  2582. void *param1, *param2, *param3;
  2583. unsigned int changed_flag;
  2584. };
  2585. static int wpa_global_config_parse_int(const struct global_parse_data *data,
  2586. struct wpa_config *config, int line,
  2587. const char *pos)
  2588. {
  2589. int val, *dst;
  2590. char *end;
  2591. dst = (int *) (((u8 *) config) + (long) data->param1);
  2592. val = strtol(pos, &end, 0);
  2593. if (*end) {
  2594. wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
  2595. line, pos);
  2596. return -1;
  2597. }
  2598. *dst = val;
  2599. wpa_printf(MSG_DEBUG, "%s=%d", data->name, *dst);
  2600. if (data->param2 && *dst < (long) data->param2) {
  2601. wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
  2602. "min_value=%ld)", line, data->name, *dst,
  2603. (long) data->param2);
  2604. *dst = (long) data->param2;
  2605. return -1;
  2606. }
  2607. if (data->param3 && *dst > (long) data->param3) {
  2608. wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
  2609. "max_value=%ld)", line, data->name, *dst,
  2610. (long) data->param3);
  2611. *dst = (long) data->param3;
  2612. return -1;
  2613. }
  2614. return 0;
  2615. }
  2616. static int wpa_global_config_parse_str(const struct global_parse_data *data,
  2617. struct wpa_config *config, int line,
  2618. const char *pos)
  2619. {
  2620. size_t len;
  2621. char **dst, *tmp;
  2622. len = os_strlen(pos);
  2623. if (data->param2 && len < (size_t) data->param2) {
  2624. wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
  2625. "min_len=%ld)", line, data->name,
  2626. (unsigned long) len, (long) data->param2);
  2627. return -1;
  2628. }
  2629. if (data->param3 && len > (size_t) data->param3) {
  2630. wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
  2631. "max_len=%ld)", line, data->name,
  2632. (unsigned long) len, (long) data->param3);
  2633. return -1;
  2634. }
  2635. tmp = os_strdup(pos);
  2636. if (tmp == NULL)
  2637. return -1;
  2638. dst = (char **) (((u8 *) config) + (long) data->param1);
  2639. os_free(*dst);
  2640. *dst = tmp;
  2641. wpa_printf(MSG_DEBUG, "%s='%s'", data->name, *dst);
  2642. return 0;
  2643. }
  2644. static int wpa_config_process_bgscan(const struct global_parse_data *data,
  2645. struct wpa_config *config, int line,
  2646. const char *pos)
  2647. {
  2648. size_t len;
  2649. char *tmp;
  2650. int res;
  2651. tmp = wpa_config_parse_string(pos, &len);
  2652. if (tmp == NULL) {
  2653. wpa_printf(MSG_ERROR, "Line %d: failed to parse %s",
  2654. line, data->name);
  2655. return -1;
  2656. }
  2657. res = wpa_global_config_parse_str(data, config, line, tmp);
  2658. os_free(tmp);
  2659. return res;
  2660. }
  2661. static int wpa_global_config_parse_bin(const struct global_parse_data *data,
  2662. struct wpa_config *config, int line,
  2663. const char *pos)
  2664. {
  2665. size_t len;
  2666. struct wpabuf **dst, *tmp;
  2667. len = os_strlen(pos);
  2668. if (len & 0x01)
  2669. return -1;
  2670. tmp = wpabuf_alloc(len / 2);
  2671. if (tmp == NULL)
  2672. return -1;
  2673. if (hexstr2bin(pos, wpabuf_put(tmp, len / 2), len / 2)) {
  2674. wpabuf_free(tmp);
  2675. return -1;
  2676. }
  2677. dst = (struct wpabuf **) (((u8 *) config) + (long) data->param1);
  2678. wpabuf_free(*dst);
  2679. *dst = tmp;
  2680. wpa_printf(MSG_DEBUG, "%s", data->name);
  2681. return 0;
  2682. }
  2683. static int wpa_config_process_freq_list(const struct global_parse_data *data,
  2684. struct wpa_config *config, int line,
  2685. const char *value)
  2686. {
  2687. int *freqs;
  2688. freqs = wpa_config_parse_int_array(value);
  2689. if (freqs == NULL)
  2690. return -1;
  2691. if (freqs[0] == 0) {
  2692. os_free(freqs);
  2693. freqs = NULL;
  2694. }
  2695. os_free(config->freq_list);
  2696. config->freq_list = freqs;
  2697. return 0;
  2698. }
  2699. #ifdef CONFIG_P2P
  2700. static int wpa_global_config_parse_ipv4(const struct global_parse_data *data,
  2701. struct wpa_config *config, int line,
  2702. const char *pos)
  2703. {
  2704. u32 *dst;
  2705. struct hostapd_ip_addr addr;
  2706. if (hostapd_parse_ip_addr(pos, &addr) < 0)
  2707. return -1;
  2708. if (addr.af != AF_INET)
  2709. return -1;
  2710. dst = (u32 *) (((u8 *) config) + (long) data->param1);
  2711. os_memcpy(dst, &addr.u.v4.s_addr, 4);
  2712. wpa_printf(MSG_DEBUG, "%s = 0x%x", data->name,
  2713. WPA_GET_BE32((u8 *) dst));
  2714. return 0;
  2715. }
  2716. #endif /* CONFIG_P2P */
  2717. static int wpa_config_process_country(const struct global_parse_data *data,
  2718. struct wpa_config *config, int line,
  2719. const char *pos)
  2720. {
  2721. if (!pos[0] || !pos[1]) {
  2722. wpa_printf(MSG_DEBUG, "Invalid country set");
  2723. return -1;
  2724. }
  2725. config->country[0] = pos[0];
  2726. config->country[1] = pos[1];
  2727. wpa_printf(MSG_DEBUG, "country='%c%c'",
  2728. config->country[0], config->country[1]);
  2729. return 0;
  2730. }
  2731. static int wpa_config_process_load_dynamic_eap(
  2732. const struct global_parse_data *data, struct wpa_config *config,
  2733. int line, const char *so)
  2734. {
  2735. int ret;
  2736. wpa_printf(MSG_DEBUG, "load_dynamic_eap=%s", so);
  2737. ret = eap_peer_method_load(so);
  2738. if (ret == -2) {
  2739. wpa_printf(MSG_DEBUG, "This EAP type was already loaded - not "
  2740. "reloading.");
  2741. } else if (ret) {
  2742. wpa_printf(MSG_ERROR, "Line %d: Failed to load dynamic EAP "
  2743. "method '%s'.", line, so);
  2744. return -1;
  2745. }
  2746. return 0;
  2747. }
  2748. #ifdef CONFIG_WPS
  2749. static int wpa_config_process_uuid(const struct global_parse_data *data,
  2750. struct wpa_config *config, int line,
  2751. const char *pos)
  2752. {
  2753. char buf[40];
  2754. if (uuid_str2bin(pos, config->uuid)) {
  2755. wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
  2756. return -1;
  2757. }
  2758. uuid_bin2str(config->uuid, buf, sizeof(buf));
  2759. wpa_printf(MSG_DEBUG, "uuid=%s", buf);
  2760. return 0;
  2761. }
  2762. static int wpa_config_process_device_type(
  2763. const struct global_parse_data *data,
  2764. struct wpa_config *config, int line, const char *pos)
  2765. {
  2766. return wps_dev_type_str2bin(pos, config->device_type);
  2767. }
  2768. static int wpa_config_process_os_version(const struct global_parse_data *data,
  2769. struct wpa_config *config, int line,
  2770. const char *pos)
  2771. {
  2772. if (hexstr2bin(pos, config->os_version, 4)) {
  2773. wpa_printf(MSG_ERROR, "Line %d: invalid os_version", line);
  2774. return -1;
  2775. }
  2776. wpa_printf(MSG_DEBUG, "os_version=%08x",
  2777. WPA_GET_BE32(config->os_version));
  2778. return 0;
  2779. }
  2780. static int wpa_config_process_wps_vendor_ext_m1(
  2781. const struct global_parse_data *data,
  2782. struct wpa_config *config, int line, const char *pos)
  2783. {
  2784. struct wpabuf *tmp;
  2785. int len = os_strlen(pos) / 2;
  2786. u8 *p;
  2787. if (!len) {
  2788. wpa_printf(MSG_ERROR, "Line %d: "
  2789. "invalid wps_vendor_ext_m1", line);
  2790. return -1;
  2791. }
  2792. tmp = wpabuf_alloc(len);
  2793. if (tmp) {
  2794. p = wpabuf_put(tmp, len);
  2795. if (hexstr2bin(pos, p, len)) {
  2796. wpa_printf(MSG_ERROR, "Line %d: "
  2797. "invalid wps_vendor_ext_m1", line);
  2798. wpabuf_free(tmp);
  2799. return -1;
  2800. }
  2801. wpabuf_free(config->wps_vendor_ext_m1);
  2802. config->wps_vendor_ext_m1 = tmp;
  2803. } else {
  2804. wpa_printf(MSG_ERROR, "Can not allocate "
  2805. "memory for wps_vendor_ext_m1");
  2806. return -1;
  2807. }
  2808. return 0;
  2809. }
  2810. #endif /* CONFIG_WPS */
  2811. #ifdef CONFIG_P2P
  2812. static int wpa_config_process_sec_device_type(
  2813. const struct global_parse_data *data,
  2814. struct wpa_config *config, int line, const char *pos)
  2815. {
  2816. int idx;
  2817. if (config->num_sec_device_types >= MAX_SEC_DEVICE_TYPES) {
  2818. wpa_printf(MSG_ERROR, "Line %d: too many sec_device_type "
  2819. "items", line);
  2820. return -1;
  2821. }
  2822. idx = config->num_sec_device_types;
  2823. if (wps_dev_type_str2bin(pos, config->sec_device_type[idx]))
  2824. return -1;
  2825. config->num_sec_device_types++;
  2826. return 0;
  2827. }
  2828. static int wpa_config_process_p2p_pref_chan(
  2829. const struct global_parse_data *data,
  2830. struct wpa_config *config, int line, const char *pos)
  2831. {
  2832. struct p2p_channel *pref = NULL, *n;
  2833. unsigned int num = 0;
  2834. const char *pos2;
  2835. u8 op_class, chan;
  2836. /* format: class:chan,class:chan,... */
  2837. while (*pos) {
  2838. op_class = atoi(pos);
  2839. pos2 = os_strchr(pos, ':');
  2840. if (pos2 == NULL)
  2841. goto fail;
  2842. pos2++;
  2843. chan = atoi(pos2);
  2844. n = os_realloc_array(pref, num + 1,
  2845. sizeof(struct p2p_channel));
  2846. if (n == NULL)
  2847. goto fail;
  2848. pref = n;
  2849. pref[num].op_class = op_class;
  2850. pref[num].chan = chan;
  2851. num++;
  2852. pos = os_strchr(pos2, ',');
  2853. if (pos == NULL)
  2854. break;
  2855. pos++;
  2856. }
  2857. os_free(config->p2p_pref_chan);
  2858. config->p2p_pref_chan = pref;
  2859. config->num_p2p_pref_chan = num;
  2860. wpa_hexdump(MSG_DEBUG, "P2P: Preferred class/channel pairs",
  2861. (u8 *) config->p2p_pref_chan,
  2862. config->num_p2p_pref_chan * sizeof(struct p2p_channel));
  2863. return 0;
  2864. fail:
  2865. os_free(pref);
  2866. wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_pref_chan list", line);
  2867. return -1;
  2868. }
  2869. static int wpa_config_process_p2p_no_go_freq(
  2870. const struct global_parse_data *data,
  2871. struct wpa_config *config, int line, const char *pos)
  2872. {
  2873. int ret;
  2874. ret = freq_range_list_parse(&config->p2p_no_go_freq, pos);
  2875. if (ret < 0) {
  2876. wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_no_go_freq", line);
  2877. return -1;
  2878. }
  2879. wpa_printf(MSG_DEBUG, "P2P: p2p_no_go_freq with %u items",
  2880. config->p2p_no_go_freq.num);
  2881. return 0;
  2882. }
  2883. #endif /* CONFIG_P2P */
  2884. static int wpa_config_process_hessid(
  2885. const struct global_parse_data *data,
  2886. struct wpa_config *config, int line, const char *pos)
  2887. {
  2888. if (hwaddr_aton2(pos, config->hessid) < 0) {
  2889. wpa_printf(MSG_ERROR, "Line %d: Invalid hessid '%s'",
  2890. line, pos);
  2891. return -1;
  2892. }
  2893. return 0;
  2894. }
  2895. static int wpa_config_process_sae_groups(
  2896. const struct global_parse_data *data,
  2897. struct wpa_config *config, int line, const char *pos)
  2898. {
  2899. int *groups = wpa_config_parse_int_array(pos);
  2900. if (groups == NULL) {
  2901. wpa_printf(MSG_ERROR, "Line %d: Invalid sae_groups '%s'",
  2902. line, pos);
  2903. return -1;
  2904. }
  2905. os_free(config->sae_groups);
  2906. config->sae_groups = groups;
  2907. return 0;
  2908. }
  2909. static int wpa_config_process_ap_vendor_elements(
  2910. const struct global_parse_data *data,
  2911. struct wpa_config *config, int line, const char *pos)
  2912. {
  2913. struct wpabuf *tmp;
  2914. int len = os_strlen(pos) / 2;
  2915. u8 *p;
  2916. if (!len) {
  2917. wpa_printf(MSG_ERROR, "Line %d: invalid ap_vendor_elements",
  2918. line);
  2919. return -1;
  2920. }
  2921. tmp = wpabuf_alloc(len);
  2922. if (tmp) {
  2923. p = wpabuf_put(tmp, len);
  2924. if (hexstr2bin(pos, p, len)) {
  2925. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2926. "ap_vendor_elements", line);
  2927. wpabuf_free(tmp);
  2928. return -1;
  2929. }
  2930. wpabuf_free(config->ap_vendor_elements);
  2931. config->ap_vendor_elements = tmp;
  2932. } else {
  2933. wpa_printf(MSG_ERROR, "Cannot allocate memory for "
  2934. "ap_vendor_elements");
  2935. return -1;
  2936. }
  2937. return 0;
  2938. }
  2939. #ifdef CONFIG_CTRL_IFACE
  2940. static int wpa_config_process_no_ctrl_interface(
  2941. const struct global_parse_data *data,
  2942. struct wpa_config *config, int line, const char *pos)
  2943. {
  2944. wpa_printf(MSG_DEBUG, "no_ctrl_interface -> ctrl_interface=NULL");
  2945. os_free(config->ctrl_interface);
  2946. config->ctrl_interface = NULL;
  2947. return 0;
  2948. }
  2949. #endif /* CONFIG_CTRL_IFACE */
  2950. #ifdef OFFSET
  2951. #undef OFFSET
  2952. #endif /* OFFSET */
  2953. /* OFFSET: Get offset of a variable within the wpa_config structure */
  2954. #define OFFSET(v) ((void *) &((struct wpa_config *) 0)->v)
  2955. #define FUNC(f) #f, wpa_config_process_ ## f, OFFSET(f), NULL, NULL
  2956. #define FUNC_NO_VAR(f) #f, wpa_config_process_ ## f, NULL, NULL, NULL
  2957. #define _INT(f) #f, wpa_global_config_parse_int, OFFSET(f)
  2958. #define INT(f) _INT(f), NULL, NULL
  2959. #define INT_RANGE(f, min, max) _INT(f), (void *) min, (void *) max
  2960. #define _STR(f) #f, wpa_global_config_parse_str, OFFSET(f)
  2961. #define STR(f) _STR(f), NULL, NULL
  2962. #define STR_RANGE(f, min, max) _STR(f), (void *) min, (void *) max
  2963. #define BIN(f) #f, wpa_global_config_parse_bin, OFFSET(f), NULL, NULL
  2964. #define IPV4(f) #f, wpa_global_config_parse_ipv4, OFFSET(f), NULL, NULL
  2965. static const struct global_parse_data global_fields[] = {
  2966. #ifdef CONFIG_CTRL_IFACE
  2967. { STR(ctrl_interface), 0 },
  2968. { FUNC_NO_VAR(no_ctrl_interface), 0 },
  2969. { STR(ctrl_interface_group), 0 } /* deprecated */,
  2970. #endif /* CONFIG_CTRL_IFACE */
  2971. { INT_RANGE(eapol_version, 1, 2), 0 },
  2972. { INT(ap_scan), 0 },
  2973. { FUNC(bgscan), 0 },
  2974. { INT(disable_scan_offload), 0 },
  2975. { INT(fast_reauth), 0 },
  2976. { STR(opensc_engine_path), 0 },
  2977. { STR(pkcs11_engine_path), 0 },
  2978. { STR(pkcs11_module_path), 0 },
  2979. { STR(pcsc_reader), 0 },
  2980. { STR(pcsc_pin), 0 },
  2981. { INT(external_sim), 0 },
  2982. { STR(driver_param), 0 },
  2983. { INT(dot11RSNAConfigPMKLifetime), 0 },
  2984. { INT(dot11RSNAConfigPMKReauthThreshold), 0 },
  2985. { INT(dot11RSNAConfigSATimeout), 0 },
  2986. #ifndef CONFIG_NO_CONFIG_WRITE
  2987. { INT(update_config), 0 },
  2988. #endif /* CONFIG_NO_CONFIG_WRITE */
  2989. { FUNC_NO_VAR(load_dynamic_eap), 0 },
  2990. #ifdef CONFIG_WPS
  2991. { FUNC(uuid), CFG_CHANGED_UUID },
  2992. { STR_RANGE(device_name, 0, 32), CFG_CHANGED_DEVICE_NAME },
  2993. { STR_RANGE(manufacturer, 0, 64), CFG_CHANGED_WPS_STRING },
  2994. { STR_RANGE(model_name, 0, 32), CFG_CHANGED_WPS_STRING },
  2995. { STR_RANGE(model_number, 0, 32), CFG_CHANGED_WPS_STRING },
  2996. { STR_RANGE(serial_number, 0, 32), CFG_CHANGED_WPS_STRING },
  2997. { FUNC(device_type), CFG_CHANGED_DEVICE_TYPE },
  2998. { FUNC(os_version), CFG_CHANGED_OS_VERSION },
  2999. { STR(config_methods), CFG_CHANGED_CONFIG_METHODS },
  3000. { INT_RANGE(wps_cred_processing, 0, 2), 0 },
  3001. { FUNC(wps_vendor_ext_m1), CFG_CHANGED_VENDOR_EXTENSION },
  3002. #endif /* CONFIG_WPS */
  3003. #ifdef CONFIG_P2P
  3004. { FUNC(sec_device_type), CFG_CHANGED_SEC_DEVICE_TYPE },
  3005. { INT(p2p_listen_reg_class), 0 },
  3006. { INT(p2p_listen_channel), 0 },
  3007. { INT(p2p_oper_reg_class), CFG_CHANGED_P2P_OPER_CHANNEL },
  3008. { INT(p2p_oper_channel), CFG_CHANGED_P2P_OPER_CHANNEL },
  3009. { INT_RANGE(p2p_go_intent, 0, 15), 0 },
  3010. { STR(p2p_ssid_postfix), CFG_CHANGED_P2P_SSID_POSTFIX },
  3011. { INT_RANGE(persistent_reconnect, 0, 1), 0 },
  3012. { INT_RANGE(p2p_intra_bss, 0, 1), CFG_CHANGED_P2P_INTRA_BSS },
  3013. { INT(p2p_group_idle), 0 },
  3014. { FUNC(p2p_pref_chan), CFG_CHANGED_P2P_PREF_CHAN },
  3015. { FUNC(p2p_no_go_freq), CFG_CHANGED_P2P_PREF_CHAN },
  3016. { INT_RANGE(p2p_add_cli_chan, 0, 1), 0 },
  3017. { INT(p2p_go_ht40), 0 },
  3018. { INT(p2p_go_vht), 0 },
  3019. { INT(p2p_disabled), 0 },
  3020. { INT(p2p_no_group_iface), 0 },
  3021. { INT_RANGE(p2p_ignore_shared_freq, 0, 1), 0 },
  3022. { IPV4(ip_addr_go), 0 },
  3023. { IPV4(ip_addr_mask), 0 },
  3024. { IPV4(ip_addr_start), 0 },
  3025. { IPV4(ip_addr_end), 0 },
  3026. #endif /* CONFIG_P2P */
  3027. { FUNC(country), CFG_CHANGED_COUNTRY },
  3028. { INT(bss_max_count), 0 },
  3029. { INT(bss_expiration_age), 0 },
  3030. { INT(bss_expiration_scan_count), 0 },
  3031. { INT_RANGE(filter_ssids, 0, 1), 0 },
  3032. { INT_RANGE(filter_rssi, -100, 0), 0 },
  3033. { INT(max_num_sta), 0 },
  3034. { INT_RANGE(disassoc_low_ack, 0, 1), 0 },
  3035. #ifdef CONFIG_HS20
  3036. { INT_RANGE(hs20, 0, 1), 0 },
  3037. #endif /* CONFIG_HS20 */
  3038. { INT_RANGE(interworking, 0, 1), 0 },
  3039. { FUNC(hessid), 0 },
  3040. { INT_RANGE(access_network_type, 0, 15), 0 },
  3041. { INT_RANGE(pbc_in_m1, 0, 1), 0 },
  3042. { STR(autoscan), 0 },
  3043. { INT_RANGE(wps_nfc_dev_pw_id, 0x10, 0xffff),
  3044. CFG_CHANGED_NFC_PASSWORD_TOKEN },
  3045. { BIN(wps_nfc_dh_pubkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
  3046. { BIN(wps_nfc_dh_privkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
  3047. { BIN(wps_nfc_dev_pw), CFG_CHANGED_NFC_PASSWORD_TOKEN },
  3048. { STR(ext_password_backend), CFG_CHANGED_EXT_PW_BACKEND },
  3049. { INT(p2p_go_max_inactivity), 0 },
  3050. { INT_RANGE(auto_interworking, 0, 1), 0 },
  3051. { INT(okc), 0 },
  3052. { INT(pmf), 0 },
  3053. { FUNC(sae_groups), 0 },
  3054. { INT(dtim_period), 0 },
  3055. { INT(beacon_int), 0 },
  3056. { FUNC(ap_vendor_elements), 0 },
  3057. { INT_RANGE(ignore_old_scan_res, 0, 1), 0 },
  3058. { FUNC(freq_list), 0 },
  3059. { INT(scan_cur_freq), 0 },
  3060. { INT(sched_scan_interval), 0 },
  3061. { INT(tdls_external_control), 0},
  3062. { STR(osu_dir), 0 },
  3063. };
  3064. #undef FUNC
  3065. #undef _INT
  3066. #undef INT
  3067. #undef INT_RANGE
  3068. #undef _STR
  3069. #undef STR
  3070. #undef STR_RANGE
  3071. #undef BIN
  3072. #undef IPV4
  3073. #define NUM_GLOBAL_FIELDS ARRAY_SIZE(global_fields)
  3074. int wpa_config_process_global(struct wpa_config *config, char *pos, int line)
  3075. {
  3076. size_t i;
  3077. int ret = 0;
  3078. for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
  3079. const struct global_parse_data *field = &global_fields[i];
  3080. size_t flen = os_strlen(field->name);
  3081. if (os_strncmp(pos, field->name, flen) != 0 ||
  3082. pos[flen] != '=')
  3083. continue;
  3084. if (field->parser(field, config, line, pos + flen + 1)) {
  3085. wpa_printf(MSG_ERROR, "Line %d: failed to "
  3086. "parse '%s'.", line, pos);
  3087. ret = -1;
  3088. }
  3089. if (field->changed_flag == CFG_CHANGED_NFC_PASSWORD_TOKEN)
  3090. config->wps_nfc_pw_from_config = 1;
  3091. config->changed_parameters |= field->changed_flag;
  3092. break;
  3093. }
  3094. if (i == NUM_GLOBAL_FIELDS) {
  3095. #ifdef CONFIG_AP
  3096. if (os_strncmp(pos, "wmm_ac_", 7) == 0) {
  3097. char *tmp = os_strchr(pos, '=');
  3098. if (tmp == NULL) {
  3099. if (line < 0)
  3100. return -1;
  3101. wpa_printf(MSG_ERROR, "Line %d: invalid line "
  3102. "'%s'", line, pos);
  3103. return -1;
  3104. }
  3105. *tmp++ = '\0';
  3106. if (hostapd_config_wmm_ac(config->wmm_ac_params, pos,
  3107. tmp)) {
  3108. wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
  3109. "AC item", line);
  3110. return -1;
  3111. }
  3112. }
  3113. #endif /* CONFIG_AP */
  3114. if (line < 0)
  3115. return -1;
  3116. wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",
  3117. line, pos);
  3118. ret = -1;
  3119. }
  3120. return ret;
  3121. }