config_file.c 33 KB

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