config_file.c 31 KB

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