config.c 73 KB

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