config.c 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357
  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(domain_suffix_match) },
  1338. { STRe(ca_cert2) },
  1339. { STRe(ca_path2) },
  1340. { STRe(client_cert2) },
  1341. { STRe(private_key2) },
  1342. { STR_KEYe(private_key2_passwd) },
  1343. { STRe(dh_file2) },
  1344. { STRe(subject_match2) },
  1345. { STRe(altsubject_match2) },
  1346. { STRe(domain_suffix_match2) },
  1347. { STRe(phase1) },
  1348. { STRe(phase2) },
  1349. { STRe(pcsc) },
  1350. { STR_KEYe(pin) },
  1351. { STRe(engine_id) },
  1352. { STRe(key_id) },
  1353. { STRe(cert_id) },
  1354. { STRe(ca_cert_id) },
  1355. { STR_KEYe(pin2) },
  1356. { STRe(engine2_id) },
  1357. { STRe(key2_id) },
  1358. { STRe(cert2_id) },
  1359. { STRe(ca_cert2_id) },
  1360. { INTe(engine) },
  1361. { INTe(engine2) },
  1362. { INT(eapol_flags) },
  1363. #endif /* IEEE8021X_EAPOL */
  1364. { FUNC_KEY(wep_key0) },
  1365. { FUNC_KEY(wep_key1) },
  1366. { FUNC_KEY(wep_key2) },
  1367. { FUNC_KEY(wep_key3) },
  1368. { INT(wep_tx_keyidx) },
  1369. { INT(priority) },
  1370. #ifdef IEEE8021X_EAPOL
  1371. { INT(eap_workaround) },
  1372. { STRe(pac_file) },
  1373. { INTe(fragment_size) },
  1374. { INTe(ocsp) },
  1375. #endif /* IEEE8021X_EAPOL */
  1376. { INT_RANGE(mode, 0, 4) },
  1377. { INT_RANGE(proactive_key_caching, 0, 1) },
  1378. { INT_RANGE(disabled, 0, 2) },
  1379. { STR(id_str) },
  1380. #ifdef CONFIG_IEEE80211W
  1381. { INT_RANGE(ieee80211w, 0, 2) },
  1382. #endif /* CONFIG_IEEE80211W */
  1383. { INT_RANGE(peerkey, 0, 1) },
  1384. { INT_RANGE(mixed_cell, 0, 1) },
  1385. { INT_RANGE(frequency, 0, 65000) },
  1386. { INT(wpa_ptk_rekey) },
  1387. { STR(bgscan) },
  1388. { INT_RANGE(ignore_broadcast_ssid, 0, 2) },
  1389. #ifdef CONFIG_P2P
  1390. { FUNC(p2p_client_list) },
  1391. { FUNC(psk_list) },
  1392. #endif /* CONFIG_P2P */
  1393. #ifdef CONFIG_HT_OVERRIDES
  1394. { INT_RANGE(disable_ht, 0, 1) },
  1395. { INT_RANGE(disable_ht40, -1, 1) },
  1396. { INT_RANGE(disable_sgi, 0, 1) },
  1397. { INT_RANGE(disable_max_amsdu, -1, 1) },
  1398. { INT_RANGE(ampdu_factor, -1, 3) },
  1399. { INT_RANGE(ampdu_density, -1, 7) },
  1400. { STR(ht_mcs) },
  1401. #endif /* CONFIG_HT_OVERRIDES */
  1402. #ifdef CONFIG_VHT_OVERRIDES
  1403. { INT_RANGE(disable_vht, 0, 1) },
  1404. { INT(vht_capa) },
  1405. { INT(vht_capa_mask) },
  1406. { INT_RANGE(vht_rx_mcs_nss_1, -1, 3) },
  1407. { INT_RANGE(vht_rx_mcs_nss_2, -1, 3) },
  1408. { INT_RANGE(vht_rx_mcs_nss_3, -1, 3) },
  1409. { INT_RANGE(vht_rx_mcs_nss_4, -1, 3) },
  1410. { INT_RANGE(vht_rx_mcs_nss_5, -1, 3) },
  1411. { INT_RANGE(vht_rx_mcs_nss_6, -1, 3) },
  1412. { INT_RANGE(vht_rx_mcs_nss_7, -1, 3) },
  1413. { INT_RANGE(vht_rx_mcs_nss_8, -1, 3) },
  1414. { INT_RANGE(vht_tx_mcs_nss_1, -1, 3) },
  1415. { INT_RANGE(vht_tx_mcs_nss_2, -1, 3) },
  1416. { INT_RANGE(vht_tx_mcs_nss_3, -1, 3) },
  1417. { INT_RANGE(vht_tx_mcs_nss_4, -1, 3) },
  1418. { INT_RANGE(vht_tx_mcs_nss_5, -1, 3) },
  1419. { INT_RANGE(vht_tx_mcs_nss_6, -1, 3) },
  1420. { INT_RANGE(vht_tx_mcs_nss_7, -1, 3) },
  1421. { INT_RANGE(vht_tx_mcs_nss_8, -1, 3) },
  1422. #endif /* CONFIG_VHT_OVERRIDES */
  1423. { INT(ap_max_inactivity) },
  1424. { INT(dtim_period) },
  1425. { INT(beacon_int) },
  1426. };
  1427. #undef OFFSET
  1428. #undef _STR
  1429. #undef STR
  1430. #undef STR_KEY
  1431. #undef _STR_LEN
  1432. #undef STR_LEN
  1433. #undef STR_LEN_KEY
  1434. #undef _STR_RANGE
  1435. #undef STR_RANGE
  1436. #undef STR_RANGE_KEY
  1437. #undef _INT
  1438. #undef INT
  1439. #undef INT_RANGE
  1440. #undef _FUNC
  1441. #undef FUNC
  1442. #undef FUNC_KEY
  1443. #define NUM_SSID_FIELDS ARRAY_SIZE(ssid_fields)
  1444. /**
  1445. * wpa_config_add_prio_network - Add a network to priority lists
  1446. * @config: Configuration data from wpa_config_read()
  1447. * @ssid: Pointer to the network configuration to be added to the list
  1448. * Returns: 0 on success, -1 on failure
  1449. *
  1450. * This function is used to add a network block to the priority list of
  1451. * networks. This must be called for each network when reading in the full
  1452. * configuration. In addition, this can be used indirectly when updating
  1453. * priorities by calling wpa_config_update_prio_list().
  1454. */
  1455. int wpa_config_add_prio_network(struct wpa_config *config,
  1456. struct wpa_ssid *ssid)
  1457. {
  1458. int prio;
  1459. struct wpa_ssid *prev, **nlist;
  1460. /*
  1461. * Add to an existing priority list if one is available for the
  1462. * configured priority level for this network.
  1463. */
  1464. for (prio = 0; prio < config->num_prio; prio++) {
  1465. prev = config->pssid[prio];
  1466. if (prev->priority == ssid->priority) {
  1467. while (prev->pnext)
  1468. prev = prev->pnext;
  1469. prev->pnext = ssid;
  1470. return 0;
  1471. }
  1472. }
  1473. /* First network for this priority - add a new priority list */
  1474. nlist = os_realloc_array(config->pssid, config->num_prio + 1,
  1475. sizeof(struct wpa_ssid *));
  1476. if (nlist == NULL)
  1477. return -1;
  1478. for (prio = 0; prio < config->num_prio; prio++) {
  1479. if (nlist[prio]->priority < ssid->priority) {
  1480. os_memmove(&nlist[prio + 1], &nlist[prio],
  1481. (config->num_prio - prio) *
  1482. sizeof(struct wpa_ssid *));
  1483. break;
  1484. }
  1485. }
  1486. nlist[prio] = ssid;
  1487. config->num_prio++;
  1488. config->pssid = nlist;
  1489. return 0;
  1490. }
  1491. /**
  1492. * wpa_config_update_prio_list - Update network priority list
  1493. * @config: Configuration data from wpa_config_read()
  1494. * Returns: 0 on success, -1 on failure
  1495. *
  1496. * This function is called to update the priority list of networks in the
  1497. * configuration when a network is being added or removed. This is also called
  1498. * if a priority for a network is changed.
  1499. */
  1500. int wpa_config_update_prio_list(struct wpa_config *config)
  1501. {
  1502. struct wpa_ssid *ssid;
  1503. int ret = 0;
  1504. os_free(config->pssid);
  1505. config->pssid = NULL;
  1506. config->num_prio = 0;
  1507. ssid = config->ssid;
  1508. while (ssid) {
  1509. ssid->pnext = NULL;
  1510. if (wpa_config_add_prio_network(config, ssid) < 0)
  1511. ret = -1;
  1512. ssid = ssid->next;
  1513. }
  1514. return ret;
  1515. }
  1516. #ifdef IEEE8021X_EAPOL
  1517. static void eap_peer_config_free(struct eap_peer_config *eap)
  1518. {
  1519. os_free(eap->eap_methods);
  1520. os_free(eap->identity);
  1521. os_free(eap->anonymous_identity);
  1522. os_free(eap->password);
  1523. os_free(eap->ca_cert);
  1524. os_free(eap->ca_path);
  1525. os_free(eap->client_cert);
  1526. os_free(eap->private_key);
  1527. os_free(eap->private_key_passwd);
  1528. os_free(eap->dh_file);
  1529. os_free(eap->subject_match);
  1530. os_free(eap->altsubject_match);
  1531. os_free(eap->domain_suffix_match);
  1532. os_free(eap->ca_cert2);
  1533. os_free(eap->ca_path2);
  1534. os_free(eap->client_cert2);
  1535. os_free(eap->private_key2);
  1536. os_free(eap->private_key2_passwd);
  1537. os_free(eap->dh_file2);
  1538. os_free(eap->subject_match2);
  1539. os_free(eap->altsubject_match2);
  1540. os_free(eap->domain_suffix_match2);
  1541. os_free(eap->phase1);
  1542. os_free(eap->phase2);
  1543. os_free(eap->pcsc);
  1544. os_free(eap->pin);
  1545. os_free(eap->engine_id);
  1546. os_free(eap->key_id);
  1547. os_free(eap->cert_id);
  1548. os_free(eap->ca_cert_id);
  1549. os_free(eap->key2_id);
  1550. os_free(eap->cert2_id);
  1551. os_free(eap->ca_cert2_id);
  1552. os_free(eap->pin2);
  1553. os_free(eap->engine2_id);
  1554. os_free(eap->otp);
  1555. os_free(eap->pending_req_otp);
  1556. os_free(eap->pac_file);
  1557. os_free(eap->new_password);
  1558. os_free(eap->external_sim_resp);
  1559. }
  1560. #endif /* IEEE8021X_EAPOL */
  1561. /**
  1562. * wpa_config_free_ssid - Free network/ssid configuration data
  1563. * @ssid: Configuration data for the network
  1564. *
  1565. * This function frees all resources allocated for the network configuration
  1566. * data.
  1567. */
  1568. void wpa_config_free_ssid(struct wpa_ssid *ssid)
  1569. {
  1570. struct psk_list_entry *psk;
  1571. os_free(ssid->ssid);
  1572. os_free(ssid->passphrase);
  1573. os_free(ssid->ext_psk);
  1574. #ifdef IEEE8021X_EAPOL
  1575. eap_peer_config_free(&ssid->eap);
  1576. #endif /* IEEE8021X_EAPOL */
  1577. os_free(ssid->id_str);
  1578. os_free(ssid->scan_freq);
  1579. os_free(ssid->freq_list);
  1580. os_free(ssid->bgscan);
  1581. os_free(ssid->p2p_client_list);
  1582. #ifdef CONFIG_HT_OVERRIDES
  1583. os_free(ssid->ht_mcs);
  1584. #endif /* CONFIG_HT_OVERRIDES */
  1585. while ((psk = dl_list_first(&ssid->psk_list, struct psk_list_entry,
  1586. list))) {
  1587. dl_list_del(&psk->list);
  1588. os_free(psk);
  1589. }
  1590. os_free(ssid);
  1591. }
  1592. void wpa_config_free_cred(struct wpa_cred *cred)
  1593. {
  1594. size_t i;
  1595. os_free(cred->realm);
  1596. os_free(cred->username);
  1597. os_free(cred->password);
  1598. os_free(cred->ca_cert);
  1599. os_free(cred->client_cert);
  1600. os_free(cred->private_key);
  1601. os_free(cred->private_key_passwd);
  1602. os_free(cred->imsi);
  1603. os_free(cred->milenage);
  1604. for (i = 0; i < cred->num_domain; i++)
  1605. os_free(cred->domain[i]);
  1606. os_free(cred->domain);
  1607. os_free(cred->domain_suffix_match);
  1608. os_free(cred->eap_method);
  1609. os_free(cred->phase1);
  1610. os_free(cred->phase2);
  1611. os_free(cred->excluded_ssid);
  1612. os_free(cred);
  1613. }
  1614. /**
  1615. * wpa_config_free - Free configuration data
  1616. * @config: Configuration data from wpa_config_read()
  1617. *
  1618. * This function frees all resources allocated for the configuration data by
  1619. * wpa_config_read().
  1620. */
  1621. void wpa_config_free(struct wpa_config *config)
  1622. {
  1623. #ifndef CONFIG_NO_CONFIG_BLOBS
  1624. struct wpa_config_blob *blob, *prevblob;
  1625. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1626. struct wpa_ssid *ssid, *prev = NULL;
  1627. struct wpa_cred *cred, *cprev;
  1628. ssid = config->ssid;
  1629. while (ssid) {
  1630. prev = ssid;
  1631. ssid = ssid->next;
  1632. wpa_config_free_ssid(prev);
  1633. }
  1634. cred = config->cred;
  1635. while (cred) {
  1636. cprev = cred;
  1637. cred = cred->next;
  1638. wpa_config_free_cred(cprev);
  1639. }
  1640. #ifndef CONFIG_NO_CONFIG_BLOBS
  1641. blob = config->blobs;
  1642. prevblob = NULL;
  1643. while (blob) {
  1644. prevblob = blob;
  1645. blob = blob->next;
  1646. wpa_config_free_blob(prevblob);
  1647. }
  1648. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1649. wpabuf_free(config->wps_vendor_ext_m1);
  1650. os_free(config->ctrl_interface);
  1651. os_free(config->ctrl_interface_group);
  1652. os_free(config->opensc_engine_path);
  1653. os_free(config->pkcs11_engine_path);
  1654. os_free(config->pkcs11_module_path);
  1655. os_free(config->pcsc_reader);
  1656. os_free(config->pcsc_pin);
  1657. os_free(config->driver_param);
  1658. os_free(config->device_name);
  1659. os_free(config->manufacturer);
  1660. os_free(config->model_name);
  1661. os_free(config->model_number);
  1662. os_free(config->serial_number);
  1663. os_free(config->config_methods);
  1664. os_free(config->p2p_ssid_postfix);
  1665. os_free(config->pssid);
  1666. os_free(config->p2p_pref_chan);
  1667. os_free(config->p2p_no_go_freq.range);
  1668. os_free(config->autoscan);
  1669. os_free(config->freq_list);
  1670. wpabuf_free(config->wps_nfc_dh_pubkey);
  1671. wpabuf_free(config->wps_nfc_dh_privkey);
  1672. wpabuf_free(config->wps_nfc_dev_pw);
  1673. os_free(config->ext_password_backend);
  1674. os_free(config->sae_groups);
  1675. wpabuf_free(config->ap_vendor_elements);
  1676. os_free(config);
  1677. }
  1678. /**
  1679. * wpa_config_foreach_network - Iterate over each configured network
  1680. * @config: Configuration data from wpa_config_read()
  1681. * @func: Callback function to process each network
  1682. * @arg: Opaque argument to pass to callback function
  1683. *
  1684. * Iterate over the set of configured networks calling the specified
  1685. * function for each item. We guard against callbacks removing the
  1686. * supplied network.
  1687. */
  1688. void wpa_config_foreach_network(struct wpa_config *config,
  1689. void (*func)(void *, struct wpa_ssid *),
  1690. void *arg)
  1691. {
  1692. struct wpa_ssid *ssid, *next;
  1693. ssid = config->ssid;
  1694. while (ssid) {
  1695. next = ssid->next;
  1696. func(arg, ssid);
  1697. ssid = next;
  1698. }
  1699. }
  1700. /**
  1701. * wpa_config_get_network - Get configured network based on id
  1702. * @config: Configuration data from wpa_config_read()
  1703. * @id: Unique network id to search for
  1704. * Returns: Network configuration or %NULL if not found
  1705. */
  1706. struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id)
  1707. {
  1708. struct wpa_ssid *ssid;
  1709. ssid = config->ssid;
  1710. while (ssid) {
  1711. if (id == ssid->id)
  1712. break;
  1713. ssid = ssid->next;
  1714. }
  1715. return ssid;
  1716. }
  1717. /**
  1718. * wpa_config_add_network - Add a new network with empty configuration
  1719. * @config: Configuration data from wpa_config_read()
  1720. * Returns: The new network configuration or %NULL if operation failed
  1721. */
  1722. struct wpa_ssid * wpa_config_add_network(struct wpa_config *config)
  1723. {
  1724. int id;
  1725. struct wpa_ssid *ssid, *last = NULL;
  1726. id = -1;
  1727. ssid = config->ssid;
  1728. while (ssid) {
  1729. if (ssid->id > id)
  1730. id = ssid->id;
  1731. last = ssid;
  1732. ssid = ssid->next;
  1733. }
  1734. id++;
  1735. ssid = os_zalloc(sizeof(*ssid));
  1736. if (ssid == NULL)
  1737. return NULL;
  1738. ssid->id = id;
  1739. dl_list_init(&ssid->psk_list);
  1740. if (last)
  1741. last->next = ssid;
  1742. else
  1743. config->ssid = ssid;
  1744. wpa_config_update_prio_list(config);
  1745. return ssid;
  1746. }
  1747. /**
  1748. * wpa_config_remove_network - Remove a configured network based on id
  1749. * @config: Configuration data from wpa_config_read()
  1750. * @id: Unique network id to search for
  1751. * Returns: 0 on success, or -1 if the network was not found
  1752. */
  1753. int wpa_config_remove_network(struct wpa_config *config, int id)
  1754. {
  1755. struct wpa_ssid *ssid, *prev = NULL;
  1756. ssid = config->ssid;
  1757. while (ssid) {
  1758. if (id == ssid->id)
  1759. break;
  1760. prev = ssid;
  1761. ssid = ssid->next;
  1762. }
  1763. if (ssid == NULL)
  1764. return -1;
  1765. if (prev)
  1766. prev->next = ssid->next;
  1767. else
  1768. config->ssid = ssid->next;
  1769. wpa_config_update_prio_list(config);
  1770. wpa_config_free_ssid(ssid);
  1771. return 0;
  1772. }
  1773. /**
  1774. * wpa_config_set_network_defaults - Set network default values
  1775. * @ssid: Pointer to network configuration data
  1776. */
  1777. void wpa_config_set_network_defaults(struct wpa_ssid *ssid)
  1778. {
  1779. ssid->proto = DEFAULT_PROTO;
  1780. ssid->pairwise_cipher = DEFAULT_PAIRWISE;
  1781. ssid->group_cipher = DEFAULT_GROUP;
  1782. ssid->key_mgmt = DEFAULT_KEY_MGMT;
  1783. ssid->bg_scan_period = DEFAULT_BG_SCAN_PERIOD;
  1784. #ifdef IEEE8021X_EAPOL
  1785. ssid->eapol_flags = DEFAULT_EAPOL_FLAGS;
  1786. ssid->eap_workaround = DEFAULT_EAP_WORKAROUND;
  1787. ssid->eap.fragment_size = DEFAULT_FRAGMENT_SIZE;
  1788. #endif /* IEEE8021X_EAPOL */
  1789. #ifdef CONFIG_HT_OVERRIDES
  1790. ssid->disable_ht = DEFAULT_DISABLE_HT;
  1791. ssid->disable_ht40 = DEFAULT_DISABLE_HT40;
  1792. ssid->disable_sgi = DEFAULT_DISABLE_SGI;
  1793. ssid->disable_max_amsdu = DEFAULT_DISABLE_MAX_AMSDU;
  1794. ssid->ampdu_factor = DEFAULT_AMPDU_FACTOR;
  1795. ssid->ampdu_density = DEFAULT_AMPDU_DENSITY;
  1796. #endif /* CONFIG_HT_OVERRIDES */
  1797. #ifdef CONFIG_VHT_OVERRIDES
  1798. ssid->vht_rx_mcs_nss_1 = -1;
  1799. ssid->vht_rx_mcs_nss_2 = -1;
  1800. ssid->vht_rx_mcs_nss_3 = -1;
  1801. ssid->vht_rx_mcs_nss_4 = -1;
  1802. ssid->vht_rx_mcs_nss_5 = -1;
  1803. ssid->vht_rx_mcs_nss_6 = -1;
  1804. ssid->vht_rx_mcs_nss_7 = -1;
  1805. ssid->vht_rx_mcs_nss_8 = -1;
  1806. ssid->vht_tx_mcs_nss_1 = -1;
  1807. ssid->vht_tx_mcs_nss_2 = -1;
  1808. ssid->vht_tx_mcs_nss_3 = -1;
  1809. ssid->vht_tx_mcs_nss_4 = -1;
  1810. ssid->vht_tx_mcs_nss_5 = -1;
  1811. ssid->vht_tx_mcs_nss_6 = -1;
  1812. ssid->vht_tx_mcs_nss_7 = -1;
  1813. ssid->vht_tx_mcs_nss_8 = -1;
  1814. #endif /* CONFIG_VHT_OVERRIDES */
  1815. ssid->proactive_key_caching = -1;
  1816. #ifdef CONFIG_IEEE80211W
  1817. ssid->ieee80211w = MGMT_FRAME_PROTECTION_DEFAULT;
  1818. #endif /* CONFIG_IEEE80211W */
  1819. }
  1820. /**
  1821. * wpa_config_set - Set a variable in network configuration
  1822. * @ssid: Pointer to network configuration data
  1823. * @var: Variable name, e.g., "ssid"
  1824. * @value: Variable value
  1825. * @line: Line number in configuration file or 0 if not used
  1826. * Returns: 0 on success, -1 on failure
  1827. *
  1828. * This function can be used to set network configuration variables based on
  1829. * both the configuration file and management interface input. The value
  1830. * parameter must be in the same format as the text-based configuration file is
  1831. * using. For example, strings are using double quotation marks.
  1832. */
  1833. int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
  1834. int line)
  1835. {
  1836. size_t i;
  1837. int ret = 0;
  1838. if (ssid == NULL || var == NULL || value == NULL)
  1839. return -1;
  1840. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1841. const struct parse_data *field = &ssid_fields[i];
  1842. if (os_strcmp(var, field->name) != 0)
  1843. continue;
  1844. if (field->parser(field, ssid, line, value)) {
  1845. if (line) {
  1846. wpa_printf(MSG_ERROR, "Line %d: failed to "
  1847. "parse %s '%s'.", line, var, value);
  1848. }
  1849. ret = -1;
  1850. }
  1851. break;
  1852. }
  1853. if (i == NUM_SSID_FIELDS) {
  1854. if (line) {
  1855. wpa_printf(MSG_ERROR, "Line %d: unknown network field "
  1856. "'%s'.", line, var);
  1857. }
  1858. ret = -1;
  1859. }
  1860. return ret;
  1861. }
  1862. int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
  1863. const char *value)
  1864. {
  1865. size_t len;
  1866. char *buf;
  1867. int ret;
  1868. len = os_strlen(value);
  1869. buf = os_malloc(len + 3);
  1870. if (buf == NULL)
  1871. return -1;
  1872. buf[0] = '"';
  1873. os_memcpy(buf + 1, value, len);
  1874. buf[len + 1] = '"';
  1875. buf[len + 2] = '\0';
  1876. ret = wpa_config_set(ssid, var, buf, 0);
  1877. os_free(buf);
  1878. return ret;
  1879. }
  1880. /**
  1881. * wpa_config_get_all - Get all options from network configuration
  1882. * @ssid: Pointer to network configuration data
  1883. * @get_keys: Determines if keys/passwords will be included in returned list
  1884. * (if they may be exported)
  1885. * Returns: %NULL terminated list of all set keys and their values in the form
  1886. * of [key1, val1, key2, val2, ... , NULL]
  1887. *
  1888. * This function can be used to get list of all configured network properties.
  1889. * The caller is responsible for freeing the returned list and all its
  1890. * elements.
  1891. */
  1892. char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
  1893. {
  1894. const struct parse_data *field;
  1895. char *key, *value;
  1896. size_t i;
  1897. char **props;
  1898. int fields_num;
  1899. get_keys = get_keys && ssid->export_keys;
  1900. props = os_calloc(2 * NUM_SSID_FIELDS + 1, sizeof(char *));
  1901. if (!props)
  1902. return NULL;
  1903. fields_num = 0;
  1904. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1905. field = &ssid_fields[i];
  1906. if (field->key_data && !get_keys)
  1907. continue;
  1908. value = field->writer(field, ssid);
  1909. if (value == NULL)
  1910. continue;
  1911. if (os_strlen(value) == 0) {
  1912. os_free(value);
  1913. continue;
  1914. }
  1915. key = os_strdup(field->name);
  1916. if (key == NULL) {
  1917. os_free(value);
  1918. goto err;
  1919. }
  1920. props[fields_num * 2] = key;
  1921. props[fields_num * 2 + 1] = value;
  1922. fields_num++;
  1923. }
  1924. return props;
  1925. err:
  1926. value = *props;
  1927. while (value)
  1928. os_free(value++);
  1929. os_free(props);
  1930. return NULL;
  1931. }
  1932. #ifndef NO_CONFIG_WRITE
  1933. /**
  1934. * wpa_config_get - Get a variable in network configuration
  1935. * @ssid: Pointer to network configuration data
  1936. * @var: Variable name, e.g., "ssid"
  1937. * Returns: Value of the variable or %NULL on failure
  1938. *
  1939. * This function can be used to get network configuration variables. The
  1940. * returned value is a copy of the configuration variable in text format, i.e,.
  1941. * the same format that the text-based configuration file and wpa_config_set()
  1942. * are using for the value. The caller is responsible for freeing the returned
  1943. * value.
  1944. */
  1945. char * wpa_config_get(struct wpa_ssid *ssid, const char *var)
  1946. {
  1947. size_t i;
  1948. if (ssid == NULL || var == NULL)
  1949. return NULL;
  1950. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1951. const struct parse_data *field = &ssid_fields[i];
  1952. if (os_strcmp(var, field->name) == 0)
  1953. return field->writer(field, ssid);
  1954. }
  1955. return NULL;
  1956. }
  1957. /**
  1958. * wpa_config_get_no_key - Get a variable in network configuration (no keys)
  1959. * @ssid: Pointer to network configuration data
  1960. * @var: Variable name, e.g., "ssid"
  1961. * Returns: Value of the variable or %NULL on failure
  1962. *
  1963. * This function can be used to get network configuration variable like
  1964. * wpa_config_get(). The only difference is that this functions does not expose
  1965. * key/password material from the configuration. In case a key/password field
  1966. * is requested, the returned value is an empty string or %NULL if the variable
  1967. * is not set or "*" if the variable is set (regardless of its value). The
  1968. * returned value is a copy of the configuration variable in text format, i.e,.
  1969. * the same format that the text-based configuration file and wpa_config_set()
  1970. * are using for the value. The caller is responsible for freeing the returned
  1971. * value.
  1972. */
  1973. char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var)
  1974. {
  1975. size_t i;
  1976. if (ssid == NULL || var == NULL)
  1977. return NULL;
  1978. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1979. const struct parse_data *field = &ssid_fields[i];
  1980. if (os_strcmp(var, field->name) == 0) {
  1981. char *res = field->writer(field, ssid);
  1982. if (field->key_data) {
  1983. if (res && res[0]) {
  1984. wpa_printf(MSG_DEBUG, "Do not allow "
  1985. "key_data field to be "
  1986. "exposed");
  1987. os_free(res);
  1988. return os_strdup("*");
  1989. }
  1990. os_free(res);
  1991. return NULL;
  1992. }
  1993. return res;
  1994. }
  1995. }
  1996. return NULL;
  1997. }
  1998. #endif /* NO_CONFIG_WRITE */
  1999. /**
  2000. * wpa_config_update_psk - Update WPA PSK based on passphrase and SSID
  2001. * @ssid: Pointer to network configuration data
  2002. *
  2003. * This function must be called to update WPA PSK when either SSID or the
  2004. * passphrase has changed for the network configuration.
  2005. */
  2006. void wpa_config_update_psk(struct wpa_ssid *ssid)
  2007. {
  2008. #ifndef CONFIG_NO_PBKDF2
  2009. pbkdf2_sha1(ssid->passphrase, ssid->ssid, ssid->ssid_len, 4096,
  2010. ssid->psk, PMK_LEN);
  2011. wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
  2012. ssid->psk, PMK_LEN);
  2013. ssid->psk_set = 1;
  2014. #endif /* CONFIG_NO_PBKDF2 */
  2015. }
  2016. int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
  2017. const char *value, int line)
  2018. {
  2019. char *val;
  2020. size_t len;
  2021. if (os_strcmp(var, "priority") == 0) {
  2022. cred->priority = atoi(value);
  2023. return 0;
  2024. }
  2025. if (os_strcmp(var, "pcsc") == 0) {
  2026. cred->pcsc = atoi(value);
  2027. return 0;
  2028. }
  2029. if (os_strcmp(var, "eap") == 0) {
  2030. struct eap_method_type method;
  2031. method.method = eap_peer_get_type(value, &method.vendor);
  2032. if (method.vendor == EAP_VENDOR_IETF &&
  2033. method.method == EAP_TYPE_NONE) {
  2034. wpa_printf(MSG_ERROR, "Line %d: unknown EAP type '%s' "
  2035. "for a credential", line, value);
  2036. return -1;
  2037. }
  2038. os_free(cred->eap_method);
  2039. cred->eap_method = os_malloc(sizeof(*cred->eap_method));
  2040. if (cred->eap_method == NULL)
  2041. return -1;
  2042. os_memcpy(cred->eap_method, &method, sizeof(method));
  2043. return 0;
  2044. }
  2045. if (os_strcmp(var, "password") == 0 &&
  2046. os_strncmp(value, "ext:", 4) == 0) {
  2047. os_free(cred->password);
  2048. cred->password = os_strdup(value);
  2049. cred->ext_password = 1;
  2050. return 0;
  2051. }
  2052. val = wpa_config_parse_string(value, &len);
  2053. if (val == NULL) {
  2054. wpa_printf(MSG_ERROR, "Line %d: invalid field '%s' string "
  2055. "value '%s'.", line, var, value);
  2056. return -1;
  2057. }
  2058. if (os_strcmp(var, "realm") == 0) {
  2059. os_free(cred->realm);
  2060. cred->realm = val;
  2061. return 0;
  2062. }
  2063. if (os_strcmp(var, "username") == 0) {
  2064. os_free(cred->username);
  2065. cred->username = val;
  2066. return 0;
  2067. }
  2068. if (os_strcmp(var, "password") == 0) {
  2069. os_free(cred->password);
  2070. cred->password = val;
  2071. cred->ext_password = 0;
  2072. return 0;
  2073. }
  2074. if (os_strcmp(var, "ca_cert") == 0) {
  2075. os_free(cred->ca_cert);
  2076. cred->ca_cert = val;
  2077. return 0;
  2078. }
  2079. if (os_strcmp(var, "client_cert") == 0) {
  2080. os_free(cred->client_cert);
  2081. cred->client_cert = val;
  2082. return 0;
  2083. }
  2084. if (os_strcmp(var, "private_key") == 0) {
  2085. os_free(cred->private_key);
  2086. cred->private_key = val;
  2087. return 0;
  2088. }
  2089. if (os_strcmp(var, "private_key_passwd") == 0) {
  2090. os_free(cred->private_key_passwd);
  2091. cred->private_key_passwd = val;
  2092. return 0;
  2093. }
  2094. if (os_strcmp(var, "imsi") == 0) {
  2095. os_free(cred->imsi);
  2096. cred->imsi = val;
  2097. return 0;
  2098. }
  2099. if (os_strcmp(var, "milenage") == 0) {
  2100. os_free(cred->milenage);
  2101. cred->milenage = val;
  2102. return 0;
  2103. }
  2104. if (os_strcmp(var, "domain_suffix_match") == 0) {
  2105. os_free(cred->domain_suffix_match);
  2106. cred->domain_suffix_match = val;
  2107. return 0;
  2108. }
  2109. if (os_strcmp(var, "domain") == 0) {
  2110. char **new_domain;
  2111. new_domain = os_realloc_array(cred->domain,
  2112. cred->num_domain + 1,
  2113. sizeof(char *));
  2114. if (new_domain == NULL) {
  2115. os_free(val);
  2116. return -1;
  2117. }
  2118. new_domain[cred->num_domain++] = val;
  2119. cred->domain = new_domain;
  2120. return 0;
  2121. }
  2122. if (os_strcmp(var, "phase1") == 0) {
  2123. os_free(cred->phase1);
  2124. cred->phase1 = val;
  2125. return 0;
  2126. }
  2127. if (os_strcmp(var, "phase2") == 0) {
  2128. os_free(cred->phase2);
  2129. cred->phase2 = val;
  2130. return 0;
  2131. }
  2132. if (os_strcmp(var, "roaming_consortium") == 0) {
  2133. if (len < 3 || len > sizeof(cred->roaming_consortium)) {
  2134. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2135. "roaming_consortium length %d (3..15 "
  2136. "expected)", line, (int) len);
  2137. os_free(val);
  2138. return -1;
  2139. }
  2140. os_memcpy(cred->roaming_consortium, val, len);
  2141. cred->roaming_consortium_len = len;
  2142. os_free(val);
  2143. return 0;
  2144. }
  2145. if (os_strcmp(var, "required_roaming_consortium") == 0) {
  2146. if (len < 3 || len > sizeof(cred->required_roaming_consortium))
  2147. {
  2148. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2149. "required_roaming_consortium length %d "
  2150. "(3..15 expected)", line, (int) len);
  2151. os_free(val);
  2152. return -1;
  2153. }
  2154. os_memcpy(cred->required_roaming_consortium, val, len);
  2155. cred->required_roaming_consortium_len = len;
  2156. os_free(val);
  2157. return 0;
  2158. }
  2159. if (os_strcmp(var, "excluded_ssid") == 0) {
  2160. struct excluded_ssid *e;
  2161. if (len > MAX_SSID_LEN) {
  2162. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2163. "excluded_ssid length %d", line, (int) len);
  2164. os_free(val);
  2165. return -1;
  2166. }
  2167. e = os_realloc_array(cred->excluded_ssid,
  2168. cred->num_excluded_ssid + 1,
  2169. sizeof(struct excluded_ssid));
  2170. if (e == NULL) {
  2171. os_free(val);
  2172. return -1;
  2173. }
  2174. cred->excluded_ssid = e;
  2175. e = &cred->excluded_ssid[cred->num_excluded_ssid++];
  2176. os_memcpy(e->ssid, val, len);
  2177. e->ssid_len = len;
  2178. os_free(val);
  2179. return 0;
  2180. }
  2181. if (line) {
  2182. wpa_printf(MSG_ERROR, "Line %d: unknown cred field '%s'.",
  2183. line, var);
  2184. }
  2185. os_free(val);
  2186. return -1;
  2187. }
  2188. struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id)
  2189. {
  2190. struct wpa_cred *cred;
  2191. cred = config->cred;
  2192. while (cred) {
  2193. if (id == cred->id)
  2194. break;
  2195. cred = cred->next;
  2196. }
  2197. return cred;
  2198. }
  2199. struct wpa_cred * wpa_config_add_cred(struct wpa_config *config)
  2200. {
  2201. int id;
  2202. struct wpa_cred *cred, *last = NULL;
  2203. id = -1;
  2204. cred = config->cred;
  2205. while (cred) {
  2206. if (cred->id > id)
  2207. id = cred->id;
  2208. last = cred;
  2209. cred = cred->next;
  2210. }
  2211. id++;
  2212. cred = os_zalloc(sizeof(*cred));
  2213. if (cred == NULL)
  2214. return NULL;
  2215. cred->id = id;
  2216. if (last)
  2217. last->next = cred;
  2218. else
  2219. config->cred = cred;
  2220. return cred;
  2221. }
  2222. int wpa_config_remove_cred(struct wpa_config *config, int id)
  2223. {
  2224. struct wpa_cred *cred, *prev = NULL;
  2225. cred = config->cred;
  2226. while (cred) {
  2227. if (id == cred->id)
  2228. break;
  2229. prev = cred;
  2230. cred = cred->next;
  2231. }
  2232. if (cred == NULL)
  2233. return -1;
  2234. if (prev)
  2235. prev->next = cred->next;
  2236. else
  2237. config->cred = cred->next;
  2238. wpa_config_free_cred(cred);
  2239. return 0;
  2240. }
  2241. #ifndef CONFIG_NO_CONFIG_BLOBS
  2242. /**
  2243. * wpa_config_get_blob - Get a named configuration blob
  2244. * @config: Configuration data from wpa_config_read()
  2245. * @name: Name of the blob
  2246. * Returns: Pointer to blob data or %NULL if not found
  2247. */
  2248. const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
  2249. const char *name)
  2250. {
  2251. struct wpa_config_blob *blob = config->blobs;
  2252. while (blob) {
  2253. if (os_strcmp(blob->name, name) == 0)
  2254. return blob;
  2255. blob = blob->next;
  2256. }
  2257. return NULL;
  2258. }
  2259. /**
  2260. * wpa_config_set_blob - Set or add a named configuration blob
  2261. * @config: Configuration data from wpa_config_read()
  2262. * @blob: New value for the blob
  2263. *
  2264. * Adds a new configuration blob or replaces the current value of an existing
  2265. * blob.
  2266. */
  2267. void wpa_config_set_blob(struct wpa_config *config,
  2268. struct wpa_config_blob *blob)
  2269. {
  2270. wpa_config_remove_blob(config, blob->name);
  2271. blob->next = config->blobs;
  2272. config->blobs = blob;
  2273. }
  2274. /**
  2275. * wpa_config_free_blob - Free blob data
  2276. * @blob: Pointer to blob to be freed
  2277. */
  2278. void wpa_config_free_blob(struct wpa_config_blob *blob)
  2279. {
  2280. if (blob) {
  2281. os_free(blob->name);
  2282. os_free(blob->data);
  2283. os_free(blob);
  2284. }
  2285. }
  2286. /**
  2287. * wpa_config_remove_blob - Remove a named configuration blob
  2288. * @config: Configuration data from wpa_config_read()
  2289. * @name: Name of the blob to remove
  2290. * Returns: 0 if blob was removed or -1 if blob was not found
  2291. */
  2292. int wpa_config_remove_blob(struct wpa_config *config, const char *name)
  2293. {
  2294. struct wpa_config_blob *pos = config->blobs, *prev = NULL;
  2295. while (pos) {
  2296. if (os_strcmp(pos->name, name) == 0) {
  2297. if (prev)
  2298. prev->next = pos->next;
  2299. else
  2300. config->blobs = pos->next;
  2301. wpa_config_free_blob(pos);
  2302. return 0;
  2303. }
  2304. prev = pos;
  2305. pos = pos->next;
  2306. }
  2307. return -1;
  2308. }
  2309. #endif /* CONFIG_NO_CONFIG_BLOBS */
  2310. /**
  2311. * wpa_config_alloc_empty - Allocate an empty configuration
  2312. * @ctrl_interface: Control interface parameters, e.g., path to UNIX domain
  2313. * socket
  2314. * @driver_param: Driver parameters
  2315. * Returns: Pointer to allocated configuration data or %NULL on failure
  2316. */
  2317. struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
  2318. const char *driver_param)
  2319. {
  2320. struct wpa_config *config;
  2321. const int aCWmin = 4, aCWmax = 10;
  2322. const struct hostapd_wmm_ac_params ac_bk =
  2323. { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
  2324. const struct hostapd_wmm_ac_params ac_be =
  2325. { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
  2326. const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
  2327. { aCWmin - 1, aCWmin, 2, 3000 / 32, 0 };
  2328. const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
  2329. { aCWmin - 2, aCWmin - 1, 2, 1500 / 32, 0 };
  2330. config = os_zalloc(sizeof(*config));
  2331. if (config == NULL)
  2332. return NULL;
  2333. config->eapol_version = DEFAULT_EAPOL_VERSION;
  2334. config->ap_scan = DEFAULT_AP_SCAN;
  2335. config->fast_reauth = DEFAULT_FAST_REAUTH;
  2336. config->p2p_go_intent = DEFAULT_P2P_GO_INTENT;
  2337. config->p2p_intra_bss = DEFAULT_P2P_INTRA_BSS;
  2338. config->p2p_go_max_inactivity = DEFAULT_P2P_GO_MAX_INACTIVITY;
  2339. config->bss_max_count = DEFAULT_BSS_MAX_COUNT;
  2340. config->bss_expiration_age = DEFAULT_BSS_EXPIRATION_AGE;
  2341. config->bss_expiration_scan_count = DEFAULT_BSS_EXPIRATION_SCAN_COUNT;
  2342. config->max_num_sta = DEFAULT_MAX_NUM_STA;
  2343. config->access_network_type = DEFAULT_ACCESS_NETWORK_TYPE;
  2344. config->scan_cur_freq = DEFAULT_SCAN_CUR_FREQ;
  2345. config->wmm_ac_params[0] = ac_be;
  2346. config->wmm_ac_params[1] = ac_bk;
  2347. config->wmm_ac_params[2] = ac_vi;
  2348. config->wmm_ac_params[3] = ac_vo;
  2349. if (ctrl_interface)
  2350. config->ctrl_interface = os_strdup(ctrl_interface);
  2351. if (driver_param)
  2352. config->driver_param = os_strdup(driver_param);
  2353. return config;
  2354. }
  2355. #ifndef CONFIG_NO_STDOUT_DEBUG
  2356. /**
  2357. * wpa_config_debug_dump_networks - Debug dump of configured networks
  2358. * @config: Configuration data from wpa_config_read()
  2359. */
  2360. void wpa_config_debug_dump_networks(struct wpa_config *config)
  2361. {
  2362. int prio;
  2363. struct wpa_ssid *ssid;
  2364. for (prio = 0; prio < config->num_prio; prio++) {
  2365. ssid = config->pssid[prio];
  2366. wpa_printf(MSG_DEBUG, "Priority group %d",
  2367. ssid->priority);
  2368. while (ssid) {
  2369. wpa_printf(MSG_DEBUG, " id=%d ssid='%s'",
  2370. ssid->id,
  2371. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  2372. ssid = ssid->pnext;
  2373. }
  2374. }
  2375. }
  2376. #endif /* CONFIG_NO_STDOUT_DEBUG */
  2377. struct global_parse_data {
  2378. char *name;
  2379. int (*parser)(const struct global_parse_data *data,
  2380. struct wpa_config *config, int line, const char *value);
  2381. void *param1, *param2, *param3;
  2382. unsigned int changed_flag;
  2383. };
  2384. static int wpa_global_config_parse_int(const struct global_parse_data *data,
  2385. struct wpa_config *config, int line,
  2386. const char *pos)
  2387. {
  2388. int val, *dst;
  2389. char *end;
  2390. dst = (int *) (((u8 *) config) + (long) data->param1);
  2391. val = strtol(pos, &end, 0);
  2392. if (*end) {
  2393. wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
  2394. line, pos);
  2395. return -1;
  2396. }
  2397. *dst = val;
  2398. wpa_printf(MSG_DEBUG, "%s=%d", data->name, *dst);
  2399. if (data->param2 && *dst < (long) data->param2) {
  2400. wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
  2401. "min_value=%ld)", line, data->name, *dst,
  2402. (long) data->param2);
  2403. *dst = (long) data->param2;
  2404. return -1;
  2405. }
  2406. if (data->param3 && *dst > (long) data->param3) {
  2407. wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
  2408. "max_value=%ld)", line, data->name, *dst,
  2409. (long) data->param3);
  2410. *dst = (long) data->param3;
  2411. return -1;
  2412. }
  2413. return 0;
  2414. }
  2415. static int wpa_global_config_parse_str(const struct global_parse_data *data,
  2416. struct wpa_config *config, int line,
  2417. const char *pos)
  2418. {
  2419. size_t len;
  2420. char **dst, *tmp;
  2421. len = os_strlen(pos);
  2422. if (data->param2 && len < (size_t) data->param2) {
  2423. wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
  2424. "min_len=%ld)", line, data->name,
  2425. (unsigned long) len, (long) data->param2);
  2426. return -1;
  2427. }
  2428. if (data->param3 && len > (size_t) data->param3) {
  2429. wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
  2430. "max_len=%ld)", line, data->name,
  2431. (unsigned long) len, (long) data->param3);
  2432. return -1;
  2433. }
  2434. tmp = os_strdup(pos);
  2435. if (tmp == NULL)
  2436. return -1;
  2437. dst = (char **) (((u8 *) config) + (long) data->param1);
  2438. os_free(*dst);
  2439. *dst = tmp;
  2440. wpa_printf(MSG_DEBUG, "%s='%s'", data->name, *dst);
  2441. return 0;
  2442. }
  2443. static int wpa_global_config_parse_bin(const struct global_parse_data *data,
  2444. struct wpa_config *config, int line,
  2445. const char *pos)
  2446. {
  2447. size_t len;
  2448. struct wpabuf **dst, *tmp;
  2449. len = os_strlen(pos);
  2450. if (len & 0x01)
  2451. return -1;
  2452. tmp = wpabuf_alloc(len / 2);
  2453. if (tmp == NULL)
  2454. return -1;
  2455. if (hexstr2bin(pos, wpabuf_put(tmp, len / 2), len / 2)) {
  2456. wpabuf_free(tmp);
  2457. return -1;
  2458. }
  2459. dst = (struct wpabuf **) (((u8 *) config) + (long) data->param1);
  2460. wpabuf_free(*dst);
  2461. *dst = tmp;
  2462. wpa_printf(MSG_DEBUG, "%s", data->name);
  2463. return 0;
  2464. }
  2465. static int wpa_config_process_freq_list(const struct global_parse_data *data,
  2466. struct wpa_config *config, int line,
  2467. const char *value)
  2468. {
  2469. int *freqs;
  2470. freqs = wpa_config_parse_int_array(value);
  2471. if (freqs == NULL)
  2472. return -1;
  2473. if (freqs[0] == 0) {
  2474. os_free(freqs);
  2475. freqs = NULL;
  2476. }
  2477. os_free(config->freq_list);
  2478. config->freq_list = freqs;
  2479. return 0;
  2480. }
  2481. static int wpa_config_process_country(const struct global_parse_data *data,
  2482. struct wpa_config *config, int line,
  2483. const char *pos)
  2484. {
  2485. if (!pos[0] || !pos[1]) {
  2486. wpa_printf(MSG_DEBUG, "Invalid country set");
  2487. return -1;
  2488. }
  2489. config->country[0] = pos[0];
  2490. config->country[1] = pos[1];
  2491. wpa_printf(MSG_DEBUG, "country='%c%c'",
  2492. config->country[0], config->country[1]);
  2493. return 0;
  2494. }
  2495. static int wpa_config_process_load_dynamic_eap(
  2496. const struct global_parse_data *data, struct wpa_config *config,
  2497. int line, const char *so)
  2498. {
  2499. int ret;
  2500. wpa_printf(MSG_DEBUG, "load_dynamic_eap=%s", so);
  2501. ret = eap_peer_method_load(so);
  2502. if (ret == -2) {
  2503. wpa_printf(MSG_DEBUG, "This EAP type was already loaded - not "
  2504. "reloading.");
  2505. } else if (ret) {
  2506. wpa_printf(MSG_ERROR, "Line %d: Failed to load dynamic EAP "
  2507. "method '%s'.", line, so);
  2508. return -1;
  2509. }
  2510. return 0;
  2511. }
  2512. #ifdef CONFIG_WPS
  2513. static int wpa_config_process_uuid(const struct global_parse_data *data,
  2514. struct wpa_config *config, int line,
  2515. const char *pos)
  2516. {
  2517. char buf[40];
  2518. if (uuid_str2bin(pos, config->uuid)) {
  2519. wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
  2520. return -1;
  2521. }
  2522. uuid_bin2str(config->uuid, buf, sizeof(buf));
  2523. wpa_printf(MSG_DEBUG, "uuid=%s", buf);
  2524. return 0;
  2525. }
  2526. static int wpa_config_process_device_type(
  2527. const struct global_parse_data *data,
  2528. struct wpa_config *config, int line, const char *pos)
  2529. {
  2530. return wps_dev_type_str2bin(pos, config->device_type);
  2531. }
  2532. static int wpa_config_process_os_version(const struct global_parse_data *data,
  2533. struct wpa_config *config, int line,
  2534. const char *pos)
  2535. {
  2536. if (hexstr2bin(pos, config->os_version, 4)) {
  2537. wpa_printf(MSG_ERROR, "Line %d: invalid os_version", line);
  2538. return -1;
  2539. }
  2540. wpa_printf(MSG_DEBUG, "os_version=%08x",
  2541. WPA_GET_BE32(config->os_version));
  2542. return 0;
  2543. }
  2544. static int wpa_config_process_wps_vendor_ext_m1(
  2545. const struct global_parse_data *data,
  2546. struct wpa_config *config, int line, const char *pos)
  2547. {
  2548. struct wpabuf *tmp;
  2549. int len = os_strlen(pos) / 2;
  2550. u8 *p;
  2551. if (!len) {
  2552. wpa_printf(MSG_ERROR, "Line %d: "
  2553. "invalid wps_vendor_ext_m1", line);
  2554. return -1;
  2555. }
  2556. tmp = wpabuf_alloc(len);
  2557. if (tmp) {
  2558. p = wpabuf_put(tmp, len);
  2559. if (hexstr2bin(pos, p, len)) {
  2560. wpa_printf(MSG_ERROR, "Line %d: "
  2561. "invalid wps_vendor_ext_m1", line);
  2562. wpabuf_free(tmp);
  2563. return -1;
  2564. }
  2565. wpabuf_free(config->wps_vendor_ext_m1);
  2566. config->wps_vendor_ext_m1 = tmp;
  2567. } else {
  2568. wpa_printf(MSG_ERROR, "Can not allocate "
  2569. "memory for wps_vendor_ext_m1");
  2570. return -1;
  2571. }
  2572. return 0;
  2573. }
  2574. #endif /* CONFIG_WPS */
  2575. #ifdef CONFIG_P2P
  2576. static int wpa_config_process_sec_device_type(
  2577. const struct global_parse_data *data,
  2578. struct wpa_config *config, int line, const char *pos)
  2579. {
  2580. int idx;
  2581. if (config->num_sec_device_types >= MAX_SEC_DEVICE_TYPES) {
  2582. wpa_printf(MSG_ERROR, "Line %d: too many sec_device_type "
  2583. "items", line);
  2584. return -1;
  2585. }
  2586. idx = config->num_sec_device_types;
  2587. if (wps_dev_type_str2bin(pos, config->sec_device_type[idx]))
  2588. return -1;
  2589. config->num_sec_device_types++;
  2590. return 0;
  2591. }
  2592. static int wpa_config_process_p2p_pref_chan(
  2593. const struct global_parse_data *data,
  2594. struct wpa_config *config, int line, const char *pos)
  2595. {
  2596. struct p2p_channel *pref = NULL, *n;
  2597. unsigned int num = 0;
  2598. const char *pos2;
  2599. u8 op_class, chan;
  2600. /* format: class:chan,class:chan,... */
  2601. while (*pos) {
  2602. op_class = atoi(pos);
  2603. pos2 = os_strchr(pos, ':');
  2604. if (pos2 == NULL)
  2605. goto fail;
  2606. pos2++;
  2607. chan = atoi(pos2);
  2608. n = os_realloc_array(pref, num + 1,
  2609. sizeof(struct p2p_channel));
  2610. if (n == NULL)
  2611. goto fail;
  2612. pref = n;
  2613. pref[num].op_class = op_class;
  2614. pref[num].chan = chan;
  2615. num++;
  2616. pos = os_strchr(pos2, ',');
  2617. if (pos == NULL)
  2618. break;
  2619. pos++;
  2620. }
  2621. os_free(config->p2p_pref_chan);
  2622. config->p2p_pref_chan = pref;
  2623. config->num_p2p_pref_chan = num;
  2624. wpa_hexdump(MSG_DEBUG, "P2P: Preferred class/channel pairs",
  2625. (u8 *) config->p2p_pref_chan,
  2626. config->num_p2p_pref_chan * sizeof(struct p2p_channel));
  2627. return 0;
  2628. fail:
  2629. os_free(pref);
  2630. wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_pref_chan list", line);
  2631. return -1;
  2632. }
  2633. static int wpa_config_process_p2p_no_go_freq(
  2634. const struct global_parse_data *data,
  2635. struct wpa_config *config, int line, const char *pos)
  2636. {
  2637. int ret;
  2638. ret = freq_range_list_parse(&config->p2p_no_go_freq, pos);
  2639. if (ret < 0) {
  2640. wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_no_go_freq", line);
  2641. return -1;
  2642. }
  2643. wpa_printf(MSG_DEBUG, "P2P: p2p_no_go_freq with %u items",
  2644. config->p2p_no_go_freq.num);
  2645. return 0;
  2646. }
  2647. #endif /* CONFIG_P2P */
  2648. static int wpa_config_process_hessid(
  2649. const struct global_parse_data *data,
  2650. struct wpa_config *config, int line, const char *pos)
  2651. {
  2652. if (hwaddr_aton2(pos, config->hessid) < 0) {
  2653. wpa_printf(MSG_ERROR, "Line %d: Invalid hessid '%s'",
  2654. line, pos);
  2655. return -1;
  2656. }
  2657. return 0;
  2658. }
  2659. static int wpa_config_process_sae_groups(
  2660. const struct global_parse_data *data,
  2661. struct wpa_config *config, int line, const char *pos)
  2662. {
  2663. int *groups = wpa_config_parse_int_array(pos);
  2664. if (groups == NULL) {
  2665. wpa_printf(MSG_ERROR, "Line %d: Invalid sae_groups '%s'",
  2666. line, pos);
  2667. return -1;
  2668. }
  2669. os_free(config->sae_groups);
  2670. config->sae_groups = groups;
  2671. return 0;
  2672. }
  2673. static int wpa_config_process_ap_vendor_elements(
  2674. const struct global_parse_data *data,
  2675. struct wpa_config *config, int line, const char *pos)
  2676. {
  2677. struct wpabuf *tmp;
  2678. int len = os_strlen(pos) / 2;
  2679. u8 *p;
  2680. if (!len) {
  2681. wpa_printf(MSG_ERROR, "Line %d: invalid ap_vendor_elements",
  2682. line);
  2683. return -1;
  2684. }
  2685. tmp = wpabuf_alloc(len);
  2686. if (tmp) {
  2687. p = wpabuf_put(tmp, len);
  2688. if (hexstr2bin(pos, p, len)) {
  2689. wpa_printf(MSG_ERROR, "Line %d: invalid "
  2690. "ap_vendor_elements", line);
  2691. wpabuf_free(tmp);
  2692. return -1;
  2693. }
  2694. wpabuf_free(config->ap_vendor_elements);
  2695. config->ap_vendor_elements = tmp;
  2696. } else {
  2697. wpa_printf(MSG_ERROR, "Cannot allocate memory for "
  2698. "ap_vendor_elements");
  2699. return -1;
  2700. }
  2701. return 0;
  2702. }
  2703. #ifdef CONFIG_CTRL_IFACE
  2704. static int wpa_config_process_no_ctrl_interface(
  2705. const struct global_parse_data *data,
  2706. struct wpa_config *config, int line, const char *pos)
  2707. {
  2708. wpa_printf(MSG_DEBUG, "no_ctrl_interface -> ctrl_interface=NULL");
  2709. os_free(config->ctrl_interface);
  2710. config->ctrl_interface = NULL;
  2711. return 0;
  2712. }
  2713. #endif /* CONFIG_CTRL_IFACE */
  2714. #ifdef OFFSET
  2715. #undef OFFSET
  2716. #endif /* OFFSET */
  2717. /* OFFSET: Get offset of a variable within the wpa_config structure */
  2718. #define OFFSET(v) ((void *) &((struct wpa_config *) 0)->v)
  2719. #define FUNC(f) #f, wpa_config_process_ ## f, OFFSET(f), NULL, NULL
  2720. #define FUNC_NO_VAR(f) #f, wpa_config_process_ ## f, NULL, NULL, NULL
  2721. #define _INT(f) #f, wpa_global_config_parse_int, OFFSET(f)
  2722. #define INT(f) _INT(f), NULL, NULL
  2723. #define INT_RANGE(f, min, max) _INT(f), (void *) min, (void *) max
  2724. #define _STR(f) #f, wpa_global_config_parse_str, OFFSET(f)
  2725. #define STR(f) _STR(f), NULL, NULL
  2726. #define STR_RANGE(f, min, max) _STR(f), (void *) min, (void *) max
  2727. #define BIN(f) #f, wpa_global_config_parse_bin, OFFSET(f), NULL, NULL
  2728. static const struct global_parse_data global_fields[] = {
  2729. #ifdef CONFIG_CTRL_IFACE
  2730. { STR(ctrl_interface), 0 },
  2731. { FUNC_NO_VAR(no_ctrl_interface), 0 },
  2732. { STR(ctrl_interface_group), 0 } /* deprecated */,
  2733. #endif /* CONFIG_CTRL_IFACE */
  2734. { INT_RANGE(eapol_version, 1, 2), 0 },
  2735. { INT(ap_scan), 0 },
  2736. { INT(disable_scan_offload), 0 },
  2737. { INT(fast_reauth), 0 },
  2738. { STR(opensc_engine_path), 0 },
  2739. { STR(pkcs11_engine_path), 0 },
  2740. { STR(pkcs11_module_path), 0 },
  2741. { STR(pcsc_reader), 0 },
  2742. { STR(pcsc_pin), 0 },
  2743. { INT(external_sim), 0 },
  2744. { STR(driver_param), 0 },
  2745. { INT(dot11RSNAConfigPMKLifetime), 0 },
  2746. { INT(dot11RSNAConfigPMKReauthThreshold), 0 },
  2747. { INT(dot11RSNAConfigSATimeout), 0 },
  2748. #ifndef CONFIG_NO_CONFIG_WRITE
  2749. { INT(update_config), 0 },
  2750. #endif /* CONFIG_NO_CONFIG_WRITE */
  2751. { FUNC_NO_VAR(load_dynamic_eap), 0 },
  2752. #ifdef CONFIG_WPS
  2753. { FUNC(uuid), CFG_CHANGED_UUID },
  2754. { STR_RANGE(device_name, 0, 32), CFG_CHANGED_DEVICE_NAME },
  2755. { STR_RANGE(manufacturer, 0, 64), CFG_CHANGED_WPS_STRING },
  2756. { STR_RANGE(model_name, 0, 32), CFG_CHANGED_WPS_STRING },
  2757. { STR_RANGE(model_number, 0, 32), CFG_CHANGED_WPS_STRING },
  2758. { STR_RANGE(serial_number, 0, 32), CFG_CHANGED_WPS_STRING },
  2759. { FUNC(device_type), CFG_CHANGED_DEVICE_TYPE },
  2760. { FUNC(os_version), CFG_CHANGED_OS_VERSION },
  2761. { STR(config_methods), CFG_CHANGED_CONFIG_METHODS },
  2762. { INT_RANGE(wps_cred_processing, 0, 2), 0 },
  2763. { FUNC(wps_vendor_ext_m1), CFG_CHANGED_VENDOR_EXTENSION },
  2764. #endif /* CONFIG_WPS */
  2765. #ifdef CONFIG_P2P
  2766. { FUNC(sec_device_type), CFG_CHANGED_SEC_DEVICE_TYPE },
  2767. { INT(p2p_listen_reg_class), 0 },
  2768. { INT(p2p_listen_channel), 0 },
  2769. { INT(p2p_oper_reg_class), CFG_CHANGED_P2P_OPER_CHANNEL },
  2770. { INT(p2p_oper_channel), CFG_CHANGED_P2P_OPER_CHANNEL },
  2771. { INT_RANGE(p2p_go_intent, 0, 15), 0 },
  2772. { STR(p2p_ssid_postfix), CFG_CHANGED_P2P_SSID_POSTFIX },
  2773. { INT_RANGE(persistent_reconnect, 0, 1), 0 },
  2774. { INT_RANGE(p2p_intra_bss, 0, 1), CFG_CHANGED_P2P_INTRA_BSS },
  2775. { INT(p2p_group_idle), 0 },
  2776. { FUNC(p2p_pref_chan), CFG_CHANGED_P2P_PREF_CHAN },
  2777. { FUNC(p2p_no_go_freq), CFG_CHANGED_P2P_PREF_CHAN },
  2778. { INT_RANGE(p2p_add_cli_chan, 0, 1), 0 },
  2779. { INT(p2p_go_ht40), 0 },
  2780. { INT(p2p_disabled), 0 },
  2781. { INT(p2p_no_group_iface), 0 },
  2782. { INT_RANGE(p2p_ignore_shared_freq, 0, 1), 0 },
  2783. #endif /* CONFIG_P2P */
  2784. { FUNC(country), CFG_CHANGED_COUNTRY },
  2785. { INT(bss_max_count), 0 },
  2786. { INT(bss_expiration_age), 0 },
  2787. { INT(bss_expiration_scan_count), 0 },
  2788. { INT_RANGE(filter_ssids, 0, 1), 0 },
  2789. { INT_RANGE(filter_rssi, -100, 0), 0 },
  2790. { INT(max_num_sta), 0 },
  2791. { INT_RANGE(disassoc_low_ack, 0, 1), 0 },
  2792. #ifdef CONFIG_HS20
  2793. { INT_RANGE(hs20, 0, 1), 0 },
  2794. #endif /* CONFIG_HS20 */
  2795. { INT_RANGE(interworking, 0, 1), 0 },
  2796. { FUNC(hessid), 0 },
  2797. { INT_RANGE(access_network_type, 0, 15), 0 },
  2798. { INT_RANGE(pbc_in_m1, 0, 1), 0 },
  2799. { STR(autoscan), 0 },
  2800. { INT_RANGE(wps_nfc_dev_pw_id, 0x10, 0xffff),
  2801. CFG_CHANGED_NFC_PASSWORD_TOKEN },
  2802. { BIN(wps_nfc_dh_pubkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
  2803. { BIN(wps_nfc_dh_privkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
  2804. { BIN(wps_nfc_dev_pw), CFG_CHANGED_NFC_PASSWORD_TOKEN },
  2805. { STR(ext_password_backend), CFG_CHANGED_EXT_PW_BACKEND },
  2806. { INT(p2p_go_max_inactivity), 0 },
  2807. { INT_RANGE(auto_interworking, 0, 1), 0 },
  2808. { INT(okc), 0 },
  2809. { INT(pmf), 0 },
  2810. { FUNC(sae_groups), 0 },
  2811. { INT(dtim_period), 0 },
  2812. { INT(beacon_int), 0 },
  2813. { FUNC(ap_vendor_elements), 0 },
  2814. { INT_RANGE(ignore_old_scan_res, 0, 1), 0 },
  2815. { FUNC(freq_list), 0 },
  2816. { INT(scan_cur_freq), 0 },
  2817. { INT(sched_scan_interval), 0 },
  2818. };
  2819. #undef FUNC
  2820. #undef _INT
  2821. #undef INT
  2822. #undef INT_RANGE
  2823. #undef _STR
  2824. #undef STR
  2825. #undef STR_RANGE
  2826. #undef BIN
  2827. #define NUM_GLOBAL_FIELDS ARRAY_SIZE(global_fields)
  2828. int wpa_config_process_global(struct wpa_config *config, char *pos, int line)
  2829. {
  2830. size_t i;
  2831. int ret = 0;
  2832. for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
  2833. const struct global_parse_data *field = &global_fields[i];
  2834. size_t flen = os_strlen(field->name);
  2835. if (os_strncmp(pos, field->name, flen) != 0 ||
  2836. pos[flen] != '=')
  2837. continue;
  2838. if (field->parser(field, config, line, pos + flen + 1)) {
  2839. wpa_printf(MSG_ERROR, "Line %d: failed to "
  2840. "parse '%s'.", line, pos);
  2841. ret = -1;
  2842. }
  2843. if (field->changed_flag == CFG_CHANGED_NFC_PASSWORD_TOKEN)
  2844. config->wps_nfc_pw_from_config = 1;
  2845. config->changed_parameters |= field->changed_flag;
  2846. break;
  2847. }
  2848. if (i == NUM_GLOBAL_FIELDS) {
  2849. #ifdef CONFIG_AP
  2850. if (os_strncmp(pos, "wmm_ac_", 7) == 0) {
  2851. char *tmp = os_strchr(pos, '=');
  2852. if (tmp == NULL) {
  2853. if (line < 0)
  2854. return -1;
  2855. wpa_printf(MSG_ERROR, "Line %d: invalid line "
  2856. "'%s'", line, pos);
  2857. return -1;
  2858. }
  2859. *tmp++ = '\0';
  2860. if (hostapd_config_wmm_ac(config->wmm_ac_params, pos,
  2861. tmp)) {
  2862. wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
  2863. "AC item", line);
  2864. return -1;
  2865. }
  2866. }
  2867. #endif /* CONFIG_AP */
  2868. if (line < 0)
  2869. return -1;
  2870. wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",
  2871. line, pos);
  2872. ret = -1;
  2873. }
  2874. return ret;
  2875. }