blob: 52e1372e8a05cd9bf646a29b8dac7d041227a9ae [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Configuration backend: text file
Hai Shalomc3565922019-10-28 11:58:20 -07003 * Copyright (c) 2003-2019, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 *
8 * This file implements a configuration backend for text files. All the
9 * configuration information is stored in a text file that uses a format
10 * described in the sample configuration file, wpa_supplicant.conf.
11 */
12
13#include "includes.h"
Dmitry Shmidt7f656022015-02-25 14:36:37 -080014#ifdef ANDROID
15#include <sys/stat.h>
16#endif /* ANDROID */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070017
18#include "common.h"
19#include "config.h"
20#include "base64.h"
21#include "uuid.h"
Dmitry Shmidt29333592017-01-09 12:27:11 -080022#include "common/ieee802_1x_defs.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070023#include "p2p/p2p.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080024#include "eap_peer/eap_methods.h"
25#include "eap_peer/eap.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070026
27
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070028static 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
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070051/**
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';
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070073 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 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070082 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
Dmitry Shmidt29333592017-01-09 12:27:11 -0800140 if (ssid->disabled == 2)
141 ssid->p2p_persistent_group = 1;
142
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700143 if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
Roshan Pius3a1667e2018-07-03 15:17:14 -0700144 !(ssid->pairwise_cipher & (WPA_CIPHER_CCMP | WPA_CIPHER_CCMP_256 |
145 WPA_CIPHER_GCMP | WPA_CIPHER_GCMP_256 |
146 WPA_CIPHER_NONE))) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700147 /* 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
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800154 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
Hai Shalom74f70d42019-02-11 14:42:39 -0800163#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
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700172 return errors;
173}
174
175
176static 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;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700180 char buf[2000], *pos, *pos2;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700181
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;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700187 dl_list_init(&ssid->psk_list);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700188 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
Hai Shalomfdcde762020-04-02 11:19:20 -0700216 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 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700230 errors++;
Hai Shalomfdcde762020-04-02 11:19:20 -0700231 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700232 }
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
Dmitry Shmidt04949592012-07-19 12:16:46 -0700251static 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;
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -0700262 cred->sim_num = DEFAULT_USER_SELECTED_SIM;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700263
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
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700307#ifndef CONFIG_NO_CONFIG_BLOBS
308static 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;
Ahmed ElArabawy0ff61c52019-12-26 12:38:39 -0800313 char *encoded = NULL, *nencoded;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700314 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
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700339 if (!end || !encoded) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700340 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
364static 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
Dmitry Shmidt64f47c52013-04-16 10:41:54 -0700390struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700391{
392 FILE *f;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700393 char buf[512], *pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700394 int errors = 0, line = 0;
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700395 struct wpa_ssid *ssid, *tail, *head;
396 struct wpa_cred *cred, *cred_tail, *cred_head;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700397 struct wpa_config *config;
398 int id = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700399 int cred_id = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700400
Dmitry Shmidt64f47c52013-04-16 10:41:54 -0700401 if (name == NULL)
402 return NULL;
403 if (cfgp)
404 config = cfgp;
405 else
406 config = wpa_config_alloc_empty(NULL, NULL);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700407 if (config == NULL) {
408 wpa_printf(MSG_ERROR, "Failed to allocate config file "
409 "structure");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700410 return NULL;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700411 }
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700412 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;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700418
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700419 wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
420 f = fopen(name, "r");
421 if (f == NULL) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700422 wpa_printf(MSG_ERROR, "Failed to open config file '%s', "
423 "error: %s", name, strerror(errno));
Dmitry Shmidte3d76d92018-02-01 00:34:54 +0000424 if (config != cfgp)
425 os_free(config);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700426 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 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700451 } 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 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700465#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) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700469 wpa_printf(MSG_ERROR, "Line %d: failed to "
470 "process blob.", line);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700471 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
Iliyan Malchev97d98062013-04-23 02:37:51 +0000485 config->ssid = head;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700486 wpa_config_debug_dump_networks(config);
Iliyan Malchev97d98062013-04-23 02:37:51 +0000487 config->cred = cred_head;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700488
489#ifndef WPA_IGNORE_CONFIG_ERRORS
490 if (errors) {
Roshan Pius3a1667e2018-07-03 15:17:14 -0700491 if (config != cfgp)
492 wpa_config_free(config);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700493 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
504static 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);
Hai Shalom74f70d42019-02-11 14:42:39 -0800510 str_clear_free(value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700511}
512
513
514static 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
522static 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
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700532static 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
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700543static void write_psk(FILE *f, struct wpa_ssid *ssid)
544{
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -0700545 char *value;
546
547 if (ssid->mem_only_psk)
548 return;
549
550 value = wpa_config_get(ssid, "psk");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700551 if (value == NULL)
552 return;
553 fprintf(f, "\tpsk=%s\n", value);
554 os_free(value);
555}
556
557
558static 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
574static 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
590static 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
606static 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
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700622static 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
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700638static 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
655static 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
Hai Shalomfdcde762020-04-02 11:19:20 -0700670#ifdef CONFIG_WEP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700671static 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);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800677 if (os_snprintf_error(sizeof(field), res))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700678 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}
Hai Shalomfdcde762020-04-02 11:19:20 -0700685#endif /* CONFIG_WEP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700686
687
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800688#ifdef CONFIG_P2P
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700689
Dmitry Shmidt54605472013-11-08 11:10:19 -0800690static 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
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800699static 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}
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700707
708
709static 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
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800721#endif /* CONFIG_P2P */
722
723
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800724#ifdef CONFIG_MACSEC
725
726static 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
741static 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
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700758static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
759{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700760#define STR(t) write_str(f, #t, ssid)
761#define INT(t) write_int(f, #t, ssid->t, 0)
Hai Shalomc3565922019-10-28 11:58:20 -0700762#define INTe(t, m) write_int(f, #t, ssid->eap.m, 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700763#define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
Hai Shalomc3565922019-10-28 11:58:20 -0700764#define INT_DEFe(t, m, def) write_int(f, #t, ssid->eap.m, def)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700765
766 STR(ssid);
767 INT(scan_ssid);
768 write_bssid(f, ssid);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700769 write_bssid_hint(f, ssid);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800770 write_str(f, "bssid_blacklist", ssid);
771 write_str(f, "bssid_whitelist", ssid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700772 write_psk(f, ssid);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -0700773 INT(mem_only_psk);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700774 STR(sae_password);
Roshan Pius3a1667e2018-07-03 15:17:14 -0700775 STR(sae_password_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700776 write_proto(f, ssid);
777 write_key_mgmt(f, ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700778 INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700779 write_pairwise(f, ssid);
780 write_group(f, ssid);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700781 write_group_mgmt(f, ssid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700782 write_auth_alg(f, ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700783 STR(bgscan);
784 STR(autoscan);
Dmitry Shmidt56052862013-10-04 10:23:25 -0700785 STR(scan_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700786#ifdef IEEE8021X_EAPOL
787 write_eap(f, ssid);
788 STR(identity);
789 STR(anonymous_identity);
Jouni Malinena3cb6f02017-12-08 17:05:40 +0200790 STR(imsi_identity);
Hai Shalomc3565922019-10-28 11:58:20 -0700791 STR(machine_identity);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700792 STR(password);
Hai Shalomc3565922019-10-28 11:58:20 -0700793 STR(machine_password);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700794 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);
Hai Shalom021b0b52019-04-10 11:17:58 -0700801 STR(check_cert_subject);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700802 STR(altsubject_match);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700803 STR(domain_suffix_match);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800804 STR(domain_match);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700805 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);
Hai Shalom021b0b52019-04-10 11:17:58 -0700812 STR(check_cert_subject2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700813 STR(altsubject_match2);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700814 STR(domain_suffix_match2);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800815 STR(domain_match2);
Hai Shalomc3565922019-10-28 11:58:20 -0700816 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);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700827 STR(phase1);
828 STR(phase2);
Hai Shalomc3565922019-10-28 11:58:20 -0700829 STR(machine_phase2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700830 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);
Hai Shalomc3565922019-10-28 11:58:20 -0700841 INTe(engine, cert.engine);
842 INTe(engine2, phase2_cert.engine);
843 INTe(machine_engine, machine_cert.engine);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700844 INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800845 STR(openssl_ciphers);
Hai Shalomc3565922019-10-28 11:58:20 -0700846 INTe(erp, erp);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700847#endif /* IEEE8021X_EAPOL */
Hai Shalomfdcde762020-04-02 11:19:20 -0700848#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 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700857 INT(priority);
858#ifdef IEEE8021X_EAPOL
859 INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
860 STR(pac_file);
Hai Shalomc3565922019-10-28 11:58:20 -0700861 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);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700866#endif /* IEEE8021X_EAPOL */
867 INT(mode);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800868 INT(no_auto_peer);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800869 INT(frequency);
Hai Shalomc3565922019-10-28 11:58:20 -0700870 INT(enable_edmg);
871 INT(edmg_channel);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800872 INT(fixed_freq);
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -0800873#ifdef CONFIG_ACS
874 INT(acs);
875#endif /* CONFIG_ACS */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800876 write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700877 INT(disabled);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800878 INT(mixed_cell);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700879 INT(vht);
880 INT_DEF(ht, 1);
881 INT(ht40);
Hai Shalom74f70d42019-02-11 14:42:39 -0800882 INT_DEF(max_oper_chwidth, DEFAULT_MAX_OPER_CHWIDTH);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700883 INT(vht_center_freq1);
884 INT(vht_center_freq2);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800885 INT(pbss);
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700886 INT(wps_disabled);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700887 INT(fils_dh_group);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800888 write_int(f, "ieee80211w", ssid->ieee80211w,
889 MGMT_FRAME_PROTECTION_DEFAULT);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700890 STR(id_str);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800891#ifdef CONFIG_P2P
Dmitry Shmidt54605472013-11-08 11:10:19 -0800892 write_go_p2p_dev_addr(f, ssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800893 write_p2p_client_list(f, ssid);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700894 write_psk_list(f, ssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800895#endif /* CONFIG_P2P */
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800896 INT(ap_max_inactivity);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -0800897 INT(dtim_period);
898 INT(beacon_int);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700899#ifdef CONFIG_MACSEC
900 INT(macsec_policy);
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800901 write_mka_cak(f, ssid);
902 write_mka_ckn(f, ssid);
903 INT(macsec_integ_only);
Hai Shalom74f70d42019-02-11 14:42:39 -0800904 INT(macsec_replay_protect);
905 INT(macsec_replay_window);
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800906 INT(macsec_port);
Dmitry Shmidt29333592017-01-09 12:27:11 -0800907 INT_DEF(mka_priority, DEFAULT_PRIO_NOT_KEY_SERVER);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700908#endif /* CONFIG_MACSEC */
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700909#ifdef CONFIG_HS20
910 INT(update_identifier);
Roshan Pius3a1667e2018-07-03 15:17:14 -0700911 STR(roaming_consortium_selection);
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700912#endif /* CONFIG_HS20 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700913 write_int(f, "mac_addr", ssid->mac_addr, -1);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800914#ifdef CONFIG_MESH
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800915 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);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700920 INT_DEF(mesh_rssi_threshold, DEFAULT_MESH_RSSI_THRESHOLD);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800921#endif /* CONFIG_MESH */
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800922 INT(wpa_ptk_rekey);
Hai Shalomfdcde762020-04-02 11:19:20 -0700923 INT(wpa_deny_ptk0_rekey);
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -0700924 INT(group_rekey);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800925 INT(ignore_broadcast_ssid);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700926#ifdef CONFIG_DPP
927 STR(dpp_connector);
928 STR(dpp_netaccesskey);
929 INT(dpp_netaccesskey_expiry);
930 STR(dpp_csign);
Hai Shalomfdcde762020-04-02 11:19:20 -0700931 INT(dpp_pfs);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700932#endif /* CONFIG_DPP */
933 INT(owe_group);
Roshan Pius3a1667e2018-07-03 15:17:14 -0700934 INT(owe_only);
Hai Shalomfdcde762020-04-02 11:19:20 -0700935 INT(owe_ptk_workaround);
Hai Shalom74f70d42019-02-11 14:42:39 -0800936 INT(multi_ap_backhaul_sta);
Hai Shalom81f62d82019-07-22 12:10:00 -0700937 INT(ft_eap_pmksa_caching);
Hai Shalomfdcde762020-04-02 11:19:20 -0700938 INT(beacon_prot);
939 INT(transition_disable);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800940#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);
Hai Shalom74f70d42019-02-11 14:42:39 -0800946 INT_DEF(tx_stbc, DEFAULT_TX_STBC);
947 INT_DEF(rx_stbc, DEFAULT_RX_STBC);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800948 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 */
Hai Shalomfdcde762020-04-02 11:19:20 -0700974#ifdef CONFIG_HE_OVERRIDES
975 INT(disable_he);
976#endif /* CONFIG_HE_OVERRIDES */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700977
978#undef STR
979#undef INT
980#undef INT_DEF
981}
982
983
Dmitry Shmidt04949592012-07-19 12:16:46 -0700984static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
985{
Dmitry Shmidt051af732013-10-22 13:52:46 -0700986 size_t i;
987
Dmitry Shmidt04949592012-07-19 12:16:46 -0700988 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);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800996 if (cred->password && cred->ext_password)
997 fprintf(f, "\tpassword=ext:%s\n", cred->password);
998 else if (cred->password)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700999 fprintf(f, "\tpassword=\"%s\"\n", cred->password);
1000 if (cred->ca_cert)
1001 fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001002 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);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001009 if (cred->imsi)
1010 fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
1011 if (cred->milenage)
1012 fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
Dmitry Shmidt051af732013-10-22 13:52:46 -07001013 for (i = 0; i < cred->num_domain; i++)
1014 fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
1015 if (cred->domain_suffix_match)
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07001016 fprintf(f, "\tdomain_suffix_match=\"%s\"\n",
Dmitry Shmidt051af732013-10-22 13:52:46 -07001017 cred->domain_suffix_match);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001018 if (cred->roaming_consortium_len) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001019 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);
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07001028 if (name)
1029 fprintf(f, "\teap=%s\n", name);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001030 }
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) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001036 size_t j;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001037 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 }
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001045 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)
Dmitry Shmidt61593f02014-04-21 16:27:35 -07001057 fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001058 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);
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07001080
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 }
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07001106
Roshan Pius3a1667e2018-07-03 15:17:14 -07001107 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
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07001121 if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
1122 fprintf(f, "\tsim_num=%d\n", cred->sim_num);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001123}
1124
1125
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001126#ifndef CONFIG_NO_CONFIG_BLOBS
1127static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
1128{
Ahmed ElArabawy0ff61c52019-12-26 12:38:39 -08001129 char *encoded;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001130
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
Dmitry Shmidt04949592012-07-19 12:16:46 -07001142static 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
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001159static 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);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001172 if (config->disable_scan_offload)
1173 fprintf(f, "disable_scan_offload=%d\n",
1174 config->disable_scan_offload);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001175 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);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001186 if (config->openssl_ciphers)
1187 fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001188 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);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001192 if (config->driver_param)
1193 fprintf(f, "driver_param=%s\n", config->driver_param);
1194 if (config->dot11RSNAConfigPMKLifetime)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001195 fprintf(f, "dot11RSNAConfigPMKLifetime=%u\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001196 config->dot11RSNAConfigPMKLifetime);
1197 if (config->dot11RSNAConfigPMKReauthThreshold)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001198 fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%u\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001199 config->dot11RSNAConfigPMKReauthThreshold);
1200 if (config->dot11RSNAConfigSATimeout)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001201 fprintf(f, "dot11RSNAConfigSATimeout=%u\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001202 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 }
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001211 if (config->auto_uuid)
1212 fprintf(f, "auto_uuid=%d\n", config->auto_uuid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001213 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));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001227 if (os_strcmp(buf, "0-00000000-0") != 0)
1228 fprintf(f, "device_type=%s\n", buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001229 }
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);
Hai Shalom021b0b52019-04-10 11:17:58 -07001238 if (config->wps_cred_add_sae)
1239 fprintf(f, "wps_cred_add_sae=%d\n",
1240 config->wps_cred_add_sae);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001241 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 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001251#endif /* CONFIG_WPS */
1252#ifdef CONFIG_P2P
Paul Stewart092955c2017-02-06 09:13:09 -08001253 {
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 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001264 if (config->p2p_listen_reg_class)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001265 fprintf(f, "p2p_listen_reg_class=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001266 config->p2p_listen_reg_class);
1267 if (config->p2p_listen_channel)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001268 fprintf(f, "p2p_listen_channel=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001269 config->p2p_listen_channel);
1270 if (config->p2p_oper_reg_class)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001271 fprintf(f, "p2p_oper_reg_class=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001272 config->p2p_oper_reg_class);
1273 if (config->p2p_oper_channel)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001274 fprintf(f, "p2p_oper_channel=%d\n", config->p2p_oper_channel);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001275 if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001276 fprintf(f, "p2p_go_intent=%d\n", config->p2p_go_intent);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001277 if (config->p2p_ssid_postfix)
1278 fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
1279 if (config->persistent_reconnect)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001280 fprintf(f, "persistent_reconnect=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001281 config->persistent_reconnect);
1282 if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001283 fprintf(f, "p2p_intra_bss=%d\n", config->p2p_intra_bss);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001284 if (config->p2p_group_idle)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001285 fprintf(f, "p2p_group_idle=%d\n", config->p2p_group_idle);
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07001286 if (config->p2p_passphrase_len)
1287 fprintf(f, "p2p_passphrase_len=%u\n",
1288 config->p2p_passphrase_len);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001289 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 }
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001299 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);
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07001308 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);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001312 if (config->p2p_go_ht40)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001313 fprintf(f, "p2p_go_ht40=%d\n", config->p2p_go_ht40);
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001314 if (config->p2p_go_vht)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001315 fprintf(f, "p2p_go_vht=%d\n", config->p2p_go_vht);
Hai Shalom74f70d42019-02-11 14:42:39 -08001316 if (config->p2p_go_he)
1317 fprintf(f, "p2p_go_he=%d\n", config->p2p_go_he);
Ahmed ElArabawy0ff61c52019-12-26 12:38:39 -08001318 if (config->p2p_go_edmg)
1319 fprintf(f, "p2p_go_edmg=%d\n", config->p2p_go_edmg);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001320 if (config->p2p_go_ctwindow != DEFAULT_P2P_GO_CTWINDOW)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001321 fprintf(f, "p2p_go_ctwindow=%d\n", config->p2p_go_ctwindow);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001322 if (config->p2p_disabled)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001323 fprintf(f, "p2p_disabled=%d\n", config->p2p_disabled);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001324 if (config->p2p_no_group_iface)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001325 fprintf(f, "p2p_no_group_iface=%d\n",
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001326 config->p2p_no_group_iface);
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001327 if (config->p2p_ignore_shared_freq)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001328 fprintf(f, "p2p_ignore_shared_freq=%d\n",
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001329 config->p2p_ignore_shared_freq);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07001330 if (config->p2p_cli_probe)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001331 fprintf(f, "p2p_cli_probe=%d\n", config->p2p_cli_probe);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001332 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);
Dmitry Shmidt1d6bf422016-01-19 15:51:35 -08001335 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]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001351#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);
Paul Stewart092955c2017-02-06 09:13:09 -08001367 if (config->filter_rssi)
1368 fprintf(f, "filter_rssi=%d\n", config->filter_rssi);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001369 if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
1370 fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
Roshan Pius3a1667e2018-07-03 15:17:14 -07001371 if (config->ap_isolate != DEFAULT_AP_ISOLATE)
1372 fprintf(f, "ap_isolate=%u\n", config->ap_isolate);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001373 if (config->disassoc_low_ack)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001374 fprintf(f, "disassoc_low_ack=%d\n", config->disassoc_low_ack);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001375#ifdef CONFIG_HS20
1376 if (config->hs20)
1377 fprintf(f, "hs20=1\n");
1378#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001379#ifdef CONFIG_INTERWORKING
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001380 if (config->interworking)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001381 fprintf(f, "interworking=%d\n", config->interworking);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001382 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);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001387 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);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001398#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001399 if (config->pbc_in_m1)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001400 fprintf(f, "pbc_in_m1=%d\n", config->pbc_in_m1);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001401 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 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001411
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);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001421 if (config->okc)
1422 fprintf(f, "okc=%d\n", config->okc);
1423 if (config->pmf)
1424 fprintf(f, "pmf=%d\n", config->pmf);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08001425 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);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001429
1430 if (config->sae_groups) {
1431 int i;
1432 fprintf(f, "sae_groups=");
Paul Stewart092955c2017-02-06 09:13:09 -08001433 for (i = 0; config->sae_groups[i] > 0; i++) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001434 fprintf(f, "%s%d", i > 0 ? " " : "",
1435 config->sae_groups[i]);
1436 }
1437 fprintf(f, "\n");
1438 }
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001439
Hai Shalomc3565922019-10-28 11:58:20 -07001440 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
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001447 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 }
Dmitry Shmidt444d5672013-04-01 13:08:44 -07001457
1458 if (config->ignore_old_scan_res)
1459 fprintf(f, "ignore_old_scan_res=%d\n",
1460 config->ignore_old_scan_res);
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001461
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++) {
Dmitry Shmidt41712582015-06-29 11:02:15 -07001466 fprintf(f, "%s%d", i > 0 ? " " : "",
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001467 config->freq_list[i]);
1468 }
1469 fprintf(f, "\n");
1470 }
Dmitry Shmidtea69e842013-05-13 14:52:28 -07001471 if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
1472 fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001473
1474 if (config->sched_scan_interval)
1475 fprintf(f, "sched_scan_interval=%u\n",
1476 config->sched_scan_interval);
Dmitry Shmidt051af732013-10-22 13:52:46 -07001477
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001478 if (config->sched_scan_start_delay)
1479 fprintf(f, "sched_scan_start_delay=%u\n",
1480 config->sched_scan_start_delay);
1481
Dmitry Shmidt051af732013-10-22 13:52:46 -07001482 if (config->external_sim)
1483 fprintf(f, "external_sim=%d\n", config->external_sim);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001484
1485 if (config->tdls_external_control)
1486 fprintf(f, "tdls_external_control=%d\n",
1487 config->tdls_external_control);
Dmitry Shmidta38abf92014-03-06 13:38:44 -08001488
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07001489 if (config->wowlan_triggers)
Dmitry Shmidt03658832014-08-13 11:03:49 -07001490 fprintf(f, "wowlan_triggers=%s\n",
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07001491 config->wowlan_triggers);
1492
Dmitry Shmidta38abf92014-03-06 13:38:44 -08001493 if (config->bgscan)
1494 fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07001495
Paul Stewart092955c2017-02-06 09:13:09 -08001496 if (config->autoscan)
1497 fprintf(f, "autoscan=%s\n", config->autoscan);
1498
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07001499 if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY)
1500 fprintf(f, "p2p_search_delay=%u\n",
1501 config->p2p_search_delay);
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001502
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);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001512
1513 if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001514 fprintf(f, "key_mgmt_offload=%d\n", config->key_mgmt_offload);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001515
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);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08001521
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);
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001528
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001529 if (config->dot11RSNASAERetransPeriod !=
1530 DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD)
1531 fprintf(f, "dot11RSNASAERetransPeriod=%d\n",
1532 config->dot11RSNASAERetransPeriod);
1533
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001534 if (config->passive_scan)
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001535 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);
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07001540
1541 if (config->wps_priority)
1542 fprintf(f, "wps_priority=%d\n", config->wps_priority);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001543
1544 if (config->wpa_rsc_relaxation != DEFAULT_WPA_RSC_RELAXATION)
1545 fprintf(f, "wpa_rsc_relaxation=%d\n",
1546 config->wpa_rsc_relaxation);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08001547
1548 if (config->sched_scan_plans)
1549 fprintf(f, "sched_scan_plans=%s\n", config->sched_scan_plans);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001550
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);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001556 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);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001562#endif /* CONFIG_MBO */
1563
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -07001564 if (config->gas_address3)
1565 fprintf(f, "gas_address3=%d\n", config->gas_address3);
Dmitry Shmidt7d175302016-09-06 13:11:34 -07001566
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);
Paul Stewart092955c2017-02-06 09:13:09 -08001571
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);
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08001581
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);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001587 if (config->dpp_config_processing)
1588 fprintf(f, "dpp_config_processing=%d\n",
1589 config->dpp_config_processing);
Hai Shalom39ba6fc2019-01-22 12:40:38 -08001590 if (config->coloc_intf_reporting)
1591 fprintf(f, "coloc_intf_reporting=%d\n",
1592 config->coloc_intf_reporting);
Jimmy Chenf887c7b2018-11-13 15:19:57 +08001593 if (config->p2p_device_random_mac_addr)
1594 fprintf(f, "p2p_device_random_mac_addr=%d\n",
1595 config->p2p_device_random_mac_addr);
Hai Shalom39ba6fc2019-01-22 12:40:38 -08001596 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));
Jimmy Chen36c21992018-11-29 16:46:43 +08001599 if (config->p2p_interface_random_mac_addr)
1600 fprintf(f, "p2p_interface_random_mac_addr=%d\n",
1601 config->p2p_interface_random_mac_addr);
Jimmy Chen0bb4f862019-03-21 18:41:47 +08001602 if (config->bss_no_flush_when_down)
1603 fprintf(f, "bss_no_flush_when_down=%d\n",
1604 config->bss_no_flush_when_down);
Hai Shalom81f62d82019-07-22 12:10:00 -07001605 if (config->disable_btm)
1606 fprintf(f, "disable_btm=1\n");
Hai Shalomfdcde762020-04-02 11:19:20 -07001607 if (config->extended_key_id != DEFAULT_EXTENDED_KEY_ID)
1608 fprintf(f, "extended_key_id=%d\n",
1609 config->extended_key_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001610}
1611
1612#endif /* CONFIG_NO_CONFIG_WRITE */
1613
1614
1615int wpa_config_write(const char *name, struct wpa_config *config)
1616{
1617#ifndef CONFIG_NO_CONFIG_WRITE
1618 FILE *f;
1619 struct wpa_ssid *ssid;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001620 struct wpa_cred *cred;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001621#ifndef CONFIG_NO_CONFIG_BLOBS
1622 struct wpa_config_blob *blob;
1623#endif /* CONFIG_NO_CONFIG_BLOBS */
1624 int ret = 0;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001625 const char *orig_name = name;
Hai Shalomfdcde762020-04-02 11:19:20 -07001626 int tmp_len;
1627 char *tmp_name;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001628
Hai Shalomfdcde762020-04-02 11:19:20 -07001629 if (!name) {
1630 wpa_printf(MSG_ERROR, "No configuration file for writing");
1631 return -1;
1632 }
1633
1634 tmp_len = os_strlen(name) + 5; /* allow space for .tmp suffix */
1635 tmp_name = os_malloc(tmp_len);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001636 if (tmp_name) {
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001637 os_snprintf(tmp_name, tmp_len, "%s.tmp", name);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001638 name = tmp_name;
1639 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001640
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001641 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001642
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001643 f = fopen(name, "w");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001644 if (f == NULL) {
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001645 wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
1646 os_free(tmp_name);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001647 return -1;
1648 }
1649
1650 wpa_config_write_global(f, config);
1651
Dmitry Shmidt04949592012-07-19 12:16:46 -07001652 for (cred = config->cred; cred; cred = cred->next) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001653 if (cred->temporary)
1654 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001655 fprintf(f, "\ncred={\n");
1656 wpa_config_write_cred(f, cred);
1657 fprintf(f, "}\n");
1658 }
1659
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001660 for (ssid = config->ssid; ssid; ssid = ssid->next) {
1661 if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
1662 continue; /* do not save temporary networks */
Hai Shalomfdcde762020-04-02 11:19:20 -07001663 if (wpa_key_mgmt_wpa_psk_no_sae(ssid->key_mgmt) &&
1664 !ssid->psk_set && !ssid->passphrase)
1665 continue; /* do not save invalid network */
1666 if (wpa_key_mgmt_sae(ssid->key_mgmt) &&
1667 !ssid->passphrase && !ssid->sae_password)
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001668 continue; /* do not save invalid network */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001669 fprintf(f, "\nnetwork={\n");
1670 wpa_config_write_network(f, ssid);
1671 fprintf(f, "}\n");
1672 }
1673
1674#ifndef CONFIG_NO_CONFIG_BLOBS
1675 for (blob = config->blobs; blob; blob = blob->next) {
1676 ret = wpa_config_write_blob(f, blob);
1677 if (ret)
1678 break;
1679 }
1680#endif /* CONFIG_NO_CONFIG_BLOBS */
1681
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001682 os_fdatasync(f);
Mitchell Wills447c7ff2015-08-24 17:24:30 -07001683
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001684 fclose(f);
1685
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001686 if (tmp_name) {
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001687 int chmod_ret = 0;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001688
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001689#ifdef ANDROID
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001690 chmod_ret = chmod(tmp_name,
1691 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
1692#endif /* ANDROID */
1693 if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0)
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001694 ret = -1;
1695
1696 os_free(tmp_name);
1697 }
1698
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001699 wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001700 orig_name, ret ? "un" : "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001701 return ret;
1702#else /* CONFIG_NO_CONFIG_WRITE */
1703 return -1;
1704#endif /* CONFIG_NO_CONFIG_WRITE */
1705}