blob: 2e3d57ee0d6dcb4f9ed2137ce9d8e17a651c6777 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Configuration backend: text file
Dmitry Shmidt04949592012-07-19 12:16:46 -07003 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 *
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
13#include "includes.h"
Dmitry Shmidt7f656022015-02-25 14:36:37 -080014#ifdef ANDROID
15#include <sys/stat.h>
16#endif /* ANDROID */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070017
18#include "common.h"
19#include "config.h"
20#include "base64.h"
21#include "uuid.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070022#include "p2p/p2p.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080023#include "eap_peer/eap_methods.h"
24#include "eap_peer/eap.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070025
26
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070027static int newline_terminated(const char *buf, size_t buflen)
28{
29 size_t len = os_strlen(buf);
30 if (len == 0)
31 return 0;
32 if (len == buflen - 1 && buf[buflen - 1] != '\r' &&
33 buf[len - 1] != '\n')
34 return 0;
35 return 1;
36}
37
38
39static void skip_line_end(FILE *stream)
40{
41 char buf[100];
42 while (fgets(buf, sizeof(buf), stream)) {
43 buf[sizeof(buf) - 1] = '\0';
44 if (newline_terminated(buf, sizeof(buf)))
45 return;
46 }
47}
48
49
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070050/**
51 * wpa_config_get_line - Read the next configuration file line
52 * @s: Buffer for the line
53 * @size: The buffer length
54 * @stream: File stream to read from
55 * @line: Pointer to a variable storing the file line number
56 * @_pos: Buffer for the pointer to the beginning of data on the text line or
57 * %NULL if not needed (returned value used instead)
58 * Returns: Pointer to the beginning of data on the text line or %NULL if no
59 * more text lines are available.
60 *
61 * This function reads the next non-empty line from the configuration file and
62 * removes comments. The returned string is guaranteed to be null-terminated.
63 */
64static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line,
65 char **_pos)
66{
67 char *pos, *end, *sstart;
68
69 while (fgets(s, size, stream)) {
70 (*line)++;
71 s[size - 1] = '\0';
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070072 if (!newline_terminated(s, size)) {
73 /*
74 * The line was truncated - skip rest of it to avoid
75 * confusing error messages.
76 */
77 wpa_printf(MSG_INFO, "Long line in configuration file "
78 "truncated");
79 skip_line_end(stream);
80 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070081 pos = s;
82
83 /* Skip white space from the beginning of line. */
84 while (*pos == ' ' || *pos == '\t' || *pos == '\r')
85 pos++;
86
87 /* Skip comment lines and empty lines */
88 if (*pos == '#' || *pos == '\n' || *pos == '\0')
89 continue;
90
91 /*
92 * Remove # comments unless they are within a double quoted
93 * string.
94 */
95 sstart = os_strchr(pos, '"');
96 if (sstart)
97 sstart = os_strrchr(sstart + 1, '"');
98 if (!sstart)
99 sstart = pos;
100 end = os_strchr(sstart, '#');
101 if (end)
102 *end-- = '\0';
103 else
104 end = pos + os_strlen(pos) - 1;
105
106 /* Remove trailing white space. */
107 while (end > pos &&
108 (*end == '\n' || *end == ' ' || *end == '\t' ||
109 *end == '\r'))
110 *end-- = '\0';
111
112 if (*pos == '\0')
113 continue;
114
115 if (_pos)
116 *_pos = pos;
117 return pos;
118 }
119
120 if (_pos)
121 *_pos = NULL;
122 return NULL;
123}
124
125
126static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
127{
128 int errors = 0;
129
130 if (ssid->passphrase) {
131 if (ssid->psk_set) {
132 wpa_printf(MSG_ERROR, "Line %d: both PSK and "
133 "passphrase configured.", line);
134 errors++;
135 }
136 wpa_config_update_psk(ssid);
137 }
138
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700139 if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
140 !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
141 !(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
142 /* Group cipher cannot be stronger than the pairwise cipher. */
143 wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
144 " list since it was not allowed for pairwise "
145 "cipher", line);
146 ssid->group_cipher &= ~WPA_CIPHER_CCMP;
147 }
148
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800149 if (ssid->mode == WPAS_MODE_MESH &&
150 (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
151 ssid->key_mgmt != WPA_KEY_MGMT_SAE)) {
152 wpa_printf(MSG_ERROR,
153 "Line %d: key_mgmt for mesh network should be open or SAE",
154 line);
155 errors++;
156 }
157
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700158 return errors;
159}
160
161
162static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
163{
164 struct wpa_ssid *ssid;
165 int errors = 0, end = 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700166 char buf[2000], *pos, *pos2;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700167
168 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
169 *line);
170 ssid = os_zalloc(sizeof(*ssid));
171 if (ssid == NULL)
172 return NULL;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700173 dl_list_init(&ssid->psk_list);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700174 ssid->id = id;
175
176 wpa_config_set_network_defaults(ssid);
177
178 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
179 if (os_strcmp(pos, "}") == 0) {
180 end = 1;
181 break;
182 }
183
184 pos2 = os_strchr(pos, '=');
185 if (pos2 == NULL) {
186 wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
187 "'%s'.", *line, pos);
188 errors++;
189 continue;
190 }
191
192 *pos2++ = '\0';
193 if (*pos2 == '"') {
194 if (os_strchr(pos2 + 1, '"') == NULL) {
195 wpa_printf(MSG_ERROR, "Line %d: invalid "
196 "quotation '%s'.", *line, pos2);
197 errors++;
198 continue;
199 }
200 }
201
202 if (wpa_config_set(ssid, pos, pos2, *line) < 0)
203 errors++;
204 }
205
206 if (!end) {
207 wpa_printf(MSG_ERROR, "Line %d: network block was not "
208 "terminated properly.", *line);
209 errors++;
210 }
211
212 errors += wpa_config_validate_network(ssid, *line);
213
214 if (errors) {
215 wpa_config_free_ssid(ssid);
216 ssid = NULL;
217 }
218
219 return ssid;
220}
221
222
Dmitry Shmidt04949592012-07-19 12:16:46 -0700223static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
224{
225 struct wpa_cred *cred;
226 int errors = 0, end = 0;
227 char buf[256], *pos, *pos2;
228
229 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
230 cred = os_zalloc(sizeof(*cred));
231 if (cred == NULL)
232 return NULL;
233 cred->id = id;
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -0700234 cred->sim_num = DEFAULT_USER_SELECTED_SIM;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700235
236 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
237 if (os_strcmp(pos, "}") == 0) {
238 end = 1;
239 break;
240 }
241
242 pos2 = os_strchr(pos, '=');
243 if (pos2 == NULL) {
244 wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
245 "'%s'.", *line, pos);
246 errors++;
247 continue;
248 }
249
250 *pos2++ = '\0';
251 if (*pos2 == '"') {
252 if (os_strchr(pos2 + 1, '"') == NULL) {
253 wpa_printf(MSG_ERROR, "Line %d: invalid "
254 "quotation '%s'.", *line, pos2);
255 errors++;
256 continue;
257 }
258 }
259
260 if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
261 errors++;
262 }
263
264 if (!end) {
265 wpa_printf(MSG_ERROR, "Line %d: cred block was not "
266 "terminated properly.", *line);
267 errors++;
268 }
269
270 if (errors) {
271 wpa_config_free_cred(cred);
272 cred = NULL;
273 }
274
275 return cred;
276}
277
278
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700279#ifndef CONFIG_NO_CONFIG_BLOBS
280static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
281 const char *name)
282{
283 struct wpa_config_blob *blob;
284 char buf[256], *pos;
285 unsigned char *encoded = NULL, *nencoded;
286 int end = 0;
287 size_t encoded_len = 0, len;
288
289 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
290 *line, name);
291
292 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
293 if (os_strcmp(pos, "}") == 0) {
294 end = 1;
295 break;
296 }
297
298 len = os_strlen(pos);
299 nencoded = os_realloc(encoded, encoded_len + len);
300 if (nencoded == NULL) {
301 wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
302 "blob", *line);
303 os_free(encoded);
304 return NULL;
305 }
306 encoded = nencoded;
307 os_memcpy(encoded + encoded_len, pos, len);
308 encoded_len += len;
309 }
310
311 if (!end) {
312 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
313 "properly", *line);
314 os_free(encoded);
315 return NULL;
316 }
317
318 blob = os_zalloc(sizeof(*blob));
319 if (blob == NULL) {
320 os_free(encoded);
321 return NULL;
322 }
323 blob->name = os_strdup(name);
324 blob->data = base64_decode(encoded, encoded_len, &blob->len);
325 os_free(encoded);
326
327 if (blob->name == NULL || blob->data == NULL) {
328 wpa_config_free_blob(blob);
329 return NULL;
330 }
331
332 return blob;
333}
334
335
336static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
337 int *line, char *bname)
338{
339 char *name_end;
340 struct wpa_config_blob *blob;
341
342 name_end = os_strchr(bname, '=');
343 if (name_end == NULL) {
344 wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
345 *line);
346 return -1;
347 }
348 *name_end = '\0';
349
350 blob = wpa_config_read_blob(f, line, bname);
351 if (blob == NULL) {
352 wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
353 *line, bname);
354 return -1;
355 }
356 wpa_config_set_blob(config, blob);
357 return 0;
358}
359#endif /* CONFIG_NO_CONFIG_BLOBS */
360
361
Dmitry Shmidt64f47c52013-04-16 10:41:54 -0700362struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700363{
364 FILE *f;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700365 char buf[512], *pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700366 int errors = 0, line = 0;
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700367 struct wpa_ssid *ssid, *tail, *head;
368 struct wpa_cred *cred, *cred_tail, *cred_head;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700369 struct wpa_config *config;
370 int id = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700371 int cred_id = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700372
Dmitry Shmidt64f47c52013-04-16 10:41:54 -0700373 if (name == NULL)
374 return NULL;
375 if (cfgp)
376 config = cfgp;
377 else
378 config = wpa_config_alloc_empty(NULL, NULL);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700379 if (config == NULL) {
380 wpa_printf(MSG_ERROR, "Failed to allocate config file "
381 "structure");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700382 return NULL;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700383 }
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700384 tail = head = config->ssid;
385 while (tail && tail->next)
386 tail = tail->next;
387 cred_tail = cred_head = config->cred;
388 while (cred_tail && cred_tail->next)
389 cred_tail = cred_tail->next;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700390
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700391 wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
392 f = fopen(name, "r");
393 if (f == NULL) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700394 wpa_printf(MSG_ERROR, "Failed to open config file '%s', "
395 "error: %s", name, strerror(errno));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700396 os_free(config);
397 return NULL;
398 }
399
400 while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
401 if (os_strcmp(pos, "network={") == 0) {
402 ssid = wpa_config_read_network(f, &line, id++);
403 if (ssid == NULL) {
404 wpa_printf(MSG_ERROR, "Line %d: failed to "
405 "parse network block.", line);
406 errors++;
407 continue;
408 }
409 if (head == NULL) {
410 head = tail = ssid;
411 } else {
412 tail->next = ssid;
413 tail = ssid;
414 }
415 if (wpa_config_add_prio_network(config, ssid)) {
416 wpa_printf(MSG_ERROR, "Line %d: failed to add "
417 "network block to priority list.",
418 line);
419 errors++;
420 continue;
421 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700422 } else if (os_strcmp(pos, "cred={") == 0) {
423 cred = wpa_config_read_cred(f, &line, cred_id++);
424 if (cred == NULL) {
425 wpa_printf(MSG_ERROR, "Line %d: failed to "
426 "parse cred block.", line);
427 errors++;
428 continue;
429 }
430 if (cred_head == NULL) {
431 cred_head = cred_tail = cred;
432 } else {
433 cred_tail->next = cred;
434 cred_tail = cred;
435 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700436#ifndef CONFIG_NO_CONFIG_BLOBS
437 } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
438 if (wpa_config_process_blob(config, f, &line, pos + 12)
439 < 0) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700440 wpa_printf(MSG_ERROR, "Line %d: failed to "
441 "process blob.", line);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700442 errors++;
443 continue;
444 }
445#endif /* CONFIG_NO_CONFIG_BLOBS */
446 } else if (wpa_config_process_global(config, pos, line) < 0) {
447 wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
448 "line '%s'.", line, pos);
449 errors++;
450 continue;
451 }
452 }
453
454 fclose(f);
455
Iliyan Malchev97d98062013-04-23 02:37:51 +0000456 config->ssid = head;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700457 wpa_config_debug_dump_networks(config);
Iliyan Malchev97d98062013-04-23 02:37:51 +0000458 config->cred = cred_head;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700459
460#ifndef WPA_IGNORE_CONFIG_ERRORS
461 if (errors) {
462 wpa_config_free(config);
463 config = NULL;
464 head = NULL;
465 }
466#endif /* WPA_IGNORE_CONFIG_ERRORS */
467
468 return config;
469}
470
471
472#ifndef CONFIG_NO_CONFIG_WRITE
473
474static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
475{
476 char *value = wpa_config_get(ssid, field);
477 if (value == NULL)
478 return;
479 fprintf(f, "\t%s=%s\n", field, value);
480 os_free(value);
481}
482
483
484static void write_int(FILE *f, const char *field, int value, int def)
485{
486 if (value == def)
487 return;
488 fprintf(f, "\t%s=%d\n", field, value);
489}
490
491
492static void write_bssid(FILE *f, struct wpa_ssid *ssid)
493{
494 char *value = wpa_config_get(ssid, "bssid");
495 if (value == NULL)
496 return;
497 fprintf(f, "\tbssid=%s\n", value);
498 os_free(value);
499}
500
501
502static void write_psk(FILE *f, struct wpa_ssid *ssid)
503{
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -0700504 char *value;
505
506 if (ssid->mem_only_psk)
507 return;
508
509 value = wpa_config_get(ssid, "psk");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700510 if (value == NULL)
511 return;
512 fprintf(f, "\tpsk=%s\n", value);
513 os_free(value);
514}
515
516
517static void write_proto(FILE *f, struct wpa_ssid *ssid)
518{
519 char *value;
520
521 if (ssid->proto == DEFAULT_PROTO)
522 return;
523
524 value = wpa_config_get(ssid, "proto");
525 if (value == NULL)
526 return;
527 if (value[0])
528 fprintf(f, "\tproto=%s\n", value);
529 os_free(value);
530}
531
532
533static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
534{
535 char *value;
536
537 if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
538 return;
539
540 value = wpa_config_get(ssid, "key_mgmt");
541 if (value == NULL)
542 return;
543 if (value[0])
544 fprintf(f, "\tkey_mgmt=%s\n", value);
545 os_free(value);
546}
547
548
549static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
550{
551 char *value;
552
553 if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
554 return;
555
556 value = wpa_config_get(ssid, "pairwise");
557 if (value == NULL)
558 return;
559 if (value[0])
560 fprintf(f, "\tpairwise=%s\n", value);
561 os_free(value);
562}
563
564
565static void write_group(FILE *f, struct wpa_ssid *ssid)
566{
567 char *value;
568
569 if (ssid->group_cipher == DEFAULT_GROUP)
570 return;
571
572 value = wpa_config_get(ssid, "group");
573 if (value == NULL)
574 return;
575 if (value[0])
576 fprintf(f, "\tgroup=%s\n", value);
577 os_free(value);
578}
579
580
581static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
582{
583 char *value;
584
585 if (ssid->auth_alg == 0)
586 return;
587
588 value = wpa_config_get(ssid, "auth_alg");
589 if (value == NULL)
590 return;
591 if (value[0])
592 fprintf(f, "\tauth_alg=%s\n", value);
593 os_free(value);
594}
595
596
597#ifdef IEEE8021X_EAPOL
598static void write_eap(FILE *f, struct wpa_ssid *ssid)
599{
600 char *value;
601
602 value = wpa_config_get(ssid, "eap");
603 if (value == NULL)
604 return;
605
606 if (value[0])
607 fprintf(f, "\teap=%s\n", value);
608 os_free(value);
609}
610#endif /* IEEE8021X_EAPOL */
611
612
613static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
614{
615 char field[20], *value;
616 int res;
617
618 res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800619 if (os_snprintf_error(sizeof(field), res))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700620 return;
621 value = wpa_config_get(ssid, field);
622 if (value) {
623 fprintf(f, "\t%s=%s\n", field, value);
624 os_free(value);
625 }
626}
627
628
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800629#ifdef CONFIG_P2P
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700630
Dmitry Shmidt54605472013-11-08 11:10:19 -0800631static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid)
632{
633 char *value = wpa_config_get(ssid, "go_p2p_dev_addr");
634 if (value == NULL)
635 return;
636 fprintf(f, "\tgo_p2p_dev_addr=%s\n", value);
637 os_free(value);
638}
639
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800640static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
641{
642 char *value = wpa_config_get(ssid, "p2p_client_list");
643 if (value == NULL)
644 return;
645 fprintf(f, "\tp2p_client_list=%s\n", value);
646 os_free(value);
647}
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700648
649
650static void write_psk_list(FILE *f, struct wpa_ssid *ssid)
651{
652 struct psk_list_entry *psk;
653 char hex[32 * 2 + 1];
654
655 dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) {
656 wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
657 fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n",
658 psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
659 }
660}
661
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800662#endif /* CONFIG_P2P */
663
664
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800665#ifdef CONFIG_MACSEC
666
667static void write_mka_cak(FILE *f, struct wpa_ssid *ssid)
668{
669 char *value;
670
671 if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK))
672 return;
673
674 value = wpa_config_get(ssid, "mka_cak");
675 if (!value)
676 return;
677 fprintf(f, "\tmka_cak=%s\n", value);
678 os_free(value);
679}
680
681
682static void write_mka_ckn(FILE *f, struct wpa_ssid *ssid)
683{
684 char *value;
685
686 if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN))
687 return;
688
689 value = wpa_config_get(ssid, "mka_ckn");
690 if (!value)
691 return;
692 fprintf(f, "\tmka_ckn=%s\n", value);
693 os_free(value);
694}
695
696#endif /* CONFIG_MACSEC */
697
698
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700699static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
700{
701 int i;
702
703#define STR(t) write_str(f, #t, ssid)
704#define INT(t) write_int(f, #t, ssid->t, 0)
705#define INTe(t) write_int(f, #t, ssid->eap.t, 0)
706#define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
707#define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
708
709 STR(ssid);
710 INT(scan_ssid);
711 write_bssid(f, ssid);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800712 write_str(f, "bssid_blacklist", ssid);
713 write_str(f, "bssid_whitelist", ssid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700714 write_psk(f, ssid);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -0700715 INT(mem_only_psk);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700716 write_proto(f, ssid);
717 write_key_mgmt(f, ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700718 INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700719 write_pairwise(f, ssid);
720 write_group(f, ssid);
721 write_auth_alg(f, ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700722 STR(bgscan);
723 STR(autoscan);
Dmitry Shmidt56052862013-10-04 10:23:25 -0700724 STR(scan_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700725#ifdef IEEE8021X_EAPOL
726 write_eap(f, ssid);
727 STR(identity);
728 STR(anonymous_identity);
729 STR(password);
730 STR(ca_cert);
731 STR(ca_path);
732 STR(client_cert);
733 STR(private_key);
734 STR(private_key_passwd);
735 STR(dh_file);
736 STR(subject_match);
737 STR(altsubject_match);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700738 STR(domain_suffix_match);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800739 STR(domain_match);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700740 STR(ca_cert2);
741 STR(ca_path2);
742 STR(client_cert2);
743 STR(private_key2);
744 STR(private_key2_passwd);
745 STR(dh_file2);
746 STR(subject_match2);
747 STR(altsubject_match2);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700748 STR(domain_suffix_match2);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800749 STR(domain_match2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700750 STR(phase1);
751 STR(phase2);
752 STR(pcsc);
753 STR(pin);
754 STR(engine_id);
755 STR(key_id);
756 STR(cert_id);
757 STR(ca_cert_id);
758 STR(key2_id);
759 STR(pin2);
760 STR(engine2_id);
761 STR(cert2_id);
762 STR(ca_cert2_id);
763 INTe(engine);
764 INTe(engine2);
765 INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800766 STR(openssl_ciphers);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800767 INTe(erp);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700768#endif /* IEEE8021X_EAPOL */
769 for (i = 0; i < 4; i++)
770 write_wep_key(f, i, ssid);
771 INT(wep_tx_keyidx);
772 INT(priority);
773#ifdef IEEE8021X_EAPOL
774 INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
775 STR(pac_file);
776 INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700777 INTe(ocsp);
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -0700778 INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700779#endif /* IEEE8021X_EAPOL */
780 INT(mode);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800781 INT(no_auto_peer);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800782 INT(frequency);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800783 INT(fixed_freq);
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -0800784#ifdef CONFIG_ACS
785 INT(acs);
786#endif /* CONFIG_ACS */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800787 write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700788 INT(disabled);
789 INT(peerkey);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800790 INT(mixed_cell);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800791 INT(max_oper_chwidth);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800792 INT(pbss);
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700793 INT(wps_disabled);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700794#ifdef CONFIG_IEEE80211W
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800795 write_int(f, "ieee80211w", ssid->ieee80211w,
796 MGMT_FRAME_PROTECTION_DEFAULT);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700797#endif /* CONFIG_IEEE80211W */
798 STR(id_str);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800799#ifdef CONFIG_P2P
Dmitry Shmidt54605472013-11-08 11:10:19 -0800800 write_go_p2p_dev_addr(f, ssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800801 write_p2p_client_list(f, ssid);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700802 write_psk_list(f, ssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800803#endif /* CONFIG_P2P */
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800804 INT(ap_max_inactivity);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -0800805 INT(dtim_period);
806 INT(beacon_int);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700807#ifdef CONFIG_MACSEC
808 INT(macsec_policy);
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800809 write_mka_cak(f, ssid);
810 write_mka_ckn(f, ssid);
811 INT(macsec_integ_only);
812 INT(macsec_port);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700813#endif /* CONFIG_MACSEC */
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700814#ifdef CONFIG_HS20
815 INT(update_identifier);
816#endif /* CONFIG_HS20 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700817 write_int(f, "mac_addr", ssid->mac_addr, -1);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800818#ifdef CONFIG_MESH
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800819 STR(mesh_basic_rates);
820 INT_DEF(dot11MeshMaxRetries, DEFAULT_MESH_MAX_RETRIES);
821 INT_DEF(dot11MeshRetryTimeout, DEFAULT_MESH_RETRY_TIMEOUT);
822 INT_DEF(dot11MeshConfirmTimeout, DEFAULT_MESH_CONFIRM_TIMEOUT);
823 INT_DEF(dot11MeshHoldingTimeout, DEFAULT_MESH_HOLDING_TIMEOUT);
824#endif /* CONFIG_MESH */
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800825 INT(wpa_ptk_rekey);
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -0700826 INT(group_rekey);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800827 INT(ignore_broadcast_ssid);
828#ifdef CONFIG_HT_OVERRIDES
829 INT_DEF(disable_ht, DEFAULT_DISABLE_HT);
830 INT_DEF(disable_ht40, DEFAULT_DISABLE_HT40);
831 INT_DEF(disable_sgi, DEFAULT_DISABLE_SGI);
832 INT_DEF(disable_ldpc, DEFAULT_DISABLE_LDPC);
833 INT(ht40_intolerant);
834 INT_DEF(disable_max_amsdu, DEFAULT_DISABLE_MAX_AMSDU);
835 INT_DEF(ampdu_factor, DEFAULT_AMPDU_FACTOR);
836 INT_DEF(ampdu_density, DEFAULT_AMPDU_DENSITY);
837 STR(ht_mcs);
838#endif /* CONFIG_HT_OVERRIDES */
839#ifdef CONFIG_VHT_OVERRIDES
840 INT(disable_vht);
841 INT(vht_capa);
842 INT(vht_capa_mask);
843 INT_DEF(vht_rx_mcs_nss_1, -1);
844 INT_DEF(vht_rx_mcs_nss_2, -1);
845 INT_DEF(vht_rx_mcs_nss_3, -1);
846 INT_DEF(vht_rx_mcs_nss_4, -1);
847 INT_DEF(vht_rx_mcs_nss_5, -1);
848 INT_DEF(vht_rx_mcs_nss_6, -1);
849 INT_DEF(vht_rx_mcs_nss_7, -1);
850 INT_DEF(vht_rx_mcs_nss_8, -1);
851 INT_DEF(vht_tx_mcs_nss_1, -1);
852 INT_DEF(vht_tx_mcs_nss_2, -1);
853 INT_DEF(vht_tx_mcs_nss_3, -1);
854 INT_DEF(vht_tx_mcs_nss_4, -1);
855 INT_DEF(vht_tx_mcs_nss_5, -1);
856 INT_DEF(vht_tx_mcs_nss_6, -1);
857 INT_DEF(vht_tx_mcs_nss_7, -1);
858 INT_DEF(vht_tx_mcs_nss_8, -1);
859#endif /* CONFIG_VHT_OVERRIDES */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700860
861#undef STR
862#undef INT
863#undef INT_DEF
864}
865
866
Dmitry Shmidt04949592012-07-19 12:16:46 -0700867static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
868{
Dmitry Shmidt051af732013-10-22 13:52:46 -0700869 size_t i;
870
Dmitry Shmidt04949592012-07-19 12:16:46 -0700871 if (cred->priority)
872 fprintf(f, "\tpriority=%d\n", cred->priority);
873 if (cred->pcsc)
874 fprintf(f, "\tpcsc=%d\n", cred->pcsc);
875 if (cred->realm)
876 fprintf(f, "\trealm=\"%s\"\n", cred->realm);
877 if (cred->username)
878 fprintf(f, "\tusername=\"%s\"\n", cred->username);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800879 if (cred->password && cred->ext_password)
880 fprintf(f, "\tpassword=ext:%s\n", cred->password);
881 else if (cred->password)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700882 fprintf(f, "\tpassword=\"%s\"\n", cred->password);
883 if (cred->ca_cert)
884 fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800885 if (cred->client_cert)
886 fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert);
887 if (cred->private_key)
888 fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key);
889 if (cred->private_key_passwd)
890 fprintf(f, "\tprivate_key_passwd=\"%s\"\n",
891 cred->private_key_passwd);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700892 if (cred->imsi)
893 fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
894 if (cred->milenage)
895 fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700896 for (i = 0; i < cred->num_domain; i++)
897 fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
898 if (cred->domain_suffix_match)
Dmitry Shmidtb58836e2014-04-29 14:35:56 -0700899 fprintf(f, "\tdomain_suffix_match=\"%s\"\n",
Dmitry Shmidt051af732013-10-22 13:52:46 -0700900 cred->domain_suffix_match);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800901 if (cred->roaming_consortium_len) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800902 fprintf(f, "\troaming_consortium=");
903 for (i = 0; i < cred->roaming_consortium_len; i++)
904 fprintf(f, "%02x", cred->roaming_consortium[i]);
905 fprintf(f, "\n");
906 }
907 if (cred->eap_method) {
908 const char *name;
909 name = eap_get_name(cred->eap_method[0].vendor,
910 cred->eap_method[0].method);
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -0700911 if (name)
912 fprintf(f, "\teap=%s\n", name);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800913 }
914 if (cred->phase1)
915 fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
916 if (cred->phase2)
917 fprintf(f, "\tphase2=\"%s\"\n", cred->phase2);
918 if (cred->excluded_ssid) {
Dmitry Shmidt051af732013-10-22 13:52:46 -0700919 size_t j;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800920 for (i = 0; i < cred->num_excluded_ssid; i++) {
921 struct excluded_ssid *e = &cred->excluded_ssid[i];
922 fprintf(f, "\texcluded_ssid=");
923 for (j = 0; j < e->ssid_len; j++)
924 fprintf(f, "%02x", e->ssid[j]);
925 fprintf(f, "\n");
926 }
927 }
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800928 if (cred->roaming_partner) {
929 for (i = 0; i < cred->num_roaming_partner; i++) {
930 struct roaming_partner *p = &cred->roaming_partner[i];
931 fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n",
932 p->fqdn, p->exact_match, p->priority,
933 p->country);
934 }
935 }
936 if (cred->update_identifier)
937 fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
938
939 if (cred->provisioning_sp)
Dmitry Shmidt61593f02014-04-21 16:27:35 -0700940 fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800941 if (cred->sp_priority)
942 fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
943
944 if (cred->min_dl_bandwidth_home)
945 fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
946 cred->min_dl_bandwidth_home);
947 if (cred->min_ul_bandwidth_home)
948 fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
949 cred->min_ul_bandwidth_home);
950 if (cred->min_dl_bandwidth_roaming)
951 fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
952 cred->min_dl_bandwidth_roaming);
953 if (cred->min_ul_bandwidth_roaming)
954 fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
955 cred->min_ul_bandwidth_roaming);
956
957 if (cred->max_bss_load)
958 fprintf(f, "\tmax_bss_load=%u\n",
959 cred->max_bss_load);
960
961 if (cred->ocsp)
962 fprintf(f, "\tocsp=%d\n", cred->ocsp);
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -0700963
964 if (cred->num_req_conn_capab) {
965 for (i = 0; i < cred->num_req_conn_capab; i++) {
966 int *ports;
967
968 fprintf(f, "\treq_conn_capab=%u",
969 cred->req_conn_capab_proto[i]);
970 ports = cred->req_conn_capab_port[i];
971 if (ports) {
972 int j;
973 for (j = 0; ports[j] != -1; j++) {
974 fprintf(f, "%s%d", j > 0 ? "," : ":",
975 ports[j]);
976 }
977 }
978 fprintf(f, "\n");
979 }
980 }
981
982 if (cred->required_roaming_consortium_len) {
983 fprintf(f, "\trequired_roaming_consortium=");
984 for (i = 0; i < cred->required_roaming_consortium_len; i++)
985 fprintf(f, "%02x",
986 cred->required_roaming_consortium[i]);
987 fprintf(f, "\n");
988 }
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -0700989
990 if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
991 fprintf(f, "\tsim_num=%d\n", cred->sim_num);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700992}
993
994
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700995#ifndef CONFIG_NO_CONFIG_BLOBS
996static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
997{
998 unsigned char *encoded;
999
1000 encoded = base64_encode(blob->data, blob->len, NULL);
1001 if (encoded == NULL)
1002 return -1;
1003
1004 fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
1005 os_free(encoded);
1006 return 0;
1007}
1008#endif /* CONFIG_NO_CONFIG_BLOBS */
1009
1010
Dmitry Shmidt04949592012-07-19 12:16:46 -07001011static void write_global_bin(FILE *f, const char *field,
1012 const struct wpabuf *val)
1013{
1014 size_t i;
1015 const u8 *pos;
1016
1017 if (val == NULL)
1018 return;
1019
1020 fprintf(f, "%s=", field);
1021 pos = wpabuf_head(val);
1022 for (i = 0; i < wpabuf_len(val); i++)
1023 fprintf(f, "%02X", *pos++);
1024 fprintf(f, "\n");
1025}
1026
1027
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001028static void wpa_config_write_global(FILE *f, struct wpa_config *config)
1029{
1030#ifdef CONFIG_CTRL_IFACE
1031 if (config->ctrl_interface)
1032 fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
1033 if (config->ctrl_interface_group)
1034 fprintf(f, "ctrl_interface_group=%s\n",
1035 config->ctrl_interface_group);
1036#endif /* CONFIG_CTRL_IFACE */
1037 if (config->eapol_version != DEFAULT_EAPOL_VERSION)
1038 fprintf(f, "eapol_version=%d\n", config->eapol_version);
1039 if (config->ap_scan != DEFAULT_AP_SCAN)
1040 fprintf(f, "ap_scan=%d\n", config->ap_scan);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001041 if (config->disable_scan_offload)
1042 fprintf(f, "disable_scan_offload=%d\n",
1043 config->disable_scan_offload);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001044 if (config->fast_reauth != DEFAULT_FAST_REAUTH)
1045 fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
1046 if (config->opensc_engine_path)
1047 fprintf(f, "opensc_engine_path=%s\n",
1048 config->opensc_engine_path);
1049 if (config->pkcs11_engine_path)
1050 fprintf(f, "pkcs11_engine_path=%s\n",
1051 config->pkcs11_engine_path);
1052 if (config->pkcs11_module_path)
1053 fprintf(f, "pkcs11_module_path=%s\n",
1054 config->pkcs11_module_path);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001055 if (config->openssl_ciphers)
1056 fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001057 if (config->pcsc_reader)
1058 fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
1059 if (config->pcsc_pin)
1060 fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001061 if (config->driver_param)
1062 fprintf(f, "driver_param=%s\n", config->driver_param);
1063 if (config->dot11RSNAConfigPMKLifetime)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001064 fprintf(f, "dot11RSNAConfigPMKLifetime=%u\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001065 config->dot11RSNAConfigPMKLifetime);
1066 if (config->dot11RSNAConfigPMKReauthThreshold)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001067 fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%u\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001068 config->dot11RSNAConfigPMKReauthThreshold);
1069 if (config->dot11RSNAConfigSATimeout)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001070 fprintf(f, "dot11RSNAConfigSATimeout=%u\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001071 config->dot11RSNAConfigSATimeout);
1072 if (config->update_config)
1073 fprintf(f, "update_config=%d\n", config->update_config);
1074#ifdef CONFIG_WPS
1075 if (!is_nil_uuid(config->uuid)) {
1076 char buf[40];
1077 uuid_bin2str(config->uuid, buf, sizeof(buf));
1078 fprintf(f, "uuid=%s\n", buf);
1079 }
1080 if (config->device_name)
1081 fprintf(f, "device_name=%s\n", config->device_name);
1082 if (config->manufacturer)
1083 fprintf(f, "manufacturer=%s\n", config->manufacturer);
1084 if (config->model_name)
1085 fprintf(f, "model_name=%s\n", config->model_name);
1086 if (config->model_number)
1087 fprintf(f, "model_number=%s\n", config->model_number);
1088 if (config->serial_number)
1089 fprintf(f, "serial_number=%s\n", config->serial_number);
1090 {
1091 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
1092 buf = wps_dev_type_bin2str(config->device_type,
1093 _buf, sizeof(_buf));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001094 if (os_strcmp(buf, "0-00000000-0") != 0)
1095 fprintf(f, "device_type=%s\n", buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001096 }
1097 if (WPA_GET_BE32(config->os_version))
1098 fprintf(f, "os_version=%08x\n",
1099 WPA_GET_BE32(config->os_version));
1100 if (config->config_methods)
1101 fprintf(f, "config_methods=%s\n", config->config_methods);
1102 if (config->wps_cred_processing)
1103 fprintf(f, "wps_cred_processing=%d\n",
1104 config->wps_cred_processing);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001105 if (config->wps_vendor_ext_m1) {
1106 int i, len = wpabuf_len(config->wps_vendor_ext_m1);
1107 const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
1108 if (len > 0) {
1109 fprintf(f, "wps_vendor_ext_m1=");
1110 for (i = 0; i < len; i++)
1111 fprintf(f, "%02x", *p++);
1112 fprintf(f, "\n");
1113 }
1114 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001115#endif /* CONFIG_WPS */
1116#ifdef CONFIG_P2P
1117 if (config->p2p_listen_reg_class)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001118 fprintf(f, "p2p_listen_reg_class=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001119 config->p2p_listen_reg_class);
1120 if (config->p2p_listen_channel)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001121 fprintf(f, "p2p_listen_channel=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001122 config->p2p_listen_channel);
1123 if (config->p2p_oper_reg_class)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001124 fprintf(f, "p2p_oper_reg_class=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001125 config->p2p_oper_reg_class);
1126 if (config->p2p_oper_channel)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001127 fprintf(f, "p2p_oper_channel=%d\n", config->p2p_oper_channel);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001128 if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001129 fprintf(f, "p2p_go_intent=%d\n", config->p2p_go_intent);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001130 if (config->p2p_ssid_postfix)
1131 fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
1132 if (config->persistent_reconnect)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001133 fprintf(f, "persistent_reconnect=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001134 config->persistent_reconnect);
1135 if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001136 fprintf(f, "p2p_intra_bss=%d\n", config->p2p_intra_bss);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001137 if (config->p2p_group_idle)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001138 fprintf(f, "p2p_group_idle=%d\n", config->p2p_group_idle);
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07001139 if (config->p2p_passphrase_len)
1140 fprintf(f, "p2p_passphrase_len=%u\n",
1141 config->p2p_passphrase_len);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001142 if (config->p2p_pref_chan) {
1143 unsigned int i;
1144 fprintf(f, "p2p_pref_chan=");
1145 for (i = 0; i < config->num_p2p_pref_chan; i++) {
1146 fprintf(f, "%s%u:%u", i > 0 ? "," : "",
1147 config->p2p_pref_chan[i].op_class,
1148 config->p2p_pref_chan[i].chan);
1149 }
1150 fprintf(f, "\n");
1151 }
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001152 if (config->p2p_no_go_freq.num) {
1153 char *val = freq_range_list_str(&config->p2p_no_go_freq);
1154 if (val) {
1155 fprintf(f, "p2p_no_go_freq=%s\n", val);
1156 os_free(val);
1157 }
1158 }
1159 if (config->p2p_add_cli_chan)
1160 fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07001161 if (config->p2p_optimize_listen_chan !=
1162 DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN)
1163 fprintf(f, "p2p_optimize_listen_chan=%d\n",
1164 config->p2p_optimize_listen_chan);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001165 if (config->p2p_go_ht40)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001166 fprintf(f, "p2p_go_ht40=%d\n", config->p2p_go_ht40);
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001167 if (config->p2p_go_vht)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001168 fprintf(f, "p2p_go_vht=%d\n", config->p2p_go_vht);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001169 if (config->p2p_go_ctwindow != DEFAULT_P2P_GO_CTWINDOW)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001170 fprintf(f, "p2p_go_ctwindow=%d\n", config->p2p_go_ctwindow);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001171 if (config->p2p_disabled)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001172 fprintf(f, "p2p_disabled=%d\n", config->p2p_disabled);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001173 if (config->p2p_no_group_iface)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001174 fprintf(f, "p2p_no_group_iface=%d\n",
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001175 config->p2p_no_group_iface);
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001176 if (config->p2p_ignore_shared_freq)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001177 fprintf(f, "p2p_ignore_shared_freq=%d\n",
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001178 config->p2p_ignore_shared_freq);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07001179 if (config->p2p_cli_probe)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001180 fprintf(f, "p2p_cli_probe=%d\n", config->p2p_cli_probe);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001181 if (config->p2p_go_freq_change_policy != DEFAULT_P2P_GO_FREQ_MOVE)
1182 fprintf(f, "p2p_go_freq_change_policy=%u\n",
1183 config->p2p_go_freq_change_policy);
Dmitry Shmidt1d6bf422016-01-19 15:51:35 -08001184 if (WPA_GET_BE32(config->ip_addr_go))
1185 fprintf(f, "ip_addr_go=%u.%u.%u.%u\n",
1186 config->ip_addr_go[0], config->ip_addr_go[1],
1187 config->ip_addr_go[2], config->ip_addr_go[3]);
1188 if (WPA_GET_BE32(config->ip_addr_mask))
1189 fprintf(f, "ip_addr_mask=%u.%u.%u.%u\n",
1190 config->ip_addr_mask[0], config->ip_addr_mask[1],
1191 config->ip_addr_mask[2], config->ip_addr_mask[3]);
1192 if (WPA_GET_BE32(config->ip_addr_start))
1193 fprintf(f, "ip_addr_start=%u.%u.%u.%u\n",
1194 config->ip_addr_start[0], config->ip_addr_start[1],
1195 config->ip_addr_start[2], config->ip_addr_start[3]);
1196 if (WPA_GET_BE32(config->ip_addr_end))
1197 fprintf(f, "ip_addr_end=%u.%u.%u.%u\n",
1198 config->ip_addr_end[0], config->ip_addr_end[1],
1199 config->ip_addr_end[2], config->ip_addr_end[3]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001200#endif /* CONFIG_P2P */
1201 if (config->country[0] && config->country[1]) {
1202 fprintf(f, "country=%c%c\n",
1203 config->country[0], config->country[1]);
1204 }
1205 if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
1206 fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
1207 if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
1208 fprintf(f, "bss_expiration_age=%u\n",
1209 config->bss_expiration_age);
1210 if (config->bss_expiration_scan_count !=
1211 DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
1212 fprintf(f, "bss_expiration_scan_count=%u\n",
1213 config->bss_expiration_scan_count);
1214 if (config->filter_ssids)
1215 fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
1216 if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
1217 fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
1218 if (config->disassoc_low_ack)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001219 fprintf(f, "disassoc_low_ack=%d\n", config->disassoc_low_ack);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001220#ifdef CONFIG_HS20
1221 if (config->hs20)
1222 fprintf(f, "hs20=1\n");
1223#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001224#ifdef CONFIG_INTERWORKING
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001225 if (config->interworking)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001226 fprintf(f, "interworking=%d\n", config->interworking);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001227 if (!is_zero_ether_addr(config->hessid))
1228 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
1229 if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
1230 fprintf(f, "access_network_type=%d\n",
1231 config->access_network_type);
1232#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001233 if (config->pbc_in_m1)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001234 fprintf(f, "pbc_in_m1=%d\n", config->pbc_in_m1);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001235 if (config->wps_nfc_pw_from_config) {
1236 if (config->wps_nfc_dev_pw_id)
1237 fprintf(f, "wps_nfc_dev_pw_id=%d\n",
1238 config->wps_nfc_dev_pw_id);
1239 write_global_bin(f, "wps_nfc_dh_pubkey",
1240 config->wps_nfc_dh_pubkey);
1241 write_global_bin(f, "wps_nfc_dh_privkey",
1242 config->wps_nfc_dh_privkey);
1243 write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
1244 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001245
1246 if (config->ext_password_backend)
1247 fprintf(f, "ext_password_backend=%s\n",
1248 config->ext_password_backend);
1249 if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY)
1250 fprintf(f, "p2p_go_max_inactivity=%d\n",
1251 config->p2p_go_max_inactivity);
1252 if (config->auto_interworking)
1253 fprintf(f, "auto_interworking=%d\n",
1254 config->auto_interworking);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001255 if (config->okc)
1256 fprintf(f, "okc=%d\n", config->okc);
1257 if (config->pmf)
1258 fprintf(f, "pmf=%d\n", config->pmf);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08001259 if (config->dtim_period)
1260 fprintf(f, "dtim_period=%d\n", config->dtim_period);
1261 if (config->beacon_int)
1262 fprintf(f, "beacon_int=%d\n", config->beacon_int);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001263
1264 if (config->sae_groups) {
1265 int i;
1266 fprintf(f, "sae_groups=");
1267 for (i = 0; config->sae_groups[i] >= 0; i++) {
1268 fprintf(f, "%s%d", i > 0 ? " " : "",
1269 config->sae_groups[i]);
1270 }
1271 fprintf(f, "\n");
1272 }
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001273
1274 if (config->ap_vendor_elements) {
1275 int i, len = wpabuf_len(config->ap_vendor_elements);
1276 const u8 *p = wpabuf_head_u8(config->ap_vendor_elements);
1277 if (len > 0) {
1278 fprintf(f, "ap_vendor_elements=");
1279 for (i = 0; i < len; i++)
1280 fprintf(f, "%02x", *p++);
1281 fprintf(f, "\n");
1282 }
1283 }
Dmitry Shmidt444d5672013-04-01 13:08:44 -07001284
1285 if (config->ignore_old_scan_res)
1286 fprintf(f, "ignore_old_scan_res=%d\n",
1287 config->ignore_old_scan_res);
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001288
1289 if (config->freq_list && config->freq_list[0]) {
1290 int i;
1291 fprintf(f, "freq_list=");
1292 for (i = 0; config->freq_list[i]; i++) {
Dmitry Shmidt41712582015-06-29 11:02:15 -07001293 fprintf(f, "%s%d", i > 0 ? " " : "",
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001294 config->freq_list[i]);
1295 }
1296 fprintf(f, "\n");
1297 }
Dmitry Shmidtea69e842013-05-13 14:52:28 -07001298 if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
1299 fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001300
1301 if (config->sched_scan_interval)
1302 fprintf(f, "sched_scan_interval=%u\n",
1303 config->sched_scan_interval);
Dmitry Shmidt051af732013-10-22 13:52:46 -07001304
1305 if (config->external_sim)
1306 fprintf(f, "external_sim=%d\n", config->external_sim);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001307
1308 if (config->tdls_external_control)
1309 fprintf(f, "tdls_external_control=%d\n",
1310 config->tdls_external_control);
Dmitry Shmidta38abf92014-03-06 13:38:44 -08001311
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07001312 if (config->wowlan_triggers)
Dmitry Shmidt03658832014-08-13 11:03:49 -07001313 fprintf(f, "wowlan_triggers=%s\n",
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07001314 config->wowlan_triggers);
1315
Dmitry Shmidta38abf92014-03-06 13:38:44 -08001316 if (config->bgscan)
1317 fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07001318
1319 if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY)
1320 fprintf(f, "p2p_search_delay=%u\n",
1321 config->p2p_search_delay);
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001322
1323 if (config->mac_addr)
1324 fprintf(f, "mac_addr=%d\n", config->mac_addr);
1325
1326 if (config->rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
1327 fprintf(f, "rand_addr_lifetime=%u\n",
1328 config->rand_addr_lifetime);
1329
1330 if (config->preassoc_mac_addr)
1331 fprintf(f, "preassoc_mac_addr=%d\n", config->preassoc_mac_addr);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001332
1333 if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001334 fprintf(f, "key_mgmt_offload=%d\n", config->key_mgmt_offload);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001335
1336 if (config->user_mpm != DEFAULT_USER_MPM)
1337 fprintf(f, "user_mpm=%d\n", config->user_mpm);
1338
1339 if (config->max_peer_links != DEFAULT_MAX_PEER_LINKS)
1340 fprintf(f, "max_peer_links=%d\n", config->max_peer_links);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08001341
1342 if (config->cert_in_cb != DEFAULT_CERT_IN_CB)
1343 fprintf(f, "cert_in_cb=%d\n", config->cert_in_cb);
1344
1345 if (config->mesh_max_inactivity != DEFAULT_MESH_MAX_INACTIVITY)
1346 fprintf(f, "mesh_max_inactivity=%d\n",
1347 config->mesh_max_inactivity);
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001348
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001349 if (config->dot11RSNASAERetransPeriod !=
1350 DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD)
1351 fprintf(f, "dot11RSNASAERetransPeriod=%d\n",
1352 config->dot11RSNASAERetransPeriod);
1353
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001354 if (config->passive_scan)
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001355 fprintf(f, "passive_scan=%d\n", config->passive_scan);
1356
1357 if (config->reassoc_same_bss_optim)
1358 fprintf(f, "reassoc_same_bss_optim=%d\n",
1359 config->reassoc_same_bss_optim);
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07001360
1361 if (config->wps_priority)
1362 fprintf(f, "wps_priority=%d\n", config->wps_priority);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001363
1364 if (config->wpa_rsc_relaxation != DEFAULT_WPA_RSC_RELAXATION)
1365 fprintf(f, "wpa_rsc_relaxation=%d\n",
1366 config->wpa_rsc_relaxation);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08001367
1368 if (config->sched_scan_plans)
1369 fprintf(f, "sched_scan_plans=%s\n", config->sched_scan_plans);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001370
1371#ifdef CONFIG_MBO
1372 if (config->non_pref_chan)
1373 fprintf(f, "non_pref_chan=%s\n", config->non_pref_chan);
1374 if (config->mbo_cell_capa != DEFAULT_MBO_CELL_CAPA)
1375 fprintf(f, "mbo_cell_capa=%u\n", config->mbo_cell_capa);
1376#endif /* CONFIG_MBO */
1377
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -07001378 if (config->gas_address3)
1379 fprintf(f, "gas_address3=%d\n", config->gas_address3);
Dmitry Shmidt7d175302016-09-06 13:11:34 -07001380
1381 if (config->ftm_responder)
1382 fprintf(f, "ftm_responder=%d\n", config->ftm_responder);
1383 if (config->ftm_initiator)
1384 fprintf(f, "ftm_initiator=%d\n", config->ftm_initiator);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001385}
1386
1387#endif /* CONFIG_NO_CONFIG_WRITE */
1388
1389
1390int wpa_config_write(const char *name, struct wpa_config *config)
1391{
1392#ifndef CONFIG_NO_CONFIG_WRITE
1393 FILE *f;
1394 struct wpa_ssid *ssid;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001395 struct wpa_cred *cred;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001396#ifndef CONFIG_NO_CONFIG_BLOBS
1397 struct wpa_config_blob *blob;
1398#endif /* CONFIG_NO_CONFIG_BLOBS */
1399 int ret = 0;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001400 const char *orig_name = name;
1401 int tmp_len = os_strlen(name) + 5; /* allow space for .tmp suffix */
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001402 char *tmp_name = os_malloc(tmp_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001403
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001404 if (tmp_name) {
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001405 os_snprintf(tmp_name, tmp_len, "%s.tmp", name);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001406 name = tmp_name;
1407 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001408
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001409 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001410
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001411 f = fopen(name, "w");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001412 if (f == NULL) {
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001413 wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
1414 os_free(tmp_name);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001415 return -1;
1416 }
1417
1418 wpa_config_write_global(f, config);
1419
Dmitry Shmidt04949592012-07-19 12:16:46 -07001420 for (cred = config->cred; cred; cred = cred->next) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001421 if (cred->temporary)
1422 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001423 fprintf(f, "\ncred={\n");
1424 wpa_config_write_cred(f, cred);
1425 fprintf(f, "}\n");
1426 }
1427
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001428 for (ssid = config->ssid; ssid; ssid = ssid->next) {
1429 if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
1430 continue; /* do not save temporary networks */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001431 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
1432 !ssid->passphrase)
1433 continue; /* do not save invalid network */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001434 fprintf(f, "\nnetwork={\n");
1435 wpa_config_write_network(f, ssid);
1436 fprintf(f, "}\n");
1437 }
1438
1439#ifndef CONFIG_NO_CONFIG_BLOBS
1440 for (blob = config->blobs; blob; blob = blob->next) {
1441 ret = wpa_config_write_blob(f, blob);
1442 if (ret)
1443 break;
1444 }
1445#endif /* CONFIG_NO_CONFIG_BLOBS */
1446
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001447 os_fdatasync(f);
Mitchell Wills447c7ff2015-08-24 17:24:30 -07001448
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001449 fclose(f);
1450
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001451 if (tmp_name) {
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001452 int chmod_ret = 0;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001453
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001454#ifdef ANDROID
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001455 chmod_ret = chmod(tmp_name,
1456 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
1457#endif /* ANDROID */
1458 if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0)
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001459 ret = -1;
1460
1461 os_free(tmp_name);
1462 }
1463
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001464 wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001465 orig_name, ret ? "un" : "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001466 return ret;
1467#else /* CONFIG_NO_CONFIG_WRITE */
1468 return -1;
1469#endif /* CONFIG_NO_CONFIG_WRITE */
1470}