blob: 0d708507e677136341fd13dabbf07c694b62136a [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Configuration backend: text file
Dmitry Shmidt04949592012-07-19 12:16:46 -07003 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 *
8 * This file implements a configuration backend for text files. All the
9 * configuration information is stored in a text file that uses a format
10 * described in the sample configuration file, wpa_supplicant.conf.
11 */
12
13#include "includes.h"
Dmitry Shmidt7f656022015-02-25 14:36:37 -080014#ifdef ANDROID
15#include <sys/stat.h>
16#endif /* ANDROID */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070017
18#include "common.h"
19#include "config.h"
20#include "base64.h"
21#include "uuid.h"
Dmitry 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) &&
144 !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
145 !(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
146 /* Group cipher cannot be stronger than the pairwise cipher. */
147 wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
148 " list since it was not allowed for pairwise "
149 "cipher", line);
150 ssid->group_cipher &= ~WPA_CIPHER_CCMP;
151 }
152
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800153 if (ssid->mode == WPAS_MODE_MESH &&
154 (ssid->key_mgmt != WPA_KEY_MGMT_NONE &&
155 ssid->key_mgmt != WPA_KEY_MGMT_SAE)) {
156 wpa_printf(MSG_ERROR,
157 "Line %d: key_mgmt for mesh network should be open or SAE",
158 line);
159 errors++;
160 }
161
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700162 return errors;
163}
164
165
166static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
167{
168 struct wpa_ssid *ssid;
169 int errors = 0, end = 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700170 char buf[2000], *pos, *pos2;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700171
172 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
173 *line);
174 ssid = os_zalloc(sizeof(*ssid));
175 if (ssid == NULL)
176 return NULL;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700177 dl_list_init(&ssid->psk_list);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700178 ssid->id = id;
179
180 wpa_config_set_network_defaults(ssid);
181
182 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
183 if (os_strcmp(pos, "}") == 0) {
184 end = 1;
185 break;
186 }
187
188 pos2 = os_strchr(pos, '=');
189 if (pos2 == NULL) {
190 wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
191 "'%s'.", *line, pos);
192 errors++;
193 continue;
194 }
195
196 *pos2++ = '\0';
197 if (*pos2 == '"') {
198 if (os_strchr(pos2 + 1, '"') == NULL) {
199 wpa_printf(MSG_ERROR, "Line %d: invalid "
200 "quotation '%s'.", *line, pos2);
201 errors++;
202 continue;
203 }
204 }
205
206 if (wpa_config_set(ssid, pos, pos2, *line) < 0)
207 errors++;
208 }
209
210 if (!end) {
211 wpa_printf(MSG_ERROR, "Line %d: network block was not "
212 "terminated properly.", *line);
213 errors++;
214 }
215
216 errors += wpa_config_validate_network(ssid, *line);
217
218 if (errors) {
219 wpa_config_free_ssid(ssid);
220 ssid = NULL;
221 }
222
223 return ssid;
224}
225
226
Dmitry Shmidt04949592012-07-19 12:16:46 -0700227static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
228{
229 struct wpa_cred *cred;
230 int errors = 0, end = 0;
231 char buf[256], *pos, *pos2;
232
233 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
234 cred = os_zalloc(sizeof(*cred));
235 if (cred == NULL)
236 return NULL;
237 cred->id = id;
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -0700238 cred->sim_num = DEFAULT_USER_SELECTED_SIM;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700239
240 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
241 if (os_strcmp(pos, "}") == 0) {
242 end = 1;
243 break;
244 }
245
246 pos2 = os_strchr(pos, '=');
247 if (pos2 == NULL) {
248 wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
249 "'%s'.", *line, pos);
250 errors++;
251 continue;
252 }
253
254 *pos2++ = '\0';
255 if (*pos2 == '"') {
256 if (os_strchr(pos2 + 1, '"') == NULL) {
257 wpa_printf(MSG_ERROR, "Line %d: invalid "
258 "quotation '%s'.", *line, pos2);
259 errors++;
260 continue;
261 }
262 }
263
264 if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
265 errors++;
266 }
267
268 if (!end) {
269 wpa_printf(MSG_ERROR, "Line %d: cred block was not "
270 "terminated properly.", *line);
271 errors++;
272 }
273
274 if (errors) {
275 wpa_config_free_cred(cred);
276 cred = NULL;
277 }
278
279 return cred;
280}
281
282
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700283#ifndef CONFIG_NO_CONFIG_BLOBS
284static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
285 const char *name)
286{
287 struct wpa_config_blob *blob;
288 char buf[256], *pos;
289 unsigned char *encoded = NULL, *nencoded;
290 int end = 0;
291 size_t encoded_len = 0, len;
292
293 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
294 *line, name);
295
296 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
297 if (os_strcmp(pos, "}") == 0) {
298 end = 1;
299 break;
300 }
301
302 len = os_strlen(pos);
303 nencoded = os_realloc(encoded, encoded_len + len);
304 if (nencoded == NULL) {
305 wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
306 "blob", *line);
307 os_free(encoded);
308 return NULL;
309 }
310 encoded = nencoded;
311 os_memcpy(encoded + encoded_len, pos, len);
312 encoded_len += len;
313 }
314
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700315 if (!end || !encoded) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700316 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
317 "properly", *line);
318 os_free(encoded);
319 return NULL;
320 }
321
322 blob = os_zalloc(sizeof(*blob));
323 if (blob == NULL) {
324 os_free(encoded);
325 return NULL;
326 }
327 blob->name = os_strdup(name);
328 blob->data = base64_decode(encoded, encoded_len, &blob->len);
329 os_free(encoded);
330
331 if (blob->name == NULL || blob->data == NULL) {
332 wpa_config_free_blob(blob);
333 return NULL;
334 }
335
336 return blob;
337}
338
339
340static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
341 int *line, char *bname)
342{
343 char *name_end;
344 struct wpa_config_blob *blob;
345
346 name_end = os_strchr(bname, '=');
347 if (name_end == NULL) {
348 wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
349 *line);
350 return -1;
351 }
352 *name_end = '\0';
353
354 blob = wpa_config_read_blob(f, line, bname);
355 if (blob == NULL) {
356 wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
357 *line, bname);
358 return -1;
359 }
360 wpa_config_set_blob(config, blob);
361 return 0;
362}
363#endif /* CONFIG_NO_CONFIG_BLOBS */
364
365
Dmitry Shmidt64f47c52013-04-16 10:41:54 -0700366struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700367{
368 FILE *f;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700369 char buf[512], *pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700370 int errors = 0, line = 0;
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700371 struct wpa_ssid *ssid, *tail, *head;
372 struct wpa_cred *cred, *cred_tail, *cred_head;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700373 struct wpa_config *config;
374 int id = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700375 int cred_id = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700376
Dmitry Shmidt64f47c52013-04-16 10:41:54 -0700377 if (name == NULL)
378 return NULL;
379 if (cfgp)
380 config = cfgp;
381 else
382 config = wpa_config_alloc_empty(NULL, NULL);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700383 if (config == NULL) {
384 wpa_printf(MSG_ERROR, "Failed to allocate config file "
385 "structure");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700386 return NULL;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700387 }
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700388 tail = head = config->ssid;
389 while (tail && tail->next)
390 tail = tail->next;
391 cred_tail = cred_head = config->cred;
392 while (cred_tail && cred_tail->next)
393 cred_tail = cred_tail->next;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700394
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700395 wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
396 f = fopen(name, "r");
397 if (f == NULL) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700398 wpa_printf(MSG_ERROR, "Failed to open config file '%s', "
399 "error: %s", name, strerror(errno));
Dmitry Shmidte3d76d92018-02-01 00:34:54 +0000400 if (config != cfgp)
401 os_free(config);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700402 return NULL;
403 }
404
405 while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
406 if (os_strcmp(pos, "network={") == 0) {
407 ssid = wpa_config_read_network(f, &line, id++);
408 if (ssid == NULL) {
409 wpa_printf(MSG_ERROR, "Line %d: failed to "
410 "parse network block.", line);
411 errors++;
412 continue;
413 }
414 if (head == NULL) {
415 head = tail = ssid;
416 } else {
417 tail->next = ssid;
418 tail = ssid;
419 }
420 if (wpa_config_add_prio_network(config, ssid)) {
421 wpa_printf(MSG_ERROR, "Line %d: failed to add "
422 "network block to priority list.",
423 line);
424 errors++;
425 continue;
426 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700427 } else if (os_strcmp(pos, "cred={") == 0) {
428 cred = wpa_config_read_cred(f, &line, cred_id++);
429 if (cred == NULL) {
430 wpa_printf(MSG_ERROR, "Line %d: failed to "
431 "parse cred block.", line);
432 errors++;
433 continue;
434 }
435 if (cred_head == NULL) {
436 cred_head = cred_tail = cred;
437 } else {
438 cred_tail->next = cred;
439 cred_tail = cred;
440 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700441#ifndef CONFIG_NO_CONFIG_BLOBS
442 } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
443 if (wpa_config_process_blob(config, f, &line, pos + 12)
444 < 0) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700445 wpa_printf(MSG_ERROR, "Line %d: failed to "
446 "process blob.", line);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700447 errors++;
448 continue;
449 }
450#endif /* CONFIG_NO_CONFIG_BLOBS */
451 } else if (wpa_config_process_global(config, pos, line) < 0) {
452 wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
453 "line '%s'.", line, pos);
454 errors++;
455 continue;
456 }
457 }
458
459 fclose(f);
460
Iliyan Malchev97d98062013-04-23 02:37:51 +0000461 config->ssid = head;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700462 wpa_config_debug_dump_networks(config);
Iliyan Malchev97d98062013-04-23 02:37:51 +0000463 config->cred = cred_head;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700464
465#ifndef WPA_IGNORE_CONFIG_ERRORS
466 if (errors) {
467 wpa_config_free(config);
468 config = NULL;
469 head = NULL;
470 }
471#endif /* WPA_IGNORE_CONFIG_ERRORS */
472
473 return config;
474}
475
476
477#ifndef CONFIG_NO_CONFIG_WRITE
478
479static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
480{
481 char *value = wpa_config_get(ssid, field);
482 if (value == NULL)
483 return;
484 fprintf(f, "\t%s=%s\n", field, value);
485 os_free(value);
486}
487
488
489static void write_int(FILE *f, const char *field, int value, int def)
490{
491 if (value == def)
492 return;
493 fprintf(f, "\t%s=%d\n", field, value);
494}
495
496
497static void write_bssid(FILE *f, struct wpa_ssid *ssid)
498{
499 char *value = wpa_config_get(ssid, "bssid");
500 if (value == NULL)
501 return;
502 fprintf(f, "\tbssid=%s\n", value);
503 os_free(value);
504}
505
506
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700507static void write_bssid_hint(FILE *f, struct wpa_ssid *ssid)
508{
509 char *value = wpa_config_get(ssid, "bssid_hint");
510
511 if (!value)
512 return;
513 fprintf(f, "\tbssid_hint=%s\n", value);
514 os_free(value);
515}
516
517
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700518static void write_psk(FILE *f, struct wpa_ssid *ssid)
519{
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -0700520 char *value;
521
522 if (ssid->mem_only_psk)
523 return;
524
525 value = wpa_config_get(ssid, "psk");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700526 if (value == NULL)
527 return;
528 fprintf(f, "\tpsk=%s\n", value);
529 os_free(value);
530}
531
532
533static void write_proto(FILE *f, struct wpa_ssid *ssid)
534{
535 char *value;
536
537 if (ssid->proto == DEFAULT_PROTO)
538 return;
539
540 value = wpa_config_get(ssid, "proto");
541 if (value == NULL)
542 return;
543 if (value[0])
544 fprintf(f, "\tproto=%s\n", value);
545 os_free(value);
546}
547
548
549static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
550{
551 char *value;
552
553 if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
554 return;
555
556 value = wpa_config_get(ssid, "key_mgmt");
557 if (value == NULL)
558 return;
559 if (value[0])
560 fprintf(f, "\tkey_mgmt=%s\n", value);
561 os_free(value);
562}
563
564
565static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
566{
567 char *value;
568
569 if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
570 return;
571
572 value = wpa_config_get(ssid, "pairwise");
573 if (value == NULL)
574 return;
575 if (value[0])
576 fprintf(f, "\tpairwise=%s\n", value);
577 os_free(value);
578}
579
580
581static void write_group(FILE *f, struct wpa_ssid *ssid)
582{
583 char *value;
584
585 if (ssid->group_cipher == DEFAULT_GROUP)
586 return;
587
588 value = wpa_config_get(ssid, "group");
589 if (value == NULL)
590 return;
591 if (value[0])
592 fprintf(f, "\tgroup=%s\n", value);
593 os_free(value);
594}
595
596
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700597static void write_group_mgmt(FILE *f, struct wpa_ssid *ssid)
598{
599 char *value;
600
601 if (!ssid->group_mgmt_cipher)
602 return;
603
604 value = wpa_config_get(ssid, "group_mgmt");
605 if (!value)
606 return;
607 if (value[0])
608 fprintf(f, "\tgroup_mgmt=%s\n", value);
609 os_free(value);
610}
611
612
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700613static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
614{
615 char *value;
616
617 if (ssid->auth_alg == 0)
618 return;
619
620 value = wpa_config_get(ssid, "auth_alg");
621 if (value == NULL)
622 return;
623 if (value[0])
624 fprintf(f, "\tauth_alg=%s\n", value);
625 os_free(value);
626}
627
628
629#ifdef IEEE8021X_EAPOL
630static void write_eap(FILE *f, struct wpa_ssid *ssid)
631{
632 char *value;
633
634 value = wpa_config_get(ssid, "eap");
635 if (value == NULL)
636 return;
637
638 if (value[0])
639 fprintf(f, "\teap=%s\n", value);
640 os_free(value);
641}
642#endif /* IEEE8021X_EAPOL */
643
644
645static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
646{
647 char field[20], *value;
648 int res;
649
650 res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800651 if (os_snprintf_error(sizeof(field), res))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700652 return;
653 value = wpa_config_get(ssid, field);
654 if (value) {
655 fprintf(f, "\t%s=%s\n", field, value);
656 os_free(value);
657 }
658}
659
660
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800661#ifdef CONFIG_P2P
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700662
Dmitry Shmidt54605472013-11-08 11:10:19 -0800663static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid)
664{
665 char *value = wpa_config_get(ssid, "go_p2p_dev_addr");
666 if (value == NULL)
667 return;
668 fprintf(f, "\tgo_p2p_dev_addr=%s\n", value);
669 os_free(value);
670}
671
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800672static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
673{
674 char *value = wpa_config_get(ssid, "p2p_client_list");
675 if (value == NULL)
676 return;
677 fprintf(f, "\tp2p_client_list=%s\n", value);
678 os_free(value);
679}
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700680
681
682static void write_psk_list(FILE *f, struct wpa_ssid *ssid)
683{
684 struct psk_list_entry *psk;
685 char hex[32 * 2 + 1];
686
687 dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) {
688 wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
689 fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n",
690 psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
691 }
692}
693
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800694#endif /* CONFIG_P2P */
695
696
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800697#ifdef CONFIG_MACSEC
698
699static void write_mka_cak(FILE *f, struct wpa_ssid *ssid)
700{
701 char *value;
702
703 if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK))
704 return;
705
706 value = wpa_config_get(ssid, "mka_cak");
707 if (!value)
708 return;
709 fprintf(f, "\tmka_cak=%s\n", value);
710 os_free(value);
711}
712
713
714static void write_mka_ckn(FILE *f, struct wpa_ssid *ssid)
715{
716 char *value;
717
718 if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN))
719 return;
720
721 value = wpa_config_get(ssid, "mka_ckn");
722 if (!value)
723 return;
724 fprintf(f, "\tmka_ckn=%s\n", value);
725 os_free(value);
726}
727
728#endif /* CONFIG_MACSEC */
729
730
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700731static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
732{
733 int i;
734
735#define STR(t) write_str(f, #t, ssid)
736#define INT(t) write_int(f, #t, ssid->t, 0)
737#define INTe(t) write_int(f, #t, ssid->eap.t, 0)
738#define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
739#define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
740
741 STR(ssid);
742 INT(scan_ssid);
743 write_bssid(f, ssid);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700744 write_bssid_hint(f, ssid);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800745 write_str(f, "bssid_blacklist", ssid);
746 write_str(f, "bssid_whitelist", ssid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700747 write_psk(f, ssid);
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -0700748 INT(mem_only_psk);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700749 STR(sae_password);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700750 write_proto(f, ssid);
751 write_key_mgmt(f, ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700752 INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700753 write_pairwise(f, ssid);
754 write_group(f, ssid);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700755 write_group_mgmt(f, ssid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700756 write_auth_alg(f, ssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700757 STR(bgscan);
758 STR(autoscan);
Dmitry Shmidt56052862013-10-04 10:23:25 -0700759 STR(scan_freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700760#ifdef IEEE8021X_EAPOL
761 write_eap(f, ssid);
762 STR(identity);
763 STR(anonymous_identity);
764 STR(password);
765 STR(ca_cert);
766 STR(ca_path);
767 STR(client_cert);
768 STR(private_key);
769 STR(private_key_passwd);
770 STR(dh_file);
771 STR(subject_match);
772 STR(altsubject_match);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700773 STR(domain_suffix_match);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800774 STR(domain_match);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700775 STR(ca_cert2);
776 STR(ca_path2);
777 STR(client_cert2);
778 STR(private_key2);
779 STR(private_key2_passwd);
780 STR(dh_file2);
781 STR(subject_match2);
782 STR(altsubject_match2);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700783 STR(domain_suffix_match2);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800784 STR(domain_match2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700785 STR(phase1);
786 STR(phase2);
787 STR(pcsc);
788 STR(pin);
789 STR(engine_id);
790 STR(key_id);
791 STR(cert_id);
792 STR(ca_cert_id);
793 STR(key2_id);
794 STR(pin2);
795 STR(engine2_id);
796 STR(cert2_id);
797 STR(ca_cert2_id);
798 INTe(engine);
799 INTe(engine2);
800 INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800801 STR(openssl_ciphers);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800802 INTe(erp);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700803#endif /* IEEE8021X_EAPOL */
804 for (i = 0; i < 4; i++)
805 write_wep_key(f, i, ssid);
806 INT(wep_tx_keyidx);
807 INT(priority);
808#ifdef IEEE8021X_EAPOL
809 INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
810 STR(pac_file);
811 INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700812 INTe(ocsp);
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -0700813 INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700814#endif /* IEEE8021X_EAPOL */
815 INT(mode);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800816 INT(no_auto_peer);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800817 INT(frequency);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800818 INT(fixed_freq);
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -0800819#ifdef CONFIG_ACS
820 INT(acs);
821#endif /* CONFIG_ACS */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800822 write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700823 INT(disabled);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800824 INT(mixed_cell);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700825 INT(vht);
826 INT_DEF(ht, 1);
827 INT(ht40);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800828 INT(max_oper_chwidth);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700829 INT(vht_center_freq1);
830 INT(vht_center_freq2);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800831 INT(pbss);
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700832 INT(wps_disabled);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700833 INT(fils_dh_group);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700834#ifdef CONFIG_IEEE80211W
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800835 write_int(f, "ieee80211w", ssid->ieee80211w,
836 MGMT_FRAME_PROTECTION_DEFAULT);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700837#endif /* CONFIG_IEEE80211W */
838 STR(id_str);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800839#ifdef CONFIG_P2P
Dmitry Shmidt54605472013-11-08 11:10:19 -0800840 write_go_p2p_dev_addr(f, ssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800841 write_p2p_client_list(f, ssid);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700842 write_psk_list(f, ssid);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800843#endif /* CONFIG_P2P */
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800844 INT(ap_max_inactivity);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -0800845 INT(dtim_period);
846 INT(beacon_int);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700847#ifdef CONFIG_MACSEC
848 INT(macsec_policy);
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800849 write_mka_cak(f, ssid);
850 write_mka_ckn(f, ssid);
851 INT(macsec_integ_only);
852 INT(macsec_port);
Dmitry Shmidt29333592017-01-09 12:27:11 -0800853 INT_DEF(mka_priority, DEFAULT_PRIO_NOT_KEY_SERVER);
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700854#endif /* CONFIG_MACSEC */
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700855#ifdef CONFIG_HS20
856 INT(update_identifier);
857#endif /* CONFIG_HS20 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700858 write_int(f, "mac_addr", ssid->mac_addr, -1);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800859#ifdef CONFIG_MESH
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800860 STR(mesh_basic_rates);
861 INT_DEF(dot11MeshMaxRetries, DEFAULT_MESH_MAX_RETRIES);
862 INT_DEF(dot11MeshRetryTimeout, DEFAULT_MESH_RETRY_TIMEOUT);
863 INT_DEF(dot11MeshConfirmTimeout, DEFAULT_MESH_CONFIRM_TIMEOUT);
864 INT_DEF(dot11MeshHoldingTimeout, DEFAULT_MESH_HOLDING_TIMEOUT);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700865 INT_DEF(mesh_rssi_threshold, DEFAULT_MESH_RSSI_THRESHOLD);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800866#endif /* CONFIG_MESH */
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800867 INT(wpa_ptk_rekey);
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -0700868 INT(group_rekey);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800869 INT(ignore_broadcast_ssid);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700870#ifdef CONFIG_DPP
871 STR(dpp_connector);
872 STR(dpp_netaccesskey);
873 INT(dpp_netaccesskey_expiry);
874 STR(dpp_csign);
875#endif /* CONFIG_DPP */
876 INT(owe_group);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800877#ifdef CONFIG_HT_OVERRIDES
878 INT_DEF(disable_ht, DEFAULT_DISABLE_HT);
879 INT_DEF(disable_ht40, DEFAULT_DISABLE_HT40);
880 INT_DEF(disable_sgi, DEFAULT_DISABLE_SGI);
881 INT_DEF(disable_ldpc, DEFAULT_DISABLE_LDPC);
882 INT(ht40_intolerant);
883 INT_DEF(disable_max_amsdu, DEFAULT_DISABLE_MAX_AMSDU);
884 INT_DEF(ampdu_factor, DEFAULT_AMPDU_FACTOR);
885 INT_DEF(ampdu_density, DEFAULT_AMPDU_DENSITY);
886 STR(ht_mcs);
887#endif /* CONFIG_HT_OVERRIDES */
888#ifdef CONFIG_VHT_OVERRIDES
889 INT(disable_vht);
890 INT(vht_capa);
891 INT(vht_capa_mask);
892 INT_DEF(vht_rx_mcs_nss_1, -1);
893 INT_DEF(vht_rx_mcs_nss_2, -1);
894 INT_DEF(vht_rx_mcs_nss_3, -1);
895 INT_DEF(vht_rx_mcs_nss_4, -1);
896 INT_DEF(vht_rx_mcs_nss_5, -1);
897 INT_DEF(vht_rx_mcs_nss_6, -1);
898 INT_DEF(vht_rx_mcs_nss_7, -1);
899 INT_DEF(vht_rx_mcs_nss_8, -1);
900 INT_DEF(vht_tx_mcs_nss_1, -1);
901 INT_DEF(vht_tx_mcs_nss_2, -1);
902 INT_DEF(vht_tx_mcs_nss_3, -1);
903 INT_DEF(vht_tx_mcs_nss_4, -1);
904 INT_DEF(vht_tx_mcs_nss_5, -1);
905 INT_DEF(vht_tx_mcs_nss_6, -1);
906 INT_DEF(vht_tx_mcs_nss_7, -1);
907 INT_DEF(vht_tx_mcs_nss_8, -1);
908#endif /* CONFIG_VHT_OVERRIDES */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700909
910#undef STR
911#undef INT
912#undef INT_DEF
913}
914
915
Dmitry Shmidt04949592012-07-19 12:16:46 -0700916static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
917{
Dmitry Shmidt051af732013-10-22 13:52:46 -0700918 size_t i;
919
Dmitry Shmidt04949592012-07-19 12:16:46 -0700920 if (cred->priority)
921 fprintf(f, "\tpriority=%d\n", cred->priority);
922 if (cred->pcsc)
923 fprintf(f, "\tpcsc=%d\n", cred->pcsc);
924 if (cred->realm)
925 fprintf(f, "\trealm=\"%s\"\n", cred->realm);
926 if (cred->username)
927 fprintf(f, "\tusername=\"%s\"\n", cred->username);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800928 if (cred->password && cred->ext_password)
929 fprintf(f, "\tpassword=ext:%s\n", cred->password);
930 else if (cred->password)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700931 fprintf(f, "\tpassword=\"%s\"\n", cred->password);
932 if (cred->ca_cert)
933 fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800934 if (cred->client_cert)
935 fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert);
936 if (cred->private_key)
937 fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key);
938 if (cred->private_key_passwd)
939 fprintf(f, "\tprivate_key_passwd=\"%s\"\n",
940 cred->private_key_passwd);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700941 if (cred->imsi)
942 fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
943 if (cred->milenage)
944 fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
Dmitry Shmidt051af732013-10-22 13:52:46 -0700945 for (i = 0; i < cred->num_domain; i++)
946 fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
947 if (cred->domain_suffix_match)
Dmitry Shmidtb58836e2014-04-29 14:35:56 -0700948 fprintf(f, "\tdomain_suffix_match=\"%s\"\n",
Dmitry Shmidt051af732013-10-22 13:52:46 -0700949 cred->domain_suffix_match);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800950 if (cred->roaming_consortium_len) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800951 fprintf(f, "\troaming_consortium=");
952 for (i = 0; i < cred->roaming_consortium_len; i++)
953 fprintf(f, "%02x", cred->roaming_consortium[i]);
954 fprintf(f, "\n");
955 }
956 if (cred->eap_method) {
957 const char *name;
958 name = eap_get_name(cred->eap_method[0].vendor,
959 cred->eap_method[0].method);
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -0700960 if (name)
961 fprintf(f, "\teap=%s\n", name);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800962 }
963 if (cred->phase1)
964 fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
965 if (cred->phase2)
966 fprintf(f, "\tphase2=\"%s\"\n", cred->phase2);
967 if (cred->excluded_ssid) {
Dmitry Shmidt051af732013-10-22 13:52:46 -0700968 size_t j;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800969 for (i = 0; i < cred->num_excluded_ssid; i++) {
970 struct excluded_ssid *e = &cred->excluded_ssid[i];
971 fprintf(f, "\texcluded_ssid=");
972 for (j = 0; j < e->ssid_len; j++)
973 fprintf(f, "%02x", e->ssid[j]);
974 fprintf(f, "\n");
975 }
976 }
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800977 if (cred->roaming_partner) {
978 for (i = 0; i < cred->num_roaming_partner; i++) {
979 struct roaming_partner *p = &cred->roaming_partner[i];
980 fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n",
981 p->fqdn, p->exact_match, p->priority,
982 p->country);
983 }
984 }
985 if (cred->update_identifier)
986 fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
987
988 if (cred->provisioning_sp)
Dmitry Shmidt61593f02014-04-21 16:27:35 -0700989 fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800990 if (cred->sp_priority)
991 fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
992
993 if (cred->min_dl_bandwidth_home)
994 fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
995 cred->min_dl_bandwidth_home);
996 if (cred->min_ul_bandwidth_home)
997 fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
998 cred->min_ul_bandwidth_home);
999 if (cred->min_dl_bandwidth_roaming)
1000 fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
1001 cred->min_dl_bandwidth_roaming);
1002 if (cred->min_ul_bandwidth_roaming)
1003 fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
1004 cred->min_ul_bandwidth_roaming);
1005
1006 if (cred->max_bss_load)
1007 fprintf(f, "\tmax_bss_load=%u\n",
1008 cred->max_bss_load);
1009
1010 if (cred->ocsp)
1011 fprintf(f, "\tocsp=%d\n", cred->ocsp);
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07001012
1013 if (cred->num_req_conn_capab) {
1014 for (i = 0; i < cred->num_req_conn_capab; i++) {
1015 int *ports;
1016
1017 fprintf(f, "\treq_conn_capab=%u",
1018 cred->req_conn_capab_proto[i]);
1019 ports = cred->req_conn_capab_port[i];
1020 if (ports) {
1021 int j;
1022 for (j = 0; ports[j] != -1; j++) {
1023 fprintf(f, "%s%d", j > 0 ? "," : ":",
1024 ports[j]);
1025 }
1026 }
1027 fprintf(f, "\n");
1028 }
1029 }
1030
1031 if (cred->required_roaming_consortium_len) {
1032 fprintf(f, "\trequired_roaming_consortium=");
1033 for (i = 0; i < cred->required_roaming_consortium_len; i++)
1034 fprintf(f, "%02x",
1035 cred->required_roaming_consortium[i]);
1036 fprintf(f, "\n");
1037 }
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07001038
1039 if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
1040 fprintf(f, "\tsim_num=%d\n", cred->sim_num);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001041}
1042
1043
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001044#ifndef CONFIG_NO_CONFIG_BLOBS
1045static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
1046{
1047 unsigned char *encoded;
1048
1049 encoded = base64_encode(blob->data, blob->len, NULL);
1050 if (encoded == NULL)
1051 return -1;
1052
1053 fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
1054 os_free(encoded);
1055 return 0;
1056}
1057#endif /* CONFIG_NO_CONFIG_BLOBS */
1058
1059
Dmitry Shmidt04949592012-07-19 12:16:46 -07001060static void write_global_bin(FILE *f, const char *field,
1061 const struct wpabuf *val)
1062{
1063 size_t i;
1064 const u8 *pos;
1065
1066 if (val == NULL)
1067 return;
1068
1069 fprintf(f, "%s=", field);
1070 pos = wpabuf_head(val);
1071 for (i = 0; i < wpabuf_len(val); i++)
1072 fprintf(f, "%02X", *pos++);
1073 fprintf(f, "\n");
1074}
1075
1076
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001077static void wpa_config_write_global(FILE *f, struct wpa_config *config)
1078{
1079#ifdef CONFIG_CTRL_IFACE
1080 if (config->ctrl_interface)
1081 fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
1082 if (config->ctrl_interface_group)
1083 fprintf(f, "ctrl_interface_group=%s\n",
1084 config->ctrl_interface_group);
1085#endif /* CONFIG_CTRL_IFACE */
1086 if (config->eapol_version != DEFAULT_EAPOL_VERSION)
1087 fprintf(f, "eapol_version=%d\n", config->eapol_version);
1088 if (config->ap_scan != DEFAULT_AP_SCAN)
1089 fprintf(f, "ap_scan=%d\n", config->ap_scan);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001090 if (config->disable_scan_offload)
1091 fprintf(f, "disable_scan_offload=%d\n",
1092 config->disable_scan_offload);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001093 if (config->fast_reauth != DEFAULT_FAST_REAUTH)
1094 fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
1095 if (config->opensc_engine_path)
1096 fprintf(f, "opensc_engine_path=%s\n",
1097 config->opensc_engine_path);
1098 if (config->pkcs11_engine_path)
1099 fprintf(f, "pkcs11_engine_path=%s\n",
1100 config->pkcs11_engine_path);
1101 if (config->pkcs11_module_path)
1102 fprintf(f, "pkcs11_module_path=%s\n",
1103 config->pkcs11_module_path);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001104 if (config->openssl_ciphers)
1105 fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001106 if (config->pcsc_reader)
1107 fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
1108 if (config->pcsc_pin)
1109 fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001110 if (config->driver_param)
1111 fprintf(f, "driver_param=%s\n", config->driver_param);
1112 if (config->dot11RSNAConfigPMKLifetime)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001113 fprintf(f, "dot11RSNAConfigPMKLifetime=%u\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001114 config->dot11RSNAConfigPMKLifetime);
1115 if (config->dot11RSNAConfigPMKReauthThreshold)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001116 fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%u\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001117 config->dot11RSNAConfigPMKReauthThreshold);
1118 if (config->dot11RSNAConfigSATimeout)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001119 fprintf(f, "dot11RSNAConfigSATimeout=%u\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001120 config->dot11RSNAConfigSATimeout);
1121 if (config->update_config)
1122 fprintf(f, "update_config=%d\n", config->update_config);
1123#ifdef CONFIG_WPS
1124 if (!is_nil_uuid(config->uuid)) {
1125 char buf[40];
1126 uuid_bin2str(config->uuid, buf, sizeof(buf));
1127 fprintf(f, "uuid=%s\n", buf);
1128 }
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001129 if (config->auto_uuid)
1130 fprintf(f, "auto_uuid=%d\n", config->auto_uuid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001131 if (config->device_name)
1132 fprintf(f, "device_name=%s\n", config->device_name);
1133 if (config->manufacturer)
1134 fprintf(f, "manufacturer=%s\n", config->manufacturer);
1135 if (config->model_name)
1136 fprintf(f, "model_name=%s\n", config->model_name);
1137 if (config->model_number)
1138 fprintf(f, "model_number=%s\n", config->model_number);
1139 if (config->serial_number)
1140 fprintf(f, "serial_number=%s\n", config->serial_number);
1141 {
1142 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
1143 buf = wps_dev_type_bin2str(config->device_type,
1144 _buf, sizeof(_buf));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001145 if (os_strcmp(buf, "0-00000000-0") != 0)
1146 fprintf(f, "device_type=%s\n", buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001147 }
1148 if (WPA_GET_BE32(config->os_version))
1149 fprintf(f, "os_version=%08x\n",
1150 WPA_GET_BE32(config->os_version));
1151 if (config->config_methods)
1152 fprintf(f, "config_methods=%s\n", config->config_methods);
1153 if (config->wps_cred_processing)
1154 fprintf(f, "wps_cred_processing=%d\n",
1155 config->wps_cred_processing);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001156 if (config->wps_vendor_ext_m1) {
1157 int i, len = wpabuf_len(config->wps_vendor_ext_m1);
1158 const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
1159 if (len > 0) {
1160 fprintf(f, "wps_vendor_ext_m1=");
1161 for (i = 0; i < len; i++)
1162 fprintf(f, "%02x", *p++);
1163 fprintf(f, "\n");
1164 }
1165 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001166#endif /* CONFIG_WPS */
1167#ifdef CONFIG_P2P
Paul Stewart092955c2017-02-06 09:13:09 -08001168 {
1169 int i;
1170 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
1171
1172 for (i = 0; i < config->num_sec_device_types; i++) {
1173 buf = wps_dev_type_bin2str(config->sec_device_type[i],
1174 _buf, sizeof(_buf));
1175 if (buf)
1176 fprintf(f, "sec_device_type=%s\n", buf);
1177 }
1178 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001179 if (config->p2p_listen_reg_class)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001180 fprintf(f, "p2p_listen_reg_class=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001181 config->p2p_listen_reg_class);
1182 if (config->p2p_listen_channel)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001183 fprintf(f, "p2p_listen_channel=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001184 config->p2p_listen_channel);
1185 if (config->p2p_oper_reg_class)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001186 fprintf(f, "p2p_oper_reg_class=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001187 config->p2p_oper_reg_class);
1188 if (config->p2p_oper_channel)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001189 fprintf(f, "p2p_oper_channel=%d\n", config->p2p_oper_channel);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001190 if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001191 fprintf(f, "p2p_go_intent=%d\n", config->p2p_go_intent);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001192 if (config->p2p_ssid_postfix)
1193 fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
1194 if (config->persistent_reconnect)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001195 fprintf(f, "persistent_reconnect=%d\n",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001196 config->persistent_reconnect);
1197 if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001198 fprintf(f, "p2p_intra_bss=%d\n", config->p2p_intra_bss);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001199 if (config->p2p_group_idle)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001200 fprintf(f, "p2p_group_idle=%d\n", config->p2p_group_idle);
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07001201 if (config->p2p_passphrase_len)
1202 fprintf(f, "p2p_passphrase_len=%u\n",
1203 config->p2p_passphrase_len);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001204 if (config->p2p_pref_chan) {
1205 unsigned int i;
1206 fprintf(f, "p2p_pref_chan=");
1207 for (i = 0; i < config->num_p2p_pref_chan; i++) {
1208 fprintf(f, "%s%u:%u", i > 0 ? "," : "",
1209 config->p2p_pref_chan[i].op_class,
1210 config->p2p_pref_chan[i].chan);
1211 }
1212 fprintf(f, "\n");
1213 }
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001214 if (config->p2p_no_go_freq.num) {
1215 char *val = freq_range_list_str(&config->p2p_no_go_freq);
1216 if (val) {
1217 fprintf(f, "p2p_no_go_freq=%s\n", val);
1218 os_free(val);
1219 }
1220 }
1221 if (config->p2p_add_cli_chan)
1222 fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07001223 if (config->p2p_optimize_listen_chan !=
1224 DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN)
1225 fprintf(f, "p2p_optimize_listen_chan=%d\n",
1226 config->p2p_optimize_listen_chan);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001227 if (config->p2p_go_ht40)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001228 fprintf(f, "p2p_go_ht40=%d\n", config->p2p_go_ht40);
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001229 if (config->p2p_go_vht)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001230 fprintf(f, "p2p_go_vht=%d\n", config->p2p_go_vht);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001231 if (config->p2p_go_ctwindow != DEFAULT_P2P_GO_CTWINDOW)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001232 fprintf(f, "p2p_go_ctwindow=%d\n", config->p2p_go_ctwindow);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001233 if (config->p2p_disabled)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001234 fprintf(f, "p2p_disabled=%d\n", config->p2p_disabled);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001235 if (config->p2p_no_group_iface)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001236 fprintf(f, "p2p_no_group_iface=%d\n",
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001237 config->p2p_no_group_iface);
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001238 if (config->p2p_ignore_shared_freq)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001239 fprintf(f, "p2p_ignore_shared_freq=%d\n",
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001240 config->p2p_ignore_shared_freq);
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07001241 if (config->p2p_cli_probe)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001242 fprintf(f, "p2p_cli_probe=%d\n", config->p2p_cli_probe);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001243 if (config->p2p_go_freq_change_policy != DEFAULT_P2P_GO_FREQ_MOVE)
1244 fprintf(f, "p2p_go_freq_change_policy=%u\n",
1245 config->p2p_go_freq_change_policy);
Dmitry Shmidt1d6bf422016-01-19 15:51:35 -08001246 if (WPA_GET_BE32(config->ip_addr_go))
1247 fprintf(f, "ip_addr_go=%u.%u.%u.%u\n",
1248 config->ip_addr_go[0], config->ip_addr_go[1],
1249 config->ip_addr_go[2], config->ip_addr_go[3]);
1250 if (WPA_GET_BE32(config->ip_addr_mask))
1251 fprintf(f, "ip_addr_mask=%u.%u.%u.%u\n",
1252 config->ip_addr_mask[0], config->ip_addr_mask[1],
1253 config->ip_addr_mask[2], config->ip_addr_mask[3]);
1254 if (WPA_GET_BE32(config->ip_addr_start))
1255 fprintf(f, "ip_addr_start=%u.%u.%u.%u\n",
1256 config->ip_addr_start[0], config->ip_addr_start[1],
1257 config->ip_addr_start[2], config->ip_addr_start[3]);
1258 if (WPA_GET_BE32(config->ip_addr_end))
1259 fprintf(f, "ip_addr_end=%u.%u.%u.%u\n",
1260 config->ip_addr_end[0], config->ip_addr_end[1],
1261 config->ip_addr_end[2], config->ip_addr_end[3]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001262#endif /* CONFIG_P2P */
1263 if (config->country[0] && config->country[1]) {
1264 fprintf(f, "country=%c%c\n",
1265 config->country[0], config->country[1]);
1266 }
1267 if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
1268 fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
1269 if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
1270 fprintf(f, "bss_expiration_age=%u\n",
1271 config->bss_expiration_age);
1272 if (config->bss_expiration_scan_count !=
1273 DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
1274 fprintf(f, "bss_expiration_scan_count=%u\n",
1275 config->bss_expiration_scan_count);
1276 if (config->filter_ssids)
1277 fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
Paul Stewart092955c2017-02-06 09:13:09 -08001278 if (config->filter_rssi)
1279 fprintf(f, "filter_rssi=%d\n", config->filter_rssi);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001280 if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
1281 fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
1282 if (config->disassoc_low_ack)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001283 fprintf(f, "disassoc_low_ack=%d\n", config->disassoc_low_ack);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001284#ifdef CONFIG_HS20
1285 if (config->hs20)
1286 fprintf(f, "hs20=1\n");
1287#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001288#ifdef CONFIG_INTERWORKING
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001289 if (config->interworking)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001290 fprintf(f, "interworking=%d\n", config->interworking);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001291 if (!is_zero_ether_addr(config->hessid))
1292 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
1293 if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
1294 fprintf(f, "access_network_type=%d\n",
1295 config->access_network_type);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001296 if (config->go_interworking)
1297 fprintf(f, "go_interworking=%d\n", config->go_interworking);
1298 if (config->go_access_network_type)
1299 fprintf(f, "go_access_network_type=%d\n",
1300 config->go_access_network_type);
1301 if (config->go_internet)
1302 fprintf(f, "go_internet=%d\n", config->go_internet);
1303 if (config->go_venue_group)
1304 fprintf(f, "go_venue_group=%d\n", config->go_venue_group);
1305 if (config->go_venue_type)
1306 fprintf(f, "go_venue_type=%d\n", config->go_venue_type);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001307#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt04949592012-07-19 12:16:46 -07001308 if (config->pbc_in_m1)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001309 fprintf(f, "pbc_in_m1=%d\n", config->pbc_in_m1);
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001310 if (config->wps_nfc_pw_from_config) {
1311 if (config->wps_nfc_dev_pw_id)
1312 fprintf(f, "wps_nfc_dev_pw_id=%d\n",
1313 config->wps_nfc_dev_pw_id);
1314 write_global_bin(f, "wps_nfc_dh_pubkey",
1315 config->wps_nfc_dh_pubkey);
1316 write_global_bin(f, "wps_nfc_dh_privkey",
1317 config->wps_nfc_dh_privkey);
1318 write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
1319 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001320
1321 if (config->ext_password_backend)
1322 fprintf(f, "ext_password_backend=%s\n",
1323 config->ext_password_backend);
1324 if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY)
1325 fprintf(f, "p2p_go_max_inactivity=%d\n",
1326 config->p2p_go_max_inactivity);
1327 if (config->auto_interworking)
1328 fprintf(f, "auto_interworking=%d\n",
1329 config->auto_interworking);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001330 if (config->okc)
1331 fprintf(f, "okc=%d\n", config->okc);
1332 if (config->pmf)
1333 fprintf(f, "pmf=%d\n", config->pmf);
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08001334 if (config->dtim_period)
1335 fprintf(f, "dtim_period=%d\n", config->dtim_period);
1336 if (config->beacon_int)
1337 fprintf(f, "beacon_int=%d\n", config->beacon_int);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001338
1339 if (config->sae_groups) {
1340 int i;
1341 fprintf(f, "sae_groups=");
Paul Stewart092955c2017-02-06 09:13:09 -08001342 for (i = 0; config->sae_groups[i] > 0; i++) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001343 fprintf(f, "%s%d", i > 0 ? " " : "",
1344 config->sae_groups[i]);
1345 }
1346 fprintf(f, "\n");
1347 }
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07001348
1349 if (config->ap_vendor_elements) {
1350 int i, len = wpabuf_len(config->ap_vendor_elements);
1351 const u8 *p = wpabuf_head_u8(config->ap_vendor_elements);
1352 if (len > 0) {
1353 fprintf(f, "ap_vendor_elements=");
1354 for (i = 0; i < len; i++)
1355 fprintf(f, "%02x", *p++);
1356 fprintf(f, "\n");
1357 }
1358 }
Dmitry Shmidt444d5672013-04-01 13:08:44 -07001359
1360 if (config->ignore_old_scan_res)
1361 fprintf(f, "ignore_old_scan_res=%d\n",
1362 config->ignore_old_scan_res);
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001363
1364 if (config->freq_list && config->freq_list[0]) {
1365 int i;
1366 fprintf(f, "freq_list=");
1367 for (i = 0; config->freq_list[i]; i++) {
Dmitry Shmidt41712582015-06-29 11:02:15 -07001368 fprintf(f, "%s%d", i > 0 ? " " : "",
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001369 config->freq_list[i]);
1370 }
1371 fprintf(f, "\n");
1372 }
Dmitry Shmidtea69e842013-05-13 14:52:28 -07001373 if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
1374 fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07001375
1376 if (config->sched_scan_interval)
1377 fprintf(f, "sched_scan_interval=%u\n",
1378 config->sched_scan_interval);
Dmitry Shmidt051af732013-10-22 13:52:46 -07001379
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001380 if (config->sched_scan_start_delay)
1381 fprintf(f, "sched_scan_start_delay=%u\n",
1382 config->sched_scan_start_delay);
1383
Dmitry Shmidt051af732013-10-22 13:52:46 -07001384 if (config->external_sim)
1385 fprintf(f, "external_sim=%d\n", config->external_sim);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001386
1387 if (config->tdls_external_control)
1388 fprintf(f, "tdls_external_control=%d\n",
1389 config->tdls_external_control);
Dmitry Shmidta38abf92014-03-06 13:38:44 -08001390
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07001391 if (config->wowlan_triggers)
Dmitry Shmidt03658832014-08-13 11:03:49 -07001392 fprintf(f, "wowlan_triggers=%s\n",
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07001393 config->wowlan_triggers);
1394
Dmitry Shmidta38abf92014-03-06 13:38:44 -08001395 if (config->bgscan)
1396 fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07001397
Paul Stewart092955c2017-02-06 09:13:09 -08001398 if (config->autoscan)
1399 fprintf(f, "autoscan=%s\n", config->autoscan);
1400
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07001401 if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY)
1402 fprintf(f, "p2p_search_delay=%u\n",
1403 config->p2p_search_delay);
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001404
1405 if (config->mac_addr)
1406 fprintf(f, "mac_addr=%d\n", config->mac_addr);
1407
1408 if (config->rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
1409 fprintf(f, "rand_addr_lifetime=%u\n",
1410 config->rand_addr_lifetime);
1411
1412 if (config->preassoc_mac_addr)
1413 fprintf(f, "preassoc_mac_addr=%d\n", config->preassoc_mac_addr);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001414
1415 if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD)
Dmitry Shmidt41712582015-06-29 11:02:15 -07001416 fprintf(f, "key_mgmt_offload=%d\n", config->key_mgmt_offload);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001417
1418 if (config->user_mpm != DEFAULT_USER_MPM)
1419 fprintf(f, "user_mpm=%d\n", config->user_mpm);
1420
1421 if (config->max_peer_links != DEFAULT_MAX_PEER_LINKS)
1422 fprintf(f, "max_peer_links=%d\n", config->max_peer_links);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08001423
1424 if (config->cert_in_cb != DEFAULT_CERT_IN_CB)
1425 fprintf(f, "cert_in_cb=%d\n", config->cert_in_cb);
1426
1427 if (config->mesh_max_inactivity != DEFAULT_MESH_MAX_INACTIVITY)
1428 fprintf(f, "mesh_max_inactivity=%d\n",
1429 config->mesh_max_inactivity);
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001430
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001431 if (config->dot11RSNASAERetransPeriod !=
1432 DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD)
1433 fprintf(f, "dot11RSNASAERetransPeriod=%d\n",
1434 config->dot11RSNASAERetransPeriod);
1435
Dmitry Shmidt807291d2015-01-27 13:40:23 -08001436 if (config->passive_scan)
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001437 fprintf(f, "passive_scan=%d\n", config->passive_scan);
1438
1439 if (config->reassoc_same_bss_optim)
1440 fprintf(f, "reassoc_same_bss_optim=%d\n",
1441 config->reassoc_same_bss_optim);
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07001442
1443 if (config->wps_priority)
1444 fprintf(f, "wps_priority=%d\n", config->wps_priority);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001445
1446 if (config->wpa_rsc_relaxation != DEFAULT_WPA_RSC_RELAXATION)
1447 fprintf(f, "wpa_rsc_relaxation=%d\n",
1448 config->wpa_rsc_relaxation);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08001449
1450 if (config->sched_scan_plans)
1451 fprintf(f, "sched_scan_plans=%s\n", config->sched_scan_plans);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001452
1453#ifdef CONFIG_MBO
1454 if (config->non_pref_chan)
1455 fprintf(f, "non_pref_chan=%s\n", config->non_pref_chan);
1456 if (config->mbo_cell_capa != DEFAULT_MBO_CELL_CAPA)
1457 fprintf(f, "mbo_cell_capa=%u\n", config->mbo_cell_capa);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001458 if (config->disassoc_imminent_rssi_threshold !=
1459 DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD)
1460 fprintf(f, "disassoc_imminent_rssi_threshold=%d\n",
1461 config->disassoc_imminent_rssi_threshold);
1462 if (config->oce != DEFAULT_OCE_SUPPORT)
1463 fprintf(f, "oce=%u\n", config->oce);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08001464#endif /* CONFIG_MBO */
1465
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -07001466 if (config->gas_address3)
1467 fprintf(f, "gas_address3=%d\n", config->gas_address3);
Dmitry Shmidt7d175302016-09-06 13:11:34 -07001468
1469 if (config->ftm_responder)
1470 fprintf(f, "ftm_responder=%d\n", config->ftm_responder);
1471 if (config->ftm_initiator)
1472 fprintf(f, "ftm_initiator=%d\n", config->ftm_initiator);
Paul Stewart092955c2017-02-06 09:13:09 -08001473
1474 if (config->osu_dir)
1475 fprintf(f, "osu_dir=%s\n", config->osu_dir);
1476
1477 if (config->fst_group_id)
1478 fprintf(f, "fst_group_id=%s\n", config->fst_group_id);
1479 if (config->fst_priority)
1480 fprintf(f, "fst_priority=%d\n", config->fst_priority);
1481 if (config->fst_llt)
1482 fprintf(f, "fst_llt=%d\n", config->fst_llt);
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08001483
1484 if (config->gas_rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME)
1485 fprintf(f, "gas_rand_addr_lifetime=%u\n",
1486 config->gas_rand_addr_lifetime);
1487 if (config->gas_rand_mac_addr)
1488 fprintf(f, "gas_rand_mac_addr=%d\n", config->gas_rand_mac_addr);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001489 if (config->dpp_config_processing)
1490 fprintf(f, "dpp_config_processing=%d\n",
1491 config->dpp_config_processing);
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08001492
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001493}
1494
1495#endif /* CONFIG_NO_CONFIG_WRITE */
1496
1497
1498int wpa_config_write(const char *name, struct wpa_config *config)
1499{
1500#ifndef CONFIG_NO_CONFIG_WRITE
1501 FILE *f;
1502 struct wpa_ssid *ssid;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001503 struct wpa_cred *cred;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001504#ifndef CONFIG_NO_CONFIG_BLOBS
1505 struct wpa_config_blob *blob;
1506#endif /* CONFIG_NO_CONFIG_BLOBS */
1507 int ret = 0;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001508 const char *orig_name = name;
1509 int tmp_len = os_strlen(name) + 5; /* allow space for .tmp suffix */
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001510 char *tmp_name = os_malloc(tmp_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001511
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001512 if (tmp_name) {
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001513 os_snprintf(tmp_name, tmp_len, "%s.tmp", name);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001514 name = tmp_name;
1515 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001516
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001517 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001518
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001519 f = fopen(name, "w");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001520 if (f == NULL) {
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001521 wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
1522 os_free(tmp_name);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001523 return -1;
1524 }
1525
1526 wpa_config_write_global(f, config);
1527
Dmitry Shmidt04949592012-07-19 12:16:46 -07001528 for (cred = config->cred; cred; cred = cred->next) {
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001529 if (cred->temporary)
1530 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001531 fprintf(f, "\ncred={\n");
1532 wpa_config_write_cred(f, cred);
1533 fprintf(f, "}\n");
1534 }
1535
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001536 for (ssid = config->ssid; ssid; ssid = ssid->next) {
1537 if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
1538 continue; /* do not save temporary networks */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001539 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
1540 !ssid->passphrase)
1541 continue; /* do not save invalid network */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001542 fprintf(f, "\nnetwork={\n");
1543 wpa_config_write_network(f, ssid);
1544 fprintf(f, "}\n");
1545 }
1546
1547#ifndef CONFIG_NO_CONFIG_BLOBS
1548 for (blob = config->blobs; blob; blob = blob->next) {
1549 ret = wpa_config_write_blob(f, blob);
1550 if (ret)
1551 break;
1552 }
1553#endif /* CONFIG_NO_CONFIG_BLOBS */
1554
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001555 os_fdatasync(f);
Mitchell Wills447c7ff2015-08-24 17:24:30 -07001556
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001557 fclose(f);
1558
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001559 if (tmp_name) {
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001560 int chmod_ret = 0;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001561
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001562#ifdef ANDROID
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001563 chmod_ret = chmod(tmp_name,
1564 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
1565#endif /* ANDROID */
1566 if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0)
Vinit Deshpande0a217de2015-02-05 12:48:02 -08001567 ret = -1;
1568
1569 os_free(tmp_name);
1570 }
1571
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001572 wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001573 orig_name, ret ? "un" : "");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001574 return ret;
1575#else /* CONFIG_NO_CONFIG_WRITE */
1576 return -1;
1577#endif /* CONFIG_NO_CONFIG_WRITE */
1578}