config_file.c 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470
  1. /*
  2. * WPA Supplicant / Configuration backend: text file
  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. * This file implements a configuration backend for text files. All the
  9. * configuration information is stored in a text file that uses a format
  10. * described in the sample configuration file, wpa_supplicant.conf.
  11. */
  12. #include "includes.h"
  13. #ifdef ANDROID
  14. #include <sys/stat.h>
  15. #endif /* ANDROID */
  16. #include "common.h"
  17. #include "config.h"
  18. #include "base64.h"
  19. #include "uuid.h"
  20. #include "p2p/p2p.h"
  21. #include "eap_peer/eap_methods.h"
  22. #include "eap_peer/eap.h"
  23. static int newline_terminated(const char *buf, size_t buflen)
  24. {
  25. size_t len = os_strlen(buf);
  26. if (len == 0)
  27. return 0;
  28. if (len == buflen - 1 && buf[buflen - 1] != '\r' &&
  29. buf[len - 1] != '\n')
  30. return 0;
  31. return 1;
  32. }
  33. static void skip_line_end(FILE *stream)
  34. {
  35. char buf[100];
  36. while (fgets(buf, sizeof(buf), stream)) {
  37. buf[sizeof(buf) - 1] = '\0';
  38. if (newline_terminated(buf, sizeof(buf)))
  39. return;
  40. }
  41. }
  42. /**
  43. * wpa_config_get_line - Read the next configuration file line
  44. * @s: Buffer for the line
  45. * @size: The buffer length
  46. * @stream: File stream to read from
  47. * @line: Pointer to a variable storing the file line number
  48. * @_pos: Buffer for the pointer to the beginning of data on the text line or
  49. * %NULL if not needed (returned value used instead)
  50. * Returns: Pointer to the beginning of data on the text line or %NULL if no
  51. * more text lines are available.
  52. *
  53. * This function reads the next non-empty line from the configuration file and
  54. * removes comments. The returned string is guaranteed to be null-terminated.
  55. */
  56. static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line,
  57. char **_pos)
  58. {
  59. char *pos, *end, *sstart;
  60. while (fgets(s, size, stream)) {
  61. (*line)++;
  62. s[size - 1] = '\0';
  63. if (!newline_terminated(s, size)) {
  64. /*
  65. * The line was truncated - skip rest of it to avoid
  66. * confusing error messages.
  67. */
  68. wpa_printf(MSG_INFO, "Long line in configuration file "
  69. "truncated");
  70. skip_line_end(stream);
  71. }
  72. pos = s;
  73. /* Skip white space from the beginning of line. */
  74. while (*pos == ' ' || *pos == '\t' || *pos == '\r')
  75. pos++;
  76. /* Skip comment lines and empty lines */
  77. if (*pos == '#' || *pos == '\n' || *pos == '\0')
  78. continue;
  79. /*
  80. * Remove # comments unless they are within a double quoted
  81. * string.
  82. */
  83. sstart = os_strchr(pos, '"');
  84. if (sstart)
  85. sstart = os_strrchr(sstart + 1, '"');
  86. if (!sstart)
  87. sstart = pos;
  88. end = os_strchr(sstart, '#');
  89. if (end)
  90. *end-- = '\0';
  91. else
  92. end = pos + os_strlen(pos) - 1;
  93. /* Remove trailing white space. */
  94. while (end > pos &&
  95. (*end == '\n' || *end == ' ' || *end == '\t' ||
  96. *end == '\r'))
  97. *end-- = '\0';
  98. if (*pos == '\0')
  99. continue;
  100. if (_pos)
  101. *_pos = pos;
  102. return pos;
  103. }
  104. if (_pos)
  105. *_pos = NULL;
  106. return NULL;
  107. }
  108. static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
  109. {
  110. int errors = 0;
  111. if (ssid->passphrase) {
  112. if (ssid->psk_set) {
  113. wpa_printf(MSG_ERROR, "Line %d: both PSK and "
  114. "passphrase configured.", line);
  115. errors++;
  116. }
  117. wpa_config_update_psk(ssid);
  118. }
  119. if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
  120. !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
  121. !(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
  122. /* Group cipher cannot be stronger than the pairwise cipher. */
  123. wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
  124. " list since it was not allowed for pairwise "
  125. "cipher", line);
  126. ssid->group_cipher &= ~WPA_CIPHER_CCMP;
  127. }
  128. if (ssid->mode == WPAS_MODE_MESH &&
  129. (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
  130. ssid->key_mgmt != WPA_KEY_MGMT_SAE)) {
  131. wpa_printf(MSG_ERROR,
  132. "Line %d: key_mgmt for mesh network should be open or SAE",
  133. line);
  134. errors++;
  135. }
  136. return errors;
  137. }
  138. static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
  139. {
  140. struct wpa_ssid *ssid;
  141. int errors = 0, end = 0;
  142. char buf[2000], *pos, *pos2;
  143. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
  144. *line);
  145. ssid = os_zalloc(sizeof(*ssid));
  146. if (ssid == NULL)
  147. return NULL;
  148. dl_list_init(&ssid->psk_list);
  149. ssid->id = id;
  150. wpa_config_set_network_defaults(ssid);
  151. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  152. if (os_strcmp(pos, "}") == 0) {
  153. end = 1;
  154. break;
  155. }
  156. pos2 = os_strchr(pos, '=');
  157. if (pos2 == NULL) {
  158. wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
  159. "'%s'.", *line, pos);
  160. errors++;
  161. continue;
  162. }
  163. *pos2++ = '\0';
  164. if (*pos2 == '"') {
  165. if (os_strchr(pos2 + 1, '"') == NULL) {
  166. wpa_printf(MSG_ERROR, "Line %d: invalid "
  167. "quotation '%s'.", *line, pos2);
  168. errors++;
  169. continue;
  170. }
  171. }
  172. if (wpa_config_set(ssid, pos, pos2, *line) < 0)
  173. errors++;
  174. }
  175. if (!end) {
  176. wpa_printf(MSG_ERROR, "Line %d: network block was not "
  177. "terminated properly.", *line);
  178. errors++;
  179. }
  180. errors += wpa_config_validate_network(ssid, *line);
  181. if (errors) {
  182. wpa_config_free_ssid(ssid);
  183. ssid = NULL;
  184. }
  185. return ssid;
  186. }
  187. static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
  188. {
  189. struct wpa_cred *cred;
  190. int errors = 0, end = 0;
  191. char buf[256], *pos, *pos2;
  192. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
  193. cred = os_zalloc(sizeof(*cred));
  194. if (cred == NULL)
  195. return NULL;
  196. cred->id = id;
  197. cred->sim_num = DEFAULT_USER_SELECTED_SIM;
  198. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  199. if (os_strcmp(pos, "}") == 0) {
  200. end = 1;
  201. break;
  202. }
  203. pos2 = os_strchr(pos, '=');
  204. if (pos2 == NULL) {
  205. wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
  206. "'%s'.", *line, pos);
  207. errors++;
  208. continue;
  209. }
  210. *pos2++ = '\0';
  211. if (*pos2 == '"') {
  212. if (os_strchr(pos2 + 1, '"') == NULL) {
  213. wpa_printf(MSG_ERROR, "Line %d: invalid "
  214. "quotation '%s'.", *line, pos2);
  215. errors++;
  216. continue;
  217. }
  218. }
  219. if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
  220. errors++;
  221. }
  222. if (!end) {
  223. wpa_printf(MSG_ERROR, "Line %d: cred block was not "
  224. "terminated properly.", *line);
  225. errors++;
  226. }
  227. if (errors) {
  228. wpa_config_free_cred(cred);
  229. cred = NULL;
  230. }
  231. return cred;
  232. }
  233. #ifndef CONFIG_NO_CONFIG_BLOBS
  234. static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
  235. const char *name)
  236. {
  237. struct wpa_config_blob *blob;
  238. char buf[256], *pos;
  239. unsigned char *encoded = NULL, *nencoded;
  240. int end = 0;
  241. size_t encoded_len = 0, len;
  242. wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
  243. *line, name);
  244. while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
  245. if (os_strcmp(pos, "}") == 0) {
  246. end = 1;
  247. break;
  248. }
  249. len = os_strlen(pos);
  250. nencoded = os_realloc(encoded, encoded_len + len);
  251. if (nencoded == NULL) {
  252. wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
  253. "blob", *line);
  254. os_free(encoded);
  255. return NULL;
  256. }
  257. encoded = nencoded;
  258. os_memcpy(encoded + encoded_len, pos, len);
  259. encoded_len += len;
  260. }
  261. if (!end) {
  262. wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
  263. "properly", *line);
  264. os_free(encoded);
  265. return NULL;
  266. }
  267. blob = os_zalloc(sizeof(*blob));
  268. if (blob == NULL) {
  269. os_free(encoded);
  270. return NULL;
  271. }
  272. blob->name = os_strdup(name);
  273. blob->data = base64_decode(encoded, encoded_len, &blob->len);
  274. os_free(encoded);
  275. if (blob->name == NULL || blob->data == NULL) {
  276. wpa_config_free_blob(blob);
  277. return NULL;
  278. }
  279. return blob;
  280. }
  281. static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
  282. int *line, char *bname)
  283. {
  284. char *name_end;
  285. struct wpa_config_blob *blob;
  286. name_end = os_strchr(bname, '=');
  287. if (name_end == NULL) {
  288. wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
  289. *line);
  290. return -1;
  291. }
  292. *name_end = '\0';
  293. blob = wpa_config_read_blob(f, line, bname);
  294. if (blob == NULL) {
  295. wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
  296. *line, bname);
  297. return -1;
  298. }
  299. wpa_config_set_blob(config, blob);
  300. return 0;
  301. }
  302. #endif /* CONFIG_NO_CONFIG_BLOBS */
  303. struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
  304. {
  305. FILE *f;
  306. char buf[512], *pos;
  307. int errors = 0, line = 0;
  308. struct wpa_ssid *ssid, *tail, *head;
  309. struct wpa_cred *cred, *cred_tail, *cred_head;
  310. struct wpa_config *config;
  311. int id = 0;
  312. int cred_id = 0;
  313. if (name == NULL)
  314. return NULL;
  315. if (cfgp)
  316. config = cfgp;
  317. else
  318. config = wpa_config_alloc_empty(NULL, NULL);
  319. if (config == NULL) {
  320. wpa_printf(MSG_ERROR, "Failed to allocate config file "
  321. "structure");
  322. return NULL;
  323. }
  324. tail = head = config->ssid;
  325. while (tail && tail->next)
  326. tail = tail->next;
  327. cred_tail = cred_head = config->cred;
  328. while (cred_tail && cred_tail->next)
  329. cred_tail = cred_tail->next;
  330. wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
  331. f = fopen(name, "r");
  332. if (f == NULL) {
  333. wpa_printf(MSG_ERROR, "Failed to open config file '%s', "
  334. "error: %s", name, strerror(errno));
  335. os_free(config);
  336. return NULL;
  337. }
  338. while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
  339. if (os_strcmp(pos, "network={") == 0) {
  340. ssid = wpa_config_read_network(f, &line, id++);
  341. if (ssid == NULL) {
  342. wpa_printf(MSG_ERROR, "Line %d: failed to "
  343. "parse network block.", line);
  344. errors++;
  345. continue;
  346. }
  347. if (head == NULL) {
  348. head = tail = ssid;
  349. } else {
  350. tail->next = ssid;
  351. tail = ssid;
  352. }
  353. if (wpa_config_add_prio_network(config, ssid)) {
  354. wpa_printf(MSG_ERROR, "Line %d: failed to add "
  355. "network block to priority list.",
  356. line);
  357. errors++;
  358. continue;
  359. }
  360. } else if (os_strcmp(pos, "cred={") == 0) {
  361. cred = wpa_config_read_cred(f, &line, cred_id++);
  362. if (cred == NULL) {
  363. wpa_printf(MSG_ERROR, "Line %d: failed to "
  364. "parse cred block.", line);
  365. errors++;
  366. continue;
  367. }
  368. if (cred_head == NULL) {
  369. cred_head = cred_tail = cred;
  370. } else {
  371. cred_tail->next = cred;
  372. cred_tail = cred;
  373. }
  374. #ifndef CONFIG_NO_CONFIG_BLOBS
  375. } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
  376. if (wpa_config_process_blob(config, f, &line, pos + 12)
  377. < 0) {
  378. wpa_printf(MSG_ERROR, "Line %d: failed to "
  379. "process blob.", line);
  380. errors++;
  381. continue;
  382. }
  383. #endif /* CONFIG_NO_CONFIG_BLOBS */
  384. } else if (wpa_config_process_global(config, pos, line) < 0) {
  385. wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
  386. "line '%s'.", line, pos);
  387. errors++;
  388. continue;
  389. }
  390. }
  391. fclose(f);
  392. config->ssid = head;
  393. wpa_config_debug_dump_networks(config);
  394. config->cred = cred_head;
  395. #ifndef WPA_IGNORE_CONFIG_ERRORS
  396. if (errors) {
  397. wpa_config_free(config);
  398. config = NULL;
  399. head = NULL;
  400. }
  401. #endif /* WPA_IGNORE_CONFIG_ERRORS */
  402. return config;
  403. }
  404. #ifndef CONFIG_NO_CONFIG_WRITE
  405. static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
  406. {
  407. char *value = wpa_config_get(ssid, field);
  408. if (value == NULL)
  409. return;
  410. fprintf(f, "\t%s=%s\n", field, value);
  411. os_free(value);
  412. }
  413. static void write_int(FILE *f, const char *field, int value, int def)
  414. {
  415. if (value == def)
  416. return;
  417. fprintf(f, "\t%s=%d\n", field, value);
  418. }
  419. static void write_bssid(FILE *f, struct wpa_ssid *ssid)
  420. {
  421. char *value = wpa_config_get(ssid, "bssid");
  422. if (value == NULL)
  423. return;
  424. fprintf(f, "\tbssid=%s\n", value);
  425. os_free(value);
  426. }
  427. static void write_psk(FILE *f, struct wpa_ssid *ssid)
  428. {
  429. char *value;
  430. if (ssid->mem_only_psk)
  431. return;
  432. value = wpa_config_get(ssid, "psk");
  433. if (value == NULL)
  434. return;
  435. fprintf(f, "\tpsk=%s\n", value);
  436. os_free(value);
  437. }
  438. static void write_proto(FILE *f, struct wpa_ssid *ssid)
  439. {
  440. char *value;
  441. if (ssid->proto == DEFAULT_PROTO)
  442. return;
  443. value = wpa_config_get(ssid, "proto");
  444. if (value == NULL)
  445. return;
  446. if (value[0])
  447. fprintf(f, "\tproto=%s\n", value);
  448. os_free(value);
  449. }
  450. static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
  451. {
  452. char *value;
  453. if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
  454. return;
  455. value = wpa_config_get(ssid, "key_mgmt");
  456. if (value == NULL)
  457. return;
  458. if (value[0])
  459. fprintf(f, "\tkey_mgmt=%s\n", value);
  460. os_free(value);
  461. }
  462. static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
  463. {
  464. char *value;
  465. if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
  466. return;
  467. value = wpa_config_get(ssid, "pairwise");
  468. if (value == NULL)
  469. return;
  470. if (value[0])
  471. fprintf(f, "\tpairwise=%s\n", value);
  472. os_free(value);
  473. }
  474. static void write_group(FILE *f, struct wpa_ssid *ssid)
  475. {
  476. char *value;
  477. if (ssid->group_cipher == DEFAULT_GROUP)
  478. return;
  479. value = wpa_config_get(ssid, "group");
  480. if (value == NULL)
  481. return;
  482. if (value[0])
  483. fprintf(f, "\tgroup=%s\n", value);
  484. os_free(value);
  485. }
  486. static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
  487. {
  488. char *value;
  489. if (ssid->auth_alg == 0)
  490. return;
  491. value = wpa_config_get(ssid, "auth_alg");
  492. if (value == NULL)
  493. return;
  494. if (value[0])
  495. fprintf(f, "\tauth_alg=%s\n", value);
  496. os_free(value);
  497. }
  498. #ifdef IEEE8021X_EAPOL
  499. static void write_eap(FILE *f, struct wpa_ssid *ssid)
  500. {
  501. char *value;
  502. value = wpa_config_get(ssid, "eap");
  503. if (value == NULL)
  504. return;
  505. if (value[0])
  506. fprintf(f, "\teap=%s\n", value);
  507. os_free(value);
  508. }
  509. #endif /* IEEE8021X_EAPOL */
  510. static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
  511. {
  512. char field[20], *value;
  513. int res;
  514. res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
  515. if (os_snprintf_error(sizeof(field), res))
  516. return;
  517. value = wpa_config_get(ssid, field);
  518. if (value) {
  519. fprintf(f, "\t%s=%s\n", field, value);
  520. os_free(value);
  521. }
  522. }
  523. #ifdef CONFIG_P2P
  524. static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid)
  525. {
  526. char *value = wpa_config_get(ssid, "go_p2p_dev_addr");
  527. if (value == NULL)
  528. return;
  529. fprintf(f, "\tgo_p2p_dev_addr=%s\n", value);
  530. os_free(value);
  531. }
  532. static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
  533. {
  534. char *value = wpa_config_get(ssid, "p2p_client_list");
  535. if (value == NULL)
  536. return;
  537. fprintf(f, "\tp2p_client_list=%s\n", value);
  538. os_free(value);
  539. }
  540. static void write_psk_list(FILE *f, struct wpa_ssid *ssid)
  541. {
  542. struct psk_list_entry *psk;
  543. char hex[32 * 2 + 1];
  544. dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) {
  545. wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
  546. fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n",
  547. psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
  548. }
  549. }
  550. #endif /* CONFIG_P2P */
  551. #ifdef CONFIG_MACSEC
  552. static void write_mka_cak(FILE *f, struct wpa_ssid *ssid)
  553. {
  554. char *value;
  555. if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK))
  556. return;
  557. value = wpa_config_get(ssid, "mka_cak");
  558. if (!value)
  559. return;
  560. fprintf(f, "\tmka_cak=%s\n", value);
  561. os_free(value);
  562. }
  563. static void write_mka_ckn(FILE *f, struct wpa_ssid *ssid)
  564. {
  565. char *value;
  566. if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN))
  567. return;
  568. value = wpa_config_get(ssid, "mka_ckn");
  569. if (!value)
  570. return;
  571. fprintf(f, "\tmka_ckn=%s\n", value);
  572. os_free(value);
  573. }
  574. #endif /* CONFIG_MACSEC */
  575. static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
  576. {
  577. int i;
  578. #define STR(t) write_str(f, #t, ssid)
  579. #define INT(t) write_int(f, #t, ssid->t, 0)
  580. #define INTe(t) write_int(f, #t, ssid->eap.t, 0)
  581. #define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
  582. #define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
  583. STR(ssid);
  584. INT(scan_ssid);
  585. write_bssid(f, ssid);
  586. write_str(f, "bssid_blacklist", ssid);
  587. write_str(f, "bssid_whitelist", ssid);
  588. write_psk(f, ssid);
  589. INT(mem_only_psk);
  590. write_proto(f, ssid);
  591. write_key_mgmt(f, ssid);
  592. INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
  593. write_pairwise(f, ssid);
  594. write_group(f, ssid);
  595. write_auth_alg(f, ssid);
  596. STR(bgscan);
  597. STR(autoscan);
  598. STR(scan_freq);
  599. #ifdef IEEE8021X_EAPOL
  600. write_eap(f, ssid);
  601. STR(identity);
  602. STR(anonymous_identity);
  603. STR(password);
  604. STR(ca_cert);
  605. STR(ca_path);
  606. STR(client_cert);
  607. STR(private_key);
  608. STR(private_key_passwd);
  609. STR(dh_file);
  610. STR(subject_match);
  611. STR(altsubject_match);
  612. STR(domain_suffix_match);
  613. STR(domain_match);
  614. STR(ca_cert2);
  615. STR(ca_path2);
  616. STR(client_cert2);
  617. STR(private_key2);
  618. STR(private_key2_passwd);
  619. STR(dh_file2);
  620. STR(subject_match2);
  621. STR(altsubject_match2);
  622. STR(domain_suffix_match2);
  623. STR(domain_match2);
  624. STR(phase1);
  625. STR(phase2);
  626. STR(pcsc);
  627. STR(pin);
  628. STR(engine_id);
  629. STR(key_id);
  630. STR(cert_id);
  631. STR(ca_cert_id);
  632. STR(key2_id);
  633. STR(pin2);
  634. STR(engine2_id);
  635. STR(cert2_id);
  636. STR(ca_cert2_id);
  637. INTe(engine);
  638. INTe(engine2);
  639. INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
  640. STR(openssl_ciphers);
  641. INTe(erp);
  642. #endif /* IEEE8021X_EAPOL */
  643. for (i = 0; i < 4; i++)
  644. write_wep_key(f, i, ssid);
  645. INT(wep_tx_keyidx);
  646. INT(priority);
  647. #ifdef IEEE8021X_EAPOL
  648. INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
  649. STR(pac_file);
  650. INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
  651. INTe(ocsp);
  652. INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM);
  653. #endif /* IEEE8021X_EAPOL */
  654. INT(mode);
  655. INT(no_auto_peer);
  656. INT(frequency);
  657. INT(fixed_freq);
  658. #ifdef CONFIG_ACS
  659. INT(acs);
  660. #endif /* CONFIG_ACS */
  661. write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
  662. INT(disabled);
  663. INT(peerkey);
  664. INT(mixed_cell);
  665. INT(max_oper_chwidth);
  666. INT(pbss);
  667. INT(wps_disabled);
  668. #ifdef CONFIG_IEEE80211W
  669. write_int(f, "ieee80211w", ssid->ieee80211w,
  670. MGMT_FRAME_PROTECTION_DEFAULT);
  671. #endif /* CONFIG_IEEE80211W */
  672. STR(id_str);
  673. #ifdef CONFIG_P2P
  674. write_go_p2p_dev_addr(f, ssid);
  675. write_p2p_client_list(f, ssid);
  676. write_psk_list(f, ssid);
  677. #endif /* CONFIG_P2P */
  678. INT(ap_max_inactivity);
  679. INT(dtim_period);
  680. INT(beacon_int);
  681. #ifdef CONFIG_MACSEC
  682. INT(macsec_policy);
  683. write_mka_cak(f, ssid);
  684. write_mka_ckn(f, ssid);
  685. INT(macsec_integ_only);
  686. INT(macsec_port);
  687. #endif /* CONFIG_MACSEC */
  688. #ifdef CONFIG_HS20
  689. INT(update_identifier);
  690. #endif /* CONFIG_HS20 */
  691. write_int(f, "mac_addr", ssid->mac_addr, -1);
  692. #ifdef CONFIG_MESH
  693. STR(mesh_basic_rates);
  694. INT_DEF(dot11MeshMaxRetries, DEFAULT_MESH_MAX_RETRIES);
  695. INT_DEF(dot11MeshRetryTimeout, DEFAULT_MESH_RETRY_TIMEOUT);
  696. INT_DEF(dot11MeshConfirmTimeout, DEFAULT_MESH_CONFIRM_TIMEOUT);
  697. INT_DEF(dot11MeshHoldingTimeout, DEFAULT_MESH_HOLDING_TIMEOUT);
  698. #endif /* CONFIG_MESH */
  699. INT(wpa_ptk_rekey);
  700. INT(group_rekey);
  701. INT(ignore_broadcast_ssid);
  702. #ifdef CONFIG_HT_OVERRIDES
  703. INT_DEF(disable_ht, DEFAULT_DISABLE_HT);
  704. INT_DEF(disable_ht40, DEFAULT_DISABLE_HT40);
  705. INT_DEF(disable_sgi, DEFAULT_DISABLE_SGI);
  706. INT_DEF(disable_ldpc, DEFAULT_DISABLE_LDPC);
  707. INT(ht40_intolerant);
  708. INT_DEF(disable_max_amsdu, DEFAULT_DISABLE_MAX_AMSDU);
  709. INT_DEF(ampdu_factor, DEFAULT_AMPDU_FACTOR);
  710. INT_DEF(ampdu_density, DEFAULT_AMPDU_DENSITY);
  711. STR(ht_mcs);
  712. #endif /* CONFIG_HT_OVERRIDES */
  713. #ifdef CONFIG_VHT_OVERRIDES
  714. INT(disable_vht);
  715. INT(vht_capa);
  716. INT(vht_capa_mask);
  717. INT_DEF(vht_rx_mcs_nss_1, -1);
  718. INT_DEF(vht_rx_mcs_nss_2, -1);
  719. INT_DEF(vht_rx_mcs_nss_3, -1);
  720. INT_DEF(vht_rx_mcs_nss_4, -1);
  721. INT_DEF(vht_rx_mcs_nss_5, -1);
  722. INT_DEF(vht_rx_mcs_nss_6, -1);
  723. INT_DEF(vht_rx_mcs_nss_7, -1);
  724. INT_DEF(vht_rx_mcs_nss_8, -1);
  725. INT_DEF(vht_tx_mcs_nss_1, -1);
  726. INT_DEF(vht_tx_mcs_nss_2, -1);
  727. INT_DEF(vht_tx_mcs_nss_3, -1);
  728. INT_DEF(vht_tx_mcs_nss_4, -1);
  729. INT_DEF(vht_tx_mcs_nss_5, -1);
  730. INT_DEF(vht_tx_mcs_nss_6, -1);
  731. INT_DEF(vht_tx_mcs_nss_7, -1);
  732. INT_DEF(vht_tx_mcs_nss_8, -1);
  733. #endif /* CONFIG_VHT_OVERRIDES */
  734. #undef STR
  735. #undef INT
  736. #undef INT_DEF
  737. }
  738. static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
  739. {
  740. size_t i;
  741. if (cred->priority)
  742. fprintf(f, "\tpriority=%d\n", cred->priority);
  743. if (cred->pcsc)
  744. fprintf(f, "\tpcsc=%d\n", cred->pcsc);
  745. if (cred->realm)
  746. fprintf(f, "\trealm=\"%s\"\n", cred->realm);
  747. if (cred->username)
  748. fprintf(f, "\tusername=\"%s\"\n", cred->username);
  749. if (cred->password && cred->ext_password)
  750. fprintf(f, "\tpassword=ext:%s\n", cred->password);
  751. else if (cred->password)
  752. fprintf(f, "\tpassword=\"%s\"\n", cred->password);
  753. if (cred->ca_cert)
  754. fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
  755. if (cred->client_cert)
  756. fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert);
  757. if (cred->private_key)
  758. fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key);
  759. if (cred->private_key_passwd)
  760. fprintf(f, "\tprivate_key_passwd=\"%s\"\n",
  761. cred->private_key_passwd);
  762. if (cred->imsi)
  763. fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
  764. if (cred->milenage)
  765. fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
  766. for (i = 0; i < cred->num_domain; i++)
  767. fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
  768. if (cred->domain_suffix_match)
  769. fprintf(f, "\tdomain_suffix_match=\"%s\"\n",
  770. cred->domain_suffix_match);
  771. if (cred->roaming_consortium_len) {
  772. fprintf(f, "\troaming_consortium=");
  773. for (i = 0; i < cred->roaming_consortium_len; i++)
  774. fprintf(f, "%02x", cred->roaming_consortium[i]);
  775. fprintf(f, "\n");
  776. }
  777. if (cred->eap_method) {
  778. const char *name;
  779. name = eap_get_name(cred->eap_method[0].vendor,
  780. cred->eap_method[0].method);
  781. if (name)
  782. fprintf(f, "\teap=%s\n", name);
  783. }
  784. if (cred->phase1)
  785. fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
  786. if (cred->phase2)
  787. fprintf(f, "\tphase2=\"%s\"\n", cred->phase2);
  788. if (cred->excluded_ssid) {
  789. size_t j;
  790. for (i = 0; i < cred->num_excluded_ssid; i++) {
  791. struct excluded_ssid *e = &cred->excluded_ssid[i];
  792. fprintf(f, "\texcluded_ssid=");
  793. for (j = 0; j < e->ssid_len; j++)
  794. fprintf(f, "%02x", e->ssid[j]);
  795. fprintf(f, "\n");
  796. }
  797. }
  798. if (cred->roaming_partner) {
  799. for (i = 0; i < cred->num_roaming_partner; i++) {
  800. struct roaming_partner *p = &cred->roaming_partner[i];
  801. fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n",
  802. p->fqdn, p->exact_match, p->priority,
  803. p->country);
  804. }
  805. }
  806. if (cred->update_identifier)
  807. fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
  808. if (cred->provisioning_sp)
  809. fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
  810. if (cred->sp_priority)
  811. fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
  812. if (cred->min_dl_bandwidth_home)
  813. fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
  814. cred->min_dl_bandwidth_home);
  815. if (cred->min_ul_bandwidth_home)
  816. fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
  817. cred->min_ul_bandwidth_home);
  818. if (cred->min_dl_bandwidth_roaming)
  819. fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
  820. cred->min_dl_bandwidth_roaming);
  821. if (cred->min_ul_bandwidth_roaming)
  822. fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
  823. cred->min_ul_bandwidth_roaming);
  824. if (cred->max_bss_load)
  825. fprintf(f, "\tmax_bss_load=%u\n",
  826. cred->max_bss_load);
  827. if (cred->ocsp)
  828. fprintf(f, "\tocsp=%d\n", cred->ocsp);
  829. if (cred->num_req_conn_capab) {
  830. for (i = 0; i < cred->num_req_conn_capab; i++) {
  831. int *ports;
  832. fprintf(f, "\treq_conn_capab=%u",
  833. cred->req_conn_capab_proto[i]);
  834. ports = cred->req_conn_capab_port[i];
  835. if (ports) {
  836. int j;
  837. for (j = 0; ports[j] != -1; j++) {
  838. fprintf(f, "%s%d", j > 0 ? "," : ":",
  839. ports[j]);
  840. }
  841. }
  842. fprintf(f, "\n");
  843. }
  844. }
  845. if (cred->required_roaming_consortium_len) {
  846. fprintf(f, "\trequired_roaming_consortium=");
  847. for (i = 0; i < cred->required_roaming_consortium_len; i++)
  848. fprintf(f, "%02x",
  849. cred->required_roaming_consortium[i]);
  850. fprintf(f, "\n");
  851. }
  852. if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
  853. fprintf(f, "\tsim_num=%d\n", cred->sim_num);
  854. }
  855. #ifndef CONFIG_NO_CONFIG_BLOBS
  856. static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
  857. {
  858. unsigned char *encoded;
  859. encoded = base64_encode(blob->data, blob->len, NULL);
  860. if (encoded == NULL)
  861. return -1;
  862. fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
  863. os_free(encoded);
  864. return 0;
  865. }
  866. #endif /* CONFIG_NO_CONFIG_BLOBS */
  867. static void write_global_bin(FILE *f, const char *field,
  868. const struct wpabuf *val)
  869. {
  870. size_t i;
  871. const u8 *pos;
  872. if (val == NULL)
  873. return;
  874. fprintf(f, "%s=", field);
  875. pos = wpabuf_head(val);
  876. for (i = 0; i < wpabuf_len(val); i++)
  877. fprintf(f, "%02X", *pos++);
  878. fprintf(f, "\n");
  879. }
  880. static void wpa_config_write_global(FILE *f, struct wpa_config *config)
  881. {
  882. #ifdef CONFIG_CTRL_IFACE
  883. if (config->ctrl_interface)
  884. fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
  885. if (config->ctrl_interface_group)
  886. fprintf(f, "ctrl_interface_group=%s\n",
  887. config->ctrl_interface_group);
  888. #endif /* CONFIG_CTRL_IFACE */
  889. if (config->eapol_version != DEFAULT_EAPOL_VERSION)
  890. fprintf(f, "eapol_version=%d\n", config->eapol_version);
  891. if (config->ap_scan != DEFAULT_AP_SCAN)
  892. fprintf(f, "ap_scan=%d\n", config->ap_scan);
  893. if (config->disable_scan_offload)
  894. fprintf(f, "disable_scan_offload=%d\n",
  895. config->disable_scan_offload);
  896. if (config->fast_reauth != DEFAULT_FAST_REAUTH)
  897. fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
  898. if (config->opensc_engine_path)
  899. fprintf(f, "opensc_engine_path=%s\n",
  900. config->opensc_engine_path);
  901. if (config->pkcs11_engine_path)
  902. fprintf(f, "pkcs11_engine_path=%s\n",
  903. config->pkcs11_engine_path);
  904. if (config->pkcs11_module_path)
  905. fprintf(f, "pkcs11_module_path=%s\n",
  906. config->pkcs11_module_path);
  907. if (config->openssl_ciphers)
  908. fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers);
  909. if (config->pcsc_reader)
  910. fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
  911. if (config->pcsc_pin)
  912. fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
  913. if (config->driver_param)
  914. fprintf(f, "driver_param=%s\n", config->driver_param);
  915. if (config->dot11RSNAConfigPMKLifetime)
  916. fprintf(f, "dot11RSNAConfigPMKLifetime=%u\n",
  917. config->dot11RSNAConfigPMKLifetime);
  918. if (config->dot11RSNAConfigPMKReauthThreshold)
  919. fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%u\n",
  920. config->dot11RSNAConfigPMKReauthThreshold);
  921. if (config->dot11RSNAConfigSATimeout)
  922. fprintf(f, "dot11RSNAConfigSATimeout=%u\n",
  923. config->dot11RSNAConfigSATimeout);
  924. if (config->update_config)
  925. fprintf(f, "update_config=%d\n", config->update_config);
  926. #ifdef CONFIG_WPS
  927. if (!is_nil_uuid(config->uuid)) {
  928. char buf[40];
  929. uuid_bin2str(config->uuid, buf, sizeof(buf));
  930. fprintf(f, "uuid=%s\n", buf);
  931. }
  932. if (config->device_name)
  933. fprintf(f, "device_name=%s\n", config->device_name);
  934. if (config->manufacturer)
  935. fprintf(f, "manufacturer=%s\n", config->manufacturer);
  936. if (config->model_name)
  937. fprintf(f, "model_name=%s\n", config->model_name);
  938. if (config->model_number)
  939. fprintf(f, "model_number=%s\n", config->model_number);
  940. if (config->serial_number)
  941. fprintf(f, "serial_number=%s\n", config->serial_number);
  942. {
  943. char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
  944. buf = wps_dev_type_bin2str(config->device_type,
  945. _buf, sizeof(_buf));
  946. if (os_strcmp(buf, "0-00000000-0") != 0)
  947. fprintf(f, "device_type=%s\n", buf);
  948. }
  949. if (WPA_GET_BE32(config->os_version))
  950. fprintf(f, "os_version=%08x\n",
  951. WPA_GET_BE32(config->os_version));
  952. if (config->config_methods)
  953. fprintf(f, "config_methods=%s\n", config->config_methods);
  954. if (config->wps_cred_processing)
  955. fprintf(f, "wps_cred_processing=%d\n",
  956. config->wps_cred_processing);
  957. if (config->wps_vendor_ext_m1) {
  958. int i, len = wpabuf_len(config->wps_vendor_ext_m1);
  959. const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
  960. if (len > 0) {
  961. fprintf(f, "wps_vendor_ext_m1=");
  962. for (i = 0; i < len; i++)
  963. fprintf(f, "%02x", *p++);
  964. fprintf(f, "\n");
  965. }
  966. }
  967. #endif /* CONFIG_WPS */
  968. #ifdef CONFIG_P2P
  969. if (config->p2p_listen_reg_class)
  970. fprintf(f, "p2p_listen_reg_class=%d\n",
  971. config->p2p_listen_reg_class);
  972. if (config->p2p_listen_channel)
  973. fprintf(f, "p2p_listen_channel=%d\n",
  974. config->p2p_listen_channel);
  975. if (config->p2p_oper_reg_class)
  976. fprintf(f, "p2p_oper_reg_class=%d\n",
  977. config->p2p_oper_reg_class);
  978. if (config->p2p_oper_channel)
  979. fprintf(f, "p2p_oper_channel=%d\n", config->p2p_oper_channel);
  980. if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
  981. fprintf(f, "p2p_go_intent=%d\n", config->p2p_go_intent);
  982. if (config->p2p_ssid_postfix)
  983. fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
  984. if (config->persistent_reconnect)
  985. fprintf(f, "persistent_reconnect=%d\n",
  986. config->persistent_reconnect);
  987. if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
  988. fprintf(f, "p2p_intra_bss=%d\n", config->p2p_intra_bss);
  989. if (config->p2p_group_idle)
  990. fprintf(f, "p2p_group_idle=%d\n", config->p2p_group_idle);
  991. if (config->p2p_passphrase_len)
  992. fprintf(f, "p2p_passphrase_len=%u\n",
  993. config->p2p_passphrase_len);
  994. if (config->p2p_pref_chan) {
  995. unsigned int i;
  996. fprintf(f, "p2p_pref_chan=");
  997. for (i = 0; i < config->num_p2p_pref_chan; i++) {
  998. fprintf(f, "%s%u:%u", i > 0 ? "," : "",
  999. config->p2p_pref_chan[i].op_class,
  1000. config->p2p_pref_chan[i].chan);
  1001. }
  1002. fprintf(f, "\n");
  1003. }
  1004. if (config->p2p_no_go_freq.num) {
  1005. char *val = freq_range_list_str(&config->p2p_no_go_freq);
  1006. if (val) {
  1007. fprintf(f, "p2p_no_go_freq=%s\n", val);
  1008. os_free(val);
  1009. }
  1010. }
  1011. if (config->p2p_add_cli_chan)
  1012. fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
  1013. if (config->p2p_optimize_listen_chan !=
  1014. DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN)
  1015. fprintf(f, "p2p_optimize_listen_chan=%d\n",
  1016. config->p2p_optimize_listen_chan);
  1017. if (config->p2p_go_ht40)
  1018. fprintf(f, "p2p_go_ht40=%d\n", config->p2p_go_ht40);
  1019. if (config->p2p_go_vht)
  1020. fprintf(f, "p2p_go_vht=%d\n", config->p2p_go_vht);
  1021. if (config->p2p_go_ctwindow != DEFAULT_P2P_GO_CTWINDOW)
  1022. fprintf(f, "p2p_go_ctwindow=%d\n", config->p2p_go_ctwindow);
  1023. if (config->p2p_disabled)
  1024. fprintf(f, "p2p_disabled=%d\n", config->p2p_disabled);
  1025. if (config->p2p_no_group_iface)
  1026. fprintf(f, "p2p_no_group_iface=%d\n",
  1027. config->p2p_no_group_iface);
  1028. if (config->p2p_ignore_shared_freq)
  1029. fprintf(f, "p2p_ignore_shared_freq=%d\n",
  1030. config->p2p_ignore_shared_freq);
  1031. if (config->p2p_cli_probe)
  1032. fprintf(f, "p2p_cli_probe=%d\n", config->p2p_cli_probe);
  1033. if (config->p2p_go_freq_change_policy != DEFAULT_P2P_GO_FREQ_MOVE)
  1034. fprintf(f, "p2p_go_freq_change_policy=%u\n",
  1035. config->p2p_go_freq_change_policy);
  1036. if (WPA_GET_BE32(config->ip_addr_go))
  1037. fprintf(f, "ip_addr_go=%u.%u.%u.%u\n",
  1038. config->ip_addr_go[0], config->ip_addr_go[1],
  1039. config->ip_addr_go[2], config->ip_addr_go[3]);
  1040. if (WPA_GET_BE32(config->ip_addr_mask))
  1041. fprintf(f, "ip_addr_mask=%u.%u.%u.%u\n",
  1042. config->ip_addr_mask[0], config->ip_addr_mask[1],
  1043. config->ip_addr_mask[2], config->ip_addr_mask[3]);
  1044. if (WPA_GET_BE32(config->ip_addr_start))
  1045. fprintf(f, "ip_addr_start=%u.%u.%u.%u\n",
  1046. config->ip_addr_start[0], config->ip_addr_start[1],
  1047. config->ip_addr_start[2], config->ip_addr_start[3]);
  1048. if (WPA_GET_BE32(config->ip_addr_end))
  1049. fprintf(f, "ip_addr_end=%u.%u.%u.%u\n",
  1050. config->ip_addr_end[0], config->ip_addr_end[1],
  1051. config->ip_addr_end[2], config->ip_addr_end[3]);
  1052. #endif /* CONFIG_P2P */
  1053. if (config->country[0] && config->country[1]) {
  1054. fprintf(f, "country=%c%c\n",
  1055. config->country[0], config->country[1]);
  1056. }
  1057. if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
  1058. fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
  1059. if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
  1060. fprintf(f, "bss_expiration_age=%u\n",
  1061. config->bss_expiration_age);
  1062. if (config->bss_expiration_scan_count !=
  1063. DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
  1064. fprintf(f, "bss_expiration_scan_count=%u\n",
  1065. config->bss_expiration_scan_count);
  1066. if (config->filter_ssids)
  1067. fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
  1068. if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
  1069. fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
  1070. if (config->disassoc_low_ack)
  1071. fprintf(f, "disassoc_low_ack=%d\n", config->disassoc_low_ack);
  1072. #ifdef CONFIG_HS20
  1073. if (config->hs20)
  1074. fprintf(f, "hs20=1\n");
  1075. #endif /* CONFIG_HS20 */
  1076. #ifdef CONFIG_INTERWORKING
  1077. if (config->interworking)
  1078. fprintf(f, "interworking=%d\n", config->interworking);
  1079. if (!is_zero_ether_addr(config->hessid))
  1080. fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
  1081. if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
  1082. fprintf(f, "access_network_type=%d\n",
  1083. config->access_network_type);
  1084. #endif /* CONFIG_INTERWORKING */
  1085. if (config->pbc_in_m1)
  1086. fprintf(f, "pbc_in_m1=%d\n", config->pbc_in_m1);
  1087. if (config->wps_nfc_pw_from_config) {
  1088. if (config->wps_nfc_dev_pw_id)
  1089. fprintf(f, "wps_nfc_dev_pw_id=%d\n",
  1090. config->wps_nfc_dev_pw_id);
  1091. write_global_bin(f, "wps_nfc_dh_pubkey",
  1092. config->wps_nfc_dh_pubkey);
  1093. write_global_bin(f, "wps_nfc_dh_privkey",
  1094. config->wps_nfc_dh_privkey);
  1095. write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
  1096. }
  1097. if (config->ext_password_backend)
  1098. fprintf(f, "ext_password_backend=%s\n",
  1099. config->ext_password_backend);
  1100. if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY)
  1101. fprintf(f, "p2p_go_max_inactivity=%d\n",
  1102. config->p2p_go_max_inactivity);
  1103. if (config->auto_interworking)
  1104. fprintf(f, "auto_interworking=%d\n",
  1105. config->auto_interworking);
  1106. if (config->okc)
  1107. fprintf(f, "okc=%d\n", config->okc);
  1108. if (config->pmf)
  1109. fprintf(f, "pmf=%d\n", config->pmf);
  1110. if (config->dtim_period)
  1111. fprintf(f, "dtim_period=%d\n", config->dtim_period);
  1112. if (config->beacon_int)
  1113. fprintf(f, "beacon_int=%d\n", config->beacon_int);
  1114. if (config->sae_groups) {
  1115. int i;
  1116. fprintf(f, "sae_groups=");
  1117. for (i = 0; config->sae_groups[i] >= 0; i++) {
  1118. fprintf(f, "%s%d", i > 0 ? " " : "",
  1119. config->sae_groups[i]);
  1120. }
  1121. fprintf(f, "\n");
  1122. }
  1123. if (config->ap_vendor_elements) {
  1124. int i, len = wpabuf_len(config->ap_vendor_elements);
  1125. const u8 *p = wpabuf_head_u8(config->ap_vendor_elements);
  1126. if (len > 0) {
  1127. fprintf(f, "ap_vendor_elements=");
  1128. for (i = 0; i < len; i++)
  1129. fprintf(f, "%02x", *p++);
  1130. fprintf(f, "\n");
  1131. }
  1132. }
  1133. if (config->ignore_old_scan_res)
  1134. fprintf(f, "ignore_old_scan_res=%d\n",
  1135. config->ignore_old_scan_res);
  1136. if (config->freq_list && config->freq_list[0]) {
  1137. int i;
  1138. fprintf(f, "freq_list=");
  1139. for (i = 0; config->freq_list[i]; i++) {
  1140. fprintf(f, "%s%d", i > 0 ? " " : "",
  1141. config->freq_list[i]);
  1142. }
  1143. fprintf(f, "\n");
  1144. }
  1145. if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
  1146. fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
  1147. if (config->sched_scan_interval)
  1148. fprintf(f, "sched_scan_interval=%u\n",
  1149. config->sched_scan_interval);
  1150. if (config->external_sim)
  1151. fprintf(f, "external_sim=%d\n", config->external_sim);
  1152. if (config->tdls_external_control)
  1153. fprintf(f, "tdls_external_control=%d\n",
  1154. config->tdls_external_control);
  1155. if (config->wowlan_triggers)
  1156. fprintf(f, "wowlan_triggers=%s\n",
  1157. config->wowlan_triggers);
  1158. if (config->bgscan)
  1159. fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
  1160. if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY)
  1161. fprintf(f, "p2p_search_delay=%u\n",
  1162. config->p2p_search_delay);
  1163. if (config->mac_addr)
  1164. fprintf(f, "mac_addr=%d\n", config->mac_addr);
  1165. if (config->rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
  1166. fprintf(f, "rand_addr_lifetime=%u\n",
  1167. config->rand_addr_lifetime);
  1168. if (config->preassoc_mac_addr)
  1169. fprintf(f, "preassoc_mac_addr=%d\n", config->preassoc_mac_addr);
  1170. if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD)
  1171. fprintf(f, "key_mgmt_offload=%d\n", config->key_mgmt_offload);
  1172. if (config->user_mpm != DEFAULT_USER_MPM)
  1173. fprintf(f, "user_mpm=%d\n", config->user_mpm);
  1174. if (config->max_peer_links != DEFAULT_MAX_PEER_LINKS)
  1175. fprintf(f, "max_peer_links=%d\n", config->max_peer_links);
  1176. if (config->cert_in_cb != DEFAULT_CERT_IN_CB)
  1177. fprintf(f, "cert_in_cb=%d\n", config->cert_in_cb);
  1178. if (config->mesh_max_inactivity != DEFAULT_MESH_MAX_INACTIVITY)
  1179. fprintf(f, "mesh_max_inactivity=%d\n",
  1180. config->mesh_max_inactivity);
  1181. if (config->dot11RSNASAERetransPeriod !=
  1182. DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD)
  1183. fprintf(f, "dot11RSNASAERetransPeriod=%d\n",
  1184. config->dot11RSNASAERetransPeriod);
  1185. if (config->passive_scan)
  1186. fprintf(f, "passive_scan=%d\n", config->passive_scan);
  1187. if (config->reassoc_same_bss_optim)
  1188. fprintf(f, "reassoc_same_bss_optim=%d\n",
  1189. config->reassoc_same_bss_optim);
  1190. if (config->wps_priority)
  1191. fprintf(f, "wps_priority=%d\n", config->wps_priority);
  1192. if (config->wpa_rsc_relaxation != DEFAULT_WPA_RSC_RELAXATION)
  1193. fprintf(f, "wpa_rsc_relaxation=%d\n",
  1194. config->wpa_rsc_relaxation);
  1195. if (config->sched_scan_plans)
  1196. fprintf(f, "sched_scan_plans=%s\n", config->sched_scan_plans);
  1197. #ifdef CONFIG_MBO
  1198. if (config->non_pref_chan)
  1199. fprintf(f, "non_pref_chan=%s\n", config->non_pref_chan);
  1200. if (config->mbo_cell_capa != DEFAULT_MBO_CELL_CAPA)
  1201. fprintf(f, "mbo_cell_capa=%u\n", config->mbo_cell_capa);
  1202. #endif /* CONFIG_MBO */
  1203. if (config->gas_address3)
  1204. fprintf(f, "gas_address3=%d\n", config->gas_address3);
  1205. if (config->ftm_responder)
  1206. fprintf(f, "ftm_responder=%d\n", config->ftm_responder);
  1207. if (config->ftm_initiator)
  1208. fprintf(f, "ftm_initiator=%d\n", config->ftm_initiator);
  1209. }
  1210. #endif /* CONFIG_NO_CONFIG_WRITE */
  1211. int wpa_config_write(const char *name, struct wpa_config *config)
  1212. {
  1213. #ifndef CONFIG_NO_CONFIG_WRITE
  1214. FILE *f;
  1215. struct wpa_ssid *ssid;
  1216. struct wpa_cred *cred;
  1217. #ifndef CONFIG_NO_CONFIG_BLOBS
  1218. struct wpa_config_blob *blob;
  1219. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1220. int ret = 0;
  1221. const char *orig_name = name;
  1222. int tmp_len = os_strlen(name) + 5; /* allow space for .tmp suffix */
  1223. char *tmp_name = os_malloc(tmp_len);
  1224. if (tmp_name) {
  1225. os_snprintf(tmp_name, tmp_len, "%s.tmp", name);
  1226. name = tmp_name;
  1227. }
  1228. wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
  1229. f = fopen(name, "w");
  1230. if (f == NULL) {
  1231. wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
  1232. os_free(tmp_name);
  1233. return -1;
  1234. }
  1235. wpa_config_write_global(f, config);
  1236. for (cred = config->cred; cred; cred = cred->next) {
  1237. if (cred->temporary)
  1238. continue;
  1239. fprintf(f, "\ncred={\n");
  1240. wpa_config_write_cred(f, cred);
  1241. fprintf(f, "}\n");
  1242. }
  1243. for (ssid = config->ssid; ssid; ssid = ssid->next) {
  1244. if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
  1245. continue; /* do not save temporary networks */
  1246. if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
  1247. !ssid->passphrase)
  1248. continue; /* do not save invalid network */
  1249. fprintf(f, "\nnetwork={\n");
  1250. wpa_config_write_network(f, ssid);
  1251. fprintf(f, "}\n");
  1252. }
  1253. #ifndef CONFIG_NO_CONFIG_BLOBS
  1254. for (blob = config->blobs; blob; blob = blob->next) {
  1255. ret = wpa_config_write_blob(f, blob);
  1256. if (ret)
  1257. break;
  1258. }
  1259. #endif /* CONFIG_NO_CONFIG_BLOBS */
  1260. os_fdatasync(f);
  1261. fclose(f);
  1262. if (tmp_name) {
  1263. int chmod_ret = 0;
  1264. #ifdef ANDROID
  1265. chmod_ret = chmod(tmp_name,
  1266. S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
  1267. #endif /* ANDROID */
  1268. if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0)
  1269. ret = -1;
  1270. os_free(tmp_name);
  1271. }
  1272. wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
  1273. orig_name, ret ? "un" : "");
  1274. return ret;
  1275. #else /* CONFIG_NO_CONFIG_WRITE */
  1276. return -1;
  1277. #endif /* CONFIG_NO_CONFIG_WRITE */
  1278. }