config.c 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823
  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 "config.h"
  15. #if !defined(CONFIG_CTRL_IFACE) && defined(CONFIG_NO_CONFIG_WRITE)
  16. #define NO_CONFIG_WRITE
  17. #endif
  18. /*
  19. * Structure for network configuration parsing. This data is used to implement
  20. * a generic parser for each network block variable. The table of configuration
  21. * variables is defined below in this file (ssid_fields[]).
  22. */
  23. struct parse_data {
  24. /* Configuration variable name */
  25. char *name;
  26. /* Parser function for this variable */
  27. int (*parser)(const struct parse_data *data, struct wpa_ssid *ssid,
  28. int line, const char *value);
  29. #ifndef NO_CONFIG_WRITE
  30. /* Writer function (i.e., to get the variable in text format from
  31. * internal presentation). */
  32. char * (*writer)(const struct parse_data *data, struct wpa_ssid *ssid);
  33. #endif /* NO_CONFIG_WRITE */
  34. /* Variable specific parameters for the parser. */
  35. void *param1, *param2, *param3, *param4;
  36. /* 0 = this variable can be included in debug output and ctrl_iface
  37. * 1 = this variable contains key/private data and it must not be
  38. * included in debug output unless explicitly requested. In
  39. * addition, this variable will not be readable through the
  40. * ctrl_iface.
  41. */
  42. int key_data;
  43. };
  44. static char * wpa_config_parse_string(const char *value, size_t *len)
  45. {
  46. if (*value == '"') {
  47. const char *pos;
  48. char *str;
  49. value++;
  50. pos = os_strrchr(value, '"');
  51. if (pos == NULL || pos[1] != '\0')
  52. return NULL;
  53. *len = pos - value;
  54. str = os_malloc(*len + 1);
  55. if (str == NULL)
  56. return NULL;
  57. os_memcpy(str, value, *len);
  58. str[*len] = '\0';
  59. return str;
  60. } else {
  61. u8 *str;
  62. size_t tlen, hlen = os_strlen(value);
  63. if (hlen & 1)
  64. return NULL;
  65. tlen = hlen / 2;
  66. str = os_malloc(tlen + 1);
  67. if (str == NULL)
  68. return NULL;
  69. if (hexstr2bin(value, str, tlen)) {
  70. os_free(str);
  71. return NULL;
  72. }
  73. str[tlen] = '\0';
  74. *len = tlen;
  75. return (char *) str;
  76. }
  77. }
  78. static int wpa_config_parse_str(const struct parse_data *data,
  79. struct wpa_ssid *ssid,
  80. int line, const char *value)
  81. {
  82. size_t res_len, *dst_len;
  83. char **dst, *tmp;
  84. if (os_strcmp(value, "NULL") == 0) {
  85. wpa_printf(MSG_DEBUG, "Unset configuration string '%s'",
  86. data->name);
  87. tmp = NULL;
  88. res_len = 0;
  89. goto set;
  90. }
  91. tmp = wpa_config_parse_string(value, &res_len);
  92. if (tmp == NULL) {
  93. wpa_printf(MSG_ERROR, "Line %d: failed to parse %s '%s'.",
  94. line, data->name,
  95. data->key_data ? "[KEY DATA REMOVED]" : value);
  96. return -1;
  97. }
  98. if (data->key_data) {
  99. wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
  100. (u8 *) tmp, res_len);
  101. } else {
  102. wpa_hexdump_ascii(MSG_MSGDUMP, data->name,
  103. (u8 *) tmp, res_len);
  104. }
  105. if (data->param3 && res_len < (size_t) data->param3) {
  106. wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
  107. "min_len=%ld)", line, data->name,
  108. (unsigned long) res_len, (long) data->param3);
  109. os_free(tmp);
  110. return -1;
  111. }
  112. if (data->param4 && res_len > (size_t) data->param4) {
  113. wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
  114. "max_len=%ld)", line, data->name,
  115. (unsigned long) res_len, (long) data->param4);
  116. os_free(tmp);
  117. return -1;
  118. }
  119. set:
  120. dst = (char **) (((u8 *) ssid) + (long) data->param1);
  121. dst_len = (size_t *) (((u8 *) ssid) + (long) data->param2);
  122. os_free(*dst);
  123. *dst = tmp;
  124. if (data->param2)
  125. *dst_len = res_len;
  126. return 0;
  127. }
  128. #ifndef NO_CONFIG_WRITE
  129. static int is_hex(const u8 *data, size_t len)
  130. {
  131. size_t i;
  132. for (i = 0; i < len; i++) {
  133. if (data[i] < 32 || data[i] >= 127)
  134. return 1;
  135. }
  136. return 0;
  137. }
  138. static char * wpa_config_write_string_ascii(const u8 *value, size_t len)
  139. {
  140. char *buf;
  141. buf = os_malloc(len + 3);
  142. if (buf == NULL)
  143. return NULL;
  144. buf[0] = '"';
  145. os_memcpy(buf + 1, value, len);
  146. buf[len + 1] = '"';
  147. buf[len + 2] = '\0';
  148. return buf;
  149. }
  150. static char * wpa_config_write_string_hex(const u8 *value, size_t len)
  151. {
  152. char *buf;
  153. buf = os_zalloc(2 * len + 1);
  154. if (buf == NULL)
  155. return NULL;
  156. wpa_snprintf_hex(buf, 2 * len + 1, value, len);
  157. return buf;
  158. }
  159. static char * wpa_config_write_string(const u8 *value, size_t len)
  160. {
  161. if (value == NULL)
  162. return NULL;
  163. if (is_hex(value, len))
  164. return wpa_config_write_string_hex(value, len);
  165. else
  166. return wpa_config_write_string_ascii(value, len);
  167. }
  168. static char * wpa_config_write_str(const struct parse_data *data,
  169. struct wpa_ssid *ssid)
  170. {
  171. size_t len;
  172. char **src;
  173. src = (char **) (((u8 *) ssid) + (long) data->param1);
  174. if (*src == NULL)
  175. return NULL;
  176. if (data->param2)
  177. len = *((size_t *) (((u8 *) ssid) + (long) data->param2));
  178. else
  179. len = os_strlen(*src);
  180. return wpa_config_write_string((const u8 *) *src, len);
  181. }
  182. #endif /* NO_CONFIG_WRITE */
  183. static int wpa_config_parse_int(const struct parse_data *data,
  184. struct wpa_ssid *ssid,
  185. int line, const char *value)
  186. {
  187. int *dst;
  188. dst = (int *) (((u8 *) ssid) + (long) data->param1);
  189. *dst = atoi(value);
  190. wpa_printf(MSG_MSGDUMP, "%s=%d (0x%x)", data->name, *dst, *dst);
  191. if (data->param3 && *dst < (long) data->param3) {
  192. wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
  193. "min_value=%ld)", line, data->name, *dst,
  194. (long) data->param3);
  195. *dst = (long) data->param3;
  196. return -1;
  197. }
  198. if (data->param4 && *dst > (long) data->param4) {
  199. wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
  200. "max_value=%ld)", line, data->name, *dst,
  201. (long) data->param4);
  202. *dst = (long) data->param4;
  203. return -1;
  204. }
  205. return 0;
  206. }
  207. #ifndef NO_CONFIG_WRITE
  208. static char * wpa_config_write_int(const struct parse_data *data,
  209. struct wpa_ssid *ssid)
  210. {
  211. int *src, res;
  212. char *value;
  213. src = (int *) (((u8 *) ssid) + (long) data->param1);
  214. value = os_malloc(20);
  215. if (value == NULL)
  216. return NULL;
  217. res = os_snprintf(value, 20, "%d", *src);
  218. if (res < 0 || res >= 20) {
  219. os_free(value);
  220. return NULL;
  221. }
  222. value[20 - 1] = '\0';
  223. return value;
  224. }
  225. #endif /* NO_CONFIG_WRITE */
  226. static int wpa_config_parse_bssid(const struct parse_data *data,
  227. struct wpa_ssid *ssid, int line,
  228. const char *value)
  229. {
  230. if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
  231. os_strcmp(value, "any") == 0) {
  232. ssid->bssid_set = 0;
  233. wpa_printf(MSG_MSGDUMP, "BSSID any");
  234. return 0;
  235. }
  236. if (hwaddr_aton(value, ssid->bssid)) {
  237. wpa_printf(MSG_ERROR, "Line %d: Invalid BSSID '%s'.",
  238. line, value);
  239. return -1;
  240. }
  241. ssid->bssid_set = 1;
  242. wpa_hexdump(MSG_MSGDUMP, "BSSID", ssid->bssid, ETH_ALEN);
  243. return 0;
  244. }
  245. #ifndef NO_CONFIG_WRITE
  246. static char * wpa_config_write_bssid(const struct parse_data *data,
  247. struct wpa_ssid *ssid)
  248. {
  249. char *value;
  250. int res;
  251. if (!ssid->bssid_set)
  252. return NULL;
  253. value = os_malloc(20);
  254. if (value == NULL)
  255. return NULL;
  256. res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->bssid));
  257. if (res < 0 || res >= 20) {
  258. os_free(value);
  259. return NULL;
  260. }
  261. value[20 - 1] = '\0';
  262. return value;
  263. }
  264. #endif /* NO_CONFIG_WRITE */
  265. static int wpa_config_parse_psk(const struct parse_data *data,
  266. struct wpa_ssid *ssid, int line,
  267. const char *value)
  268. {
  269. if (*value == '"') {
  270. #ifndef CONFIG_NO_PBKDF2
  271. const char *pos;
  272. size_t len;
  273. value++;
  274. pos = os_strrchr(value, '"');
  275. if (pos)
  276. len = pos - value;
  277. else
  278. len = os_strlen(value);
  279. if (len < 8 || len > 63) {
  280. wpa_printf(MSG_ERROR, "Line %d: Invalid passphrase "
  281. "length %lu (expected: 8..63) '%s'.",
  282. line, (unsigned long) len, value);
  283. return -1;
  284. }
  285. wpa_hexdump_ascii_key(MSG_MSGDUMP, "PSK (ASCII passphrase)",
  286. (u8 *) value, len);
  287. if (ssid->passphrase && os_strlen(ssid->passphrase) == len &&
  288. os_memcmp(ssid->passphrase, value, len) == 0)
  289. return 0;
  290. ssid->psk_set = 0;
  291. os_free(ssid->passphrase);
  292. ssid->passphrase = os_malloc(len + 1);
  293. if (ssid->passphrase == NULL)
  294. return -1;
  295. os_memcpy(ssid->passphrase, value, len);
  296. ssid->passphrase[len] = '\0';
  297. return 0;
  298. #else /* CONFIG_NO_PBKDF2 */
  299. wpa_printf(MSG_ERROR, "Line %d: ASCII passphrase not "
  300. "supported.", line);
  301. return -1;
  302. #endif /* CONFIG_NO_PBKDF2 */
  303. }
  304. if (hexstr2bin(value, ssid->psk, PMK_LEN) ||
  305. value[PMK_LEN * 2] != '\0') {
  306. wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
  307. line, value);
  308. return -1;
  309. }
  310. os_free(ssid->passphrase);
  311. ssid->passphrase = NULL;
  312. ssid->psk_set = 1;
  313. wpa_hexdump_key(MSG_MSGDUMP, "PSK", ssid->psk, PMK_LEN);
  314. return 0;
  315. }
  316. #ifndef NO_CONFIG_WRITE
  317. static char * wpa_config_write_psk(const struct parse_data *data,
  318. struct wpa_ssid *ssid)
  319. {
  320. if (ssid->passphrase)
  321. return wpa_config_write_string_ascii(
  322. (const u8 *) ssid->passphrase,
  323. os_strlen(ssid->passphrase));
  324. if (ssid->psk_set)
  325. return wpa_config_write_string_hex(ssid->psk, PMK_LEN);
  326. return NULL;
  327. }
  328. #endif /* NO_CONFIG_WRITE */
  329. static int wpa_config_parse_proto(const struct parse_data *data,
  330. struct wpa_ssid *ssid, int line,
  331. const char *value)
  332. {
  333. int val = 0, last, errors = 0;
  334. char *start, *end, *buf;
  335. buf = os_strdup(value);
  336. if (buf == NULL)
  337. return -1;
  338. start = buf;
  339. while (*start != '\0') {
  340. while (*start == ' ' || *start == '\t')
  341. start++;
  342. if (*start == '\0')
  343. break;
  344. end = start;
  345. while (*end != ' ' && *end != '\t' && *end != '\0')
  346. end++;
  347. last = *end == '\0';
  348. *end = '\0';
  349. if (os_strcmp(start, "WPA") == 0)
  350. val |= WPA_PROTO_WPA;
  351. else if (os_strcmp(start, "RSN") == 0 ||
  352. os_strcmp(start, "WPA2") == 0)
  353. val |= WPA_PROTO_RSN;
  354. else {
  355. wpa_printf(MSG_ERROR, "Line %d: invalid proto '%s'",
  356. line, start);
  357. errors++;
  358. }
  359. if (last)
  360. break;
  361. start = end + 1;
  362. }
  363. os_free(buf);
  364. if (val == 0) {
  365. wpa_printf(MSG_ERROR,
  366. "Line %d: no proto values configured.", line);
  367. errors++;
  368. }
  369. wpa_printf(MSG_MSGDUMP, "proto: 0x%x", val);
  370. ssid->proto = val;
  371. return errors ? -1 : 0;
  372. }
  373. #ifndef NO_CONFIG_WRITE
  374. static char * wpa_config_write_proto(const struct parse_data *data,
  375. struct wpa_ssid *ssid)
  376. {
  377. int first = 1, ret;
  378. char *buf, *pos, *end;
  379. pos = buf = os_zalloc(10);
  380. if (buf == NULL)
  381. return NULL;
  382. end = buf + 10;
  383. if (ssid->proto & WPA_PROTO_WPA) {
  384. ret = os_snprintf(pos, end - pos, "%sWPA", first ? "" : " ");
  385. if (ret < 0 || ret >= end - pos)
  386. return buf;
  387. pos += ret;
  388. first = 0;
  389. }
  390. if (ssid->proto & WPA_PROTO_RSN) {
  391. ret = os_snprintf(pos, end - pos, "%sRSN", first ? "" : " ");
  392. if (ret < 0 || ret >= end - pos)
  393. return buf;
  394. pos += ret;
  395. first = 0;
  396. }
  397. return buf;
  398. }
  399. #endif /* NO_CONFIG_WRITE */
  400. static int wpa_config_parse_key_mgmt(const struct parse_data *data,
  401. struct wpa_ssid *ssid, int line,
  402. const char *value)
  403. {
  404. int val = 0, last, errors = 0;
  405. char *start, *end, *buf;
  406. buf = os_strdup(value);
  407. if (buf == NULL)
  408. return -1;
  409. start = buf;
  410. while (*start != '\0') {
  411. while (*start == ' ' || *start == '\t')
  412. start++;
  413. if (*start == '\0')
  414. break;
  415. end = start;
  416. while (*end != ' ' && *end != '\t' && *end != '\0')
  417. end++;
  418. last = *end == '\0';
  419. *end = '\0';
  420. if (os_strcmp(start, "WPA-PSK") == 0)
  421. val |= WPA_KEY_MGMT_PSK;
  422. else if (os_strcmp(start, "WPA-EAP") == 0)
  423. val |= WPA_KEY_MGMT_IEEE8021X;
  424. else if (os_strcmp(start, "IEEE8021X") == 0)
  425. val |= WPA_KEY_MGMT_IEEE8021X_NO_WPA;
  426. else if (os_strcmp(start, "NONE") == 0)
  427. val |= WPA_KEY_MGMT_NONE;
  428. else if (os_strcmp(start, "WPA-NONE") == 0)
  429. val |= WPA_KEY_MGMT_WPA_NONE;
  430. #ifdef CONFIG_IEEE80211R
  431. else if (os_strcmp(start, "FT-PSK") == 0)
  432. val |= WPA_KEY_MGMT_FT_PSK;
  433. else if (os_strcmp(start, "FT-EAP") == 0)
  434. val |= WPA_KEY_MGMT_FT_IEEE8021X;
  435. #endif /* CONFIG_IEEE80211R */
  436. #ifdef CONFIG_IEEE80211W
  437. else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
  438. val |= WPA_KEY_MGMT_PSK_SHA256;
  439. else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
  440. val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
  441. #endif /* CONFIG_IEEE80211W */
  442. #ifdef CONFIG_WPS
  443. else if (os_strcmp(start, "WPS") == 0)
  444. val |= WPA_KEY_MGMT_WPS;
  445. #endif /* CONFIG_WPS */
  446. else {
  447. wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
  448. line, start);
  449. errors++;
  450. }
  451. if (last)
  452. break;
  453. start = end + 1;
  454. }
  455. os_free(buf);
  456. if (val == 0) {
  457. wpa_printf(MSG_ERROR,
  458. "Line %d: no key_mgmt values configured.", line);
  459. errors++;
  460. }
  461. wpa_printf(MSG_MSGDUMP, "key_mgmt: 0x%x", val);
  462. ssid->key_mgmt = val;
  463. return errors ? -1 : 0;
  464. }
  465. #ifndef NO_CONFIG_WRITE
  466. static char * wpa_config_write_key_mgmt(const struct parse_data *data,
  467. struct wpa_ssid *ssid)
  468. {
  469. char *buf, *pos, *end;
  470. int ret;
  471. pos = buf = os_zalloc(50);
  472. if (buf == NULL)
  473. return NULL;
  474. end = buf + 50;
  475. if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) {
  476. ret = os_snprintf(pos, end - pos, "%sWPA-PSK",
  477. pos == buf ? "" : " ");
  478. if (ret < 0 || ret >= end - pos) {
  479. end[-1] = '\0';
  480. return buf;
  481. }
  482. pos += ret;
  483. }
  484. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
  485. ret = os_snprintf(pos, end - pos, "%sWPA-EAP",
  486. pos == buf ? "" : " ");
  487. if (ret < 0 || ret >= end - pos) {
  488. end[-1] = '\0';
  489. return buf;
  490. }
  491. pos += ret;
  492. }
  493. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
  494. ret = os_snprintf(pos, end - pos, "%sIEEE8021X",
  495. pos == buf ? "" : " ");
  496. if (ret < 0 || ret >= end - pos) {
  497. end[-1] = '\0';
  498. return buf;
  499. }
  500. pos += ret;
  501. }
  502. if (ssid->key_mgmt & WPA_KEY_MGMT_NONE) {
  503. ret = os_snprintf(pos, end - pos, "%sNONE",
  504. pos == buf ? "" : " ");
  505. if (ret < 0 || ret >= end - pos) {
  506. end[-1] = '\0';
  507. return buf;
  508. }
  509. pos += ret;
  510. }
  511. if (ssid->key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
  512. ret = os_snprintf(pos, end - pos, "%sWPA-NONE",
  513. pos == buf ? "" : " ");
  514. if (ret < 0 || ret >= end - pos) {
  515. end[-1] = '\0';
  516. return buf;
  517. }
  518. pos += ret;
  519. }
  520. #ifdef CONFIG_IEEE80211R
  521. if (ssid->key_mgmt & WPA_KEY_MGMT_FT_PSK)
  522. pos += os_snprintf(pos, end - pos, "%sFT-PSK",
  523. pos == buf ? "" : " ");
  524. if (ssid->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X)
  525. pos += os_snprintf(pos, end - pos, "%sFT-EAP",
  526. pos == buf ? "" : " ");
  527. #endif /* CONFIG_IEEE80211R */
  528. #ifdef CONFIG_IEEE80211W
  529. if (ssid->key_mgmt & WPA_KEY_MGMT_PSK_SHA256)
  530. pos += os_snprintf(pos, end - pos, "%sWPA-PSK-SHA256",
  531. pos == buf ? "" : " ");
  532. if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256)
  533. pos += os_snprintf(pos, end - pos, "%sWPA-EAP-SHA256",
  534. pos == buf ? "" : " ");
  535. #endif /* CONFIG_IEEE80211W */
  536. #ifdef CONFIG_WPS
  537. if (ssid->key_mgmt & WPA_KEY_MGMT_WPS)
  538. pos += os_snprintf(pos, end - pos, "%sWPS",
  539. pos == buf ? "" : " ");
  540. #endif /* CONFIG_WPS */
  541. return buf;
  542. }
  543. #endif /* NO_CONFIG_WRITE */
  544. static int wpa_config_parse_cipher(int line, const char *value)
  545. {
  546. int val = 0, last;
  547. char *start, *end, *buf;
  548. buf = os_strdup(value);
  549. if (buf == NULL)
  550. return -1;
  551. start = buf;
  552. while (*start != '\0') {
  553. while (*start == ' ' || *start == '\t')
  554. start++;
  555. if (*start == '\0')
  556. break;
  557. end = start;
  558. while (*end != ' ' && *end != '\t' && *end != '\0')
  559. end++;
  560. last = *end == '\0';
  561. *end = '\0';
  562. if (os_strcmp(start, "CCMP") == 0)
  563. val |= WPA_CIPHER_CCMP;
  564. else if (os_strcmp(start, "TKIP") == 0)
  565. val |= WPA_CIPHER_TKIP;
  566. else if (os_strcmp(start, "WEP104") == 0)
  567. val |= WPA_CIPHER_WEP104;
  568. else if (os_strcmp(start, "WEP40") == 0)
  569. val |= WPA_CIPHER_WEP40;
  570. else if (os_strcmp(start, "NONE") == 0)
  571. val |= WPA_CIPHER_NONE;
  572. else {
  573. wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
  574. line, start);
  575. os_free(buf);
  576. return -1;
  577. }
  578. if (last)
  579. break;
  580. start = end + 1;
  581. }
  582. os_free(buf);
  583. if (val == 0) {
  584. wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
  585. line);
  586. return -1;
  587. }
  588. return val;
  589. }
  590. #ifndef NO_CONFIG_WRITE
  591. static char * wpa_config_write_cipher(int cipher)
  592. {
  593. char *buf, *pos, *end;
  594. int ret;
  595. pos = buf = os_zalloc(50);
  596. if (buf == NULL)
  597. return NULL;
  598. end = buf + 50;
  599. if (cipher & WPA_CIPHER_CCMP) {
  600. ret = os_snprintf(pos, end - pos, "%sCCMP",
  601. pos == buf ? "" : " ");
  602. if (ret < 0 || ret >= end - pos) {
  603. end[-1] = '\0';
  604. return buf;
  605. }
  606. pos += ret;
  607. }
  608. if (cipher & WPA_CIPHER_TKIP) {
  609. ret = os_snprintf(pos, end - pos, "%sTKIP",
  610. pos == buf ? "" : " ");
  611. if (ret < 0 || ret >= end - pos) {
  612. end[-1] = '\0';
  613. return buf;
  614. }
  615. pos += ret;
  616. }
  617. if (cipher & WPA_CIPHER_WEP104) {
  618. ret = os_snprintf(pos, end - pos, "%sWEP104",
  619. pos == buf ? "" : " ");
  620. if (ret < 0 || ret >= end - pos) {
  621. end[-1] = '\0';
  622. return buf;
  623. }
  624. pos += ret;
  625. }
  626. if (cipher & WPA_CIPHER_WEP40) {
  627. ret = os_snprintf(pos, end - pos, "%sWEP40",
  628. pos == buf ? "" : " ");
  629. if (ret < 0 || ret >= end - pos) {
  630. end[-1] = '\0';
  631. return buf;
  632. }
  633. pos += ret;
  634. }
  635. if (cipher & WPA_CIPHER_NONE) {
  636. ret = os_snprintf(pos, end - pos, "%sNONE",
  637. pos == buf ? "" : " ");
  638. if (ret < 0 || ret >= end - pos) {
  639. end[-1] = '\0';
  640. return buf;
  641. }
  642. pos += ret;
  643. }
  644. return buf;
  645. }
  646. #endif /* NO_CONFIG_WRITE */
  647. static int wpa_config_parse_pairwise(const struct parse_data *data,
  648. struct wpa_ssid *ssid, int line,
  649. const char *value)
  650. {
  651. int val;
  652. val = wpa_config_parse_cipher(line, value);
  653. if (val == -1)
  654. return -1;
  655. if (val & ~(WPA_CIPHER_CCMP | WPA_CIPHER_TKIP | 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_TKIP | WPA_CIPHER_WEP104 |
  680. 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_zalloc((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(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(methods,
  905. (num_methods + 1) * 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(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. if (os_strncmp(value, "hash:", 5) != 0) {
  989. char *tmp;
  990. size_t res_len;
  991. tmp = wpa_config_parse_string(value, &res_len);
  992. if (tmp == NULL) {
  993. wpa_printf(MSG_ERROR, "Line %d: failed to parse "
  994. "password.", line);
  995. return -1;
  996. }
  997. wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
  998. (u8 *) tmp, res_len);
  999. os_free(ssid->eap.password);
  1000. ssid->eap.password = (u8 *) tmp;
  1001. ssid->eap.password_len = res_len;
  1002. ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
  1003. return 0;
  1004. }
  1005. /* NtPasswordHash: hash:<32 hex digits> */
  1006. if (os_strlen(value + 5) != 2 * 16) {
  1007. wpa_printf(MSG_ERROR, "Line %d: Invalid password hash length "
  1008. "(expected 32 hex digits)", line);
  1009. return -1;
  1010. }
  1011. hash = os_malloc(16);
  1012. if (hash == NULL)
  1013. return -1;
  1014. if (hexstr2bin(value + 5, hash, 16)) {
  1015. os_free(hash);
  1016. wpa_printf(MSG_ERROR, "Line %d: Invalid password hash", line);
  1017. return -1;
  1018. }
  1019. wpa_hexdump_key(MSG_MSGDUMP, data->name, hash, 16);
  1020. os_free(ssid->eap.password);
  1021. ssid->eap.password = hash;
  1022. ssid->eap.password_len = 16;
  1023. ssid->eap.flags |= EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
  1024. return 0;
  1025. }
  1026. static char * wpa_config_write_password(const struct parse_data *data,
  1027. struct wpa_ssid *ssid)
  1028. {
  1029. char *buf;
  1030. if (ssid->eap.password == NULL)
  1031. return NULL;
  1032. if (!(ssid->eap.flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH)) {
  1033. return wpa_config_write_string(
  1034. ssid->eap.password, ssid->eap.password_len);
  1035. }
  1036. buf = os_malloc(5 + 32 + 1);
  1037. if (buf == NULL)
  1038. return NULL;
  1039. os_memcpy(buf, "hash:", 5);
  1040. wpa_snprintf_hex(buf + 5, 32 + 1, ssid->eap.password, 16);
  1041. return buf;
  1042. }
  1043. #endif /* IEEE8021X_EAPOL */
  1044. static int wpa_config_parse_wep_key(u8 *key, size_t *len, int line,
  1045. const char *value, int idx)
  1046. {
  1047. char *buf, title[20];
  1048. int res;
  1049. buf = wpa_config_parse_string(value, len);
  1050. if (buf == NULL) {
  1051. wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key %d '%s'.",
  1052. line, idx, value);
  1053. return -1;
  1054. }
  1055. if (*len > MAX_WEP_KEY_LEN) {
  1056. wpa_printf(MSG_ERROR, "Line %d: Too long WEP key %d '%s'.",
  1057. line, idx, value);
  1058. os_free(buf);
  1059. return -1;
  1060. }
  1061. os_memcpy(key, buf, *len);
  1062. os_free(buf);
  1063. res = os_snprintf(title, sizeof(title), "wep_key%d", idx);
  1064. if (res >= 0 && (size_t) res < sizeof(title))
  1065. wpa_hexdump_key(MSG_MSGDUMP, title, key, *len);
  1066. return 0;
  1067. }
  1068. static int wpa_config_parse_wep_key0(const struct parse_data *data,
  1069. struct wpa_ssid *ssid, int line,
  1070. const char *value)
  1071. {
  1072. return wpa_config_parse_wep_key(ssid->wep_key[0],
  1073. &ssid->wep_key_len[0], line,
  1074. value, 0);
  1075. }
  1076. static int wpa_config_parse_wep_key1(const struct parse_data *data,
  1077. struct wpa_ssid *ssid, int line,
  1078. const char *value)
  1079. {
  1080. return wpa_config_parse_wep_key(ssid->wep_key[1],
  1081. &ssid->wep_key_len[1], line,
  1082. value, 1);
  1083. }
  1084. static int wpa_config_parse_wep_key2(const struct parse_data *data,
  1085. struct wpa_ssid *ssid, int line,
  1086. const char *value)
  1087. {
  1088. return wpa_config_parse_wep_key(ssid->wep_key[2],
  1089. &ssid->wep_key_len[2], line,
  1090. value, 2);
  1091. }
  1092. static int wpa_config_parse_wep_key3(const struct parse_data *data,
  1093. struct wpa_ssid *ssid, int line,
  1094. const char *value)
  1095. {
  1096. return wpa_config_parse_wep_key(ssid->wep_key[3],
  1097. &ssid->wep_key_len[3], line,
  1098. value, 3);
  1099. }
  1100. #ifndef NO_CONFIG_WRITE
  1101. static char * wpa_config_write_wep_key(struct wpa_ssid *ssid, int idx)
  1102. {
  1103. if (ssid->wep_key_len[idx] == 0)
  1104. return NULL;
  1105. return wpa_config_write_string(ssid->wep_key[idx],
  1106. ssid->wep_key_len[idx]);
  1107. }
  1108. static char * wpa_config_write_wep_key0(const struct parse_data *data,
  1109. struct wpa_ssid *ssid)
  1110. {
  1111. return wpa_config_write_wep_key(ssid, 0);
  1112. }
  1113. static char * wpa_config_write_wep_key1(const struct parse_data *data,
  1114. struct wpa_ssid *ssid)
  1115. {
  1116. return wpa_config_write_wep_key(ssid, 1);
  1117. }
  1118. static char * wpa_config_write_wep_key2(const struct parse_data *data,
  1119. struct wpa_ssid *ssid)
  1120. {
  1121. return wpa_config_write_wep_key(ssid, 2);
  1122. }
  1123. static char * wpa_config_write_wep_key3(const struct parse_data *data,
  1124. struct wpa_ssid *ssid)
  1125. {
  1126. return wpa_config_write_wep_key(ssid, 3);
  1127. }
  1128. #endif /* NO_CONFIG_WRITE */
  1129. #ifdef CONFIG_P2P
  1130. static int wpa_config_parse_p2p_client_list(const struct parse_data *data,
  1131. struct wpa_ssid *ssid, int line,
  1132. const char *value)
  1133. {
  1134. const char *pos;
  1135. u8 *buf, *n, addr[ETH_ALEN];
  1136. size_t count;
  1137. buf = NULL;
  1138. count = 0;
  1139. pos = value;
  1140. while (pos && *pos) {
  1141. while (*pos == ' ')
  1142. pos++;
  1143. if (hwaddr_aton(pos, addr)) {
  1144. wpa_printf(MSG_ERROR, "Line %d: Invalid "
  1145. "p2p_client_list address '%s'.",
  1146. line, value);
  1147. /* continue anyway */
  1148. } else {
  1149. n = os_realloc(buf, (count + 1) * ETH_ALEN);
  1150. if (n == NULL) {
  1151. os_free(buf);
  1152. return -1;
  1153. }
  1154. buf = n;
  1155. os_memcpy(buf + count * ETH_ALEN, addr, ETH_ALEN);
  1156. count++;
  1157. wpa_hexdump(MSG_MSGDUMP, "p2p_client_list",
  1158. addr, ETH_ALEN);
  1159. }
  1160. pos = os_strchr(pos, ' ');
  1161. }
  1162. os_free(ssid->p2p_client_list);
  1163. ssid->p2p_client_list = buf;
  1164. ssid->num_p2p_clients = count;
  1165. return 0;
  1166. }
  1167. #ifndef NO_CONFIG_WRITE
  1168. static char * wpa_config_write_p2p_client_list(const struct parse_data *data,
  1169. struct wpa_ssid *ssid)
  1170. {
  1171. char *value, *end, *pos;
  1172. int res;
  1173. size_t i;
  1174. if (ssid->p2p_client_list == NULL || ssid->num_p2p_clients == 0)
  1175. return NULL;
  1176. value = os_malloc(20 * ssid->num_p2p_clients);
  1177. if (value == NULL)
  1178. return NULL;
  1179. pos = value;
  1180. end = value + 20 * ssid->num_p2p_clients;
  1181. for (i = 0; i < ssid->num_p2p_clients; i++) {
  1182. res = os_snprintf(pos, end - pos, MACSTR " ",
  1183. MAC2STR(ssid->p2p_client_list +
  1184. i * ETH_ALEN));
  1185. if (res < 0 || res >= end - pos) {
  1186. os_free(value);
  1187. return NULL;
  1188. }
  1189. pos += res;
  1190. }
  1191. if (pos > value)
  1192. pos[-1] = '\0';
  1193. return value;
  1194. }
  1195. #endif /* NO_CONFIG_WRITE */
  1196. #endif /* CONFIG_P2P */
  1197. /* Helper macros for network block parser */
  1198. #ifdef OFFSET
  1199. #undef OFFSET
  1200. #endif /* OFFSET */
  1201. /* OFFSET: Get offset of a variable within the wpa_ssid structure */
  1202. #define OFFSET(v) ((void *) &((struct wpa_ssid *) 0)->v)
  1203. /* STR: Define a string variable for an ASCII string; f = field name */
  1204. #ifdef NO_CONFIG_WRITE
  1205. #define _STR(f) #f, wpa_config_parse_str, OFFSET(f)
  1206. #define _STRe(f) #f, wpa_config_parse_str, OFFSET(eap.f)
  1207. #else /* NO_CONFIG_WRITE */
  1208. #define _STR(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(f)
  1209. #define _STRe(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(eap.f)
  1210. #endif /* NO_CONFIG_WRITE */
  1211. #define STR(f) _STR(f), NULL, NULL, NULL, 0
  1212. #define STRe(f) _STRe(f), NULL, NULL, NULL, 0
  1213. #define STR_KEY(f) _STR(f), NULL, NULL, NULL, 1
  1214. #define STR_KEYe(f) _STRe(f), NULL, NULL, NULL, 1
  1215. /* STR_LEN: Define a string variable with a separate variable for storing the
  1216. * data length. Unlike STR(), this can be used to store arbitrary binary data
  1217. * (i.e., even nul termination character). */
  1218. #define _STR_LEN(f) _STR(f), OFFSET(f ## _len)
  1219. #define _STR_LENe(f) _STRe(f), OFFSET(eap.f ## _len)
  1220. #define STR_LEN(f) _STR_LEN(f), NULL, NULL, 0
  1221. #define STR_LENe(f) _STR_LENe(f), NULL, NULL, 0
  1222. #define STR_LEN_KEY(f) _STR_LEN(f), NULL, NULL, 1
  1223. /* STR_RANGE: Like STR_LEN(), but with minimum and maximum allowed length
  1224. * explicitly specified. */
  1225. #define _STR_RANGE(f, min, max) _STR_LEN(f), (void *) (min), (void *) (max)
  1226. #define STR_RANGE(f, min, max) _STR_RANGE(f, min, max), 0
  1227. #define STR_RANGE_KEY(f, min, max) _STR_RANGE(f, min, max), 1
  1228. #ifdef NO_CONFIG_WRITE
  1229. #define _INT(f) #f, wpa_config_parse_int, OFFSET(f), (void *) 0
  1230. #define _INTe(f) #f, wpa_config_parse_int, OFFSET(eap.f), (void *) 0
  1231. #else /* NO_CONFIG_WRITE */
  1232. #define _INT(f) #f, wpa_config_parse_int, wpa_config_write_int, \
  1233. OFFSET(f), (void *) 0
  1234. #define _INTe(f) #f, wpa_config_parse_int, wpa_config_write_int, \
  1235. OFFSET(eap.f), (void *) 0
  1236. #endif /* NO_CONFIG_WRITE */
  1237. /* INT: Define an integer variable */
  1238. #define INT(f) _INT(f), NULL, NULL, 0
  1239. #define INTe(f) _INTe(f), NULL, NULL, 0
  1240. /* INT_RANGE: Define an integer variable with allowed value range */
  1241. #define INT_RANGE(f, min, max) _INT(f), (void *) (min), (void *) (max), 0
  1242. /* FUNC: Define a configuration variable that uses a custom function for
  1243. * parsing and writing the value. */
  1244. #ifdef NO_CONFIG_WRITE
  1245. #define _FUNC(f) #f, wpa_config_parse_ ## f, NULL, NULL, NULL, NULL
  1246. #else /* NO_CONFIG_WRITE */
  1247. #define _FUNC(f) #f, wpa_config_parse_ ## f, wpa_config_write_ ## f, \
  1248. NULL, NULL, NULL, NULL
  1249. #endif /* NO_CONFIG_WRITE */
  1250. #define FUNC(f) _FUNC(f), 0
  1251. #define FUNC_KEY(f) _FUNC(f), 1
  1252. /*
  1253. * Table of network configuration variables. This table is used to parse each
  1254. * network configuration variable, e.g., each line in wpa_supplicant.conf file
  1255. * that is inside a network block.
  1256. *
  1257. * This table is generated using the helper macros defined above and with
  1258. * generous help from the C pre-processor. The field name is stored as a string
  1259. * into .name and for STR and INT types, the offset of the target buffer within
  1260. * struct wpa_ssid is stored in .param1. .param2 (if not NULL) is similar
  1261. * offset to the field containing the length of the configuration variable.
  1262. * .param3 and .param4 can be used to mark the allowed range (length for STR
  1263. * and value for INT).
  1264. *
  1265. * For each configuration line in wpa_supplicant.conf, the parser goes through
  1266. * this table and select the entry that matches with the field name. The parser
  1267. * function (.parser) is then called to parse the actual value of the field.
  1268. *
  1269. * This kind of mechanism makes it easy to add new configuration parameters,
  1270. * since only one line needs to be added into this table and into the
  1271. * struct wpa_ssid definition if the new variable is either a string or
  1272. * integer. More complex types will need to use their own parser and writer
  1273. * functions.
  1274. */
  1275. static const struct parse_data ssid_fields[] = {
  1276. { STR_RANGE(ssid, 0, MAX_SSID_LEN) },
  1277. { INT_RANGE(scan_ssid, 0, 1) },
  1278. { FUNC(bssid) },
  1279. { FUNC_KEY(psk) },
  1280. { FUNC(proto) },
  1281. { FUNC(key_mgmt) },
  1282. { FUNC(pairwise) },
  1283. { FUNC(group) },
  1284. { FUNC(auth_alg) },
  1285. { FUNC(scan_freq) },
  1286. { FUNC(freq_list) },
  1287. #ifdef IEEE8021X_EAPOL
  1288. { FUNC(eap) },
  1289. { STR_LENe(identity) },
  1290. { STR_LENe(anonymous_identity) },
  1291. { FUNC_KEY(password) },
  1292. { STRe(ca_cert) },
  1293. { STRe(ca_path) },
  1294. { STRe(client_cert) },
  1295. { STRe(private_key) },
  1296. { STR_KEYe(private_key_passwd) },
  1297. { STRe(dh_file) },
  1298. { STRe(subject_match) },
  1299. { STRe(altsubject_match) },
  1300. { STRe(ca_cert2) },
  1301. { STRe(ca_path2) },
  1302. { STRe(client_cert2) },
  1303. { STRe(private_key2) },
  1304. { STR_KEYe(private_key2_passwd) },
  1305. { STRe(dh_file2) },
  1306. { STRe(subject_match2) },
  1307. { STRe(altsubject_match2) },
  1308. { STRe(phase1) },
  1309. { STRe(phase2) },
  1310. { STRe(pcsc) },
  1311. { STR_KEYe(pin) },
  1312. { STRe(engine_id) },
  1313. { STRe(key_id) },
  1314. { STRe(cert_id) },
  1315. { STRe(ca_cert_id) },
  1316. { STR_KEYe(pin2) },
  1317. { STRe(engine2_id) },
  1318. { STRe(key2_id) },
  1319. { STRe(cert2_id) },
  1320. { STRe(ca_cert2_id) },
  1321. { INTe(engine) },
  1322. { INTe(engine2) },
  1323. { INT(eapol_flags) },
  1324. #endif /* IEEE8021X_EAPOL */
  1325. { FUNC_KEY(wep_key0) },
  1326. { FUNC_KEY(wep_key1) },
  1327. { FUNC_KEY(wep_key2) },
  1328. { FUNC_KEY(wep_key3) },
  1329. { INT(wep_tx_keyidx) },
  1330. { INT(priority) },
  1331. #ifdef IEEE8021X_EAPOL
  1332. { INT(eap_workaround) },
  1333. { STRe(pac_file) },
  1334. { INTe(fragment_size) },
  1335. #endif /* IEEE8021X_EAPOL */
  1336. { INT_RANGE(mode, 0, 4) },
  1337. { INT_RANGE(proactive_key_caching, 0, 1) },
  1338. { INT_RANGE(disabled, 0, 2) },
  1339. { STR(id_str) },
  1340. #ifdef CONFIG_IEEE80211W
  1341. { INT_RANGE(ieee80211w, 0, 2) },
  1342. #endif /* CONFIG_IEEE80211W */
  1343. { INT_RANGE(peerkey, 0, 1) },
  1344. { INT_RANGE(mixed_cell, 0, 1) },
  1345. { INT_RANGE(frequency, 0, 10000) },
  1346. { INT(wpa_ptk_rekey) },
  1347. { STR(bgscan) },
  1348. { INT_RANGE(ignore_broadcast_ssid, 0, 2) },
  1349. #ifdef CONFIG_P2P
  1350. { FUNC(p2p_client_list) },
  1351. #endif /* CONFIG_P2P */
  1352. #ifdef CONFIG_HT_OVERRIDES
  1353. { INT_RANGE(disable_ht, 0, 1) },
  1354. { INT_RANGE(disable_ht40, -1, 1) },
  1355. { INT_RANGE(disable_max_amsdu, -1, 1) },
  1356. { INT_RANGE(ampdu_factor, -1, 3) },
  1357. { INT_RANGE(ampdu_density, -1, 7) },
  1358. { STR(ht_mcs) },
  1359. #endif /* CONFIG_HT_OVERRIDES */
  1360. { INT(ap_max_inactivity) },
  1361. };
  1362. #undef OFFSET
  1363. #undef _STR
  1364. #undef STR
  1365. #undef STR_KEY
  1366. #undef _STR_LEN
  1367. #undef STR_LEN
  1368. #undef STR_LEN_KEY
  1369. #undef _STR_RANGE
  1370. #undef STR_RANGE
  1371. #undef STR_RANGE_KEY
  1372. #undef _INT
  1373. #undef INT
  1374. #undef INT_RANGE
  1375. #undef _FUNC
  1376. #undef FUNC
  1377. #undef FUNC_KEY
  1378. #define NUM_SSID_FIELDS (sizeof(ssid_fields) / sizeof(ssid_fields[0]))
  1379. /**
  1380. * wpa_config_add_prio_network - Add a network to priority lists
  1381. * @config: Configuration data from wpa_config_read()
  1382. * @ssid: Pointer to the network configuration to be added to the list
  1383. * Returns: 0 on success, -1 on failure
  1384. *
  1385. * This function is used to add a network block to the priority list of
  1386. * networks. This must be called for each network when reading in the full
  1387. * configuration. In addition, this can be used indirectly when updating
  1388. * priorities by calling wpa_config_update_prio_list().
  1389. */
  1390. int wpa_config_add_prio_network(struct wpa_config *config,
  1391. struct wpa_ssid *ssid)
  1392. {
  1393. int prio;
  1394. struct wpa_ssid *prev, **nlist;
  1395. /*
  1396. * Add to an existing priority list if one is available for the
  1397. * configured priority level for this network.
  1398. */
  1399. for (prio = 0; prio < config->num_prio; prio++) {
  1400. prev = config->pssid[prio];
  1401. if (prev->priority == ssid->priority) {
  1402. while (prev->pnext)
  1403. prev = prev->pnext;
  1404. prev->pnext = ssid;
  1405. return 0;
  1406. }
  1407. }
  1408. /* First network for this priority - add a new priority list */
  1409. nlist = os_realloc(config->pssid,
  1410. (config->num_prio + 1) * sizeof(struct wpa_ssid *));
  1411. if (nlist == NULL)
  1412. return -1;
  1413. for (prio = 0; prio < config->num_prio; prio++) {
  1414. if (nlist[prio]->priority < ssid->priority) {
  1415. os_memmove(&nlist[prio + 1], &nlist[prio],
  1416. (config->num_prio - prio) *
  1417. sizeof(struct wpa_ssid *));
  1418. break;
  1419. }
  1420. }
  1421. nlist[prio] = ssid;
  1422. config->num_prio++;
  1423. config->pssid = nlist;
  1424. return 0;
  1425. }
  1426. /**
  1427. * wpa_config_update_prio_list - Update network priority list
  1428. * @config: Configuration data from wpa_config_read()
  1429. * Returns: 0 on success, -1 on failure
  1430. *
  1431. * This function is called to update the priority list of networks in the
  1432. * configuration when a network is being added or removed. This is also called
  1433. * if a priority for a network is changed.
  1434. */
  1435. int wpa_config_update_prio_list(struct wpa_config *config)
  1436. {
  1437. struct wpa_ssid *ssid;
  1438. int ret = 0;
  1439. os_free(config->pssid);
  1440. config->pssid = NULL;
  1441. config->num_prio = 0;
  1442. ssid = config->ssid;
  1443. while (ssid) {
  1444. ssid->pnext = NULL;
  1445. if (wpa_config_add_prio_network(config, ssid) < 0)
  1446. ret = -1;
  1447. ssid = ssid->next;
  1448. }
  1449. return ret;
  1450. }
  1451. #ifdef IEEE8021X_EAPOL
  1452. static void eap_peer_config_free(struct eap_peer_config *eap)
  1453. {
  1454. os_free(eap->eap_methods);
  1455. os_free(eap->identity);
  1456. os_free(eap->anonymous_identity);
  1457. os_free(eap->password);
  1458. os_free(eap->ca_cert);
  1459. os_free(eap->ca_path);
  1460. os_free(eap->client_cert);
  1461. os_free(eap->private_key);
  1462. os_free(eap->private_key_passwd);
  1463. os_free(eap->dh_file);
  1464. os_free(eap->subject_match);
  1465. os_free(eap->altsubject_match);
  1466. os_free(eap->ca_cert2);
  1467. os_free(eap->ca_path2);
  1468. os_free(eap->client_cert2);
  1469. os_free(eap->private_key2);
  1470. os_free(eap->private_key2_passwd);
  1471. os_free(eap->dh_file2);
  1472. os_free(eap->subject_match2);
  1473. os_free(eap->altsubject_match2);
  1474. os_free(eap->phase1);
  1475. os_free(eap->phase2);
  1476. os_free(eap->pcsc);
  1477. os_free(eap->pin);
  1478. os_free(eap->engine_id);
  1479. os_free(eap->key_id);
  1480. os_free(eap->cert_id);
  1481. os_free(eap->ca_cert_id);
  1482. os_free(eap->key2_id);
  1483. os_free(eap->cert2_id);
  1484. os_free(eap->ca_cert2_id);
  1485. os_free(eap->pin2);
  1486. os_free(eap->engine2_id);
  1487. os_free(eap->otp);
  1488. os_free(eap->pending_req_otp);
  1489. os_free(eap->pac_file);
  1490. os_free(eap->new_password);
  1491. }
  1492. #endif /* IEEE8021X_EAPOL */
  1493. /**
  1494. * wpa_config_free_ssid - Free network/ssid configuration data
  1495. * @ssid: Configuration data for the network
  1496. *
  1497. * This function frees all resources allocated for the network configuration
  1498. * data.
  1499. */
  1500. void wpa_config_free_ssid(struct wpa_ssid *ssid)
  1501. {
  1502. os_free(ssid->ssid);
  1503. os_free(ssid->passphrase);
  1504. #ifdef IEEE8021X_EAPOL
  1505. eap_peer_config_free(&ssid->eap);
  1506. #endif /* IEEE8021X_EAPOL */
  1507. os_free(ssid->id_str);
  1508. os_free(ssid->scan_freq);
  1509. os_free(ssid->freq_list);
  1510. os_free(ssid->bgscan);
  1511. os_free(ssid->p2p_client_list);
  1512. #ifdef CONFIG_HT_OVERRIDES
  1513. os_free(ssid->ht_mcs);
  1514. #endif /* CONFIG_HT_OVERRIDES */
  1515. os_free(ssid);
  1516. }
  1517. void wpa_config_free_cred(struct wpa_cred *cred)
  1518. {
  1519. os_free(cred->realm);
  1520. os_free(cred->username);
  1521. os_free(cred->password);
  1522. os_free(cred->ca_cert);
  1523. os_free(cred->client_cert);
  1524. os_free(cred->private_key);
  1525. os_free(cred->private_key_passwd);
  1526. os_free(cred->imsi);
  1527. os_free(cred->milenage);
  1528. os_free(cred->domain);
  1529. os_free(cred);
  1530. }
  1531. /**
  1532. * wpa_config_free - Free configuration data
  1533. * @config: Configuration data from wpa_config_read()
  1534. *
  1535. * This function frees all resources allocated for the configuration data by
  1536. * wpa_config_read().
  1537. */
  1538. void wpa_config_free(struct wpa_config *config)
  1539. {
  1540. #ifndef CONFIG_NO_CONFIG_BLOBS
  1541. struct wpa_config_blob *blob, *prevblob;
  1542. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1543. struct wpa_ssid *ssid, *prev = NULL;
  1544. struct wpa_cred *cred, *cprev;
  1545. ssid = config->ssid;
  1546. while (ssid) {
  1547. prev = ssid;
  1548. ssid = ssid->next;
  1549. wpa_config_free_ssid(prev);
  1550. }
  1551. cred = config->cred;
  1552. while (cred) {
  1553. cprev = cred;
  1554. cred = cred->next;
  1555. wpa_config_free_cred(cprev);
  1556. }
  1557. #ifndef CONFIG_NO_CONFIG_BLOBS
  1558. blob = config->blobs;
  1559. prevblob = NULL;
  1560. while (blob) {
  1561. prevblob = blob;
  1562. blob = blob->next;
  1563. wpa_config_free_blob(prevblob);
  1564. }
  1565. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1566. os_free(config->ctrl_interface);
  1567. os_free(config->ctrl_interface_group);
  1568. os_free(config->opensc_engine_path);
  1569. os_free(config->pkcs11_engine_path);
  1570. os_free(config->pkcs11_module_path);
  1571. os_free(config->pcsc_reader);
  1572. os_free(config->pcsc_pin);
  1573. os_free(config->driver_param);
  1574. os_free(config->device_name);
  1575. os_free(config->manufacturer);
  1576. os_free(config->model_name);
  1577. os_free(config->model_number);
  1578. os_free(config->serial_number);
  1579. os_free(config->config_methods);
  1580. os_free(config->p2p_ssid_postfix);
  1581. os_free(config->pssid);
  1582. os_free(config);
  1583. }
  1584. /**
  1585. * wpa_config_foreach_network - Iterate over each configured network
  1586. * @config: Configuration data from wpa_config_read()
  1587. * @func: Callback function to process each network
  1588. * @arg: Opaque argument to pass to callback function
  1589. *
  1590. * Iterate over the set of configured networks calling the specified
  1591. * function for each item. We guard against callbacks removing the
  1592. * supplied network.
  1593. */
  1594. void wpa_config_foreach_network(struct wpa_config *config,
  1595. void (*func)(void *, struct wpa_ssid *),
  1596. void *arg)
  1597. {
  1598. struct wpa_ssid *ssid, *next;
  1599. ssid = config->ssid;
  1600. while (ssid) {
  1601. next = ssid->next;
  1602. func(arg, ssid);
  1603. ssid = next;
  1604. }
  1605. }
  1606. /**
  1607. * wpa_config_get_network - Get configured network based on id
  1608. * @config: Configuration data from wpa_config_read()
  1609. * @id: Unique network id to search for
  1610. * Returns: Network configuration or %NULL if not found
  1611. */
  1612. struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id)
  1613. {
  1614. struct wpa_ssid *ssid;
  1615. ssid = config->ssid;
  1616. while (ssid) {
  1617. if (id == ssid->id)
  1618. break;
  1619. ssid = ssid->next;
  1620. }
  1621. return ssid;
  1622. }
  1623. /**
  1624. * wpa_config_add_network - Add a new network with empty configuration
  1625. * @config: Configuration data from wpa_config_read()
  1626. * Returns: The new network configuration or %NULL if operation failed
  1627. */
  1628. struct wpa_ssid * wpa_config_add_network(struct wpa_config *config)
  1629. {
  1630. int id;
  1631. struct wpa_ssid *ssid, *last = NULL;
  1632. id = -1;
  1633. ssid = config->ssid;
  1634. while (ssid) {
  1635. if (ssid->id > id)
  1636. id = ssid->id;
  1637. last = ssid;
  1638. ssid = ssid->next;
  1639. }
  1640. id++;
  1641. ssid = os_zalloc(sizeof(*ssid));
  1642. if (ssid == NULL)
  1643. return NULL;
  1644. ssid->id = id;
  1645. if (last)
  1646. last->next = ssid;
  1647. else
  1648. config->ssid = ssid;
  1649. wpa_config_update_prio_list(config);
  1650. return ssid;
  1651. }
  1652. /**
  1653. * wpa_config_remove_network - Remove a configured network based on id
  1654. * @config: Configuration data from wpa_config_read()
  1655. * @id: Unique network id to search for
  1656. * Returns: 0 on success, or -1 if the network was not found
  1657. */
  1658. int wpa_config_remove_network(struct wpa_config *config, int id)
  1659. {
  1660. struct wpa_ssid *ssid, *prev = NULL;
  1661. ssid = config->ssid;
  1662. while (ssid) {
  1663. if (id == ssid->id)
  1664. break;
  1665. prev = ssid;
  1666. ssid = ssid->next;
  1667. }
  1668. if (ssid == NULL)
  1669. return -1;
  1670. if (prev)
  1671. prev->next = ssid->next;
  1672. else
  1673. config->ssid = ssid->next;
  1674. wpa_config_update_prio_list(config);
  1675. wpa_config_free_ssid(ssid);
  1676. return 0;
  1677. }
  1678. /**
  1679. * wpa_config_set_network_defaults - Set network default values
  1680. * @ssid: Pointer to network configuration data
  1681. */
  1682. void wpa_config_set_network_defaults(struct wpa_ssid *ssid)
  1683. {
  1684. ssid->proto = DEFAULT_PROTO;
  1685. ssid->pairwise_cipher = DEFAULT_PAIRWISE;
  1686. ssid->group_cipher = DEFAULT_GROUP;
  1687. ssid->key_mgmt = DEFAULT_KEY_MGMT;
  1688. #ifdef IEEE8021X_EAPOL
  1689. ssid->eapol_flags = DEFAULT_EAPOL_FLAGS;
  1690. ssid->eap_workaround = DEFAULT_EAP_WORKAROUND;
  1691. ssid->eap.fragment_size = DEFAULT_FRAGMENT_SIZE;
  1692. #endif /* IEEE8021X_EAPOL */
  1693. #ifdef CONFIG_HT_OVERRIDES
  1694. ssid->disable_ht = DEFAULT_DISABLE_HT;
  1695. ssid->disable_ht40 = DEFAULT_DISABLE_HT40;
  1696. ssid->disable_max_amsdu = DEFAULT_DISABLE_MAX_AMSDU;
  1697. ssid->ampdu_factor = DEFAULT_AMPDU_FACTOR;
  1698. ssid->ampdu_density = DEFAULT_AMPDU_DENSITY;
  1699. #endif /* CONFIG_HT_OVERRIDES */
  1700. }
  1701. /**
  1702. * wpa_config_set - Set a variable in network configuration
  1703. * @ssid: Pointer to network configuration data
  1704. * @var: Variable name, e.g., "ssid"
  1705. * @value: Variable value
  1706. * @line: Line number in configuration file or 0 if not used
  1707. * Returns: 0 on success, -1 on failure
  1708. *
  1709. * This function can be used to set network configuration variables based on
  1710. * both the configuration file and management interface input. The value
  1711. * parameter must be in the same format as the text-based configuration file is
  1712. * using. For example, strings are using double quotation marks.
  1713. */
  1714. int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
  1715. int line)
  1716. {
  1717. size_t i;
  1718. int ret = 0;
  1719. if (ssid == NULL || var == NULL || value == NULL)
  1720. return -1;
  1721. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1722. const struct parse_data *field = &ssid_fields[i];
  1723. if (os_strcmp(var, field->name) != 0)
  1724. continue;
  1725. if (field->parser(field, ssid, line, value)) {
  1726. if (line) {
  1727. wpa_printf(MSG_ERROR, "Line %d: failed to "
  1728. "parse %s '%s'.", line, var, value);
  1729. }
  1730. ret = -1;
  1731. }
  1732. break;
  1733. }
  1734. if (i == NUM_SSID_FIELDS) {
  1735. if (line) {
  1736. wpa_printf(MSG_ERROR, "Line %d: unknown network field "
  1737. "'%s'.", line, var);
  1738. }
  1739. ret = -1;
  1740. }
  1741. return ret;
  1742. }
  1743. int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
  1744. const char *value)
  1745. {
  1746. size_t len;
  1747. char *buf;
  1748. int ret;
  1749. len = os_strlen(value);
  1750. buf = os_malloc(len + 3);
  1751. if (buf == NULL)
  1752. return -1;
  1753. buf[0] = '"';
  1754. os_memcpy(buf + 1, value, len);
  1755. buf[len + 1] = '"';
  1756. buf[len + 2] = '\0';
  1757. ret = wpa_config_set(ssid, var, buf, 0);
  1758. os_free(buf);
  1759. return ret;
  1760. }
  1761. /**
  1762. * wpa_config_get_all - Get all options from network configuration
  1763. * @ssid: Pointer to network configuration data
  1764. * @get_keys: Determines if keys/passwords will be included in returned list
  1765. * (if they may be exported)
  1766. * Returns: %NULL terminated list of all set keys and their values in the form
  1767. * of [key1, val1, key2, val2, ... , NULL]
  1768. *
  1769. * This function can be used to get list of all configured network properties.
  1770. * The caller is responsible for freeing the returned list and all its
  1771. * elements.
  1772. */
  1773. char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
  1774. {
  1775. const struct parse_data *field;
  1776. char *key, *value;
  1777. size_t i;
  1778. char **props;
  1779. int fields_num;
  1780. get_keys = get_keys && ssid->export_keys;
  1781. props = os_zalloc(sizeof(char *) * ((2 * NUM_SSID_FIELDS) + 1));
  1782. if (!props)
  1783. return NULL;
  1784. fields_num = 0;
  1785. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1786. field = &ssid_fields[i];
  1787. if (field->key_data && !get_keys)
  1788. continue;
  1789. value = field->writer(field, ssid);
  1790. if (value == NULL)
  1791. continue;
  1792. if (os_strlen(value) == 0) {
  1793. os_free(value);
  1794. continue;
  1795. }
  1796. key = os_strdup(field->name);
  1797. if (key == NULL) {
  1798. os_free(value);
  1799. goto err;
  1800. }
  1801. props[fields_num * 2] = key;
  1802. props[fields_num * 2 + 1] = value;
  1803. fields_num++;
  1804. }
  1805. return props;
  1806. err:
  1807. value = *props;
  1808. while (value)
  1809. os_free(value++);
  1810. os_free(props);
  1811. return NULL;
  1812. }
  1813. #ifndef NO_CONFIG_WRITE
  1814. /**
  1815. * wpa_config_get - Get a variable in network configuration
  1816. * @ssid: Pointer to network configuration data
  1817. * @var: Variable name, e.g., "ssid"
  1818. * Returns: Value of the variable or %NULL on failure
  1819. *
  1820. * This function can be used to get network configuration variables. The
  1821. * returned value is a copy of the configuration variable in text format, i.e,.
  1822. * the same format that the text-based configuration file and wpa_config_set()
  1823. * are using for the value. The caller is responsible for freeing the returned
  1824. * value.
  1825. */
  1826. char * wpa_config_get(struct wpa_ssid *ssid, const char *var)
  1827. {
  1828. size_t i;
  1829. if (ssid == NULL || var == NULL)
  1830. return NULL;
  1831. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1832. const struct parse_data *field = &ssid_fields[i];
  1833. if (os_strcmp(var, field->name) == 0)
  1834. return field->writer(field, ssid);
  1835. }
  1836. return NULL;
  1837. }
  1838. /**
  1839. * wpa_config_get_no_key - Get a variable in network configuration (no keys)
  1840. * @ssid: Pointer to network configuration data
  1841. * @var: Variable name, e.g., "ssid"
  1842. * Returns: Value of the variable or %NULL on failure
  1843. *
  1844. * This function can be used to get network configuration variable like
  1845. * wpa_config_get(). The only difference is that this functions does not expose
  1846. * key/password material from the configuration. In case a key/password field
  1847. * is requested, the returned value is an empty string or %NULL if the variable
  1848. * is not set or "*" if the variable is set (regardless of its value). The
  1849. * returned value is a copy of the configuration variable in text format, i.e,.
  1850. * the same format that the text-based configuration file and wpa_config_set()
  1851. * are using for the value. The caller is responsible for freeing the returned
  1852. * value.
  1853. */
  1854. char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var)
  1855. {
  1856. size_t i;
  1857. if (ssid == NULL || var == NULL)
  1858. return NULL;
  1859. for (i = 0; i < NUM_SSID_FIELDS; i++) {
  1860. const struct parse_data *field = &ssid_fields[i];
  1861. if (os_strcmp(var, field->name) == 0) {
  1862. char *res = field->writer(field, ssid);
  1863. if (field->key_data) {
  1864. if (res && res[0]) {
  1865. wpa_printf(MSG_DEBUG, "Do not allow "
  1866. "key_data field to be "
  1867. "exposed");
  1868. os_free(res);
  1869. return os_strdup("*");
  1870. }
  1871. os_free(res);
  1872. return NULL;
  1873. }
  1874. return res;
  1875. }
  1876. }
  1877. return NULL;
  1878. }
  1879. #endif /* NO_CONFIG_WRITE */
  1880. /**
  1881. * wpa_config_update_psk - Update WPA PSK based on passphrase and SSID
  1882. * @ssid: Pointer to network configuration data
  1883. *
  1884. * This function must be called to update WPA PSK when either SSID or the
  1885. * passphrase has changed for the network configuration.
  1886. */
  1887. void wpa_config_update_psk(struct wpa_ssid *ssid)
  1888. {
  1889. #ifndef CONFIG_NO_PBKDF2
  1890. pbkdf2_sha1(ssid->passphrase,
  1891. (char *) ssid->ssid, ssid->ssid_len, 4096,
  1892. ssid->psk, PMK_LEN);
  1893. wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
  1894. ssid->psk, PMK_LEN);
  1895. ssid->psk_set = 1;
  1896. #endif /* CONFIG_NO_PBKDF2 */
  1897. }
  1898. int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
  1899. const char *value, int line)
  1900. {
  1901. char *val;
  1902. size_t len;
  1903. if (os_strcmp(var, "priority") == 0) {
  1904. cred->priority = atoi(value);
  1905. return 0;
  1906. }
  1907. if (os_strcmp(var, "pcsc") == 0) {
  1908. cred->pcsc = atoi(value);
  1909. return 0;
  1910. }
  1911. val = wpa_config_parse_string(value, &len);
  1912. if (val == NULL) {
  1913. wpa_printf(MSG_ERROR, "Line %d: invalid field '%s' string "
  1914. "value '%s'.", line, var, value);
  1915. return -1;
  1916. }
  1917. if (os_strcmp(var, "realm") == 0) {
  1918. os_free(cred->realm);
  1919. cred->realm = val;
  1920. return 0;
  1921. }
  1922. if (os_strcmp(var, "username") == 0) {
  1923. os_free(cred->username);
  1924. cred->username = val;
  1925. return 0;
  1926. }
  1927. if (os_strcmp(var, "password") == 0) {
  1928. os_free(cred->password);
  1929. cred->password = val;
  1930. return 0;
  1931. }
  1932. if (os_strcmp(var, "ca_cert") == 0) {
  1933. os_free(cred->ca_cert);
  1934. cred->ca_cert = val;
  1935. return 0;
  1936. }
  1937. if (os_strcmp(var, "client_cert") == 0) {
  1938. os_free(cred->client_cert);
  1939. cred->client_cert = val;
  1940. return 0;
  1941. }
  1942. if (os_strcmp(var, "private_key") == 0) {
  1943. os_free(cred->private_key);
  1944. cred->private_key = val;
  1945. return 0;
  1946. }
  1947. if (os_strcmp(var, "private_key_passwd") == 0) {
  1948. os_free(cred->private_key_passwd);
  1949. cred->private_key_passwd = val;
  1950. return 0;
  1951. }
  1952. if (os_strcmp(var, "imsi") == 0) {
  1953. os_free(cred->imsi);
  1954. cred->imsi = val;
  1955. return 0;
  1956. }
  1957. if (os_strcmp(var, "milenage") == 0) {
  1958. os_free(cred->milenage);
  1959. cred->milenage = val;
  1960. return 0;
  1961. }
  1962. if (os_strcmp(var, "domain") == 0) {
  1963. os_free(cred->domain);
  1964. cred->domain = val;
  1965. return 0;
  1966. }
  1967. if (line) {
  1968. wpa_printf(MSG_ERROR, "Line %d: unknown cred field '%s'.",
  1969. line, var);
  1970. }
  1971. os_free(val);
  1972. return -1;
  1973. }
  1974. struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id)
  1975. {
  1976. struct wpa_cred *cred;
  1977. cred = config->cred;
  1978. while (cred) {
  1979. if (id == cred->id)
  1980. break;
  1981. cred = cred->next;
  1982. }
  1983. return cred;
  1984. }
  1985. struct wpa_cred * wpa_config_add_cred(struct wpa_config *config)
  1986. {
  1987. int id;
  1988. struct wpa_cred *cred, *last = NULL;
  1989. id = -1;
  1990. cred = config->cred;
  1991. while (cred) {
  1992. if (cred->id > id)
  1993. id = cred->id;
  1994. last = cred;
  1995. cred = cred->next;
  1996. }
  1997. id++;
  1998. cred = os_zalloc(sizeof(*cred));
  1999. if (cred == NULL)
  2000. return NULL;
  2001. cred->id = id;
  2002. if (last)
  2003. last->next = cred;
  2004. else
  2005. config->cred = cred;
  2006. return cred;
  2007. }
  2008. int wpa_config_remove_cred(struct wpa_config *config, int id)
  2009. {
  2010. struct wpa_cred *cred, *prev = NULL;
  2011. cred = config->cred;
  2012. while (cred) {
  2013. if (id == cred->id)
  2014. break;
  2015. prev = cred;
  2016. cred = cred->next;
  2017. }
  2018. if (cred == NULL)
  2019. return -1;
  2020. if (prev)
  2021. prev->next = cred->next;
  2022. else
  2023. config->cred = cred->next;
  2024. wpa_config_free_cred(cred);
  2025. return 0;
  2026. }
  2027. #ifndef CONFIG_NO_CONFIG_BLOBS
  2028. /**
  2029. * wpa_config_get_blob - Get a named configuration blob
  2030. * @config: Configuration data from wpa_config_read()
  2031. * @name: Name of the blob
  2032. * Returns: Pointer to blob data or %NULL if not found
  2033. */
  2034. const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
  2035. const char *name)
  2036. {
  2037. struct wpa_config_blob *blob = config->blobs;
  2038. while (blob) {
  2039. if (os_strcmp(blob->name, name) == 0)
  2040. return blob;
  2041. blob = blob->next;
  2042. }
  2043. return NULL;
  2044. }
  2045. /**
  2046. * wpa_config_set_blob - Set or add a named configuration blob
  2047. * @config: Configuration data from wpa_config_read()
  2048. * @blob: New value for the blob
  2049. *
  2050. * Adds a new configuration blob or replaces the current value of an existing
  2051. * blob.
  2052. */
  2053. void wpa_config_set_blob(struct wpa_config *config,
  2054. struct wpa_config_blob *blob)
  2055. {
  2056. wpa_config_remove_blob(config, blob->name);
  2057. blob->next = config->blobs;
  2058. config->blobs = blob;
  2059. }
  2060. /**
  2061. * wpa_config_free_blob - Free blob data
  2062. * @blob: Pointer to blob to be freed
  2063. */
  2064. void wpa_config_free_blob(struct wpa_config_blob *blob)
  2065. {
  2066. if (blob) {
  2067. os_free(blob->name);
  2068. os_free(blob->data);
  2069. os_free(blob);
  2070. }
  2071. }
  2072. /**
  2073. * wpa_config_remove_blob - Remove a named configuration blob
  2074. * @config: Configuration data from wpa_config_read()
  2075. * @name: Name of the blob to remove
  2076. * Returns: 0 if blob was removed or -1 if blob was not found
  2077. */
  2078. int wpa_config_remove_blob(struct wpa_config *config, const char *name)
  2079. {
  2080. struct wpa_config_blob *pos = config->blobs, *prev = NULL;
  2081. while (pos) {
  2082. if (os_strcmp(pos->name, name) == 0) {
  2083. if (prev)
  2084. prev->next = pos->next;
  2085. else
  2086. config->blobs = pos->next;
  2087. wpa_config_free_blob(pos);
  2088. return 0;
  2089. }
  2090. prev = pos;
  2091. pos = pos->next;
  2092. }
  2093. return -1;
  2094. }
  2095. #endif /* CONFIG_NO_CONFIG_BLOBS */
  2096. /**
  2097. * wpa_config_alloc_empty - Allocate an empty configuration
  2098. * @ctrl_interface: Control interface parameters, e.g., path to UNIX domain
  2099. * socket
  2100. * @driver_param: Driver parameters
  2101. * Returns: Pointer to allocated configuration data or %NULL on failure
  2102. */
  2103. struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
  2104. const char *driver_param)
  2105. {
  2106. struct wpa_config *config;
  2107. config = os_zalloc(sizeof(*config));
  2108. if (config == NULL)
  2109. return NULL;
  2110. config->eapol_version = DEFAULT_EAPOL_VERSION;
  2111. config->ap_scan = DEFAULT_AP_SCAN;
  2112. config->fast_reauth = DEFAULT_FAST_REAUTH;
  2113. config->p2p_go_intent = DEFAULT_P2P_GO_INTENT;
  2114. config->p2p_intra_bss = DEFAULT_P2P_INTRA_BSS;
  2115. config->bss_max_count = DEFAULT_BSS_MAX_COUNT;
  2116. config->bss_expiration_age = DEFAULT_BSS_EXPIRATION_AGE;
  2117. config->bss_expiration_scan_count = DEFAULT_BSS_EXPIRATION_SCAN_COUNT;
  2118. config->max_num_sta = DEFAULT_MAX_NUM_STA;
  2119. config->access_network_type = DEFAULT_ACCESS_NETWORK_TYPE;
  2120. if (ctrl_interface)
  2121. config->ctrl_interface = os_strdup(ctrl_interface);
  2122. if (driver_param)
  2123. config->driver_param = os_strdup(driver_param);
  2124. return config;
  2125. }
  2126. #ifndef CONFIG_NO_STDOUT_DEBUG
  2127. /**
  2128. * wpa_config_debug_dump_networks - Debug dump of configured networks
  2129. * @config: Configuration data from wpa_config_read()
  2130. */
  2131. void wpa_config_debug_dump_networks(struct wpa_config *config)
  2132. {
  2133. int prio;
  2134. struct wpa_ssid *ssid;
  2135. for (prio = 0; prio < config->num_prio; prio++) {
  2136. ssid = config->pssid[prio];
  2137. wpa_printf(MSG_DEBUG, "Priority group %d",
  2138. ssid->priority);
  2139. while (ssid) {
  2140. wpa_printf(MSG_DEBUG, " id=%d ssid='%s'",
  2141. ssid->id,
  2142. wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
  2143. ssid = ssid->pnext;
  2144. }
  2145. }
  2146. }
  2147. #endif /* CONFIG_NO_STDOUT_DEBUG */
  2148. struct global_parse_data {
  2149. char *name;
  2150. int (*parser)(const struct global_parse_data *data,
  2151. struct wpa_config *config, int line, const char *value);
  2152. void *param1, *param2, *param3;
  2153. unsigned int changed_flag;
  2154. };
  2155. static int wpa_global_config_parse_int(const struct global_parse_data *data,
  2156. struct wpa_config *config, int line,
  2157. const char *pos)
  2158. {
  2159. int *dst;
  2160. dst = (int *) (((u8 *) config) + (long) data->param1);
  2161. *dst = atoi(pos);
  2162. wpa_printf(MSG_DEBUG, "%s=%d", data->name, *dst);
  2163. if (data->param2 && *dst < (long) data->param2) {
  2164. wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
  2165. "min_value=%ld)", line, data->name, *dst,
  2166. (long) data->param2);
  2167. *dst = (long) data->param2;
  2168. return -1;
  2169. }
  2170. if (data->param3 && *dst > (long) data->param3) {
  2171. wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
  2172. "max_value=%ld)", line, data->name, *dst,
  2173. (long) data->param3);
  2174. *dst = (long) data->param3;
  2175. return -1;
  2176. }
  2177. return 0;
  2178. }
  2179. static int wpa_global_config_parse_str(const struct global_parse_data *data,
  2180. struct wpa_config *config, int line,
  2181. const char *pos)
  2182. {
  2183. size_t len;
  2184. char **dst, *tmp;
  2185. len = os_strlen(pos);
  2186. if (data->param2 && len < (size_t) data->param2) {
  2187. wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
  2188. "min_len=%ld)", line, data->name,
  2189. (unsigned long) len, (long) data->param2);
  2190. return -1;
  2191. }
  2192. if (data->param3 && len > (size_t) data->param3) {
  2193. wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
  2194. "max_len=%ld)", line, data->name,
  2195. (unsigned long) len, (long) data->param3);
  2196. return -1;
  2197. }
  2198. tmp = os_strdup(pos);
  2199. if (tmp == NULL)
  2200. return -1;
  2201. dst = (char **) (((u8 *) config) + (long) data->param1);
  2202. os_free(*dst);
  2203. *dst = tmp;
  2204. wpa_printf(MSG_DEBUG, "%s='%s'", data->name, *dst);
  2205. return 0;
  2206. }
  2207. static int wpa_config_process_country(const struct global_parse_data *data,
  2208. struct wpa_config *config, int line,
  2209. const char *pos)
  2210. {
  2211. if (!pos[0] || !pos[1]) {
  2212. wpa_printf(MSG_DEBUG, "Invalid country set");
  2213. return -1;
  2214. }
  2215. config->country[0] = pos[0];
  2216. config->country[1] = pos[1];
  2217. wpa_printf(MSG_DEBUG, "country='%c%c'",
  2218. config->country[0], config->country[1]);
  2219. return 0;
  2220. }
  2221. static int wpa_config_process_load_dynamic_eap(
  2222. const struct global_parse_data *data, struct wpa_config *config,
  2223. int line, const char *so)
  2224. {
  2225. int ret;
  2226. wpa_printf(MSG_DEBUG, "load_dynamic_eap=%s", so);
  2227. ret = eap_peer_method_load(so);
  2228. if (ret == -2) {
  2229. wpa_printf(MSG_DEBUG, "This EAP type was already loaded - not "
  2230. "reloading.");
  2231. } else if (ret) {
  2232. wpa_printf(MSG_ERROR, "Line %d: Failed to load dynamic EAP "
  2233. "method '%s'.", line, so);
  2234. return -1;
  2235. }
  2236. return 0;
  2237. }
  2238. #ifdef CONFIG_WPS
  2239. static int wpa_config_process_uuid(const struct global_parse_data *data,
  2240. struct wpa_config *config, int line,
  2241. const char *pos)
  2242. {
  2243. char buf[40];
  2244. if (uuid_str2bin(pos, config->uuid)) {
  2245. wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
  2246. return -1;
  2247. }
  2248. uuid_bin2str(config->uuid, buf, sizeof(buf));
  2249. wpa_printf(MSG_DEBUG, "uuid=%s", buf);
  2250. return 0;
  2251. }
  2252. static int wpa_config_process_device_type(
  2253. const struct global_parse_data *data,
  2254. struct wpa_config *config, int line, const char *pos)
  2255. {
  2256. return wps_dev_type_str2bin(pos, config->device_type);
  2257. }
  2258. static int wpa_config_process_os_version(const struct global_parse_data *data,
  2259. struct wpa_config *config, int line,
  2260. const char *pos)
  2261. {
  2262. if (hexstr2bin(pos, config->os_version, 4)) {
  2263. wpa_printf(MSG_ERROR, "Line %d: invalid os_version", line);
  2264. return -1;
  2265. }
  2266. wpa_printf(MSG_DEBUG, "os_version=%08x",
  2267. WPA_GET_BE32(config->os_version));
  2268. return 0;
  2269. }
  2270. #endif /* CONFIG_WPS */
  2271. #ifdef CONFIG_P2P
  2272. static int wpa_config_process_sec_device_type(
  2273. const struct global_parse_data *data,
  2274. struct wpa_config *config, int line, const char *pos)
  2275. {
  2276. int idx;
  2277. if (config->num_sec_device_types >= MAX_SEC_DEVICE_TYPES) {
  2278. wpa_printf(MSG_ERROR, "Line %d: too many sec_device_type "
  2279. "items", line);
  2280. return -1;
  2281. }
  2282. idx = config->num_sec_device_types;
  2283. if (wps_dev_type_str2bin(pos, config->sec_device_type[idx]))
  2284. return -1;
  2285. config->num_sec_device_types++;
  2286. return 0;
  2287. }
  2288. #endif /* CONFIG_P2P */
  2289. static int wpa_config_process_hessid(
  2290. const struct global_parse_data *data,
  2291. struct wpa_config *config, int line, const char *pos)
  2292. {
  2293. if (hwaddr_aton2(pos, config->hessid) < 0) {
  2294. wpa_printf(MSG_ERROR, "Line %d: Invalid hessid '%s'",
  2295. line, pos);
  2296. return -1;
  2297. }
  2298. return 0;
  2299. }
  2300. #ifdef OFFSET
  2301. #undef OFFSET
  2302. #endif /* OFFSET */
  2303. /* OFFSET: Get offset of a variable within the wpa_config structure */
  2304. #define OFFSET(v) ((void *) &((struct wpa_config *) 0)->v)
  2305. #define FUNC(f) #f, wpa_config_process_ ## f, OFFSET(f), NULL, NULL
  2306. #define FUNC_NO_VAR(f) #f, wpa_config_process_ ## f, NULL, NULL, NULL
  2307. #define _INT(f) #f, wpa_global_config_parse_int, OFFSET(f)
  2308. #define INT(f) _INT(f), NULL, NULL
  2309. #define INT_RANGE(f, min, max) _INT(f), (void *) min, (void *) max
  2310. #define _STR(f) #f, wpa_global_config_parse_str, OFFSET(f)
  2311. #define STR(f) _STR(f), NULL, NULL
  2312. #define STR_RANGE(f, min, max) _STR(f), (void *) min, (void *) max
  2313. static const struct global_parse_data global_fields[] = {
  2314. #ifdef CONFIG_CTRL_IFACE
  2315. { STR(ctrl_interface), 0 },
  2316. { STR(ctrl_interface_group), 0 } /* deprecated */,
  2317. #endif /* CONFIG_CTRL_IFACE */
  2318. { INT_RANGE(eapol_version, 1, 2), 0 },
  2319. { INT(ap_scan), 0 },
  2320. { INT(fast_reauth), 0 },
  2321. { STR(opensc_engine_path), 0 },
  2322. { STR(pkcs11_engine_path), 0 },
  2323. { STR(pkcs11_module_path), 0 },
  2324. { STR(pcsc_reader), 0 },
  2325. { STR(pcsc_pin), 0 },
  2326. { STR(driver_param), 0 },
  2327. { INT(dot11RSNAConfigPMKLifetime), 0 },
  2328. { INT(dot11RSNAConfigPMKReauthThreshold), 0 },
  2329. { INT(dot11RSNAConfigSATimeout), 0 },
  2330. #ifndef CONFIG_NO_CONFIG_WRITE
  2331. { INT(update_config), 0 },
  2332. #endif /* CONFIG_NO_CONFIG_WRITE */
  2333. { FUNC_NO_VAR(load_dynamic_eap), 0 },
  2334. #ifdef CONFIG_WPS
  2335. { FUNC(uuid), CFG_CHANGED_UUID },
  2336. { STR_RANGE(device_name, 0, 32), CFG_CHANGED_DEVICE_NAME },
  2337. { STR_RANGE(manufacturer, 0, 64), CFG_CHANGED_WPS_STRING },
  2338. { STR_RANGE(model_name, 0, 32), CFG_CHANGED_WPS_STRING },
  2339. { STR_RANGE(model_number, 0, 32), CFG_CHANGED_WPS_STRING },
  2340. { STR_RANGE(serial_number, 0, 32), CFG_CHANGED_WPS_STRING },
  2341. { FUNC(device_type), CFG_CHANGED_DEVICE_TYPE },
  2342. { FUNC(os_version), CFG_CHANGED_OS_VERSION },
  2343. { STR(config_methods), CFG_CHANGED_CONFIG_METHODS },
  2344. { INT_RANGE(wps_cred_processing, 0, 2), 0 },
  2345. #endif /* CONFIG_WPS */
  2346. #ifdef CONFIG_P2P
  2347. { FUNC(sec_device_type), CFG_CHANGED_SEC_DEVICE_TYPE },
  2348. { INT(p2p_listen_reg_class), 0 },
  2349. { INT(p2p_listen_channel), 0 },
  2350. { INT(p2p_oper_reg_class), 0 },
  2351. { INT(p2p_oper_channel), 0 },
  2352. { INT_RANGE(p2p_go_intent, 0, 15), 0 },
  2353. { STR(p2p_ssid_postfix), CFG_CHANGED_P2P_SSID_POSTFIX },
  2354. { INT_RANGE(persistent_reconnect, 0, 1), 0 },
  2355. { INT_RANGE(p2p_intra_bss, 0, 1), CFG_CHANGED_P2P_INTRA_BSS },
  2356. { INT(p2p_group_idle), 0 },
  2357. #endif /* CONFIG_P2P */
  2358. { FUNC(country), CFG_CHANGED_COUNTRY },
  2359. { INT(bss_max_count), 0 },
  2360. { INT(bss_expiration_age), 0 },
  2361. { INT(bss_expiration_scan_count), 0 },
  2362. { INT_RANGE(filter_ssids, 0, 1), 0 },
  2363. { INT(max_num_sta), 0 },
  2364. { INT_RANGE(disassoc_low_ack, 0, 1), 0 },
  2365. { INT_RANGE(interworking, 0, 1), 0 },
  2366. { FUNC(hessid), 0 },
  2367. { INT_RANGE(access_network_type, 0, 15), 0 }
  2368. };
  2369. #undef FUNC
  2370. #undef _INT
  2371. #undef INT
  2372. #undef INT_RANGE
  2373. #undef _STR
  2374. #undef STR
  2375. #undef STR_RANGE
  2376. #define NUM_GLOBAL_FIELDS (sizeof(global_fields) / sizeof(global_fields[0]))
  2377. int wpa_config_process_global(struct wpa_config *config, char *pos, int line)
  2378. {
  2379. size_t i;
  2380. int ret = 0;
  2381. for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
  2382. const struct global_parse_data *field = &global_fields[i];
  2383. size_t flen = os_strlen(field->name);
  2384. if (os_strncmp(pos, field->name, flen) != 0 ||
  2385. pos[flen] != '=')
  2386. continue;
  2387. if (field->parser(field, config, line, pos + flen + 1)) {
  2388. wpa_printf(MSG_ERROR, "Line %d: failed to "
  2389. "parse '%s'.", line, pos);
  2390. ret = -1;
  2391. }
  2392. config->changed_parameters |= field->changed_flag;
  2393. break;
  2394. }
  2395. if (i == NUM_GLOBAL_FIELDS) {
  2396. if (line < 0)
  2397. return -1;
  2398. wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",
  2399. line, pos);
  2400. ret = -1;
  2401. }
  2402. return ret;
  2403. }