]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/config_file.c
wpa_supplicant: Free config only if it was allocated in same call
[thirdparty/hostap.git] / wpa_supplicant / config_file.c
CommitLineData
6fc6879b
JM
1/*
2 * WPA Supplicant / Configuration backend: text file
f64adcd7 3 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
6fc6879b 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
6fc6879b
JM
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
13#include "includes.h"
663ae2f4
VD
14#ifdef ANDROID
15#include <sys/stat.h>
16#endif /* ANDROID */
6fc6879b
JM
17
18#include "common.h"
19#include "config.h"
20#include "base64.h"
f855f923 21#include "uuid.h"
65dfa872 22#include "common/ieee802_1x_defs.h"
21d996f7 23#include "p2p/p2p.h"
9aae09f1
JM
24#include "eap_peer/eap_methods.h"
25#include "eap_peer/eap.h"
6fc6879b
JM
26
27
d42bc5e1
JM
28static int newline_terminated(const char *buf, size_t buflen)
29{
30 size_t len = os_strlen(buf);
31 if (len == 0)
32 return 0;
33 if (len == buflen - 1 && buf[buflen - 1] != '\r' &&
34 buf[len - 1] != '\n')
35 return 0;
36 return 1;
37}
38
39
40static void skip_line_end(FILE *stream)
41{
42 char buf[100];
43 while (fgets(buf, sizeof(buf), stream)) {
44 buf[sizeof(buf) - 1] = '\0';
45 if (newline_terminated(buf, sizeof(buf)))
46 return;
47 }
48}
49
50
6fc6879b
JM
51/**
52 * wpa_config_get_line - Read the next configuration file line
53 * @s: Buffer for the line
54 * @size: The buffer length
55 * @stream: File stream to read from
56 * @line: Pointer to a variable storing the file line number
57 * @_pos: Buffer for the pointer to the beginning of data on the text line or
58 * %NULL if not needed (returned value used instead)
59 * Returns: Pointer to the beginning of data on the text line or %NULL if no
60 * more text lines are available.
61 *
62 * This function reads the next non-empty line from the configuration file and
63 * removes comments. The returned string is guaranteed to be null-terminated.
64 */
65static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line,
66 char **_pos)
67{
68 char *pos, *end, *sstart;
69
70 while (fgets(s, size, stream)) {
71 (*line)++;
72 s[size - 1] = '\0';
d42bc5e1
JM
73 if (!newline_terminated(s, size)) {
74 /*
75 * The line was truncated - skip rest of it to avoid
76 * confusing error messages.
77 */
78 wpa_printf(MSG_INFO, "Long line in configuration file "
79 "truncated");
80 skip_line_end(stream);
81 }
6fc6879b
JM
82 pos = s;
83
84 /* Skip white space from the beginning of line. */
85 while (*pos == ' ' || *pos == '\t' || *pos == '\r')
86 pos++;
87
88 /* Skip comment lines and empty lines */
89 if (*pos == '#' || *pos == '\n' || *pos == '\0')
90 continue;
91
92 /*
93 * Remove # comments unless they are within a double quoted
94 * string.
95 */
96 sstart = os_strchr(pos, '"');
97 if (sstart)
98 sstart = os_strrchr(sstart + 1, '"');
99 if (!sstart)
100 sstart = pos;
101 end = os_strchr(sstart, '#');
102 if (end)
103 *end-- = '\0';
104 else
105 end = pos + os_strlen(pos) - 1;
106
107 /* Remove trailing white space. */
108 while (end > pos &&
109 (*end == '\n' || *end == ' ' || *end == '\t' ||
110 *end == '\r'))
111 *end-- = '\0';
112
113 if (*pos == '\0')
114 continue;
115
116 if (_pos)
117 *_pos = pos;
118 return pos;
119 }
120
121 if (_pos)
122 *_pos = NULL;
123 return NULL;
124}
125
126
127static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
128{
129 int errors = 0;
130
131 if (ssid->passphrase) {
132 if (ssid->psk_set) {
133 wpa_printf(MSG_ERROR, "Line %d: both PSK and "
134 "passphrase configured.", line);
135 errors++;
136 }
137 wpa_config_update_psk(ssid);
138 }
139
5149a0f0
AA
140 if (ssid->disabled == 2)
141 ssid->p2p_persistent_group = 1;
142
6fc6879b
JM
143 if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
144 !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
145 !(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
146 /* Group cipher cannot be stronger than the pairwise cipher. */
147 wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
148 " list since it was not allowed for pairwise "
149 "cipher", line);
150 ssid->group_cipher &= ~WPA_CIPHER_CCMP;
151 }
152
0c6099f3
MH
153 if (ssid->mode == WPAS_MODE_MESH &&
154 (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
155 ssid->key_mgmt != WPA_KEY_MGMT_SAE)) {
156 wpa_printf(MSG_ERROR,
157 "Line %d: key_mgmt for mesh network should be open or SAE",
158 line);
159 errors++;
160 }
161
6fc6879b
JM
162 return errors;
163}
164
165
166static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
167{
168 struct wpa_ssid *ssid;
169 int errors = 0, end = 0;
d42bc5e1 170 char buf[2000], *pos, *pos2;
6fc6879b
JM
171
172 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
173 *line);
174 ssid = os_zalloc(sizeof(*ssid));
175 if (ssid == NULL)
176 return NULL;
01a57fe4 177 dl_list_init(&ssid->psk_list);
6fc6879b
JM
178 ssid->id = id;
179
180 wpa_config_set_network_defaults(ssid);
181
182 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
183 if (os_strcmp(pos, "}") == 0) {
184 end = 1;
185 break;
186 }
187
188 pos2 = os_strchr(pos, '=');
189 if (pos2 == NULL) {
190 wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
191 "'%s'.", *line, pos);
192 errors++;
193 continue;
194 }
195
196 *pos2++ = '\0';
197 if (*pos2 == '"') {
198 if (os_strchr(pos2 + 1, '"') == NULL) {
199 wpa_printf(MSG_ERROR, "Line %d: invalid "
200 "quotation '%s'.", *line, pos2);
201 errors++;
202 continue;
203 }
204 }
205
206 if (wpa_config_set(ssid, pos, pos2, *line) < 0)
207 errors++;
208 }
209
210 if (!end) {
211 wpa_printf(MSG_ERROR, "Line %d: network block was not "
212 "terminated properly.", *line);
213 errors++;
214 }
215
216 errors += wpa_config_validate_network(ssid, *line);
217
218 if (errors) {
219 wpa_config_free_ssid(ssid);
220 ssid = NULL;
221 }
222
223 return ssid;
224}
225
226
1bb7b8e8
JM
227static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
228{
229 struct wpa_cred *cred;
230 int errors = 0, end = 0;
231 char buf[256], *pos, *pos2;
232
233 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
234 cred = os_zalloc(sizeof(*cred));
235 if (cred == NULL)
236 return NULL;
237 cred->id = id;
13f6a07e 238 cred->sim_num = DEFAULT_USER_SELECTED_SIM;
1bb7b8e8
JM
239
240 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
241 if (os_strcmp(pos, "}") == 0) {
242 end = 1;
243 break;
244 }
245
246 pos2 = os_strchr(pos, '=');
247 if (pos2 == NULL) {
248 wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
249 "'%s'.", *line, pos);
250 errors++;
251 continue;
252 }
253
254 *pos2++ = '\0';
255 if (*pos2 == '"') {
256 if (os_strchr(pos2 + 1, '"') == NULL) {
257 wpa_printf(MSG_ERROR, "Line %d: invalid "
258 "quotation '%s'.", *line, pos2);
259 errors++;
260 continue;
261 }
262 }
263
264 if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
265 errors++;
266 }
267
268 if (!end) {
269 wpa_printf(MSG_ERROR, "Line %d: cred block was not "
270 "terminated properly.", *line);
271 errors++;
272 }
273
274 if (errors) {
275 wpa_config_free_cred(cred);
276 cred = NULL;
277 }
278
279 return cred;
280}
281
282
6fc6879b
JM
283#ifndef CONFIG_NO_CONFIG_BLOBS
284static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
285 const char *name)
286{
287 struct wpa_config_blob *blob;
288 char buf[256], *pos;
289 unsigned char *encoded = NULL, *nencoded;
290 int end = 0;
291 size_t encoded_len = 0, len;
292
293 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
294 *line, name);
295
296 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
297 if (os_strcmp(pos, "}") == 0) {
298 end = 1;
299 break;
300 }
301
302 len = os_strlen(pos);
303 nencoded = os_realloc(encoded, encoded_len + len);
304 if (nencoded == NULL) {
305 wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
306 "blob", *line);
307 os_free(encoded);
308 return NULL;
309 }
310 encoded = nencoded;
311 os_memcpy(encoded + encoded_len, pos, len);
312 encoded_len += len;
313 }
314
3c0daa13 315 if (!end || !encoded) {
6fc6879b
JM
316 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
317 "properly", *line);
318 os_free(encoded);
319 return NULL;
320 }
321
322 blob = os_zalloc(sizeof(*blob));
323 if (blob == NULL) {
324 os_free(encoded);
325 return NULL;
326 }
327 blob->name = os_strdup(name);
328 blob->data = base64_decode(encoded, encoded_len, &blob->len);
329 os_free(encoded);
330
331 if (blob->name == NULL || blob->data == NULL) {
332 wpa_config_free_blob(blob);
333 return NULL;
334 }
335
336 return blob;
337}
338
339
340static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
341 int *line, char *bname)
342{
343 char *name_end;
344 struct wpa_config_blob *blob;
345
346 name_end = os_strchr(bname, '=');
347 if (name_end == NULL) {
348 wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
349 *line);
350 return -1;
351 }
352 *name_end = '\0';
353
354 blob = wpa_config_read_blob(f, line, bname);
355 if (blob == NULL) {
356 wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
357 *line, bname);
358 return -1;
359 }
360 wpa_config_set_blob(config, blob);
361 return 0;
362}
363#endif /* CONFIG_NO_CONFIG_BLOBS */
364
365
e6304cad 366struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
6fc6879b
JM
367{
368 FILE *f;
3f2c8ba6 369 char buf[512], *pos;
6fc6879b 370 int errors = 0, line = 0;
b89962b4
JM
371 struct wpa_ssid *ssid, *tail, *head;
372 struct wpa_cred *cred, *cred_tail, *cred_head;
6fc6879b
JM
373 struct wpa_config *config;
374 int id = 0;
1bb7b8e8 375 int cred_id = 0;
6fc6879b 376
e6304cad
DS
377 if (name == NULL)
378 return NULL;
379 if (cfgp)
380 config = cfgp;
381 else
382 config = wpa_config_alloc_empty(NULL, NULL);
481cac21
BG
383 if (config == NULL) {
384 wpa_printf(MSG_ERROR, "Failed to allocate config file "
385 "structure");
6fc6879b 386 return NULL;
481cac21 387 }
b89962b4
JM
388 tail = head = config->ssid;
389 while (tail && tail->next)
390 tail = tail->next;
391 cred_tail = cred_head = config->cred;
392 while (cred_tail && cred_tail->next)
393 cred_tail = cred_tail->next;
481cac21 394
6fc6879b
JM
395 wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
396 f = fopen(name, "r");
397 if (f == NULL) {
481cac21
BG
398 wpa_printf(MSG_ERROR, "Failed to open config file '%s', "
399 "error: %s", name, strerror(errno));
9c5fe742
DS
400 if (config != cfgp)
401 os_free(config);
6fc6879b
JM
402 return NULL;
403 }
404
405 while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
406 if (os_strcmp(pos, "network={") == 0) {
407 ssid = wpa_config_read_network(f, &line, id++);
408 if (ssid == NULL) {
409 wpa_printf(MSG_ERROR, "Line %d: failed to "
410 "parse network block.", line);
411 errors++;
412 continue;
413 }
414 if (head == NULL) {
415 head = tail = ssid;
416 } else {
417 tail->next = ssid;
418 tail = ssid;
419 }
420 if (wpa_config_add_prio_network(config, ssid)) {
421 wpa_printf(MSG_ERROR, "Line %d: failed to add "
422 "network block to priority list.",
423 line);
424 errors++;
425 continue;
426 }
1bb7b8e8
JM
427 } else if (os_strcmp(pos, "cred={") == 0) {
428 cred = wpa_config_read_cred(f, &line, cred_id++);
429 if (cred == NULL) {
430 wpa_printf(MSG_ERROR, "Line %d: failed to "
431 "parse cred block.", line);
432 errors++;
433 continue;
434 }
435 if (cred_head == NULL) {
436 cred_head = cred_tail = cred;
437 } else {
438 cred_tail->next = cred;
439 cred_tail = cred;
440 }
6fc6879b
JM
441#ifndef CONFIG_NO_CONFIG_BLOBS
442 } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
443 if (wpa_config_process_blob(config, f, &line, pos + 12)
444 < 0) {
481cac21
BG
445 wpa_printf(MSG_ERROR, "Line %d: failed to "
446 "process blob.", line);
6fc6879b
JM
447 errors++;
448 continue;
449 }
450#endif /* CONFIG_NO_CONFIG_BLOBS */
451 } else if (wpa_config_process_global(config, pos, line) < 0) {
452 wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
453 "line '%s'.", line, pos);
454 errors++;
455 continue;
456 }
457 }
458
459 fclose(f);
460
461 config->ssid = head;
462 wpa_config_debug_dump_networks(config);
1bb7b8e8 463 config->cred = cred_head;
6fc6879b 464
ae6e1bee 465#ifndef WPA_IGNORE_CONFIG_ERRORS
6fc6879b
JM
466 if (errors) {
467 wpa_config_free(config);
468 config = NULL;
469 head = NULL;
470 }
ae6e1bee 471#endif /* WPA_IGNORE_CONFIG_ERRORS */
6fc6879b
JM
472
473 return config;
474}
475
476
477#ifndef CONFIG_NO_CONFIG_WRITE
478
479static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
480{
481 char *value = wpa_config_get(ssid, field);
482 if (value == NULL)
483 return;
484 fprintf(f, "\t%s=%s\n", field, value);
485 os_free(value);
486}
487
488
489static void write_int(FILE *f, const char *field, int value, int def)
490{
491 if (value == def)
492 return;
493 fprintf(f, "\t%s=%d\n", field, value);
494}
495
496
497static void write_bssid(FILE *f, struct wpa_ssid *ssid)
498{
499 char *value = wpa_config_get(ssid, "bssid");
500 if (value == NULL)
501 return;
502 fprintf(f, "\tbssid=%s\n", value);
503 os_free(value);
504}
505
506
43a356b2
PK
507static void write_bssid_hint(FILE *f, struct wpa_ssid *ssid)
508{
509 char *value = wpa_config_get(ssid, "bssid_hint");
510
511 if (!value)
512 return;
513 fprintf(f, "\tbssid_hint=%s\n", value);
514 os_free(value);
515}
516
517
6fc6879b
JM
518static void write_psk(FILE *f, struct wpa_ssid *ssid)
519{
a52410c2
JM
520 char *value;
521
522 if (ssid->mem_only_psk)
523 return;
524
525 value = wpa_config_get(ssid, "psk");
6fc6879b
JM
526 if (value == NULL)
527 return;
528 fprintf(f, "\tpsk=%s\n", value);
529 os_free(value);
530}
531
532
533static void write_proto(FILE *f, struct wpa_ssid *ssid)
534{
535 char *value;
536
537 if (ssid->proto == DEFAULT_PROTO)
538 return;
539
540 value = wpa_config_get(ssid, "proto");
541 if (value == NULL)
542 return;
543 if (value[0])
544 fprintf(f, "\tproto=%s\n", value);
545 os_free(value);
546}
547
548
549static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
550{
551 char *value;
552
553 if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
554 return;
555
556 value = wpa_config_get(ssid, "key_mgmt");
557 if (value == NULL)
558 return;
559 if (value[0])
560 fprintf(f, "\tkey_mgmt=%s\n", value);
561 os_free(value);
562}
563
564
565static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
566{
567 char *value;
568
569 if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
570 return;
571
572 value = wpa_config_get(ssid, "pairwise");
573 if (value == NULL)
574 return;
575 if (value[0])
576 fprintf(f, "\tpairwise=%s\n", value);
577 os_free(value);
578}
579
580
581static void write_group(FILE *f, struct wpa_ssid *ssid)
582{
583 char *value;
584
585 if (ssid->group_cipher == DEFAULT_GROUP)
586 return;
587
588 value = wpa_config_get(ssid, "group");
589 if (value == NULL)
590 return;
591 if (value[0])
592 fprintf(f, "\tgroup=%s\n", value);
593 os_free(value);
594}
595
596
61a56c14
JM
597static void write_group_mgmt(FILE *f, struct wpa_ssid *ssid)
598{
599 char *value;
600
601 if (!ssid->group_mgmt_cipher)
602 return;
603
604 value = wpa_config_get(ssid, "group_mgmt");
605 if (!value)
606 return;
607 if (value[0])
608 fprintf(f, "\tgroup_mgmt=%s\n", value);
609 os_free(value);
610}
611
612
6fc6879b
JM
613static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
614{
615 char *value;
616
617 if (ssid->auth_alg == 0)
618 return;
619
620 value = wpa_config_get(ssid, "auth_alg");
621 if (value == NULL)
622 return;
623 if (value[0])
624 fprintf(f, "\tauth_alg=%s\n", value);
625 os_free(value);
626}
627
628
629#ifdef IEEE8021X_EAPOL
630static void write_eap(FILE *f, struct wpa_ssid *ssid)
631{
632 char *value;
633
634 value = wpa_config_get(ssid, "eap");
635 if (value == NULL)
636 return;
637
638 if (value[0])
639 fprintf(f, "\teap=%s\n", value);
640 os_free(value);
641}
642#endif /* IEEE8021X_EAPOL */
643
644
645static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
646{
647 char field[20], *value;
648 int res;
649
650 res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
d85e1fc8 651 if (os_snprintf_error(sizeof(field), res))
6fc6879b
JM
652 return;
653 value = wpa_config_get(ssid, field);
654 if (value) {
655 fprintf(f, "\t%s=%s\n", field, value);
656 os_free(value);
657 }
658}
659
660
fbdcfd57 661#ifdef CONFIG_P2P
01a57fe4 662
9ec87666
JM
663static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid)
664{
665 char *value = wpa_config_get(ssid, "go_p2p_dev_addr");
666 if (value == NULL)
667 return;
668 fprintf(f, "\tgo_p2p_dev_addr=%s\n", value);
669 os_free(value);
670}
671
fbdcfd57
JM
672static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
673{
674 char *value = wpa_config_get(ssid, "p2p_client_list");
675 if (value == NULL)
676 return;
677 fprintf(f, "\tp2p_client_list=%s\n", value);
678 os_free(value);
679}
01a57fe4
JM
680
681
682static void write_psk_list(FILE *f, struct wpa_ssid *ssid)
683{
684 struct psk_list_entry *psk;
685 char hex[32 * 2 + 1];
686
687 dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) {
688 wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
689 fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n",
690 psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
691 }
692}
693
fbdcfd57
JM
694#endif /* CONFIG_P2P */
695
696
ad51731a
SD
697#ifdef CONFIG_MACSEC
698
699static void write_mka_cak(FILE *f, struct wpa_ssid *ssid)
700{
701 char *value;
702
703 if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK))
704 return;
705
706 value = wpa_config_get(ssid, "mka_cak");
707 if (!value)
708 return;
709 fprintf(f, "\tmka_cak=%s\n", value);
710 os_free(value);
711}
712
713
714static void write_mka_ckn(FILE *f, struct wpa_ssid *ssid)
715{
716 char *value;
717
718 if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN))
719 return;
720
721 value = wpa_config_get(ssid, "mka_ckn");
722 if (!value)
723 return;
724 fprintf(f, "\tmka_ckn=%s\n", value);
725 os_free(value);
726}
727
728#endif /* CONFIG_MACSEC */
729
730
6fc6879b
JM
731static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
732{
733 int i;
734
735#define STR(t) write_str(f, #t, ssid)
736#define INT(t) write_int(f, #t, ssid->t, 0)
737#define INTe(t) write_int(f, #t, ssid->eap.t, 0)
738#define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
739#define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
740
741 STR(ssid);
742 INT(scan_ssid);
743 write_bssid(f, ssid);
43a356b2 744 write_bssid_hint(f, ssid);
2b892d44
JM
745 write_str(f, "bssid_blacklist", ssid);
746 write_str(f, "bssid_whitelist", ssid);
6fc6879b 747 write_psk(f, ssid);
a52410c2 748 INT(mem_only_psk);
a34ca59e 749 STR(sae_password);
6fc6879b
JM
750 write_proto(f, ssid);
751 write_key_mgmt(f, ssid);
4f920dc6 752 INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
6fc6879b
JM
753 write_pairwise(f, ssid);
754 write_group(f, ssid);
61a56c14 755 write_group_mgmt(f, ssid);
6fc6879b 756 write_auth_alg(f, ssid);
af548f53 757 STR(bgscan);
1aea2ca3 758 STR(autoscan);
1a9f2471 759 STR(scan_freq);
6fc6879b
JM
760#ifdef IEEE8021X_EAPOL
761 write_eap(f, ssid);
762 STR(identity);
763 STR(anonymous_identity);
9e834fc6 764 STR(imsi_identity);
6fc6879b
JM
765 STR(password);
766 STR(ca_cert);
767 STR(ca_path);
768 STR(client_cert);
769 STR(private_key);
770 STR(private_key_passwd);
771 STR(dh_file);
772 STR(subject_match);
773 STR(altsubject_match);
01f809c7 774 STR(domain_suffix_match);
cebee30f 775 STR(domain_match);
6fc6879b
JM
776 STR(ca_cert2);
777 STR(ca_path2);
778 STR(client_cert2);
779 STR(private_key2);
780 STR(private_key2_passwd);
781 STR(dh_file2);
782 STR(subject_match2);
783 STR(altsubject_match2);
01f809c7 784 STR(domain_suffix_match2);
cebee30f 785 STR(domain_match2);
6fc6879b
JM
786 STR(phase1);
787 STR(phase2);
788 STR(pcsc);
789 STR(pin);
790 STR(engine_id);
791 STR(key_id);
61ee0f71
DS
792 STR(cert_id);
793 STR(ca_cert_id);
794 STR(key2_id);
98842d51
CL
795 STR(pin2);
796 STR(engine2_id);
61ee0f71
DS
797 STR(cert2_id);
798 STR(ca_cert2_id);
6fc6879b 799 INTe(engine);
98842d51 800 INTe(engine2);
6fc6879b 801 INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
2b892d44 802 STR(openssl_ciphers);
02a8d45a 803 INTe(erp);
6fc6879b
JM
804#endif /* IEEE8021X_EAPOL */
805 for (i = 0; i < 4; i++)
806 write_wep_key(f, i, ssid);
807 INT(wep_tx_keyidx);
808 INT(priority);
809#ifdef IEEE8021X_EAPOL
810 INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
811 STR(pac_file);
812 INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
cf15b15c 813 INTe(ocsp);
13f6a07e 814 INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM);
6fc6879b
JM
815#endif /* IEEE8021X_EAPOL */
816 INT(mode);
2b892d44 817 INT(no_auto_peer);
bca06366 818 INT(frequency);
4d9e6fba 819 INT(fixed_freq);
d9909717
TB
820#ifdef CONFIG_ACS
821 INT(acs);
822#endif /* CONFIG_ACS */
6e202021 823 write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
6fc6879b 824 INT(disabled);
2b892d44 825 INT(mixed_cell);
2124a615 826 INT(vht);
b07ff9cb 827 INT_DEF(ht, 1);
2124a615 828 INT(ht40);
0f29bc68 829 INT(max_oper_chwidth);
2124a615
JB
830 INT(vht_center_freq1);
831 INT(vht_center_freq2);
b9074912 832 INT(pbss);
b6317b41 833 INT(wps_disabled);
76e20f4f 834 INT(fils_dh_group);
6fc6879b 835#ifdef CONFIG_IEEE80211W
62d49803
JM
836 write_int(f, "ieee80211w", ssid->ieee80211w,
837 MGMT_FRAME_PROTECTION_DEFAULT);
6fc6879b
JM
838#endif /* CONFIG_IEEE80211W */
839 STR(id_str);
fbdcfd57 840#ifdef CONFIG_P2P
9ec87666 841 write_go_p2p_dev_addr(f, ssid);
fbdcfd57 842 write_p2p_client_list(f, ssid);
01a57fe4 843 write_psk_list(f, ssid);
fbdcfd57 844#endif /* CONFIG_P2P */
2b892d44 845 INT(ap_max_inactivity);
18206e02
JM
846 INT(dtim_period);
847 INT(beacon_int);
dd10abcc
HW
848#ifdef CONFIG_MACSEC
849 INT(macsec_policy);
ad51731a
SD
850 write_mka_cak(f, ssid);
851 write_mka_ckn(f, ssid);
7b4d546e 852 INT(macsec_integ_only);
e0d9fd34 853 INT(macsec_port);
65dfa872 854 INT_DEF(mka_priority, DEFAULT_PRIO_NOT_KEY_SERVER);
dd10abcc 855#endif /* CONFIG_MACSEC */
e376290c
DS
856#ifdef CONFIG_HS20
857 INT(update_identifier);
858#endif /* CONFIG_HS20 */
c267753b 859 write_int(f, "mac_addr", ssid->mac_addr, -1);
2b2bb5a8 860#ifdef CONFIG_MESH
2b2bb5a8 861 STR(mesh_basic_rates);
e6096799
MH
862 INT_DEF(dot11MeshMaxRetries, DEFAULT_MESH_MAX_RETRIES);
863 INT_DEF(dot11MeshRetryTimeout, DEFAULT_MESH_RETRY_TIMEOUT);
864 INT_DEF(dot11MeshConfirmTimeout, DEFAULT_MESH_CONFIRM_TIMEOUT);
865 INT_DEF(dot11MeshHoldingTimeout, DEFAULT_MESH_HOLDING_TIMEOUT);
30311339 866 INT_DEF(mesh_rssi_threshold, DEFAULT_MESH_RSSI_THRESHOLD);
2b2bb5a8 867#endif /* CONFIG_MESH */
2b892d44 868 INT(wpa_ptk_rekey);
6c33ca9f 869 INT(group_rekey);
2b892d44 870 INT(ignore_broadcast_ssid);
b979caae 871#ifdef CONFIG_DPP
44d6b272
JM
872 STR(dpp_connector);
873 STR(dpp_netaccesskey);
874 INT(dpp_netaccesskey_expiry);
875 STR(dpp_csign);
b979caae 876#endif /* CONFIG_DPP */
ec9f4837 877 INT(owe_group);
c1790a5f 878 INT(owe_only);
2b892d44
JM
879#ifdef CONFIG_HT_OVERRIDES
880 INT_DEF(disable_ht, DEFAULT_DISABLE_HT);
881 INT_DEF(disable_ht40, DEFAULT_DISABLE_HT40);
882 INT_DEF(disable_sgi, DEFAULT_DISABLE_SGI);
883 INT_DEF(disable_ldpc, DEFAULT_DISABLE_LDPC);
884 INT(ht40_intolerant);
885 INT_DEF(disable_max_amsdu, DEFAULT_DISABLE_MAX_AMSDU);
886 INT_DEF(ampdu_factor, DEFAULT_AMPDU_FACTOR);
887 INT_DEF(ampdu_density, DEFAULT_AMPDU_DENSITY);
888 STR(ht_mcs);
889#endif /* CONFIG_HT_OVERRIDES */
890#ifdef CONFIG_VHT_OVERRIDES
891 INT(disable_vht);
892 INT(vht_capa);
893 INT(vht_capa_mask);
894 INT_DEF(vht_rx_mcs_nss_1, -1);
895 INT_DEF(vht_rx_mcs_nss_2, -1);
896 INT_DEF(vht_rx_mcs_nss_3, -1);
897 INT_DEF(vht_rx_mcs_nss_4, -1);
898 INT_DEF(vht_rx_mcs_nss_5, -1);
899 INT_DEF(vht_rx_mcs_nss_6, -1);
900 INT_DEF(vht_rx_mcs_nss_7, -1);
901 INT_DEF(vht_rx_mcs_nss_8, -1);
902 INT_DEF(vht_tx_mcs_nss_1, -1);
903 INT_DEF(vht_tx_mcs_nss_2, -1);
904 INT_DEF(vht_tx_mcs_nss_3, -1);
905 INT_DEF(vht_tx_mcs_nss_4, -1);
906 INT_DEF(vht_tx_mcs_nss_5, -1);
907 INT_DEF(vht_tx_mcs_nss_6, -1);
908 INT_DEF(vht_tx_mcs_nss_7, -1);
909 INT_DEF(vht_tx_mcs_nss_8, -1);
910#endif /* CONFIG_VHT_OVERRIDES */
6fc6879b
JM
911
912#undef STR
913#undef INT
914#undef INT_DEF
915}
916
917
f2c20751
JM
918static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
919{
463c8ffb
JM
920 size_t i;
921
1a712d2f
JM
922 if (cred->priority)
923 fprintf(f, "\tpriority=%d\n", cred->priority);
d7b01abd
JM
924 if (cred->pcsc)
925 fprintf(f, "\tpcsc=%d\n", cred->pcsc);
f2c20751
JM
926 if (cred->realm)
927 fprintf(f, "\trealm=\"%s\"\n", cred->realm);
928 if (cred->username)
929 fprintf(f, "\tusername=\"%s\"\n", cred->username);
9aae09f1
JM
930 if (cred->password && cred->ext_password)
931 fprintf(f, "\tpassword=ext:%s\n", cred->password);
932 else if (cred->password)
f2c20751
JM
933 fprintf(f, "\tpassword=\"%s\"\n", cred->password);
934 if (cred->ca_cert)
935 fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
9aae09f1
JM
936 if (cred->client_cert)
937 fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert);
938 if (cred->private_key)
939 fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key);
940 if (cred->private_key_passwd)
941 fprintf(f, "\tprivate_key_passwd=\"%s\"\n",
942 cred->private_key_passwd);
f2c20751
JM
943 if (cred->imsi)
944 fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
945 if (cred->milenage)
946 fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
463c8ffb
JM
947 for (i = 0; i < cred->num_domain; i++)
948 fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
ac1bc549 949 if (cred->domain_suffix_match)
fa258a3d 950 fprintf(f, "\tdomain_suffix_match=\"%s\"\n",
ac1bc549 951 cred->domain_suffix_match);
9aae09f1 952 if (cred->roaming_consortium_len) {
9aae09f1
JM
953 fprintf(f, "\troaming_consortium=");
954 for (i = 0; i < cred->roaming_consortium_len; i++)
955 fprintf(f, "%02x", cred->roaming_consortium[i]);
956 fprintf(f, "\n");
957 }
958 if (cred->eap_method) {
959 const char *name;
960 name = eap_get_name(cred->eap_method[0].vendor,
961 cred->eap_method[0].method);
f2ca0e97
JM
962 if (name)
963 fprintf(f, "\teap=%s\n", name);
9aae09f1
JM
964 }
965 if (cred->phase1)
966 fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
967 if (cred->phase2)
968 fprintf(f, "\tphase2=\"%s\"\n", cred->phase2);
dbea8ac7 969 if (cred->excluded_ssid) {
463c8ffb 970 size_t j;
dbea8ac7
JM
971 for (i = 0; i < cred->num_excluded_ssid; i++) {
972 struct excluded_ssid *e = &cred->excluded_ssid[i];
973 fprintf(f, "\texcluded_ssid=");
974 for (j = 0; j < e->ssid_len; j++)
975 fprintf(f, "%02x", e->ssid[j]);
976 fprintf(f, "\n");
977 }
978 }
bc00053c
JM
979 if (cred->roaming_partner) {
980 for (i = 0; i < cred->num_roaming_partner; i++) {
981 struct roaming_partner *p = &cred->roaming_partner[i];
982 fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n",
983 p->fqdn, p->exact_match, p->priority,
984 p->country);
985 }
986 }
f9cd147d
JM
987 if (cred->update_identifier)
988 fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
aa26ba68
JM
989
990 if (cred->provisioning_sp)
f777fd12 991 fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
74794891
JM
992 if (cred->sp_priority)
993 fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
4cad9df1
JM
994
995 if (cred->min_dl_bandwidth_home)
996 fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
997 cred->min_dl_bandwidth_home);
998 if (cred->min_ul_bandwidth_home)
999 fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
1000 cred->min_ul_bandwidth_home);
1001 if (cred->min_dl_bandwidth_roaming)
1002 fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
1003 cred->min_dl_bandwidth_roaming);
1004 if (cred->min_ul_bandwidth_roaming)
1005 fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
1006 cred->min_ul_bandwidth_roaming);
a45b2dc5
JM
1007
1008 if (cred->max_bss_load)
1009 fprintf(f, "\tmax_bss_load=%u\n",
1010 cred->max_bss_load);
cf6d08a6
JM
1011
1012 if (cred->ocsp)
1013 fprintf(f, "\tocsp=%d\n", cred->ocsp);
75aea3e7
JM
1014
1015 if (cred->num_req_conn_capab) {
1016 for (i = 0; i < cred->num_req_conn_capab; i++) {
1017 int *ports;
1018
1019 fprintf(f, "\treq_conn_capab=%u",
1020 cred->req_conn_capab_proto[i]);
1021 ports = cred->req_conn_capab_port[i];
1022 if (ports) {
1023 int j;
1024 for (j = 0; ports[j] != -1; j++) {
1025 fprintf(f, "%s%d", j > 0 ? "," : ":",
1026 ports[j]);
1027 }
1028 }
1029 fprintf(f, "\n");
1030 }
1031 }
1032
1033 if (cred->required_roaming_consortium_len) {
1034 fprintf(f, "\trequired_roaming_consortium=");
1035 for (i = 0; i < cred->required_roaming_consortium_len; i++)
1036 fprintf(f, "%02x",
1037 cred->required_roaming_consortium[i]);
1038 fprintf(f, "\n");
1039 }
13f6a07e
NJ
1040
1041 if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
1042 fprintf(f, "\tsim_num=%d\n", cred->sim_num);
f2c20751
JM
1043}
1044
1045
6fc6879b
JM
1046#ifndef CONFIG_NO_CONFIG_BLOBS
1047static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
1048{
1049 unsigned char *encoded;
1050
1051 encoded = base64_encode(blob->data, blob->len, NULL);
1052 if (encoded == NULL)
1053 return -1;
1054
1055 fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
1056 os_free(encoded);
1057 return 0;
1058}
1059#endif /* CONFIG_NO_CONFIG_BLOBS */
1060
1061
3f2c8ba6
JM
1062static void write_global_bin(FILE *f, const char *field,
1063 const struct wpabuf *val)
1064{
1065 size_t i;
1066 const u8 *pos;
1067
1068 if (val == NULL)
1069 return;
1070
1071 fprintf(f, "%s=", field);
1072 pos = wpabuf_head(val);
1073 for (i = 0; i < wpabuf_len(val); i++)
1074 fprintf(f, "%02X", *pos++);
1075 fprintf(f, "\n");
1076}
1077
1078
6fc6879b
JM
1079static void wpa_config_write_global(FILE *f, struct wpa_config *config)
1080{
1081#ifdef CONFIG_CTRL_IFACE
1082 if (config->ctrl_interface)
1083 fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
1084 if (config->ctrl_interface_group)
1085 fprintf(f, "ctrl_interface_group=%s\n",
1086 config->ctrl_interface_group);
1087#endif /* CONFIG_CTRL_IFACE */
1088 if (config->eapol_version != DEFAULT_EAPOL_VERSION)
1089 fprintf(f, "eapol_version=%d\n", config->eapol_version);
1090 if (config->ap_scan != DEFAULT_AP_SCAN)
1091 fprintf(f, "ap_scan=%d\n", config->ap_scan);
54ddd743
JM
1092 if (config->disable_scan_offload)
1093 fprintf(f, "disable_scan_offload=%d\n",
1094 config->disable_scan_offload);
6fc6879b
JM
1095 if (config->fast_reauth != DEFAULT_FAST_REAUTH)
1096 fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
6fc6879b
JM
1097 if (config->opensc_engine_path)
1098 fprintf(f, "opensc_engine_path=%s\n",
1099 config->opensc_engine_path);
1100 if (config->pkcs11_engine_path)
1101 fprintf(f, "pkcs11_engine_path=%s\n",
1102 config->pkcs11_engine_path);
1103 if (config->pkcs11_module_path)
1104 fprintf(f, "pkcs11_module_path=%s\n",
1105 config->pkcs11_module_path);
07e2de31
JM
1106 if (config->openssl_ciphers)
1107 fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers);
f64adcd7
JM
1108 if (config->pcsc_reader)
1109 fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
1110 if (config->pcsc_pin)
1111 fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
6fc6879b
JM
1112 if (config->driver_param)
1113 fprintf(f, "driver_param=%s\n", config->driver_param);
1114 if (config->dot11RSNAConfigPMKLifetime)
91b7a5e1 1115 fprintf(f, "dot11RSNAConfigPMKLifetime=%u\n",
6fc6879b
JM
1116 config->dot11RSNAConfigPMKLifetime);
1117 if (config->dot11RSNAConfigPMKReauthThreshold)
91b7a5e1 1118 fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%u\n",
6fc6879b
JM
1119 config->dot11RSNAConfigPMKReauthThreshold);
1120 if (config->dot11RSNAConfigSATimeout)
91b7a5e1 1121 fprintf(f, "dot11RSNAConfigSATimeout=%u\n",
6fc6879b
JM
1122 config->dot11RSNAConfigSATimeout);
1123 if (config->update_config)
1124 fprintf(f, "update_config=%d\n", config->update_config);
f855f923 1125#ifdef CONFIG_WPS
9be09636 1126 if (!is_nil_uuid(config->uuid)) {
f855f923
JM
1127 char buf[40];
1128 uuid_bin2str(config->uuid, buf, sizeof(buf));
1129 fprintf(f, "uuid=%s\n", buf);
1130 }
183d3924
JM
1131 if (config->auto_uuid)
1132 fprintf(f, "auto_uuid=%d\n", config->auto_uuid);
3c0b7aa4
JM
1133 if (config->device_name)
1134 fprintf(f, "device_name=%s\n", config->device_name);
1135 if (config->manufacturer)
1136 fprintf(f, "manufacturer=%s\n", config->manufacturer);
1137 if (config->model_name)
1138 fprintf(f, "model_name=%s\n", config->model_name);
1139 if (config->model_number)
1140 fprintf(f, "model_number=%s\n", config->model_number);
1141 if (config->serial_number)
1142 fprintf(f, "serial_number=%s\n", config->serial_number);
2f646b6e
JB
1143 {
1144 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
1145 buf = wps_dev_type_bin2str(config->device_type,
1146 _buf, sizeof(_buf));
a769b094
JM
1147 if (os_strcmp(buf, "0-00000000-0") != 0)
1148 fprintf(f, "device_type=%s\n", buf);
2f646b6e 1149 }
9be09636 1150 if (WPA_GET_BE32(config->os_version))
3c0b7aa4
JM
1151 fprintf(f, "os_version=%08x\n",
1152 WPA_GET_BE32(config->os_version));
c0e4dd9e
JM
1153 if (config->config_methods)
1154 fprintf(f, "config_methods=%s\n", config->config_methods);
47662164
JM
1155 if (config->wps_cred_processing)
1156 fprintf(f, "wps_cred_processing=%d\n",
1157 config->wps_cred_processing);
71dd3b78
AS
1158 if (config->wps_vendor_ext_m1) {
1159 int i, len = wpabuf_len(config->wps_vendor_ext_m1);
1160 const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
1161 if (len > 0) {
1162 fprintf(f, "wps_vendor_ext_m1=");
1163 for (i = 0; i < len; i++)
1164 fprintf(f, "%02x", *p++);
1165 fprintf(f, "\n");
1166 }
1167 }
f855f923 1168#endif /* CONFIG_WPS */
e3768e7c 1169#ifdef CONFIG_P2P
1fb1bf99
JM
1170 {
1171 int i;
1172 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
1173
1174 for (i = 0; i < config->num_sec_device_types; i++) {
1175 buf = wps_dev_type_bin2str(config->sec_device_type[i],
1176 _buf, sizeof(_buf));
1177 if (buf)
1178 fprintf(f, "sec_device_type=%s\n", buf);
1179 }
1180 }
e3768e7c 1181 if (config->p2p_listen_reg_class)
91b7a5e1 1182 fprintf(f, "p2p_listen_reg_class=%d\n",
e3768e7c
JM
1183 config->p2p_listen_reg_class);
1184 if (config->p2p_listen_channel)
91b7a5e1 1185 fprintf(f, "p2p_listen_channel=%d\n",
e3768e7c
JM
1186 config->p2p_listen_channel);
1187 if (config->p2p_oper_reg_class)
91b7a5e1 1188 fprintf(f, "p2p_oper_reg_class=%d\n",
e3768e7c
JM
1189 config->p2p_oper_reg_class);
1190 if (config->p2p_oper_channel)
91b7a5e1 1191 fprintf(f, "p2p_oper_channel=%d\n", config->p2p_oper_channel);
e3768e7c 1192 if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
91b7a5e1 1193 fprintf(f, "p2p_go_intent=%d\n", config->p2p_go_intent);
e3768e7c
JM
1194 if (config->p2p_ssid_postfix)
1195 fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
1196 if (config->persistent_reconnect)
91b7a5e1 1197 fprintf(f, "persistent_reconnect=%d\n",
e3768e7c 1198 config->persistent_reconnect);
0f66abd2 1199 if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
91b7a5e1 1200 fprintf(f, "p2p_intra_bss=%d\n", config->p2p_intra_bss);
3071e181 1201 if (config->p2p_group_idle)
91b7a5e1 1202 fprintf(f, "p2p_group_idle=%d\n", config->p2p_group_idle);
1b928f96
JM
1203 if (config->p2p_passphrase_len)
1204 fprintf(f, "p2p_passphrase_len=%u\n",
1205 config->p2p_passphrase_len);
21d996f7
JM
1206 if (config->p2p_pref_chan) {
1207 unsigned int i;
1208 fprintf(f, "p2p_pref_chan=");
1209 for (i = 0; i < config->num_p2p_pref_chan; i++) {
1210 fprintf(f, "%s%u:%u", i > 0 ? "," : "",
1211 config->p2p_pref_chan[i].op_class,
1212 config->p2p_pref_chan[i].chan);
1213 }
1214 fprintf(f, "\n");
1215 }
556b30da
JM
1216 if (config->p2p_no_go_freq.num) {
1217 char *val = freq_range_list_str(&config->p2p_no_go_freq);
1218 if (val) {
1219 fprintf(f, "p2p_no_go_freq=%s\n", val);
1220 os_free(val);
1221 }
1222 }
51e9f228
JM
1223 if (config->p2p_add_cli_chan)
1224 fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
e3bd6e9d
IP
1225 if (config->p2p_optimize_listen_chan !=
1226 DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN)
1227 fprintf(f, "p2p_optimize_listen_chan=%d\n",
1228 config->p2p_optimize_listen_chan);
a93a15bb 1229 if (config->p2p_go_ht40)
91b7a5e1 1230 fprintf(f, "p2p_go_ht40=%d\n", config->p2p_go_ht40);
20ea1ca4 1231 if (config->p2p_go_vht)
91b7a5e1 1232 fprintf(f, "p2p_go_vht=%d\n", config->p2p_go_vht);
0b8bcaa5 1233 if (config->p2p_go_ctwindow != DEFAULT_P2P_GO_CTWINDOW)
91b7a5e1 1234 fprintf(f, "p2p_go_ctwindow=%d\n", config->p2p_go_ctwindow);
7a808c7e 1235 if (config->p2p_disabled)
91b7a5e1 1236 fprintf(f, "p2p_disabled=%d\n", config->p2p_disabled);
d76cd41a 1237 if (config->p2p_no_group_iface)
91b7a5e1 1238 fprintf(f, "p2p_no_group_iface=%d\n",
d76cd41a 1239 config->p2p_no_group_iface);
ef8151ac 1240 if (config->p2p_ignore_shared_freq)
91b7a5e1 1241 fprintf(f, "p2p_ignore_shared_freq=%d\n",
ef8151ac 1242 config->p2p_ignore_shared_freq);
07c1e987 1243 if (config->p2p_cli_probe)
91b7a5e1 1244 fprintf(f, "p2p_cli_probe=%d\n", config->p2p_cli_probe);
1a471ff0
IP
1245 if (config->p2p_go_freq_change_policy != DEFAULT_P2P_GO_FREQ_MOVE)
1246 fprintf(f, "p2p_go_freq_change_policy=%u\n",
1247 config->p2p_go_freq_change_policy);
17d32eb3
PK
1248 if (WPA_GET_BE32(config->ip_addr_go))
1249 fprintf(f, "ip_addr_go=%u.%u.%u.%u\n",
1250 config->ip_addr_go[0], config->ip_addr_go[1],
1251 config->ip_addr_go[2], config->ip_addr_go[3]);
1252 if (WPA_GET_BE32(config->ip_addr_mask))
1253 fprintf(f, "ip_addr_mask=%u.%u.%u.%u\n",
1254 config->ip_addr_mask[0], config->ip_addr_mask[1],
1255 config->ip_addr_mask[2], config->ip_addr_mask[3]);
1256 if (WPA_GET_BE32(config->ip_addr_start))
1257 fprintf(f, "ip_addr_start=%u.%u.%u.%u\n",
1258 config->ip_addr_start[0], config->ip_addr_start[1],
1259 config->ip_addr_start[2], config->ip_addr_start[3]);
1260 if (WPA_GET_BE32(config->ip_addr_end))
1261 fprintf(f, "ip_addr_end=%u.%u.%u.%u\n",
1262 config->ip_addr_end[0], config->ip_addr_end[1],
1263 config->ip_addr_end[2], config->ip_addr_end[3]);
e3768e7c 1264#endif /* CONFIG_P2P */
315ce40a 1265 if (config->country[0] && config->country[1]) {
6d158490 1266 fprintf(f, "country=%c%c\n",
315ce40a 1267 config->country[0], config->country[1]);
6d158490 1268 }
c9c38b09
JM
1269 if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
1270 fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
78633c37
SL
1271 if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
1272 fprintf(f, "bss_expiration_age=%u\n",
1273 config->bss_expiration_age);
1274 if (config->bss_expiration_scan_count !=
1275 DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
1276 fprintf(f, "bss_expiration_scan_count=%u\n",
1277 config->bss_expiration_scan_count);
3812464c
JM
1278 if (config->filter_ssids)
1279 fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
58ed9e31
JM
1280 if (config->filter_rssi)
1281 fprintf(f, "filter_rssi=%d\n", config->filter_rssi);
dae608d5
JM
1282 if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
1283 fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
0d7e5a3a 1284 if (config->disassoc_low_ack)
91b7a5e1 1285 fprintf(f, "disassoc_low_ack=%d\n", config->disassoc_low_ack);
66aadbd7
JK
1286#ifdef CONFIG_HS20
1287 if (config->hs20)
1288 fprintf(f, "hs20=1\n");
1289#endif /* CONFIG_HS20 */
67e1b984 1290#ifdef CONFIG_INTERWORKING
46ee0427 1291 if (config->interworking)
91b7a5e1 1292 fprintf(f, "interworking=%d\n", config->interworking);
46ee0427
JM
1293 if (!is_zero_ether_addr(config->hessid))
1294 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
11540c0b
JM
1295 if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
1296 fprintf(f, "access_network_type=%d\n",
1297 config->access_network_type);
63bc0ab0
SD
1298 if (config->go_interworking)
1299 fprintf(f, "go_interworking=%d\n", config->go_interworking);
1300 if (config->go_access_network_type)
1301 fprintf(f, "go_access_network_type=%d\n",
1302 config->go_access_network_type);
1303 if (config->go_internet)
1304 fprintf(f, "go_internet=%d\n", config->go_internet);
1305 if (config->go_venue_group)
1306 fprintf(f, "go_venue_group=%d\n", config->go_venue_group);
1307 if (config->go_venue_type)
1308 fprintf(f, "go_venue_type=%d\n", config->go_venue_type);
67e1b984 1309#endif /* CONFIG_INTERWORKING */
1298c145 1310 if (config->pbc_in_m1)
91b7a5e1 1311 fprintf(f, "pbc_in_m1=%d\n", config->pbc_in_m1);
042ec551
JM
1312 if (config->wps_nfc_pw_from_config) {
1313 if (config->wps_nfc_dev_pw_id)
1314 fprintf(f, "wps_nfc_dev_pw_id=%d\n",
1315 config->wps_nfc_dev_pw_id);
1316 write_global_bin(f, "wps_nfc_dh_pubkey",
1317 config->wps_nfc_dh_pubkey);
1318 write_global_bin(f, "wps_nfc_dh_privkey",
1319 config->wps_nfc_dh_privkey);
1320 write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
1321 }
306ae225
JM
1322
1323 if (config->ext_password_backend)
1324 fprintf(f, "ext_password_backend=%s\n",
1325 config->ext_password_backend);
462a7439
ES
1326 if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY)
1327 fprintf(f, "p2p_go_max_inactivity=%d\n",
1328 config->p2p_go_max_inactivity);
4d5bda5f
JM
1329 if (config->auto_interworking)
1330 fprintf(f, "auto_interworking=%d\n",
1331 config->auto_interworking);
6e202021
JM
1332 if (config->okc)
1333 fprintf(f, "okc=%d\n", config->okc);
62d49803
JM
1334 if (config->pmf)
1335 fprintf(f, "pmf=%d\n", config->pmf);
18206e02
JM
1336 if (config->dtim_period)
1337 fprintf(f, "dtim_period=%d\n", config->dtim_period);
1338 if (config->beacon_int)
1339 fprintf(f, "beacon_int=%d\n", config->beacon_int);
625f202a
JM
1340
1341 if (config->sae_groups) {
1342 int i;
1343 fprintf(f, "sae_groups=");
9284418d 1344 for (i = 0; config->sae_groups[i] > 0; i++) {
625f202a
JM
1345 fprintf(f, "%s%d", i > 0 ? " " : "",
1346 config->sae_groups[i]);
1347 }
1348 fprintf(f, "\n");
1349 }
18a2eaab
JM
1350
1351 if (config->ap_vendor_elements) {
1352 int i, len = wpabuf_len(config->ap_vendor_elements);
1353 const u8 *p = wpabuf_head_u8(config->ap_vendor_elements);
1354 if (len > 0) {
1355 fprintf(f, "ap_vendor_elements=");
1356 for (i = 0; i < len; i++)
1357 fprintf(f, "%02x", *p++);
1358 fprintf(f, "\n");
1359 }
1360 }
4342326f
JM
1361
1362 if (config->ignore_old_scan_res)
1363 fprintf(f, "ignore_old_scan_res=%d\n",
1364 config->ignore_old_scan_res);
f5ffc348
BG
1365
1366 if (config->freq_list && config->freq_list[0]) {
1367 int i;
1368 fprintf(f, "freq_list=");
1369 for (i = 0; config->freq_list[i]; i++) {
91b7a5e1 1370 fprintf(f, "%s%d", i > 0 ? " " : "",
f5ffc348
BG
1371 config->freq_list[i]);
1372 }
1373 fprintf(f, "\n");
1374 }
6124e858
BG
1375 if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
1376 fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
4aa81868
SF
1377
1378 if (config->sched_scan_interval)
1379 fprintf(f, "sched_scan_interval=%u\n",
1380 config->sched_scan_interval);
a5d44ac0 1381
d0330d57
PK
1382 if (config->sched_scan_start_delay)
1383 fprintf(f, "sched_scan_start_delay=%u\n",
1384 config->sched_scan_start_delay);
1385
a5d44ac0
JM
1386 if (config->external_sim)
1387 fprintf(f, "external_sim=%d\n", config->external_sim);
800d5872
SD
1388
1389 if (config->tdls_external_control)
1390 fprintf(f, "tdls_external_control=%d\n",
1391 config->tdls_external_control);
54ac5aa2 1392
e4fa8b12 1393 if (config->wowlan_triggers)
8b627b7c 1394 fprintf(f, "wowlan_triggers=%s\n",
e4fa8b12
EP
1395 config->wowlan_triggers);
1396
54ac5aa2
AB
1397 if (config->bgscan)
1398 fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
d3b20469 1399
1f539c78
JM
1400 if (config->autoscan)
1401 fprintf(f, "autoscan=%s\n", config->autoscan);
1402
d3b20469
NS
1403 if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY)
1404 fprintf(f, "p2p_search_delay=%u\n",
1405 config->p2p_search_delay);
c267753b
JM
1406
1407 if (config->mac_addr)
1408 fprintf(f, "mac_addr=%d\n", config->mac_addr);
1409
1410 if (config->rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
1411 fprintf(f, "rand_addr_lifetime=%u\n",
1412 config->rand_addr_lifetime);
1413
1414 if (config->preassoc_mac_addr)
1415 fprintf(f, "preassoc_mac_addr=%d\n", config->preassoc_mac_addr);
b41f2684
CL
1416
1417 if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD)
91b7a5e1 1418 fprintf(f, "key_mgmt_offload=%d\n", config->key_mgmt_offload);
e45e8989
TP
1419
1420 if (config->user_mpm != DEFAULT_USER_MPM)
1421 fprintf(f, "user_mpm=%d\n", config->user_mpm);
4b409368
MH
1422
1423 if (config->max_peer_links != DEFAULT_MAX_PEER_LINKS)
1424 fprintf(f, "max_peer_links=%d\n", config->max_peer_links);
483dd6a5
JM
1425
1426 if (config->cert_in_cb != DEFAULT_CERT_IN_CB)
1427 fprintf(f, "cert_in_cb=%d\n", config->cert_in_cb);
5a2a6de6
MH
1428
1429 if (config->mesh_max_inactivity != DEFAULT_MESH_MAX_INACTIVITY)
1430 fprintf(f, "mesh_max_inactivity=%d\n",
1431 config->mesh_max_inactivity);
c35e35ed 1432
ecd40fef
MH
1433 if (config->dot11RSNASAERetransPeriod !=
1434 DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD)
1435 fprintf(f, "dot11RSNASAERetransPeriod=%d\n",
1436 config->dot11RSNASAERetransPeriod);
1437
c35e35ed 1438 if (config->passive_scan)
c4da67de 1439 fprintf(f, "passive_scan=%d\n", config->passive_scan);
59b416c7
JM
1440
1441 if (config->reassoc_same_bss_optim)
1442 fprintf(f, "reassoc_same_bss_optim=%d\n",
1443 config->reassoc_same_bss_optim);
94687a0a
SD
1444
1445 if (config->wps_priority)
1446 fprintf(f, "wps_priority=%d\n", config->wps_priority);
73ed03f3
MS
1447
1448 if (config->wpa_rsc_relaxation != DEFAULT_WPA_RSC_RELAXATION)
1449 fprintf(f, "wpa_rsc_relaxation=%d\n",
1450 config->wpa_rsc_relaxation);
32c02261
AS
1451
1452 if (config->sched_scan_plans)
1453 fprintf(f, "sched_scan_plans=%s\n", config->sched_scan_plans);
facf2c72
DS
1454
1455#ifdef CONFIG_MBO
1456 if (config->non_pref_chan)
1457 fprintf(f, "non_pref_chan=%s\n", config->non_pref_chan);
c5d193d7
DS
1458 if (config->mbo_cell_capa != DEFAULT_MBO_CELL_CAPA)
1459 fprintf(f, "mbo_cell_capa=%u\n", config->mbo_cell_capa);
af8bc24d
KV
1460 if (config->disassoc_imminent_rssi_threshold !=
1461 DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD)
1462 fprintf(f, "disassoc_imminent_rssi_threshold=%d\n",
1463 config->disassoc_imminent_rssi_threshold);
332aadb8
AP
1464 if (config->oce != DEFAULT_OCE_SUPPORT)
1465 fprintf(f, "oce=%u\n", config->oce);
facf2c72
DS
1466#endif /* CONFIG_MBO */
1467
c86bef29
JM
1468 if (config->gas_address3)
1469 fprintf(f, "gas_address3=%d\n", config->gas_address3);
d1723c55
LD
1470
1471 if (config->ftm_responder)
1472 fprintf(f, "ftm_responder=%d\n", config->ftm_responder);
1473 if (config->ftm_initiator)
1474 fprintf(f, "ftm_initiator=%d\n", config->ftm_initiator);
35c78f7b
JM
1475
1476 if (config->osu_dir)
1477 fprintf(f, "osu_dir=%s\n", config->osu_dir);
54736d83
JM
1478
1479 if (config->fst_group_id)
1480 fprintf(f, "fst_group_id=%s\n", config->fst_group_id);
1481 if (config->fst_priority)
1482 fprintf(f, "fst_priority=%d\n", config->fst_priority);
1483 if (config->fst_llt)
1484 fprintf(f, "fst_llt=%d\n", config->fst_llt);
1d9d21f3
VK
1485
1486 if (config->gas_rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
1487 fprintf(f, "gas_rand_addr_lifetime=%u\n",
1488 config->gas_rand_addr_lifetime);
1489 if (config->gas_rand_mac_addr)
1490 fprintf(f, "gas_rand_mac_addr=%d\n", config->gas_rand_mac_addr);
8528994e
JM
1491 if (config->dpp_config_processing)
1492 fprintf(f, "dpp_config_processing=%d\n",
1493 config->dpp_config_processing);
1d9d21f3 1494
6fc6879b
JM
1495}
1496
1497#endif /* CONFIG_NO_CONFIG_WRITE */
1498
1499
1500int wpa_config_write(const char *name, struct wpa_config *config)
1501{
1502#ifndef CONFIG_NO_CONFIG_WRITE
1503 FILE *f;
1504 struct wpa_ssid *ssid;
f2c20751 1505 struct wpa_cred *cred;
6fc6879b
JM
1506#ifndef CONFIG_NO_CONFIG_BLOBS
1507 struct wpa_config_blob *blob;
1508#endif /* CONFIG_NO_CONFIG_BLOBS */
1509 int ret = 0;
663ae2f4
VD
1510 const char *orig_name = name;
1511 int tmp_len = os_strlen(name) + 5; /* allow space for .tmp suffix */
1512 char *tmp_name = os_malloc(tmp_len);
1513
1514 if (tmp_name) {
1515 os_snprintf(tmp_name, tmp_len, "%s.tmp", name);
1516 name = tmp_name;
1517 }
6fc6879b
JM
1518
1519 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
1520
1521 f = fopen(name, "w");
1522 if (f == NULL) {
1523 wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
663ae2f4 1524 os_free(tmp_name);
6fc6879b
JM
1525 return -1;
1526 }
1527
1528 wpa_config_write_global(f, config);
1529
f2c20751 1530 for (cred = config->cred; cred; cred = cred->next) {
03ed3324
JM
1531 if (cred->temporary)
1532 continue;
f2c20751
JM
1533 fprintf(f, "\ncred={\n");
1534 wpa_config_write_cred(f, cred);
1535 fprintf(f, "}\n");
1536 }
1537
6fc6879b 1538 for (ssid = config->ssid; ssid; ssid = ssid->next) {
2ff99b3c
JM
1539 if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
1540 continue; /* do not save temporary networks */
8e8280bd
JM
1541 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
1542 !ssid->passphrase)
1543 continue; /* do not save invalid network */
6fc6879b
JM
1544 fprintf(f, "\nnetwork={\n");
1545 wpa_config_write_network(f, ssid);
1546 fprintf(f, "}\n");
1547 }
1548
1549#ifndef CONFIG_NO_CONFIG_BLOBS
1550 for (blob = config->blobs; blob; blob = blob->next) {
1551 ret = wpa_config_write_blob(f, blob);
1552 if (ret)
1553 break;
1554 }
1555#endif /* CONFIG_NO_CONFIG_BLOBS */
1556
a218e1de
MW
1557 os_fdatasync(f);
1558
6fc6879b
JM
1559 fclose(f);
1560
663ae2f4
VD
1561 if (tmp_name) {
1562 int chmod_ret = 0;
1563
1564#ifdef ANDROID
1565 chmod_ret = chmod(tmp_name,
1566 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
1567#endif /* ANDROID */
1568 if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0)
1569 ret = -1;
1570
1571 os_free(tmp_name);
1572 }
1573
6fc6879b 1574 wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
663ae2f4 1575 orig_name, ret ? "un" : "");
6fc6879b
JM
1576 return ret;
1577#else /* CONFIG_NO_CONFIG_WRITE */
1578 return -1;
1579#endif /* CONFIG_NO_CONFIG_WRITE */
1580}