config.c 83 KB

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