1 /*
2 * WPA Supplicant / Configuration backend: text file
3 * Copyright (c) 2003-2019, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 *
8 * This file implements a configuration backend for text files. All the
9 * configuration information is stored in a text file that uses a format
10 * described in the sample configuration file, wpa_supplicant.conf.
11 */
12
13 #include "includes.h"
14 #ifdef ANDROID
15 #include <sys/stat.h>
16 #endif /* ANDROID */
17
18 #include "common.h"
19 #include "config.h"
20 #include "base64.h"
21 #include "uuid.h"
22 #include "common/ieee802_1x_defs.h"
23 #include "p2p/p2p.h"
24 #include "eap_peer/eap_methods.h"
25 #include "eap_peer/eap.h"
26
27
newline_terminated(const char * buf,size_t buflen)28 static 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
skip_line_end(FILE * stream)40 static 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
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 */
wpa_config_get_line(char * s,int size,FILE * stream,int * line,char ** _pos)65 static 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';
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 }
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
wpa_config_validate_network(struct wpa_ssid * ssid,int line)127 static 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
140 if (ssid->disabled == 2)
141 ssid->p2p_persistent_group = 1;
142
143 if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
144 !(ssid->pairwise_cipher & (WPA_CIPHER_CCMP | WPA_CIPHER_CCMP_256 |
145 WPA_CIPHER_GCMP | WPA_CIPHER_GCMP_256 |
146 WPA_CIPHER_NONE))) {
147 /* Group cipher cannot be stronger than the pairwise cipher. */
148 wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
149 " list since it was not allowed for pairwise "
150 "cipher", line);
151 ssid->group_cipher &= ~WPA_CIPHER_CCMP;
152 }
153
154 if (ssid->mode == WPAS_MODE_MESH &&
155 (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
156 ssid->key_mgmt != WPA_KEY_MGMT_SAE)) {
157 wpa_printf(MSG_ERROR,
158 "Line %d: key_mgmt for mesh network should be open or SAE",
159 line);
160 errors++;
161 }
162
163 #ifdef CONFIG_OCV
164 if (ssid->ocv && ssid->ieee80211w == NO_MGMT_FRAME_PROTECTION) {
165 wpa_printf(MSG_ERROR,
166 "Line %d: PMF needs to be enabled whenever using OCV",
167 line);
168 errors++;
169 }
170 #endif /* CONFIG_OCV */
171
172 return errors;
173 }
174
175
wpa_config_read_network(FILE * f,int * line,int id)176 static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
177 {
178 struct wpa_ssid *ssid;
179 int errors = 0, end = 0;
180 char buf[2000], *pos, *pos2;
181
182 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
183 *line);
184 ssid = os_zalloc(sizeof(*ssid));
185 if (ssid == NULL)
186 return NULL;
187 dl_list_init(&ssid->psk_list);
188 ssid->id = id;
189
190 wpa_config_set_network_defaults(ssid);
191
192 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
193 if (os_strcmp(pos, "}") == 0) {
194 end = 1;
195 break;
196 }
197
198 pos2 = os_strchr(pos, '=');
199 if (pos2 == NULL) {
200 wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
201 "'%s'.", *line, pos);
202 errors++;
203 continue;
204 }
205
206 *pos2++ = '\0';
207 if (*pos2 == '"') {
208 if (os_strchr(pos2 + 1, '"') == NULL) {
209 wpa_printf(MSG_ERROR, "Line %d: invalid "
210 "quotation '%s'.", *line, pos2);
211 errors++;
212 continue;
213 }
214 }
215
216 if (wpa_config_set(ssid, pos, pos2, *line) < 0) {
217 #ifndef CONFIG_WEP
218 if (os_strcmp(pos, "wep_key0") == 0 ||
219 os_strcmp(pos, "wep_key1") == 0 ||
220 os_strcmp(pos, "wep_key2") == 0 ||
221 os_strcmp(pos, "wep_key3") == 0 ||
222 os_strcmp(pos, "wep_tx_keyidx") == 0) {
223 wpa_printf(MSG_ERROR,
224 "Line %d: unsupported WEP parameter",
225 *line);
226 ssid->disabled = 1;
227 continue;
228 }
229 #endif /* CONFIG_WEP */
230 errors++;
231 }
232 }
233
234 if (!end) {
235 wpa_printf(MSG_ERROR, "Line %d: network block was not "
236 "terminated properly.", *line);
237 errors++;
238 }
239
240 errors += wpa_config_validate_network(ssid, *line);
241
242 if (errors) {
243 wpa_config_free_ssid(ssid);
244 ssid = NULL;
245 }
246
247 return ssid;
248 }
249
250
wpa_config_read_cred(FILE * f,int * line,int id)251 static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
252 {
253 struct wpa_cred *cred;
254 int errors = 0, end = 0;
255 char buf[256], *pos, *pos2;
256
257 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
258 cred = os_zalloc(sizeof(*cred));
259 if (cred == NULL)
260 return NULL;
261 cred->id = id;
262 cred->sim_num = DEFAULT_USER_SELECTED_SIM;
263
264 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
265 if (os_strcmp(pos, "}") == 0) {
266 end = 1;
267 break;
268 }
269
270 pos2 = os_strchr(pos, '=');
271 if (pos2 == NULL) {
272 wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
273 "'%s'.", *line, pos);
274 errors++;
275 continue;
276 }
277
278 *pos2++ = '\0';
279 if (*pos2 == '"') {
280 if (os_strchr(pos2 + 1, '"') == NULL) {
281 wpa_printf(MSG_ERROR, "Line %d: invalid "
282 "quotation '%s'.", *line, pos2);
283 errors++;
284 continue;
285 }
286 }
287
288 if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
289 errors++;
290 }
291
292 if (!end) {
293 wpa_printf(MSG_ERROR, "Line %d: cred block was not "
294 "terminated properly.", *line);
295 errors++;
296 }
297
298 if (errors) {
299 wpa_config_free_cred(cred);
300 cred = NULL;
301 }
302
303 return cred;
304 }
305
306
307 #ifndef CONFIG_NO_CONFIG_BLOBS
wpa_config_read_blob(FILE * f,int * line,const char * name)308 static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
309 const char *name)
310 {
311 struct wpa_config_blob *blob;
312 char buf[256], *pos;
313 char *encoded = NULL, *nencoded;
314 int end = 0;
315 size_t encoded_len = 0, len;
316
317 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
318 *line, name);
319
320 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
321 if (os_strcmp(pos, "}") == 0) {
322 end = 1;
323 break;
324 }
325
326 len = os_strlen(pos);
327 nencoded = os_realloc(encoded, encoded_len + len);
328 if (nencoded == NULL) {
329 wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
330 "blob", *line);
331 os_free(encoded);
332 return NULL;
333 }
334 encoded = nencoded;
335 os_memcpy(encoded + encoded_len, pos, len);
336 encoded_len += len;
337 }
338
339 if (!end || !encoded) {
340 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
341 "properly", *line);
342 os_free(encoded);
343 return NULL;
344 }
345
346 blob = os_zalloc(sizeof(*blob));
347 if (blob == NULL) {
348 os_free(encoded);
349 return NULL;
350 }
351 blob->name = os_strdup(name);
352 blob->data = base64_decode(encoded, encoded_len, &blob->len);
353 os_free(encoded);
354
355 if (blob->name == NULL || blob->data == NULL) {
356 wpa_config_free_blob(blob);
357 return NULL;
358 }
359
360 return blob;
361 }
362
363
wpa_config_process_blob(struct wpa_config * config,FILE * f,int * line,char * bname)364 static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
365 int *line, char *bname)
366 {
367 char *name_end;
368 struct wpa_config_blob *blob;
369
370 name_end = os_strchr(bname, '=');
371 if (name_end == NULL) {
372 wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
373 *line);
374 return -1;
375 }
376 *name_end = '\0';
377
378 blob = wpa_config_read_blob(f, line, bname);
379 if (blob == NULL) {
380 wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
381 *line, bname);
382 return -1;
383 }
384 wpa_config_set_blob(config, blob);
385 return 0;
386 }
387 #endif /* CONFIG_NO_CONFIG_BLOBS */
388
389
wpa_config_read(const char * name,struct wpa_config * cfgp)390 struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
391 {
392 FILE *f;
393 char buf[512], *pos;
394 int errors = 0, line = 0;
395 struct wpa_ssid *ssid, *tail, *head;
396 struct wpa_cred *cred, *cred_tail, *cred_head;
397 struct wpa_config *config;
398 int id = 0;
399 int cred_id = 0;
400
401 if (name == NULL)
402 return NULL;
403 if (cfgp)
404 config = cfgp;
405 else
406 config = wpa_config_alloc_empty(NULL, NULL);
407 if (config == NULL) {
408 wpa_printf(MSG_ERROR, "Failed to allocate config file "
409 "structure");
410 return NULL;
411 }
412 tail = head = config->ssid;
413 while (tail && tail->next)
414 tail = tail->next;
415 cred_tail = cred_head = config->cred;
416 while (cred_tail && cred_tail->next)
417 cred_tail = cred_tail->next;
418
419 wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
420 f = fopen(name, "r");
421 if (f == NULL) {
422 wpa_printf(MSG_ERROR, "Failed to open config file '%s', "
423 "error: %s", name, strerror(errno));
424 if (config != cfgp)
425 os_free(config);
426 return NULL;
427 }
428
429 while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
430 if (os_strcmp(pos, "network={") == 0) {
431 ssid = wpa_config_read_network(f, &line, id++);
432 if (ssid == NULL) {
433 wpa_printf(MSG_ERROR, "Line %d: failed to "
434 "parse network block.", line);
435 errors++;
436 continue;
437 }
438 if (head == NULL) {
439 head = tail = ssid;
440 } else {
441 tail->next = ssid;
442 tail = ssid;
443 }
444 if (wpa_config_add_prio_network(config, ssid)) {
445 wpa_printf(MSG_ERROR, "Line %d: failed to add "
446 "network block to priority list.",
447 line);
448 errors++;
449 continue;
450 }
451 } else if (os_strcmp(pos, "cred={") == 0) {
452 cred = wpa_config_read_cred(f, &line, cred_id++);
453 if (cred == NULL) {
454 wpa_printf(MSG_ERROR, "Line %d: failed to "
455 "parse cred block.", line);
456 errors++;
457 continue;
458 }
459 if (cred_head == NULL) {
460 cred_head = cred_tail = cred;
461 } else {
462 cred_tail->next = cred;
463 cred_tail = cred;
464 }
465 #ifndef CONFIG_NO_CONFIG_BLOBS
466 } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
467 if (wpa_config_process_blob(config, f, &line, pos + 12)
468 < 0) {
469 wpa_printf(MSG_ERROR, "Line %d: failed to "
470 "process blob.", line);
471 errors++;
472 continue;
473 }
474 #endif /* CONFIG_NO_CONFIG_BLOBS */
475 } else if (wpa_config_process_global(config, pos, line) < 0) {
476 wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
477 "line '%s'.", line, pos);
478 errors++;
479 continue;
480 }
481 }
482
483 fclose(f);
484
485 config->ssid = head;
486 wpa_config_debug_dump_networks(config);
487 config->cred = cred_head;
488
489 #ifndef WPA_IGNORE_CONFIG_ERRORS
490 if (errors) {
491 if (config != cfgp)
492 wpa_config_free(config);
493 config = NULL;
494 head = NULL;
495 }
496 #endif /* WPA_IGNORE_CONFIG_ERRORS */
497
498 return config;
499 }
500
501
502 #ifndef CONFIG_NO_CONFIG_WRITE
503
write_str(FILE * f,const char * field,struct wpa_ssid * ssid)504 static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
505 {
506 char *value = wpa_config_get(ssid, field);
507 if (value == NULL)
508 return;
509 fprintf(f, "\t%s=%s\n", field, value);
510 str_clear_free(value);
511 }
512
513
write_int(FILE * f,const char * field,int value,int def)514 static void write_int(FILE *f, const char *field, int value, int def)
515 {
516 if (value == def)
517 return;
518 fprintf(f, "\t%s=%d\n", field, value);
519 }
520
521
write_bssid(FILE * f,struct wpa_ssid * ssid)522 static void write_bssid(FILE *f, struct wpa_ssid *ssid)
523 {
524 char *value = wpa_config_get(ssid, "bssid");
525 if (value == NULL)
526 return;
527 fprintf(f, "\tbssid=%s\n", value);
528 os_free(value);
529 }
530
531
write_bssid_hint(FILE * f,struct wpa_ssid * ssid)532 static void write_bssid_hint(FILE *f, struct wpa_ssid *ssid)
533 {
534 char *value = wpa_config_get(ssid, "bssid_hint");
535
536 if (!value)
537 return;
538 fprintf(f, "\tbssid_hint=%s\n", value);
539 os_free(value);
540 }
541
542
write_psk(FILE * f,struct wpa_ssid * ssid)543 static void write_psk(FILE *f, struct wpa_ssid *ssid)
544 {
545 char *value;
546
547 if (ssid->mem_only_psk)
548 return;
549
550 value = wpa_config_get(ssid, "psk");
551 if (value == NULL)
552 return;
553 fprintf(f, "\tpsk=%s\n", value);
554 os_free(value);
555 }
556
557
write_proto(FILE * f,struct wpa_ssid * ssid)558 static void write_proto(FILE *f, struct wpa_ssid *ssid)
559 {
560 char *value;
561
562 if (ssid->proto == DEFAULT_PROTO)
563 return;
564
565 value = wpa_config_get(ssid, "proto");
566 if (value == NULL)
567 return;
568 if (value[0])
569 fprintf(f, "\tproto=%s\n", value);
570 os_free(value);
571 }
572
573
write_key_mgmt(FILE * f,struct wpa_ssid * ssid)574 static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
575 {
576 char *value;
577
578 if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
579 return;
580
581 value = wpa_config_get(ssid, "key_mgmt");
582 if (value == NULL)
583 return;
584 if (value[0])
585 fprintf(f, "\tkey_mgmt=%s\n", value);
586 os_free(value);
587 }
588
589
write_pairwise(FILE * f,struct wpa_ssid * ssid)590 static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
591 {
592 char *value;
593
594 if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
595 return;
596
597 value = wpa_config_get(ssid, "pairwise");
598 if (value == NULL)
599 return;
600 if (value[0])
601 fprintf(f, "\tpairwise=%s\n", value);
602 os_free(value);
603 }
604
605
write_group(FILE * f,struct wpa_ssid * ssid)606 static void write_group(FILE *f, struct wpa_ssid *ssid)
607 {
608 char *value;
609
610 if (ssid->group_cipher == DEFAULT_GROUP)
611 return;
612
613 value = wpa_config_get(ssid, "group");
614 if (value == NULL)
615 return;
616 if (value[0])
617 fprintf(f, "\tgroup=%s\n", value);
618 os_free(value);
619 }
620
621
write_group_mgmt(FILE * f,struct wpa_ssid * ssid)622 static void write_group_mgmt(FILE *f, struct wpa_ssid *ssid)
623 {
624 char *value;
625
626 if (!ssid->group_mgmt_cipher)
627 return;
628
629 value = wpa_config_get(ssid, "group_mgmt");
630 if (!value)
631 return;
632 if (value[0])
633 fprintf(f, "\tgroup_mgmt=%s\n", value);
634 os_free(value);
635 }
636
637
write_auth_alg(FILE * f,struct wpa_ssid * ssid)638 static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
639 {
640 char *value;
641
642 if (ssid->auth_alg == 0)
643 return;
644
645 value = wpa_config_get(ssid, "auth_alg");
646 if (value == NULL)
647 return;
648 if (value[0])
649 fprintf(f, "\tauth_alg=%s\n", value);
650 os_free(value);
651 }
652
653
654 #ifdef IEEE8021X_EAPOL
write_eap(FILE * f,struct wpa_ssid * ssid)655 static void write_eap(FILE *f, struct wpa_ssid *ssid)
656 {
657 char *value;
658
659 value = wpa_config_get(ssid, "eap");
660 if (value == NULL)
661 return;
662
663 if (value[0])
664 fprintf(f, "\teap=%s\n", value);
665 os_free(value);
666 }
667 #endif /* IEEE8021X_EAPOL */
668
669
670 #ifdef CONFIG_WEP
write_wep_key(FILE * f,int idx,struct wpa_ssid * ssid)671 static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
672 {
673 char field[20], *value;
674 int res;
675
676 res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
677 if (os_snprintf_error(sizeof(field), res))
678 return;
679 value = wpa_config_get(ssid, field);
680 if (value) {
681 fprintf(f, "\t%s=%s\n", field, value);
682 os_free(value);
683 }
684 }
685 #endif /* CONFIG_WEP */
686
687
688 #ifdef CONFIG_P2P
689
write_go_p2p_dev_addr(FILE * f,struct wpa_ssid * ssid)690 static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid)
691 {
692 char *value = wpa_config_get(ssid, "go_p2p_dev_addr");
693 if (value == NULL)
694 return;
695 fprintf(f, "\tgo_p2p_dev_addr=%s\n", value);
696 os_free(value);
697 }
698
write_p2p_client_list(FILE * f,struct wpa_ssid * ssid)699 static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
700 {
701 char *value = wpa_config_get(ssid, "p2p_client_list");
702 if (value == NULL)
703 return;
704 fprintf(f, "\tp2p_client_list=%s\n", value);
705 os_free(value);
706 }
707
708
write_psk_list(FILE * f,struct wpa_ssid * ssid)709 static void write_psk_list(FILE *f, struct wpa_ssid *ssid)
710 {
711 struct psk_list_entry *psk;
712 char hex[32 * 2 + 1];
713
714 dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) {
715 wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
716 fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n",
717 psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
718 }
719 }
720
721 #endif /* CONFIG_P2P */
722
723
724 #ifdef CONFIG_MACSEC
725
write_mka_cak(FILE * f,struct wpa_ssid * ssid)726 static void write_mka_cak(FILE *f, struct wpa_ssid *ssid)
727 {
728 char *value;
729
730 if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK))
731 return;
732
733 value = wpa_config_get(ssid, "mka_cak");
734 if (!value)
735 return;
736 fprintf(f, "\tmka_cak=%s\n", value);
737 os_free(value);
738 }
739
740
write_mka_ckn(FILE * f,struct wpa_ssid * ssid)741 static void write_mka_ckn(FILE *f, struct wpa_ssid *ssid)
742 {
743 char *value;
744
745 if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN))
746 return;
747
748 value = wpa_config_get(ssid, "mka_ckn");
749 if (!value)
750 return;
751 fprintf(f, "\tmka_ckn=%s\n", value);
752 os_free(value);
753 }
754
755 #endif /* CONFIG_MACSEC */
756
757
wpa_config_write_network(FILE * f,struct wpa_ssid * ssid)758 static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
759 {
760 #define STR(t) write_str(f, #t, ssid)
761 #define INT(t) write_int(f, #t, ssid->t, 0)
762 #define INTe(t, m) write_int(f, #t, ssid->eap.m, 0)
763 #define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
764 #define INT_DEFe(t, m, def) write_int(f, #t, ssid->eap.m, def)
765
766 STR(ssid);
767 INT(scan_ssid);
768 write_bssid(f, ssid);
769 write_bssid_hint(f, ssid);
770 write_str(f, "bssid_blacklist", ssid);
771 write_str(f, "bssid_whitelist", ssid);
772 write_psk(f, ssid);
773 INT(mem_only_psk);
774 STR(sae_password);
775 STR(sae_password_id);
776 write_proto(f, ssid);
777 write_key_mgmt(f, ssid);
778 INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
779 write_pairwise(f, ssid);
780 write_group(f, ssid);
781 write_group_mgmt(f, ssid);
782 write_auth_alg(f, ssid);
783 STR(bgscan);
784 STR(autoscan);
785 STR(scan_freq);
786 #ifdef IEEE8021X_EAPOL
787 write_eap(f, ssid);
788 STR(identity);
789 STR(anonymous_identity);
790 STR(imsi_identity);
791 STR(machine_identity);
792 STR(password);
793 STR(machine_password);
794 STR(ca_cert);
795 STR(ca_path);
796 STR(client_cert);
797 STR(private_key);
798 STR(private_key_passwd);
799 STR(dh_file);
800 STR(subject_match);
801 STR(check_cert_subject);
802 STR(altsubject_match);
803 STR(domain_suffix_match);
804 STR(domain_match);
805 STR(ca_cert2);
806 STR(ca_path2);
807 STR(client_cert2);
808 STR(private_key2);
809 STR(private_key2_passwd);
810 STR(dh_file2);
811 STR(subject_match2);
812 STR(check_cert_subject2);
813 STR(altsubject_match2);
814 STR(domain_suffix_match2);
815 STR(domain_match2);
816 STR(machine_ca_cert);
817 STR(machine_ca_path);
818 STR(machine_client_cert);
819 STR(machine_private_key);
820 STR(machine_private_key_passwd);
821 STR(machine_dh_file);
822 STR(machine_subject_match);
823 STR(machine_check_cert_subject);
824 STR(machine_altsubject_match);
825 STR(machine_domain_suffix_match);
826 STR(machine_domain_match);
827 STR(phase1);
828 STR(phase2);
829 STR(machine_phase2);
830 STR(pcsc);
831 STR(pin);
832 STR(engine_id);
833 STR(key_id);
834 STR(cert_id);
835 STR(ca_cert_id);
836 STR(key2_id);
837 STR(pin2);
838 STR(engine2_id);
839 STR(cert2_id);
840 STR(ca_cert2_id);
841 INTe(engine, cert.engine);
842 INTe(engine2, phase2_cert.engine);
843 INTe(machine_engine, machine_cert.engine);
844 INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
845 STR(openssl_ciphers);
846 INTe(erp, erp);
847 #endif /* IEEE8021X_EAPOL */
848 #ifdef CONFIG_WEP
849 {
850 int i;
851
852 for (i = 0; i < 4; i++)
853 write_wep_key(f, i, ssid);
854 INT(wep_tx_keyidx);
855 }
856 #endif /* CONFIG_WEP */
857 INT(priority);
858 #ifdef IEEE8021X_EAPOL
859 INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
860 STR(pac_file);
861 INT_DEFe(fragment_size, fragment_size, DEFAULT_FRAGMENT_SIZE);
862 INTe(ocsp, cert.ocsp);
863 INTe(ocsp2, phase2_cert.ocsp);
864 INTe(machine_ocsp, machine_cert.ocsp);
865 INT_DEFe(sim_num, sim_num, DEFAULT_USER_SELECTED_SIM);
866 #endif /* IEEE8021X_EAPOL */
867 INT(mode);
868 INT(no_auto_peer);
869 INT(frequency);
870 INT(enable_edmg);
871 INT(edmg_channel);
872 INT(fixed_freq);
873 #ifdef CONFIG_ACS
874 INT(acs);
875 #endif /* CONFIG_ACS */
876 write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
877 INT(disabled);
878 INT(mixed_cell);
879 INT(vht);
880 INT_DEF(ht, 1);
881 INT(ht40);
882 INT_DEF(max_oper_chwidth, DEFAULT_MAX_OPER_CHWIDTH);
883 INT(vht_center_freq1);
884 INT(vht_center_freq2);
885 INT(pbss);
886 INT(wps_disabled);
887 INT(fils_dh_group);
888 write_int(f, "ieee80211w", ssid->ieee80211w,
889 MGMT_FRAME_PROTECTION_DEFAULT);
890 STR(id_str);
891 #ifdef CONFIG_P2P
892 write_go_p2p_dev_addr(f, ssid);
893 write_p2p_client_list(f, ssid);
894 write_psk_list(f, ssid);
895 #endif /* CONFIG_P2P */
896 INT(ap_max_inactivity);
897 INT(dtim_period);
898 INT(beacon_int);
899 #ifdef CONFIG_MACSEC
900 INT(macsec_policy);
901 write_mka_cak(f, ssid);
902 write_mka_ckn(f, ssid);
903 INT(macsec_integ_only);
904 INT(macsec_replay_protect);
905 INT(macsec_replay_window);
906 INT(macsec_port);
907 INT_DEF(mka_priority, DEFAULT_PRIO_NOT_KEY_SERVER);
908 #endif /* CONFIG_MACSEC */
909 #ifdef CONFIG_HS20
910 INT(update_identifier);
911 STR(roaming_consortium_selection);
912 #endif /* CONFIG_HS20 */
913 write_int(f, "mac_addr", ssid->mac_addr, -1);
914 #ifdef CONFIG_MESH
915 STR(mesh_basic_rates);
916 INT_DEF(dot11MeshMaxRetries, DEFAULT_MESH_MAX_RETRIES);
917 INT_DEF(dot11MeshRetryTimeout, DEFAULT_MESH_RETRY_TIMEOUT);
918 INT_DEF(dot11MeshConfirmTimeout, DEFAULT_MESH_CONFIRM_TIMEOUT);
919 INT_DEF(dot11MeshHoldingTimeout, DEFAULT_MESH_HOLDING_TIMEOUT);
920 INT_DEF(mesh_rssi_threshold, DEFAULT_MESH_RSSI_THRESHOLD);
921 #endif /* CONFIG_MESH */
922 INT(wpa_ptk_rekey);
923 INT(wpa_deny_ptk0_rekey);
924 INT(group_rekey);
925 INT(ignore_broadcast_ssid);
926 #ifdef CONFIG_DPP
927 STR(dpp_connector);
928 STR(dpp_netaccesskey);
929 INT(dpp_netaccesskey_expiry);
930 STR(dpp_csign);
931 INT(dpp_pfs);
932 #endif /* CONFIG_DPP */
933 INT(owe_group);
934 INT(owe_only);
935 INT(owe_ptk_workaround);
936 INT(multi_ap_backhaul_sta);
937 INT(ft_eap_pmksa_caching);
938 INT(beacon_prot);
939 INT(transition_disable);
940 #ifdef CONFIG_HT_OVERRIDES
941 INT_DEF(disable_ht, DEFAULT_DISABLE_HT);
942 INT_DEF(disable_ht40, DEFAULT_DISABLE_HT40);
943 INT_DEF(disable_sgi, DEFAULT_DISABLE_SGI);
944 INT_DEF(disable_ldpc, DEFAULT_DISABLE_LDPC);
945 INT(ht40_intolerant);
946 INT_DEF(tx_stbc, DEFAULT_TX_STBC);
947 INT_DEF(rx_stbc, DEFAULT_RX_STBC);
948 INT_DEF(disable_max_amsdu, DEFAULT_DISABLE_MAX_AMSDU);
949 INT_DEF(ampdu_factor, DEFAULT_AMPDU_FACTOR);
950 INT_DEF(ampdu_density, DEFAULT_AMPDU_DENSITY);
951 STR(ht_mcs);
952 #endif /* CONFIG_HT_OVERRIDES */
953 #ifdef CONFIG_VHT_OVERRIDES
954 INT(disable_vht);
955 INT(vht_capa);
956 INT(vht_capa_mask);
957 INT_DEF(vht_rx_mcs_nss_1, -1);
958 INT_DEF(vht_rx_mcs_nss_2, -1);
959 INT_DEF(vht_rx_mcs_nss_3, -1);
960 INT_DEF(vht_rx_mcs_nss_4, -1);
961 INT_DEF(vht_rx_mcs_nss_5, -1);
962 INT_DEF(vht_rx_mcs_nss_6, -1);
963 INT_DEF(vht_rx_mcs_nss_7, -1);
964 INT_DEF(vht_rx_mcs_nss_8, -1);
965 INT_DEF(vht_tx_mcs_nss_1, -1);
966 INT_DEF(vht_tx_mcs_nss_2, -1);
967 INT_DEF(vht_tx_mcs_nss_3, -1);
968 INT_DEF(vht_tx_mcs_nss_4, -1);
969 INT_DEF(vht_tx_mcs_nss_5, -1);
970 INT_DEF(vht_tx_mcs_nss_6, -1);
971 INT_DEF(vht_tx_mcs_nss_7, -1);
972 INT_DEF(vht_tx_mcs_nss_8, -1);
973 #endif /* CONFIG_VHT_OVERRIDES */
974 #ifdef CONFIG_HE_OVERRIDES
975 INT(disable_he);
976 #endif /* CONFIG_HE_OVERRIDES */
977
978 #undef STR
979 #undef INT
980 #undef INT_DEF
981 }
982
983
wpa_config_write_cred(FILE * f,struct wpa_cred * cred)984 static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
985 {
986 size_t i;
987
988 if (cred->priority)
989 fprintf(f, "\tpriority=%d\n", cred->priority);
990 if (cred->pcsc)
991 fprintf(f, "\tpcsc=%d\n", cred->pcsc);
992 if (cred->realm)
993 fprintf(f, "\trealm=\"%s\"\n", cred->realm);
994 if (cred->username)
995 fprintf(f, "\tusername=\"%s\"\n", cred->username);
996 if (cred->password && cred->ext_password)
997 fprintf(f, "\tpassword=ext:%s\n", cred->password);
998 else if (cred->password)
999 fprintf(f, "\tpassword=\"%s\"\n", cred->password);
1000 if (cred->ca_cert)
1001 fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
1002 if (cred->client_cert)
1003 fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert);
1004 if (cred->private_key)
1005 fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key);
1006 if (cred->private_key_passwd)
1007 fprintf(f, "\tprivate_key_passwd=\"%s\"\n",
1008 cred->private_key_passwd);
1009 if (cred->imsi)
1010 fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
1011 if (cred->milenage)
1012 fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
1013 for (i = 0; i < cred->num_domain; i++)
1014 fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
1015 if (cred->domain_suffix_match)
1016 fprintf(f, "\tdomain_suffix_match=\"%s\"\n",
1017 cred->domain_suffix_match);
1018 if (cred->roaming_consortium_len) {
1019 fprintf(f, "\troaming_consortium=");
1020 for (i = 0; i < cred->roaming_consortium_len; i++)
1021 fprintf(f, "%02x", cred->roaming_consortium[i]);
1022 fprintf(f, "\n");
1023 }
1024 if (cred->eap_method) {
1025 const char *name;
1026 name = eap_get_name(cred->eap_method[0].vendor,
1027 cred->eap_method[0].method);
1028 if (name)
1029 fprintf(f, "\teap=%s\n", name);
1030 }
1031 if (cred->phase1)
1032 fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
1033 if (cred->phase2)
1034 fprintf(f, "\tphase2=\"%s\"\n", cred->phase2);
1035 if (cred->excluded_ssid) {
1036 size_t j;
1037 for (i = 0; i < cred->num_excluded_ssid; i++) {
1038 struct excluded_ssid *e = &cred->excluded_ssid[i];
1039 fprintf(f, "\texcluded_ssid=");
1040 for (j = 0; j < e->ssid_len; j++)
1041 fprintf(f, "%02x", e->ssid[j]);
1042 fprintf(f, "\n");
1043 }
1044 }
1045 if (cred->roaming_partner) {
1046 for (i = 0; i < cred->num_roaming_partner; i++) {
1047 struct roaming_partner *p = &cred->roaming_partner[i];
1048 fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n",
1049 p->fqdn, p->exact_match, p->priority,
1050 p->country);
1051 }
1052 }
1053 if (cred->update_identifier)
1054 fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
1055
1056 if (cred->provisioning_sp)
1057 fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
1058 if (cred->sp_priority)
1059 fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
1060
1061 if (cred->min_dl_bandwidth_home)
1062 fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
1063 cred->min_dl_bandwidth_home);
1064 if (cred->min_ul_bandwidth_home)
1065 fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
1066 cred->min_ul_bandwidth_home);
1067 if (cred->min_dl_bandwidth_roaming)
1068 fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
1069 cred->min_dl_bandwidth_roaming);
1070 if (cred->min_ul_bandwidth_roaming)
1071 fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
1072 cred->min_ul_bandwidth_roaming);
1073
1074 if (cred->max_bss_load)
1075 fprintf(f, "\tmax_bss_load=%u\n",
1076 cred->max_bss_load);
1077
1078 if (cred->ocsp)
1079 fprintf(f, "\tocsp=%d\n", cred->ocsp);
1080
1081 if (cred->num_req_conn_capab) {
1082 for (i = 0; i < cred->num_req_conn_capab; i++) {
1083 int *ports;
1084
1085 fprintf(f, "\treq_conn_capab=%u",
1086 cred->req_conn_capab_proto[i]);
1087 ports = cred->req_conn_capab_port[i];
1088 if (ports) {
1089 int j;
1090 for (j = 0; ports[j] != -1; j++) {
1091 fprintf(f, "%s%d", j > 0 ? "," : ":",
1092 ports[j]);
1093 }
1094 }
1095 fprintf(f, "\n");
1096 }
1097 }
1098
1099 if (cred->required_roaming_consortium_len) {
1100 fprintf(f, "\trequired_roaming_consortium=");
1101 for (i = 0; i < cred->required_roaming_consortium_len; i++)
1102 fprintf(f, "%02x",
1103 cred->required_roaming_consortium[i]);
1104 fprintf(f, "\n");
1105 }
1106
1107 if (cred->num_roaming_consortiums) {
1108 size_t j;
1109
1110 fprintf(f, "\troaming_consortiums=\"");
1111 for (i = 0; i < cred->num_roaming_consortiums; i++) {
1112 if (i > 0)
1113 fprintf(f, ",");
1114 for (j = 0; j < cred->roaming_consortiums_len[i]; j++)
1115 fprintf(f, "%02x",
1116 cred->roaming_consortiums[i][j]);
1117 }
1118 fprintf(f, "\"\n");
1119 }
1120
1121 if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
1122 fprintf(f, "\tsim_num=%d\n", cred->sim_num);
1123 }
1124
1125
1126 #ifndef CONFIG_NO_CONFIG_BLOBS
wpa_config_write_blob(FILE * f,struct wpa_config_blob * blob)1127 static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
1128 {
1129 char *encoded;
1130
1131 encoded = base64_encode(blob->data, blob->len, NULL);
1132 if (encoded == NULL)
1133 return -1;
1134
1135 fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
1136 os_free(encoded);
1137 return 0;
1138 }
1139 #endif /* CONFIG_NO_CONFIG_BLOBS */
1140
1141
write_global_bin(FILE * f,const char * field,const struct wpabuf * val)1142 static void write_global_bin(FILE *f, const char *field,
1143 const struct wpabuf *val)
1144 {
1145 size_t i;
1146 const u8 *pos;
1147
1148 if (val == NULL)
1149 return;
1150
1151 fprintf(f, "%s=", field);
1152 pos = wpabuf_head(val);
1153 for (i = 0; i < wpabuf_len(val); i++)
1154 fprintf(f, "%02X", *pos++);
1155 fprintf(f, "\n");
1156 }
1157
1158
wpa_config_write_global(FILE * f,struct wpa_config * config)1159 static void wpa_config_write_global(FILE *f, struct wpa_config *config)
1160 {
1161 #ifdef CONFIG_CTRL_IFACE
1162 if (config->ctrl_interface)
1163 fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
1164 if (config->ctrl_interface_group)
1165 fprintf(f, "ctrl_interface_group=%s\n",
1166 config->ctrl_interface_group);
1167 #endif /* CONFIG_CTRL_IFACE */
1168 if (config->eapol_version != DEFAULT_EAPOL_VERSION)
1169 fprintf(f, "eapol_version=%d\n", config->eapol_version);
1170 if (config->ap_scan != DEFAULT_AP_SCAN)
1171 fprintf(f, "ap_scan=%d\n", config->ap_scan);
1172 if (config->disable_scan_offload)
1173 fprintf(f, "disable_scan_offload=%d\n",
1174 config->disable_scan_offload);
1175 if (config->fast_reauth != DEFAULT_FAST_REAUTH)
1176 fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
1177 if (config->opensc_engine_path)
1178 fprintf(f, "opensc_engine_path=%s\n",
1179 config->opensc_engine_path);
1180 if (config->pkcs11_engine_path)
1181 fprintf(f, "pkcs11_engine_path=%s\n",
1182 config->pkcs11_engine_path);
1183 if (config->pkcs11_module_path)
1184 fprintf(f, "pkcs11_module_path=%s\n",
1185 config->pkcs11_module_path);
1186 if (config->openssl_ciphers)
1187 fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers);
1188 if (config->pcsc_reader)
1189 fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
1190 if (config->pcsc_pin)
1191 fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
1192 if (config->driver_param)
1193 fprintf(f, "driver_param=%s\n", config->driver_param);
1194 if (config->dot11RSNAConfigPMKLifetime)
1195 fprintf(f, "dot11RSNAConfigPMKLifetime=%u\n",
1196 config->dot11RSNAConfigPMKLifetime);
1197 if (config->dot11RSNAConfigPMKReauthThreshold)
1198 fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%u\n",
1199 config->dot11RSNAConfigPMKReauthThreshold);
1200 if (config->dot11RSNAConfigSATimeout)
1201 fprintf(f, "dot11RSNAConfigSATimeout=%u\n",
1202 config->dot11RSNAConfigSATimeout);
1203 if (config->update_config)
1204 fprintf(f, "update_config=%d\n", config->update_config);
1205 #ifdef CONFIG_WPS
1206 if (!is_nil_uuid(config->uuid)) {
1207 char buf[40];
1208 uuid_bin2str(config->uuid, buf, sizeof(buf));
1209 fprintf(f, "uuid=%s\n", buf);
1210 }
1211 if (config->auto_uuid)
1212 fprintf(f, "auto_uuid=%d\n", config->auto_uuid);
1213 if (config->device_name)
1214 fprintf(f, "device_name=%s\n", config->device_name);
1215 if (config->manufacturer)
1216 fprintf(f, "manufacturer=%s\n", config->manufacturer);
1217 if (config->model_name)
1218 fprintf(f, "model_name=%s\n", config->model_name);
1219 if (config->model_number)
1220 fprintf(f, "model_number=%s\n", config->model_number);
1221 if (config->serial_number)
1222 fprintf(f, "serial_number=%s\n", config->serial_number);
1223 {
1224 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
1225 buf = wps_dev_type_bin2str(config->device_type,
1226 _buf, sizeof(_buf));
1227 if (os_strcmp(buf, "0-00000000-0") != 0)
1228 fprintf(f, "device_type=%s\n", buf);
1229 }
1230 if (WPA_GET_BE32(config->os_version))
1231 fprintf(f, "os_version=%08x\n",
1232 WPA_GET_BE32(config->os_version));
1233 if (config->config_methods)
1234 fprintf(f, "config_methods=%s\n", config->config_methods);
1235 if (config->wps_cred_processing)
1236 fprintf(f, "wps_cred_processing=%d\n",
1237 config->wps_cred_processing);
1238 if (config->wps_cred_add_sae)
1239 fprintf(f, "wps_cred_add_sae=%d\n",
1240 config->wps_cred_add_sae);
1241 if (config->wps_vendor_ext_m1) {
1242 int i, len = wpabuf_len(config->wps_vendor_ext_m1);
1243 const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
1244 if (len > 0) {
1245 fprintf(f, "wps_vendor_ext_m1=");
1246 for (i = 0; i < len; i++)
1247 fprintf(f, "%02x", *p++);
1248 fprintf(f, "\n");
1249 }
1250 }
1251 #endif /* CONFIG_WPS */
1252 #ifdef CONFIG_P2P
1253 {
1254 int i;
1255 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
1256
1257 for (i = 0; i < config->num_sec_device_types; i++) {
1258 buf = wps_dev_type_bin2str(config->sec_device_type[i],
1259 _buf, sizeof(_buf));
1260 if (buf)
1261 fprintf(f, "sec_device_type=%s\n", buf);
1262 }
1263 }
1264 if (config->p2p_listen_reg_class)
1265 fprintf(f, "p2p_listen_reg_class=%d\n",
1266 config->p2p_listen_reg_class);
1267 if (config->p2p_listen_channel)
1268 fprintf(f, "p2p_listen_channel=%d\n",
1269 config->p2p_listen_channel);
1270 if (config->p2p_oper_reg_class)
1271 fprintf(f, "p2p_oper_reg_class=%d\n",
1272 config->p2p_oper_reg_class);
1273 if (config->p2p_oper_channel)
1274 fprintf(f, "p2p_oper_channel=%d\n", config->p2p_oper_channel);
1275 if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
1276 fprintf(f, "p2p_go_intent=%d\n", config->p2p_go_intent);
1277 if (config->p2p_ssid_postfix)
1278 fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
1279 if (config->persistent_reconnect)
1280 fprintf(f, "persistent_reconnect=%d\n",
1281 config->persistent_reconnect);
1282 if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
1283 fprintf(f, "p2p_intra_bss=%d\n", config->p2p_intra_bss);
1284 if (config->p2p_group_idle)
1285 fprintf(f, "p2p_group_idle=%d\n", config->p2p_group_idle);
1286 if (config->p2p_passphrase_len)
1287 fprintf(f, "p2p_passphrase_len=%u\n",
1288 config->p2p_passphrase_len);
1289 if (config->p2p_pref_chan) {
1290 unsigned int i;
1291 fprintf(f, "p2p_pref_chan=");
1292 for (i = 0; i < config->num_p2p_pref_chan; i++) {
1293 fprintf(f, "%s%u:%u", i > 0 ? "," : "",
1294 config->p2p_pref_chan[i].op_class,
1295 config->p2p_pref_chan[i].chan);
1296 }
1297 fprintf(f, "\n");
1298 }
1299 if (config->p2p_no_go_freq.num) {
1300 char *val = freq_range_list_str(&config->p2p_no_go_freq);
1301 if (val) {
1302 fprintf(f, "p2p_no_go_freq=%s\n", val);
1303 os_free(val);
1304 }
1305 }
1306 if (config->p2p_add_cli_chan)
1307 fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
1308 if (config->p2p_optimize_listen_chan !=
1309 DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN)
1310 fprintf(f, "p2p_optimize_listen_chan=%d\n",
1311 config->p2p_optimize_listen_chan);
1312 if (config->p2p_go_ht40)
1313 fprintf(f, "p2p_go_ht40=%d\n", config->p2p_go_ht40);
1314 if (config->p2p_go_vht)
1315 fprintf(f, "p2p_go_vht=%d\n", config->p2p_go_vht);
1316 if (config->p2p_go_he)
1317 fprintf(f, "p2p_go_he=%d\n", config->p2p_go_he);
1318 if (config->p2p_go_edmg)
1319 fprintf(f, "p2p_go_edmg=%d\n", config->p2p_go_edmg);
1320 if (config->p2p_go_ctwindow != DEFAULT_P2P_GO_CTWINDOW)
1321 fprintf(f, "p2p_go_ctwindow=%d\n", config->p2p_go_ctwindow);
1322 if (config->p2p_disabled)
1323 fprintf(f, "p2p_disabled=%d\n", config->p2p_disabled);
1324 if (config->p2p_no_group_iface)
1325 fprintf(f, "p2p_no_group_iface=%d\n",
1326 config->p2p_no_group_iface);
1327 if (config->p2p_ignore_shared_freq)
1328 fprintf(f, "p2p_ignore_shared_freq=%d\n",
1329 config->p2p_ignore_shared_freq);
1330 if (config->p2p_cli_probe)
1331 fprintf(f, "p2p_cli_probe=%d\n", config->p2p_cli_probe);
1332 if (config->p2p_go_freq_change_policy != DEFAULT_P2P_GO_FREQ_MOVE)
1333 fprintf(f, "p2p_go_freq_change_policy=%u\n",
1334 config->p2p_go_freq_change_policy);
1335 if (WPA_GET_BE32(config->ip_addr_go))
1336 fprintf(f, "ip_addr_go=%u.%u.%u.%u\n",
1337 config->ip_addr_go[0], config->ip_addr_go[1],
1338 config->ip_addr_go[2], config->ip_addr_go[3]);
1339 if (WPA_GET_BE32(config->ip_addr_mask))
1340 fprintf(f, "ip_addr_mask=%u.%u.%u.%u\n",
1341 config->ip_addr_mask[0], config->ip_addr_mask[1],
1342 config->ip_addr_mask[2], config->ip_addr_mask[3]);
1343 if (WPA_GET_BE32(config->ip_addr_start))
1344 fprintf(f, "ip_addr_start=%u.%u.%u.%u\n",
1345 config->ip_addr_start[0], config->ip_addr_start[1],
1346 config->ip_addr_start[2], config->ip_addr_start[3]);
1347 if (WPA_GET_BE32(config->ip_addr_end))
1348 fprintf(f, "ip_addr_end=%u.%u.%u.%u\n",
1349 config->ip_addr_end[0], config->ip_addr_end[1],
1350 config->ip_addr_end[2], config->ip_addr_end[3]);
1351 #endif /* CONFIG_P2P */
1352 if (config->country[0] && config->country[1]) {
1353 fprintf(f, "country=%c%c\n",
1354 config->country[0], config->country[1]);
1355 }
1356 if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
1357 fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
1358 if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
1359 fprintf(f, "bss_expiration_age=%u\n",
1360 config->bss_expiration_age);
1361 if (config->bss_expiration_scan_count !=
1362 DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
1363 fprintf(f, "bss_expiration_scan_count=%u\n",
1364 config->bss_expiration_scan_count);
1365 if (config->filter_ssids)
1366 fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
1367 if (config->filter_rssi)
1368 fprintf(f, "filter_rssi=%d\n", config->filter_rssi);
1369 if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
1370 fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
1371 if (config->ap_isolate != DEFAULT_AP_ISOLATE)
1372 fprintf(f, "ap_isolate=%u\n", config->ap_isolate);
1373 if (config->disassoc_low_ack)
1374 fprintf(f, "disassoc_low_ack=%d\n", config->disassoc_low_ack);
1375 #ifdef CONFIG_HS20
1376 if (config->hs20)
1377 fprintf(f, "hs20=1\n");
1378 #endif /* CONFIG_HS20 */
1379 #ifdef CONFIG_INTERWORKING
1380 if (config->interworking)
1381 fprintf(f, "interworking=%d\n", config->interworking);
1382 if (!is_zero_ether_addr(config->hessid))
1383 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
1384 if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
1385 fprintf(f, "access_network_type=%d\n",
1386 config->access_network_type);
1387 if (config->go_interworking)
1388 fprintf(f, "go_interworking=%d\n", config->go_interworking);
1389 if (config->go_access_network_type)
1390 fprintf(f, "go_access_network_type=%d\n",
1391 config->go_access_network_type);
1392 if (config->go_internet)
1393 fprintf(f, "go_internet=%d\n", config->go_internet);
1394 if (config->go_venue_group)
1395 fprintf(f, "go_venue_group=%d\n", config->go_venue_group);
1396 if (config->go_venue_type)
1397 fprintf(f, "go_venue_type=%d\n", config->go_venue_type);
1398 #endif /* CONFIG_INTERWORKING */
1399 if (config->pbc_in_m1)
1400 fprintf(f, "pbc_in_m1=%d\n", config->pbc_in_m1);
1401 if (config->wps_nfc_pw_from_config) {
1402 if (config->wps_nfc_dev_pw_id)
1403 fprintf(f, "wps_nfc_dev_pw_id=%d\n",
1404 config->wps_nfc_dev_pw_id);
1405 write_global_bin(f, "wps_nfc_dh_pubkey",
1406 config->wps_nfc_dh_pubkey);
1407 write_global_bin(f, "wps_nfc_dh_privkey",
1408 config->wps_nfc_dh_privkey);
1409 write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
1410 }
1411
1412 if (config->ext_password_backend)
1413 fprintf(f, "ext_password_backend=%s\n",
1414 config->ext_password_backend);
1415 if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY)
1416 fprintf(f, "p2p_go_max_inactivity=%d\n",
1417 config->p2p_go_max_inactivity);
1418 if (config->auto_interworking)
1419 fprintf(f, "auto_interworking=%d\n",
1420 config->auto_interworking);
1421 if (config->okc)
1422 fprintf(f, "okc=%d\n", config->okc);
1423 if (config->pmf)
1424 fprintf(f, "pmf=%d\n", config->pmf);
1425 if (config->dtim_period)
1426 fprintf(f, "dtim_period=%d\n", config->dtim_period);
1427 if (config->beacon_int)
1428 fprintf(f, "beacon_int=%d\n", config->beacon_int);
1429
1430 if (config->sae_groups) {
1431 int i;
1432 fprintf(f, "sae_groups=");
1433 for (i = 0; config->sae_groups[i] > 0; i++) {
1434 fprintf(f, "%s%d", i > 0 ? " " : "",
1435 config->sae_groups[i]);
1436 }
1437 fprintf(f, "\n");
1438 }
1439
1440 if (config->sae_pwe)
1441 fprintf(f, "sae_pwe=%d\n", config->sae_pwe);
1442
1443 if (config->sae_pmkid_in_assoc)
1444 fprintf(f, "sae_pmkid_in_assoc=%d\n",
1445 config->sae_pmkid_in_assoc);
1446
1447 if (config->ap_vendor_elements) {
1448 int i, len = wpabuf_len(config->ap_vendor_elements);
1449 const u8 *p = wpabuf_head_u8(config->ap_vendor_elements);
1450 if (len > 0) {
1451 fprintf(f, "ap_vendor_elements=");
1452 for (i = 0; i < len; i++)
1453 fprintf(f, "%02x", *p++);
1454 fprintf(f, "\n");
1455 }
1456 }
1457
1458 if (config->ignore_old_scan_res)
1459 fprintf(f, "ignore_old_scan_res=%d\n",
1460 config->ignore_old_scan_res);
1461
1462 if (config->freq_list && config->freq_list[0]) {
1463 int i;
1464 fprintf(f, "freq_list=");
1465 for (i = 0; config->freq_list[i]; i++) {
1466 fprintf(f, "%s%d", i > 0 ? " " : "",
1467 config->freq_list[i]);
1468 }
1469 fprintf(f, "\n");
1470 }
1471 if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
1472 fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
1473
1474 if (config->sched_scan_interval)
1475 fprintf(f, "sched_scan_interval=%u\n",
1476 config->sched_scan_interval);
1477
1478 if (config->sched_scan_start_delay)
1479 fprintf(f, "sched_scan_start_delay=%u\n",
1480 config->sched_scan_start_delay);
1481
1482 if (config->external_sim)
1483 fprintf(f, "external_sim=%d\n", config->external_sim);
1484
1485 if (config->tdls_external_control)
1486 fprintf(f, "tdls_external_control=%d\n",
1487 config->tdls_external_control);
1488
1489 if (config->wowlan_triggers)
1490 fprintf(f, "wowlan_triggers=%s\n",
1491 config->wowlan_triggers);
1492
1493 if (config->bgscan)
1494 fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
1495
1496 if (config->autoscan)
1497 fprintf(f, "autoscan=%s\n", config->autoscan);
1498
1499 if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY)
1500 fprintf(f, "p2p_search_delay=%u\n",
1501 config->p2p_search_delay);
1502
1503 if (config->mac_addr)
1504 fprintf(f, "mac_addr=%d\n", config->mac_addr);
1505
1506 if (config->rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
1507 fprintf(f, "rand_addr_lifetime=%u\n",
1508 config->rand_addr_lifetime);
1509
1510 if (config->preassoc_mac_addr)
1511 fprintf(f, "preassoc_mac_addr=%d\n", config->preassoc_mac_addr);
1512
1513 if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD)
1514 fprintf(f, "key_mgmt_offload=%d\n", config->key_mgmt_offload);
1515
1516 if (config->user_mpm != DEFAULT_USER_MPM)
1517 fprintf(f, "user_mpm=%d\n", config->user_mpm);
1518
1519 if (config->max_peer_links != DEFAULT_MAX_PEER_LINKS)
1520 fprintf(f, "max_peer_links=%d\n", config->max_peer_links);
1521
1522 if (config->cert_in_cb != DEFAULT_CERT_IN_CB)
1523 fprintf(f, "cert_in_cb=%d\n", config->cert_in_cb);
1524
1525 if (config->mesh_max_inactivity != DEFAULT_MESH_MAX_INACTIVITY)
1526 fprintf(f, "mesh_max_inactivity=%d\n",
1527 config->mesh_max_inactivity);
1528
1529 if (config->dot11RSNASAERetransPeriod !=
1530 DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD)
1531 fprintf(f, "dot11RSNASAERetransPeriod=%d\n",
1532 config->dot11RSNASAERetransPeriod);
1533
1534 if (config->passive_scan)
1535 fprintf(f, "passive_scan=%d\n", config->passive_scan);
1536
1537 if (config->reassoc_same_bss_optim)
1538 fprintf(f, "reassoc_same_bss_optim=%d\n",
1539 config->reassoc_same_bss_optim);
1540
1541 if (config->wps_priority)
1542 fprintf(f, "wps_priority=%d\n", config->wps_priority);
1543
1544 if (config->wpa_rsc_relaxation != DEFAULT_WPA_RSC_RELAXATION)
1545 fprintf(f, "wpa_rsc_relaxation=%d\n",
1546 config->wpa_rsc_relaxation);
1547
1548 if (config->sched_scan_plans)
1549 fprintf(f, "sched_scan_plans=%s\n", config->sched_scan_plans);
1550
1551 #ifdef CONFIG_MBO
1552 if (config->non_pref_chan)
1553 fprintf(f, "non_pref_chan=%s\n", config->non_pref_chan);
1554 if (config->mbo_cell_capa != DEFAULT_MBO_CELL_CAPA)
1555 fprintf(f, "mbo_cell_capa=%u\n", config->mbo_cell_capa);
1556 if (config->disassoc_imminent_rssi_threshold !=
1557 DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD)
1558 fprintf(f, "disassoc_imminent_rssi_threshold=%d\n",
1559 config->disassoc_imminent_rssi_threshold);
1560 if (config->oce != DEFAULT_OCE_SUPPORT)
1561 fprintf(f, "oce=%u\n", config->oce);
1562 #endif /* CONFIG_MBO */
1563
1564 if (config->gas_address3)
1565 fprintf(f, "gas_address3=%d\n", config->gas_address3);
1566
1567 if (config->ftm_responder)
1568 fprintf(f, "ftm_responder=%d\n", config->ftm_responder);
1569 if (config->ftm_initiator)
1570 fprintf(f, "ftm_initiator=%d\n", config->ftm_initiator);
1571
1572 if (config->osu_dir)
1573 fprintf(f, "osu_dir=%s\n", config->osu_dir);
1574
1575 if (config->fst_group_id)
1576 fprintf(f, "fst_group_id=%s\n", config->fst_group_id);
1577 if (config->fst_priority)
1578 fprintf(f, "fst_priority=%d\n", config->fst_priority);
1579 if (config->fst_llt)
1580 fprintf(f, "fst_llt=%d\n", config->fst_llt);
1581
1582 if (config->gas_rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
1583 fprintf(f, "gas_rand_addr_lifetime=%u\n",
1584 config->gas_rand_addr_lifetime);
1585 if (config->gas_rand_mac_addr)
1586 fprintf(f, "gas_rand_mac_addr=%d\n", config->gas_rand_mac_addr);
1587 if (config->dpp_config_processing)
1588 fprintf(f, "dpp_config_processing=%d\n",
1589 config->dpp_config_processing);
1590 if (config->coloc_intf_reporting)
1591 fprintf(f, "coloc_intf_reporting=%d\n",
1592 config->coloc_intf_reporting);
1593 if (config->p2p_device_random_mac_addr)
1594 fprintf(f, "p2p_device_random_mac_addr=%d\n",
1595 config->p2p_device_random_mac_addr);
1596 if (!is_zero_ether_addr(config->p2p_device_persistent_mac_addr))
1597 fprintf(f, "p2p_device_persistent_mac_addr=" MACSTR "\n",
1598 MAC2STR(config->p2p_device_persistent_mac_addr));
1599 if (config->p2p_interface_random_mac_addr)
1600 fprintf(f, "p2p_interface_random_mac_addr=%d\n",
1601 config->p2p_interface_random_mac_addr);
1602 if (config->bss_no_flush_when_down)
1603 fprintf(f, "bss_no_flush_when_down=%d\n",
1604 config->bss_no_flush_when_down);
1605 if (config->disable_btm)
1606 fprintf(f, "disable_btm=1\n");
1607 if (config->extended_key_id != DEFAULT_EXTENDED_KEY_ID)
1608 fprintf(f, "extended_key_id=%d\n",
1609 config->extended_key_id);
1610 if (config->wowlan_disconnect_on_deinit)
1611 fprintf(f, "wowlan_disconnect_on_deinit=%d\n",
1612 config->wowlan_disconnect_on_deinit);
1613 }
1614
1615 #endif /* CONFIG_NO_CONFIG_WRITE */
1616
1617
wpa_config_write(const char * name,struct wpa_config * config)1618 int wpa_config_write(const char *name, struct wpa_config *config)
1619 {
1620 #ifndef CONFIG_NO_CONFIG_WRITE
1621 FILE *f;
1622 struct wpa_ssid *ssid;
1623 struct wpa_cred *cred;
1624 #ifndef CONFIG_NO_CONFIG_BLOBS
1625 struct wpa_config_blob *blob;
1626 #endif /* CONFIG_NO_CONFIG_BLOBS */
1627 int ret = 0;
1628 const char *orig_name = name;
1629 int tmp_len;
1630 char *tmp_name;
1631
1632 if (!name) {
1633 wpa_printf(MSG_ERROR, "No configuration file for writing");
1634 return -1;
1635 }
1636
1637 tmp_len = os_strlen(name) + 5; /* allow space for .tmp suffix */
1638 tmp_name = os_malloc(tmp_len);
1639 if (tmp_name) {
1640 os_snprintf(tmp_name, tmp_len, "%s.tmp", name);
1641 name = tmp_name;
1642 }
1643
1644 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
1645
1646 f = fopen(name, "w");
1647 if (f == NULL) {
1648 wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
1649 os_free(tmp_name);
1650 return -1;
1651 }
1652
1653 wpa_config_write_global(f, config);
1654
1655 for (cred = config->cred; cred; cred = cred->next) {
1656 if (cred->temporary)
1657 continue;
1658 fprintf(f, "\ncred={\n");
1659 wpa_config_write_cred(f, cred);
1660 fprintf(f, "}\n");
1661 }
1662
1663 for (ssid = config->ssid; ssid; ssid = ssid->next) {
1664 if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
1665 continue; /* do not save temporary networks */
1666 if (wpa_key_mgmt_wpa_psk_no_sae(ssid->key_mgmt) &&
1667 !ssid->psk_set && !ssid->passphrase)
1668 continue; /* do not save invalid network */
1669 if (wpa_key_mgmt_sae(ssid->key_mgmt) &&
1670 !ssid->passphrase && !ssid->sae_password)
1671 continue; /* do not save invalid network */
1672 fprintf(f, "\nnetwork={\n");
1673 wpa_config_write_network(f, ssid);
1674 fprintf(f, "}\n");
1675 }
1676
1677 #ifndef CONFIG_NO_CONFIG_BLOBS
1678 for (blob = config->blobs; blob; blob = blob->next) {
1679 ret = wpa_config_write_blob(f, blob);
1680 if (ret)
1681 break;
1682 }
1683 #endif /* CONFIG_NO_CONFIG_BLOBS */
1684
1685 os_fdatasync(f);
1686
1687 fclose(f);
1688
1689 if (tmp_name) {
1690 int chmod_ret = 0;
1691
1692 #ifdef ANDROID
1693 chmod_ret = chmod(tmp_name,
1694 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
1695 #endif /* ANDROID */
1696 if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0)
1697 ret = -1;
1698
1699 os_free(tmp_name);
1700 }
1701
1702 wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
1703 orig_name, ret ? "un" : "");
1704 return ret;
1705 #else /* CONFIG_NO_CONFIG_WRITE */
1706 return -1;
1707 #endif /* CONFIG_NO_CONFIG_WRITE */
1708 }
1709