]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/config_file.c
wpa_supplicant: Fix parsing errors on additional config file
[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 466 if (errors) {
3bd35b68
JM
467 if (config != cfgp)
468 wpa_config_free(config);
6fc6879b
JM
469 config = NULL;
470 head = NULL;
471 }
ae6e1bee 472#endif /* WPA_IGNORE_CONFIG_ERRORS */
6fc6879b
JM
473
474 return config;
475}
476
477
478#ifndef CONFIG_NO_CONFIG_WRITE
479
480static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
481{
482 char *value = wpa_config_get(ssid, field);
483 if (value == NULL)
484 return;
485 fprintf(f, "\t%s=%s\n", field, value);
486 os_free(value);
487}
488
489
490static void write_int(FILE *f, const char *field, int value, int def)
491{
492 if (value == def)
493 return;
494 fprintf(f, "\t%s=%d\n", field, value);
495}
496
497
498static void write_bssid(FILE *f, struct wpa_ssid *ssid)
499{
500 char *value = wpa_config_get(ssid, "bssid");
501 if (value == NULL)
502 return;
503 fprintf(f, "\tbssid=%s\n", value);
504 os_free(value);
505}
506
507
43a356b2
PK
508static void write_bssid_hint(FILE *f, struct wpa_ssid *ssid)
509{
510 char *value = wpa_config_get(ssid, "bssid_hint");
511
512 if (!value)
513 return;
514 fprintf(f, "\tbssid_hint=%s\n", value);
515 os_free(value);
516}
517
518
6fc6879b
JM
519static void write_psk(FILE *f, struct wpa_ssid *ssid)
520{
a52410c2
JM
521 char *value;
522
523 if (ssid->mem_only_psk)
524 return;
525
526 value = wpa_config_get(ssid, "psk");
6fc6879b
JM
527 if (value == NULL)
528 return;
529 fprintf(f, "\tpsk=%s\n", value);
530 os_free(value);
531}
532
533
534static void write_proto(FILE *f, struct wpa_ssid *ssid)
535{
536 char *value;
537
538 if (ssid->proto == DEFAULT_PROTO)
539 return;
540
541 value = wpa_config_get(ssid, "proto");
542 if (value == NULL)
543 return;
544 if (value[0])
545 fprintf(f, "\tproto=%s\n", value);
546 os_free(value);
547}
548
549
550static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
551{
552 char *value;
553
554 if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
555 return;
556
557 value = wpa_config_get(ssid, "key_mgmt");
558 if (value == NULL)
559 return;
560 if (value[0])
561 fprintf(f, "\tkey_mgmt=%s\n", value);
562 os_free(value);
563}
564
565
566static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
567{
568 char *value;
569
570 if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
571 return;
572
573 value = wpa_config_get(ssid, "pairwise");
574 if (value == NULL)
575 return;
576 if (value[0])
577 fprintf(f, "\tpairwise=%s\n", value);
578 os_free(value);
579}
580
581
582static void write_group(FILE *f, struct wpa_ssid *ssid)
583{
584 char *value;
585
586 if (ssid->group_cipher == DEFAULT_GROUP)
587 return;
588
589 value = wpa_config_get(ssid, "group");
590 if (value == NULL)
591 return;
592 if (value[0])
593 fprintf(f, "\tgroup=%s\n", value);
594 os_free(value);
595}
596
597
61a56c14
JM
598static void write_group_mgmt(FILE *f, struct wpa_ssid *ssid)
599{
600 char *value;
601
602 if (!ssid->group_mgmt_cipher)
603 return;
604
605 value = wpa_config_get(ssid, "group_mgmt");
606 if (!value)
607 return;
608 if (value[0])
609 fprintf(f, "\tgroup_mgmt=%s\n", value);
610 os_free(value);
611}
612
613
6fc6879b
JM
614static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
615{
616 char *value;
617
618 if (ssid->auth_alg == 0)
619 return;
620
621 value = wpa_config_get(ssid, "auth_alg");
622 if (value == NULL)
623 return;
624 if (value[0])
625 fprintf(f, "\tauth_alg=%s\n", value);
626 os_free(value);
627}
628
629
630#ifdef IEEE8021X_EAPOL
631static void write_eap(FILE *f, struct wpa_ssid *ssid)
632{
633 char *value;
634
635 value = wpa_config_get(ssid, "eap");
636 if (value == NULL)
637 return;
638
639 if (value[0])
640 fprintf(f, "\teap=%s\n", value);
641 os_free(value);
642}
643#endif /* IEEE8021X_EAPOL */
644
645
646static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
647{
648 char field[20], *value;
649 int res;
650
651 res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
d85e1fc8 652 if (os_snprintf_error(sizeof(field), res))
6fc6879b
JM
653 return;
654 value = wpa_config_get(ssid, field);
655 if (value) {
656 fprintf(f, "\t%s=%s\n", field, value);
657 os_free(value);
658 }
659}
660
661
fbdcfd57 662#ifdef CONFIG_P2P
01a57fe4 663
9ec87666
JM
664static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid)
665{
666 char *value = wpa_config_get(ssid, "go_p2p_dev_addr");
667 if (value == NULL)
668 return;
669 fprintf(f, "\tgo_p2p_dev_addr=%s\n", value);
670 os_free(value);
671}
672
fbdcfd57
JM
673static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
674{
675 char *value = wpa_config_get(ssid, "p2p_client_list");
676 if (value == NULL)
677 return;
678 fprintf(f, "\tp2p_client_list=%s\n", value);
679 os_free(value);
680}
01a57fe4
JM
681
682
683static void write_psk_list(FILE *f, struct wpa_ssid *ssid)
684{
685 struct psk_list_entry *psk;
686 char hex[32 * 2 + 1];
687
688 dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) {
689 wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
690 fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n",
691 psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
692 }
693}
694
fbdcfd57
JM
695#endif /* CONFIG_P2P */
696
697
ad51731a
SD
698#ifdef CONFIG_MACSEC
699
700static void write_mka_cak(FILE *f, struct wpa_ssid *ssid)
701{
702 char *value;
703
704 if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK))
705 return;
706
707 value = wpa_config_get(ssid, "mka_cak");
708 if (!value)
709 return;
710 fprintf(f, "\tmka_cak=%s\n", value);
711 os_free(value);
712}
713
714
715static void write_mka_ckn(FILE *f, struct wpa_ssid *ssid)
716{
717 char *value;
718
719 if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN))
720 return;
721
722 value = wpa_config_get(ssid, "mka_ckn");
723 if (!value)
724 return;
725 fprintf(f, "\tmka_ckn=%s\n", value);
726 os_free(value);
727}
728
729#endif /* CONFIG_MACSEC */
730
731
6fc6879b
JM
732static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
733{
734 int i;
735
736#define STR(t) write_str(f, #t, ssid)
737#define INT(t) write_int(f, #t, ssid->t, 0)
738#define INTe(t) write_int(f, #t, ssid->eap.t, 0)
739#define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
740#define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
741
742 STR(ssid);
743 INT(scan_ssid);
744 write_bssid(f, ssid);
43a356b2 745 write_bssid_hint(f, ssid);
2b892d44
JM
746 write_str(f, "bssid_blacklist", ssid);
747 write_str(f, "bssid_whitelist", ssid);
6fc6879b 748 write_psk(f, ssid);
a52410c2 749 INT(mem_only_psk);
a34ca59e 750 STR(sae_password);
6fc6879b
JM
751 write_proto(f, ssid);
752 write_key_mgmt(f, ssid);
4f920dc6 753 INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
6fc6879b
JM
754 write_pairwise(f, ssid);
755 write_group(f, ssid);
61a56c14 756 write_group_mgmt(f, ssid);
6fc6879b 757 write_auth_alg(f, ssid);
af548f53 758 STR(bgscan);
1aea2ca3 759 STR(autoscan);
1a9f2471 760 STR(scan_freq);
6fc6879b
JM
761#ifdef IEEE8021X_EAPOL
762 write_eap(f, ssid);
763 STR(identity);
764 STR(anonymous_identity);
9e834fc6 765 STR(imsi_identity);
6fc6879b
JM
766 STR(password);
767 STR(ca_cert);
768 STR(ca_path);
769 STR(client_cert);
770 STR(private_key);
771 STR(private_key_passwd);
772 STR(dh_file);
773 STR(subject_match);
774 STR(altsubject_match);
01f809c7 775 STR(domain_suffix_match);
cebee30f 776 STR(domain_match);
6fc6879b
JM
777 STR(ca_cert2);
778 STR(ca_path2);
779 STR(client_cert2);
780 STR(private_key2);
781 STR(private_key2_passwd);
782 STR(dh_file2);
783 STR(subject_match2);
784 STR(altsubject_match2);
01f809c7 785 STR(domain_suffix_match2);
cebee30f 786 STR(domain_match2);
6fc6879b
JM
787 STR(phase1);
788 STR(phase2);
789 STR(pcsc);
790 STR(pin);
791 STR(engine_id);
792 STR(key_id);
61ee0f71
DS
793 STR(cert_id);
794 STR(ca_cert_id);
795 STR(key2_id);
98842d51
CL
796 STR(pin2);
797 STR(engine2_id);
61ee0f71
DS
798 STR(cert2_id);
799 STR(ca_cert2_id);
6fc6879b 800 INTe(engine);
98842d51 801 INTe(engine2);
6fc6879b 802 INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
2b892d44 803 STR(openssl_ciphers);
02a8d45a 804 INTe(erp);
6fc6879b
JM
805#endif /* IEEE8021X_EAPOL */
806 for (i = 0; i < 4; i++)
807 write_wep_key(f, i, ssid);
808 INT(wep_tx_keyidx);
809 INT(priority);
810#ifdef IEEE8021X_EAPOL
811 INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
812 STR(pac_file);
813 INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
cf15b15c 814 INTe(ocsp);
13f6a07e 815 INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM);
6fc6879b
JM
816#endif /* IEEE8021X_EAPOL */
817 INT(mode);
2b892d44 818 INT(no_auto_peer);
bca06366 819 INT(frequency);
4d9e6fba 820 INT(fixed_freq);
d9909717
TB
821#ifdef CONFIG_ACS
822 INT(acs);
823#endif /* CONFIG_ACS */
6e202021 824 write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
6fc6879b 825 INT(disabled);
2b892d44 826 INT(mixed_cell);
2124a615 827 INT(vht);
b07ff9cb 828 INT_DEF(ht, 1);
2124a615 829 INT(ht40);
0f29bc68 830 INT(max_oper_chwidth);
2124a615
JB
831 INT(vht_center_freq1);
832 INT(vht_center_freq2);
b9074912 833 INT(pbss);
b6317b41 834 INT(wps_disabled);
76e20f4f 835 INT(fils_dh_group);
6fc6879b 836#ifdef CONFIG_IEEE80211W
62d49803
JM
837 write_int(f, "ieee80211w", ssid->ieee80211w,
838 MGMT_FRAME_PROTECTION_DEFAULT);
6fc6879b
JM
839#endif /* CONFIG_IEEE80211W */
840 STR(id_str);
fbdcfd57 841#ifdef CONFIG_P2P
9ec87666 842 write_go_p2p_dev_addr(f, ssid);
fbdcfd57 843 write_p2p_client_list(f, ssid);
01a57fe4 844 write_psk_list(f, ssid);
fbdcfd57 845#endif /* CONFIG_P2P */
2b892d44 846 INT(ap_max_inactivity);
18206e02
JM
847 INT(dtim_period);
848 INT(beacon_int);
dd10abcc
HW
849#ifdef CONFIG_MACSEC
850 INT(macsec_policy);
ad51731a
SD
851 write_mka_cak(f, ssid);
852 write_mka_ckn(f, ssid);
7b4d546e 853 INT(macsec_integ_only);
e0d9fd34 854 INT(macsec_port);
65dfa872 855 INT_DEF(mka_priority, DEFAULT_PRIO_NOT_KEY_SERVER);
dd10abcc 856#endif /* CONFIG_MACSEC */
e376290c
DS
857#ifdef CONFIG_HS20
858 INT(update_identifier);
859#endif /* CONFIG_HS20 */
c267753b 860 write_int(f, "mac_addr", ssid->mac_addr, -1);
2b2bb5a8 861#ifdef CONFIG_MESH
2b2bb5a8 862 STR(mesh_basic_rates);
e6096799
MH
863 INT_DEF(dot11MeshMaxRetries, DEFAULT_MESH_MAX_RETRIES);
864 INT_DEF(dot11MeshRetryTimeout, DEFAULT_MESH_RETRY_TIMEOUT);
865 INT_DEF(dot11MeshConfirmTimeout, DEFAULT_MESH_CONFIRM_TIMEOUT);
866 INT_DEF(dot11MeshHoldingTimeout, DEFAULT_MESH_HOLDING_TIMEOUT);
30311339 867 INT_DEF(mesh_rssi_threshold, DEFAULT_MESH_RSSI_THRESHOLD);
2b2bb5a8 868#endif /* CONFIG_MESH */
2b892d44 869 INT(wpa_ptk_rekey);
6c33ca9f 870 INT(group_rekey);
2b892d44 871 INT(ignore_broadcast_ssid);
b979caae 872#ifdef CONFIG_DPP
44d6b272
JM
873 STR(dpp_connector);
874 STR(dpp_netaccesskey);
875 INT(dpp_netaccesskey_expiry);
876 STR(dpp_csign);
b979caae 877#endif /* CONFIG_DPP */
ec9f4837 878 INT(owe_group);
c1790a5f 879 INT(owe_only);
2b892d44
JM
880#ifdef CONFIG_HT_OVERRIDES
881 INT_DEF(disable_ht, DEFAULT_DISABLE_HT);
882 INT_DEF(disable_ht40, DEFAULT_DISABLE_HT40);
883 INT_DEF(disable_sgi, DEFAULT_DISABLE_SGI);
884 INT_DEF(disable_ldpc, DEFAULT_DISABLE_LDPC);
885 INT(ht40_intolerant);
886 INT_DEF(disable_max_amsdu, DEFAULT_DISABLE_MAX_AMSDU);
887 INT_DEF(ampdu_factor, DEFAULT_AMPDU_FACTOR);
888 INT_DEF(ampdu_density, DEFAULT_AMPDU_DENSITY);
889 STR(ht_mcs);
890#endif /* CONFIG_HT_OVERRIDES */
891#ifdef CONFIG_VHT_OVERRIDES
892 INT(disable_vht);
893 INT(vht_capa);
894 INT(vht_capa_mask);
895 INT_DEF(vht_rx_mcs_nss_1, -1);
896 INT_DEF(vht_rx_mcs_nss_2, -1);
897 INT_DEF(vht_rx_mcs_nss_3, -1);
898 INT_DEF(vht_rx_mcs_nss_4, -1);
899 INT_DEF(vht_rx_mcs_nss_5, -1);
900 INT_DEF(vht_rx_mcs_nss_6, -1);
901 INT_DEF(vht_rx_mcs_nss_7, -1);
902 INT_DEF(vht_rx_mcs_nss_8, -1);
903 INT_DEF(vht_tx_mcs_nss_1, -1);
904 INT_DEF(vht_tx_mcs_nss_2, -1);
905 INT_DEF(vht_tx_mcs_nss_3, -1);
906 INT_DEF(vht_tx_mcs_nss_4, -1);
907 INT_DEF(vht_tx_mcs_nss_5, -1);
908 INT_DEF(vht_tx_mcs_nss_6, -1);
909 INT_DEF(vht_tx_mcs_nss_7, -1);
910 INT_DEF(vht_tx_mcs_nss_8, -1);
911#endif /* CONFIG_VHT_OVERRIDES */
6fc6879b
JM
912
913#undef STR
914#undef INT
915#undef INT_DEF
916}
917
918
f2c20751
JM
919static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
920{
463c8ffb
JM
921 size_t i;
922
1a712d2f
JM
923 if (cred->priority)
924 fprintf(f, "\tpriority=%d\n", cred->priority);
d7b01abd
JM
925 if (cred->pcsc)
926 fprintf(f, "\tpcsc=%d\n", cred->pcsc);
f2c20751
JM
927 if (cred->realm)
928 fprintf(f, "\trealm=\"%s\"\n", cred->realm);
929 if (cred->username)
930 fprintf(f, "\tusername=\"%s\"\n", cred->username);
9aae09f1
JM
931 if (cred->password && cred->ext_password)
932 fprintf(f, "\tpassword=ext:%s\n", cred->password);
933 else if (cred->password)
f2c20751
JM
934 fprintf(f, "\tpassword=\"%s\"\n", cred->password);
935 if (cred->ca_cert)
936 fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
9aae09f1
JM
937 if (cred->client_cert)
938 fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert);
939 if (cred->private_key)
940 fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key);
941 if (cred->private_key_passwd)
942 fprintf(f, "\tprivate_key_passwd=\"%s\"\n",
943 cred->private_key_passwd);
f2c20751
JM
944 if (cred->imsi)
945 fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
946 if (cred->milenage)
947 fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
463c8ffb
JM
948 for (i = 0; i < cred->num_domain; i++)
949 fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
ac1bc549 950 if (cred->domain_suffix_match)
fa258a3d 951 fprintf(f, "\tdomain_suffix_match=\"%s\"\n",
ac1bc549 952 cred->domain_suffix_match);
9aae09f1 953 if (cred->roaming_consortium_len) {
9aae09f1
JM
954 fprintf(f, "\troaming_consortium=");
955 for (i = 0; i < cred->roaming_consortium_len; i++)
956 fprintf(f, "%02x", cred->roaming_consortium[i]);
957 fprintf(f, "\n");
958 }
959 if (cred->eap_method) {
960 const char *name;
961 name = eap_get_name(cred->eap_method[0].vendor,
962 cred->eap_method[0].method);
f2ca0e97
JM
963 if (name)
964 fprintf(f, "\teap=%s\n", name);
9aae09f1
JM
965 }
966 if (cred->phase1)
967 fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
968 if (cred->phase2)
969 fprintf(f, "\tphase2=\"%s\"\n", cred->phase2);
dbea8ac7 970 if (cred->excluded_ssid) {
463c8ffb 971 size_t j;
dbea8ac7
JM
972 for (i = 0; i < cred->num_excluded_ssid; i++) {
973 struct excluded_ssid *e = &cred->excluded_ssid[i];
974 fprintf(f, "\texcluded_ssid=");
975 for (j = 0; j < e->ssid_len; j++)
976 fprintf(f, "%02x", e->ssid[j]);
977 fprintf(f, "\n");
978 }
979 }
bc00053c
JM
980 if (cred->roaming_partner) {
981 for (i = 0; i < cred->num_roaming_partner; i++) {
982 struct roaming_partner *p = &cred->roaming_partner[i];
983 fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n",
984 p->fqdn, p->exact_match, p->priority,
985 p->country);
986 }
987 }
f9cd147d
JM
988 if (cred->update_identifier)
989 fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
aa26ba68
JM
990
991 if (cred->provisioning_sp)
f777fd12 992 fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
74794891
JM
993 if (cred->sp_priority)
994 fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
4cad9df1
JM
995
996 if (cred->min_dl_bandwidth_home)
997 fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
998 cred->min_dl_bandwidth_home);
999 if (cred->min_ul_bandwidth_home)
1000 fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
1001 cred->min_ul_bandwidth_home);
1002 if (cred->min_dl_bandwidth_roaming)
1003 fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
1004 cred->min_dl_bandwidth_roaming);
1005 if (cred->min_ul_bandwidth_roaming)
1006 fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
1007 cred->min_ul_bandwidth_roaming);
a45b2dc5
JM
1008
1009 if (cred->max_bss_load)
1010 fprintf(f, "\tmax_bss_load=%u\n",
1011 cred->max_bss_load);
cf6d08a6
JM
1012
1013 if (cred->ocsp)
1014 fprintf(f, "\tocsp=%d\n", cred->ocsp);
75aea3e7
JM
1015
1016 if (cred->num_req_conn_capab) {
1017 for (i = 0; i < cred->num_req_conn_capab; i++) {
1018 int *ports;
1019
1020 fprintf(f, "\treq_conn_capab=%u",
1021 cred->req_conn_capab_proto[i]);
1022 ports = cred->req_conn_capab_port[i];
1023 if (ports) {
1024 int j;
1025 for (j = 0; ports[j] != -1; j++) {
1026 fprintf(f, "%s%d", j > 0 ? "," : ":",
1027 ports[j]);
1028 }
1029 }
1030 fprintf(f, "\n");
1031 }
1032 }
1033
1034 if (cred->required_roaming_consortium_len) {
1035 fprintf(f, "\trequired_roaming_consortium=");
1036 for (i = 0; i < cred->required_roaming_consortium_len; i++)
1037 fprintf(f, "%02x",
1038 cred->required_roaming_consortium[i]);
1039 fprintf(f, "\n");
1040 }
13f6a07e
NJ
1041
1042 if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
1043 fprintf(f, "\tsim_num=%d\n", cred->sim_num);
f2c20751
JM
1044}
1045
1046
6fc6879b
JM
1047#ifndef CONFIG_NO_CONFIG_BLOBS
1048static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
1049{
1050 unsigned char *encoded;
1051
1052 encoded = base64_encode(blob->data, blob->len, NULL);
1053 if (encoded == NULL)
1054 return -1;
1055
1056 fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
1057 os_free(encoded);
1058 return 0;
1059}
1060#endif /* CONFIG_NO_CONFIG_BLOBS */
1061
1062
3f2c8ba6
JM
1063static void write_global_bin(FILE *f, const char *field,
1064 const struct wpabuf *val)
1065{
1066 size_t i;
1067 const u8 *pos;
1068
1069 if (val == NULL)
1070 return;
1071
1072 fprintf(f, "%s=", field);
1073 pos = wpabuf_head(val);
1074 for (i = 0; i < wpabuf_len(val); i++)
1075 fprintf(f, "%02X", *pos++);
1076 fprintf(f, "\n");
1077}
1078
1079
6fc6879b
JM
1080static void wpa_config_write_global(FILE *f, struct wpa_config *config)
1081{
1082#ifdef CONFIG_CTRL_IFACE
1083 if (config->ctrl_interface)
1084 fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
1085 if (config->ctrl_interface_group)
1086 fprintf(f, "ctrl_interface_group=%s\n",
1087 config->ctrl_interface_group);
1088#endif /* CONFIG_CTRL_IFACE */
1089 if (config->eapol_version != DEFAULT_EAPOL_VERSION)
1090 fprintf(f, "eapol_version=%d\n", config->eapol_version);
1091 if (config->ap_scan != DEFAULT_AP_SCAN)
1092 fprintf(f, "ap_scan=%d\n", config->ap_scan);
54ddd743
JM
1093 if (config->disable_scan_offload)
1094 fprintf(f, "disable_scan_offload=%d\n",
1095 config->disable_scan_offload);
6fc6879b
JM
1096 if (config->fast_reauth != DEFAULT_FAST_REAUTH)
1097 fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
6fc6879b
JM
1098 if (config->opensc_engine_path)
1099 fprintf(f, "opensc_engine_path=%s\n",
1100 config->opensc_engine_path);
1101 if (config->pkcs11_engine_path)
1102 fprintf(f, "pkcs11_engine_path=%s\n",
1103 config->pkcs11_engine_path);
1104 if (config->pkcs11_module_path)
1105 fprintf(f, "pkcs11_module_path=%s\n",
1106 config->pkcs11_module_path);
07e2de31
JM
1107 if (config->openssl_ciphers)
1108 fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers);
f64adcd7
JM
1109 if (config->pcsc_reader)
1110 fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
1111 if (config->pcsc_pin)
1112 fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
6fc6879b
JM
1113 if (config->driver_param)
1114 fprintf(f, "driver_param=%s\n", config->driver_param);
1115 if (config->dot11RSNAConfigPMKLifetime)
91b7a5e1 1116 fprintf(f, "dot11RSNAConfigPMKLifetime=%u\n",
6fc6879b
JM
1117 config->dot11RSNAConfigPMKLifetime);
1118 if (config->dot11RSNAConfigPMKReauthThreshold)
91b7a5e1 1119 fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%u\n",
6fc6879b
JM
1120 config->dot11RSNAConfigPMKReauthThreshold);
1121 if (config->dot11RSNAConfigSATimeout)
91b7a5e1 1122 fprintf(f, "dot11RSNAConfigSATimeout=%u\n",
6fc6879b
JM
1123 config->dot11RSNAConfigSATimeout);
1124 if (config->update_config)
1125 fprintf(f, "update_config=%d\n", config->update_config);
f855f923 1126#ifdef CONFIG_WPS
9be09636 1127 if (!is_nil_uuid(config->uuid)) {
f855f923
JM
1128 char buf[40];
1129 uuid_bin2str(config->uuid, buf, sizeof(buf));
1130 fprintf(f, "uuid=%s\n", buf);
1131 }
183d3924
JM
1132 if (config->auto_uuid)
1133 fprintf(f, "auto_uuid=%d\n", config->auto_uuid);
3c0b7aa4
JM
1134 if (config->device_name)
1135 fprintf(f, "device_name=%s\n", config->device_name);
1136 if (config->manufacturer)
1137 fprintf(f, "manufacturer=%s\n", config->manufacturer);
1138 if (config->model_name)
1139 fprintf(f, "model_name=%s\n", config->model_name);
1140 if (config->model_number)
1141 fprintf(f, "model_number=%s\n", config->model_number);
1142 if (config->serial_number)
1143 fprintf(f, "serial_number=%s\n", config->serial_number);
2f646b6e
JB
1144 {
1145 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
1146 buf = wps_dev_type_bin2str(config->device_type,
1147 _buf, sizeof(_buf));
a769b094
JM
1148 if (os_strcmp(buf, "0-00000000-0") != 0)
1149 fprintf(f, "device_type=%s\n", buf);
2f646b6e 1150 }
9be09636 1151 if (WPA_GET_BE32(config->os_version))
3c0b7aa4
JM
1152 fprintf(f, "os_version=%08x\n",
1153 WPA_GET_BE32(config->os_version));
c0e4dd9e
JM
1154 if (config->config_methods)
1155 fprintf(f, "config_methods=%s\n", config->config_methods);
47662164
JM
1156 if (config->wps_cred_processing)
1157 fprintf(f, "wps_cred_processing=%d\n",
1158 config->wps_cred_processing);
71dd3b78
AS
1159 if (config->wps_vendor_ext_m1) {
1160 int i, len = wpabuf_len(config->wps_vendor_ext_m1);
1161 const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
1162 if (len > 0) {
1163 fprintf(f, "wps_vendor_ext_m1=");
1164 for (i = 0; i < len; i++)
1165 fprintf(f, "%02x", *p++);
1166 fprintf(f, "\n");
1167 }
1168 }
f855f923 1169#endif /* CONFIG_WPS */
e3768e7c 1170#ifdef CONFIG_P2P
1fb1bf99
JM
1171 {
1172 int i;
1173 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
1174
1175 for (i = 0; i < config->num_sec_device_types; i++) {
1176 buf = wps_dev_type_bin2str(config->sec_device_type[i],
1177 _buf, sizeof(_buf));
1178 if (buf)
1179 fprintf(f, "sec_device_type=%s\n", buf);
1180 }
1181 }
e3768e7c 1182 if (config->p2p_listen_reg_class)
91b7a5e1 1183 fprintf(f, "p2p_listen_reg_class=%d\n",
e3768e7c
JM
1184 config->p2p_listen_reg_class);
1185 if (config->p2p_listen_channel)
91b7a5e1 1186 fprintf(f, "p2p_listen_channel=%d\n",
e3768e7c
JM
1187 config->p2p_listen_channel);
1188 if (config->p2p_oper_reg_class)
91b7a5e1 1189 fprintf(f, "p2p_oper_reg_class=%d\n",
e3768e7c
JM
1190 config->p2p_oper_reg_class);
1191 if (config->p2p_oper_channel)
91b7a5e1 1192 fprintf(f, "p2p_oper_channel=%d\n", config->p2p_oper_channel);
e3768e7c 1193 if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
91b7a5e1 1194 fprintf(f, "p2p_go_intent=%d\n", config->p2p_go_intent);
e3768e7c
JM
1195 if (config->p2p_ssid_postfix)
1196 fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
1197 if (config->persistent_reconnect)
91b7a5e1 1198 fprintf(f, "persistent_reconnect=%d\n",
e3768e7c 1199 config->persistent_reconnect);
0f66abd2 1200 if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
91b7a5e1 1201 fprintf(f, "p2p_intra_bss=%d\n", config->p2p_intra_bss);
3071e181 1202 if (config->p2p_group_idle)
91b7a5e1 1203 fprintf(f, "p2p_group_idle=%d\n", config->p2p_group_idle);
1b928f96
JM
1204 if (config->p2p_passphrase_len)
1205 fprintf(f, "p2p_passphrase_len=%u\n",
1206 config->p2p_passphrase_len);
21d996f7
JM
1207 if (config->p2p_pref_chan) {
1208 unsigned int i;
1209 fprintf(f, "p2p_pref_chan=");
1210 for (i = 0; i < config->num_p2p_pref_chan; i++) {
1211 fprintf(f, "%s%u:%u", i > 0 ? "," : "",
1212 config->p2p_pref_chan[i].op_class,
1213 config->p2p_pref_chan[i].chan);
1214 }
1215 fprintf(f, "\n");
1216 }
556b30da
JM
1217 if (config->p2p_no_go_freq.num) {
1218 char *val = freq_range_list_str(&config->p2p_no_go_freq);
1219 if (val) {
1220 fprintf(f, "p2p_no_go_freq=%s\n", val);
1221 os_free(val);
1222 }
1223 }
51e9f228
JM
1224 if (config->p2p_add_cli_chan)
1225 fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
e3bd6e9d
IP
1226 if (config->p2p_optimize_listen_chan !=
1227 DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN)
1228 fprintf(f, "p2p_optimize_listen_chan=%d\n",
1229 config->p2p_optimize_listen_chan);
a93a15bb 1230 if (config->p2p_go_ht40)
91b7a5e1 1231 fprintf(f, "p2p_go_ht40=%d\n", config->p2p_go_ht40);
20ea1ca4 1232 if (config->p2p_go_vht)
91b7a5e1 1233 fprintf(f, "p2p_go_vht=%d\n", config->p2p_go_vht);
0b8bcaa5 1234 if (config->p2p_go_ctwindow != DEFAULT_P2P_GO_CTWINDOW)
91b7a5e1 1235 fprintf(f, "p2p_go_ctwindow=%d\n", config->p2p_go_ctwindow);
7a808c7e 1236 if (config->p2p_disabled)
91b7a5e1 1237 fprintf(f, "p2p_disabled=%d\n", config->p2p_disabled);
d76cd41a 1238 if (config->p2p_no_group_iface)
91b7a5e1 1239 fprintf(f, "p2p_no_group_iface=%d\n",
d76cd41a 1240 config->p2p_no_group_iface);
ef8151ac 1241 if (config->p2p_ignore_shared_freq)
91b7a5e1 1242 fprintf(f, "p2p_ignore_shared_freq=%d\n",
ef8151ac 1243 config->p2p_ignore_shared_freq);
07c1e987 1244 if (config->p2p_cli_probe)
91b7a5e1 1245 fprintf(f, "p2p_cli_probe=%d\n", config->p2p_cli_probe);
1a471ff0
IP
1246 if (config->p2p_go_freq_change_policy != DEFAULT_P2P_GO_FREQ_MOVE)
1247 fprintf(f, "p2p_go_freq_change_policy=%u\n",
1248 config->p2p_go_freq_change_policy);
17d32eb3
PK
1249 if (WPA_GET_BE32(config->ip_addr_go))
1250 fprintf(f, "ip_addr_go=%u.%u.%u.%u\n",
1251 config->ip_addr_go[0], config->ip_addr_go[1],
1252 config->ip_addr_go[2], config->ip_addr_go[3]);
1253 if (WPA_GET_BE32(config->ip_addr_mask))
1254 fprintf(f, "ip_addr_mask=%u.%u.%u.%u\n",
1255 config->ip_addr_mask[0], config->ip_addr_mask[1],
1256 config->ip_addr_mask[2], config->ip_addr_mask[3]);
1257 if (WPA_GET_BE32(config->ip_addr_start))
1258 fprintf(f, "ip_addr_start=%u.%u.%u.%u\n",
1259 config->ip_addr_start[0], config->ip_addr_start[1],
1260 config->ip_addr_start[2], config->ip_addr_start[3]);
1261 if (WPA_GET_BE32(config->ip_addr_end))
1262 fprintf(f, "ip_addr_end=%u.%u.%u.%u\n",
1263 config->ip_addr_end[0], config->ip_addr_end[1],
1264 config->ip_addr_end[2], config->ip_addr_end[3]);
e3768e7c 1265#endif /* CONFIG_P2P */
315ce40a 1266 if (config->country[0] && config->country[1]) {
6d158490 1267 fprintf(f, "country=%c%c\n",
315ce40a 1268 config->country[0], config->country[1]);
6d158490 1269 }
c9c38b09
JM
1270 if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
1271 fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
78633c37
SL
1272 if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
1273 fprintf(f, "bss_expiration_age=%u\n",
1274 config->bss_expiration_age);
1275 if (config->bss_expiration_scan_count !=
1276 DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
1277 fprintf(f, "bss_expiration_scan_count=%u\n",
1278 config->bss_expiration_scan_count);
3812464c
JM
1279 if (config->filter_ssids)
1280 fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
58ed9e31
JM
1281 if (config->filter_rssi)
1282 fprintf(f, "filter_rssi=%d\n", config->filter_rssi);
dae608d5
JM
1283 if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
1284 fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
0d7e5a3a 1285 if (config->disassoc_low_ack)
91b7a5e1 1286 fprintf(f, "disassoc_low_ack=%d\n", config->disassoc_low_ack);
66aadbd7
JK
1287#ifdef CONFIG_HS20
1288 if (config->hs20)
1289 fprintf(f, "hs20=1\n");
1290#endif /* CONFIG_HS20 */
67e1b984 1291#ifdef CONFIG_INTERWORKING
46ee0427 1292 if (config->interworking)
91b7a5e1 1293 fprintf(f, "interworking=%d\n", config->interworking);
46ee0427
JM
1294 if (!is_zero_ether_addr(config->hessid))
1295 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
11540c0b
JM
1296 if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
1297 fprintf(f, "access_network_type=%d\n",
1298 config->access_network_type);
63bc0ab0
SD
1299 if (config->go_interworking)
1300 fprintf(f, "go_interworking=%d\n", config->go_interworking);
1301 if (config->go_access_network_type)
1302 fprintf(f, "go_access_network_type=%d\n",
1303 config->go_access_network_type);
1304 if (config->go_internet)
1305 fprintf(f, "go_internet=%d\n", config->go_internet);
1306 if (config->go_venue_group)
1307 fprintf(f, "go_venue_group=%d\n", config->go_venue_group);
1308 if (config->go_venue_type)
1309 fprintf(f, "go_venue_type=%d\n", config->go_venue_type);
67e1b984 1310#endif /* CONFIG_INTERWORKING */
1298c145 1311 if (config->pbc_in_m1)
91b7a5e1 1312 fprintf(f, "pbc_in_m1=%d\n", config->pbc_in_m1);
042ec551
JM
1313 if (config->wps_nfc_pw_from_config) {
1314 if (config->wps_nfc_dev_pw_id)
1315 fprintf(f, "wps_nfc_dev_pw_id=%d\n",
1316 config->wps_nfc_dev_pw_id);
1317 write_global_bin(f, "wps_nfc_dh_pubkey",
1318 config->wps_nfc_dh_pubkey);
1319 write_global_bin(f, "wps_nfc_dh_privkey",
1320 config->wps_nfc_dh_privkey);
1321 write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
1322 }
306ae225
JM
1323
1324 if (config->ext_password_backend)
1325 fprintf(f, "ext_password_backend=%s\n",
1326 config->ext_password_backend);
462a7439
ES
1327 if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY)
1328 fprintf(f, "p2p_go_max_inactivity=%d\n",
1329 config->p2p_go_max_inactivity);
4d5bda5f
JM
1330 if (config->auto_interworking)
1331 fprintf(f, "auto_interworking=%d\n",
1332 config->auto_interworking);
6e202021
JM
1333 if (config->okc)
1334 fprintf(f, "okc=%d\n", config->okc);
62d49803
JM
1335 if (config->pmf)
1336 fprintf(f, "pmf=%d\n", config->pmf);
18206e02
JM
1337 if (config->dtim_period)
1338 fprintf(f, "dtim_period=%d\n", config->dtim_period);
1339 if (config->beacon_int)
1340 fprintf(f, "beacon_int=%d\n", config->beacon_int);
625f202a
JM
1341
1342 if (config->sae_groups) {
1343 int i;
1344 fprintf(f, "sae_groups=");
9284418d 1345 for (i = 0; config->sae_groups[i] > 0; i++) {
625f202a
JM
1346 fprintf(f, "%s%d", i > 0 ? " " : "",
1347 config->sae_groups[i]);
1348 }
1349 fprintf(f, "\n");
1350 }
18a2eaab
JM
1351
1352 if (config->ap_vendor_elements) {
1353 int i, len = wpabuf_len(config->ap_vendor_elements);
1354 const u8 *p = wpabuf_head_u8(config->ap_vendor_elements);
1355 if (len > 0) {
1356 fprintf(f, "ap_vendor_elements=");
1357 for (i = 0; i < len; i++)
1358 fprintf(f, "%02x", *p++);
1359 fprintf(f, "\n");
1360 }
1361 }
4342326f
JM
1362
1363 if (config->ignore_old_scan_res)
1364 fprintf(f, "ignore_old_scan_res=%d\n",
1365 config->ignore_old_scan_res);
f5ffc348
BG
1366
1367 if (config->freq_list && config->freq_list[0]) {
1368 int i;
1369 fprintf(f, "freq_list=");
1370 for (i = 0; config->freq_list[i]; i++) {
91b7a5e1 1371 fprintf(f, "%s%d", i > 0 ? " " : "",
f5ffc348
BG
1372 config->freq_list[i]);
1373 }
1374 fprintf(f, "\n");
1375 }
6124e858
BG
1376 if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
1377 fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
4aa81868
SF
1378
1379 if (config->sched_scan_interval)
1380 fprintf(f, "sched_scan_interval=%u\n",
1381 config->sched_scan_interval);
a5d44ac0 1382
d0330d57
PK
1383 if (config->sched_scan_start_delay)
1384 fprintf(f, "sched_scan_start_delay=%u\n",
1385 config->sched_scan_start_delay);
1386
a5d44ac0
JM
1387 if (config->external_sim)
1388 fprintf(f, "external_sim=%d\n", config->external_sim);
800d5872
SD
1389
1390 if (config->tdls_external_control)
1391 fprintf(f, "tdls_external_control=%d\n",
1392 config->tdls_external_control);
54ac5aa2 1393
e4fa8b12 1394 if (config->wowlan_triggers)
8b627b7c 1395 fprintf(f, "wowlan_triggers=%s\n",
e4fa8b12
EP
1396 config->wowlan_triggers);
1397
54ac5aa2
AB
1398 if (config->bgscan)
1399 fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
d3b20469 1400
1f539c78
JM
1401 if (config->autoscan)
1402 fprintf(f, "autoscan=%s\n", config->autoscan);
1403
d3b20469
NS
1404 if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY)
1405 fprintf(f, "p2p_search_delay=%u\n",
1406 config->p2p_search_delay);
c267753b
JM
1407
1408 if (config->mac_addr)
1409 fprintf(f, "mac_addr=%d\n", config->mac_addr);
1410
1411 if (config->rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
1412 fprintf(f, "rand_addr_lifetime=%u\n",
1413 config->rand_addr_lifetime);
1414
1415 if (config->preassoc_mac_addr)
1416 fprintf(f, "preassoc_mac_addr=%d\n", config->preassoc_mac_addr);
b41f2684
CL
1417
1418 if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD)
91b7a5e1 1419 fprintf(f, "key_mgmt_offload=%d\n", config->key_mgmt_offload);
e45e8989
TP
1420
1421 if (config->user_mpm != DEFAULT_USER_MPM)
1422 fprintf(f, "user_mpm=%d\n", config->user_mpm);
4b409368
MH
1423
1424 if (config->max_peer_links != DEFAULT_MAX_PEER_LINKS)
1425 fprintf(f, "max_peer_links=%d\n", config->max_peer_links);
483dd6a5
JM
1426
1427 if (config->cert_in_cb != DEFAULT_CERT_IN_CB)
1428 fprintf(f, "cert_in_cb=%d\n", config->cert_in_cb);
5a2a6de6
MH
1429
1430 if (config->mesh_max_inactivity != DEFAULT_MESH_MAX_INACTIVITY)
1431 fprintf(f, "mesh_max_inactivity=%d\n",
1432 config->mesh_max_inactivity);
c35e35ed 1433
ecd40fef
MH
1434 if (config->dot11RSNASAERetransPeriod !=
1435 DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD)
1436 fprintf(f, "dot11RSNASAERetransPeriod=%d\n",
1437 config->dot11RSNASAERetransPeriod);
1438
c35e35ed 1439 if (config->passive_scan)
c4da67de 1440 fprintf(f, "passive_scan=%d\n", config->passive_scan);
59b416c7
JM
1441
1442 if (config->reassoc_same_bss_optim)
1443 fprintf(f, "reassoc_same_bss_optim=%d\n",
1444 config->reassoc_same_bss_optim);
94687a0a
SD
1445
1446 if (config->wps_priority)
1447 fprintf(f, "wps_priority=%d\n", config->wps_priority);
73ed03f3
MS
1448
1449 if (config->wpa_rsc_relaxation != DEFAULT_WPA_RSC_RELAXATION)
1450 fprintf(f, "wpa_rsc_relaxation=%d\n",
1451 config->wpa_rsc_relaxation);
32c02261
AS
1452
1453 if (config->sched_scan_plans)
1454 fprintf(f, "sched_scan_plans=%s\n", config->sched_scan_plans);
facf2c72
DS
1455
1456#ifdef CONFIG_MBO
1457 if (config->non_pref_chan)
1458 fprintf(f, "non_pref_chan=%s\n", config->non_pref_chan);
c5d193d7
DS
1459 if (config->mbo_cell_capa != DEFAULT_MBO_CELL_CAPA)
1460 fprintf(f, "mbo_cell_capa=%u\n", config->mbo_cell_capa);
af8bc24d
KV
1461 if (config->disassoc_imminent_rssi_threshold !=
1462 DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD)
1463 fprintf(f, "disassoc_imminent_rssi_threshold=%d\n",
1464 config->disassoc_imminent_rssi_threshold);
332aadb8
AP
1465 if (config->oce != DEFAULT_OCE_SUPPORT)
1466 fprintf(f, "oce=%u\n", config->oce);
facf2c72
DS
1467#endif /* CONFIG_MBO */
1468
c86bef29
JM
1469 if (config->gas_address3)
1470 fprintf(f, "gas_address3=%d\n", config->gas_address3);
d1723c55
LD
1471
1472 if (config->ftm_responder)
1473 fprintf(f, "ftm_responder=%d\n", config->ftm_responder);
1474 if (config->ftm_initiator)
1475 fprintf(f, "ftm_initiator=%d\n", config->ftm_initiator);
35c78f7b
JM
1476
1477 if (config->osu_dir)
1478 fprintf(f, "osu_dir=%s\n", config->osu_dir);
54736d83
JM
1479
1480 if (config->fst_group_id)
1481 fprintf(f, "fst_group_id=%s\n", config->fst_group_id);
1482 if (config->fst_priority)
1483 fprintf(f, "fst_priority=%d\n", config->fst_priority);
1484 if (config->fst_llt)
1485 fprintf(f, "fst_llt=%d\n", config->fst_llt);
1d9d21f3
VK
1486
1487 if (config->gas_rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
1488 fprintf(f, "gas_rand_addr_lifetime=%u\n",
1489 config->gas_rand_addr_lifetime);
1490 if (config->gas_rand_mac_addr)
1491 fprintf(f, "gas_rand_mac_addr=%d\n", config->gas_rand_mac_addr);
8528994e
JM
1492 if (config->dpp_config_processing)
1493 fprintf(f, "dpp_config_processing=%d\n",
1494 config->dpp_config_processing);
1d9d21f3 1495
6fc6879b
JM
1496}
1497
1498#endif /* CONFIG_NO_CONFIG_WRITE */
1499
1500
1501int wpa_config_write(const char *name, struct wpa_config *config)
1502{
1503#ifndef CONFIG_NO_CONFIG_WRITE
1504 FILE *f;
1505 struct wpa_ssid *ssid;
f2c20751 1506 struct wpa_cred *cred;
6fc6879b
JM
1507#ifndef CONFIG_NO_CONFIG_BLOBS
1508 struct wpa_config_blob *blob;
1509#endif /* CONFIG_NO_CONFIG_BLOBS */
1510 int ret = 0;
663ae2f4
VD
1511 const char *orig_name = name;
1512 int tmp_len = os_strlen(name) + 5; /* allow space for .tmp suffix */
1513 char *tmp_name = os_malloc(tmp_len);
1514
1515 if (tmp_name) {
1516 os_snprintf(tmp_name, tmp_len, "%s.tmp", name);
1517 name = tmp_name;
1518 }
6fc6879b
JM
1519
1520 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
1521
1522 f = fopen(name, "w");
1523 if (f == NULL) {
1524 wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
663ae2f4 1525 os_free(tmp_name);
6fc6879b
JM
1526 return -1;
1527 }
1528
1529 wpa_config_write_global(f, config);
1530
f2c20751 1531 for (cred = config->cred; cred; cred = cred->next) {
03ed3324
JM
1532 if (cred->temporary)
1533 continue;
f2c20751
JM
1534 fprintf(f, "\ncred={\n");
1535 wpa_config_write_cred(f, cred);
1536 fprintf(f, "}\n");
1537 }
1538
6fc6879b 1539 for (ssid = config->ssid; ssid; ssid = ssid->next) {
2ff99b3c
JM
1540 if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
1541 continue; /* do not save temporary networks */
8e8280bd
JM
1542 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
1543 !ssid->passphrase)
1544 continue; /* do not save invalid network */
6fc6879b
JM
1545 fprintf(f, "\nnetwork={\n");
1546 wpa_config_write_network(f, ssid);
1547 fprintf(f, "}\n");
1548 }
1549
1550#ifndef CONFIG_NO_CONFIG_BLOBS
1551 for (blob = config->blobs; blob; blob = blob->next) {
1552 ret = wpa_config_write_blob(f, blob);
1553 if (ret)
1554 break;
1555 }
1556#endif /* CONFIG_NO_CONFIG_BLOBS */
1557
a218e1de
MW
1558 os_fdatasync(f);
1559
6fc6879b
JM
1560 fclose(f);
1561
663ae2f4
VD
1562 if (tmp_name) {
1563 int chmod_ret = 0;
1564
1565#ifdef ANDROID
1566 chmod_ret = chmod(tmp_name,
1567 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
1568#endif /* ANDROID */
1569 if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0)
1570 ret = -1;
1571
1572 os_free(tmp_name);
1573 }
1574
6fc6879b 1575 wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
663ae2f4 1576 orig_name, ret ? "un" : "");
6fc6879b
JM
1577 return ret;
1578#else /* CONFIG_NO_CONFIG_WRITE */
1579 return -1;
1580#endif /* CONFIG_NO_CONFIG_WRITE */
1581}