config.c 71 KB

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