config.c 78 KB

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