config.c 81 KB

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