]> git.ipfire.org Git - thirdparty/hostap.git/blob - wpa_supplicant/config_file.c
Save bgscan parameter into configuration file
[thirdparty/hostap.git] / wpa_supplicant / config_file.c
1 /*
2 * WPA Supplicant / Configuration backend: text file
3 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 *
8 * This file implements a configuration backend for text files. All the
9 * configuration information is stored in a text file that uses a format
10 * described in the sample configuration file, wpa_supplicant.conf.
11 */
12
13 #include "includes.h"
14
15 #include "common.h"
16 #include "config.h"
17 #include "base64.h"
18 #include "uuid.h"
19 #include "p2p/p2p.h"
20
21
22 /**
23 * wpa_config_get_line - Read the next configuration file line
24 * @s: Buffer for the line
25 * @size: The buffer length
26 * @stream: File stream to read from
27 * @line: Pointer to a variable storing the file line number
28 * @_pos: Buffer for the pointer to the beginning of data on the text line or
29 * %NULL if not needed (returned value used instead)
30 * Returns: Pointer to the beginning of data on the text line or %NULL if no
31 * more text lines are available.
32 *
33 * This function reads the next non-empty line from the configuration file and
34 * removes comments. The returned string is guaranteed to be null-terminated.
35 */
36 static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line,
37 char **_pos)
38 {
39 char *pos, *end, *sstart;
40
41 while (fgets(s, size, stream)) {
42 (*line)++;
43 s[size - 1] = '\0';
44 pos = s;
45
46 /* Skip white space from the beginning of line. */
47 while (*pos == ' ' || *pos == '\t' || *pos == '\r')
48 pos++;
49
50 /* Skip comment lines and empty lines */
51 if (*pos == '#' || *pos == '\n' || *pos == '\0')
52 continue;
53
54 /*
55 * Remove # comments unless they are within a double quoted
56 * string.
57 */
58 sstart = os_strchr(pos, '"');
59 if (sstart)
60 sstart = os_strrchr(sstart + 1, '"');
61 if (!sstart)
62 sstart = pos;
63 end = os_strchr(sstart, '#');
64 if (end)
65 *end-- = '\0';
66 else
67 end = pos + os_strlen(pos) - 1;
68
69 /* Remove trailing white space. */
70 while (end > pos &&
71 (*end == '\n' || *end == ' ' || *end == '\t' ||
72 *end == '\r'))
73 *end-- = '\0';
74
75 if (*pos == '\0')
76 continue;
77
78 if (_pos)
79 *_pos = pos;
80 return pos;
81 }
82
83 if (_pos)
84 *_pos = NULL;
85 return NULL;
86 }
87
88
89 static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
90 {
91 int errors = 0;
92
93 if (ssid->passphrase) {
94 if (ssid->psk_set) {
95 wpa_printf(MSG_ERROR, "Line %d: both PSK and "
96 "passphrase configured.", line);
97 errors++;
98 }
99 wpa_config_update_psk(ssid);
100 }
101
102 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set) {
103 wpa_printf(MSG_ERROR, "Line %d: WPA-PSK accepted for key "
104 "management, but no PSK configured.", line);
105 errors++;
106 }
107
108 if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
109 !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
110 !(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
111 /* Group cipher cannot be stronger than the pairwise cipher. */
112 wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
113 " list since it was not allowed for pairwise "
114 "cipher", line);
115 ssid->group_cipher &= ~WPA_CIPHER_CCMP;
116 }
117
118 return errors;
119 }
120
121
122 static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
123 {
124 struct wpa_ssid *ssid;
125 int errors = 0, end = 0;
126 char buf[256], *pos, *pos2;
127
128 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
129 *line);
130 ssid = os_zalloc(sizeof(*ssid));
131 if (ssid == NULL)
132 return NULL;
133 ssid->id = id;
134
135 wpa_config_set_network_defaults(ssid);
136
137 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
138 if (os_strcmp(pos, "}") == 0) {
139 end = 1;
140 break;
141 }
142
143 pos2 = os_strchr(pos, '=');
144 if (pos2 == NULL) {
145 wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
146 "'%s'.", *line, pos);
147 errors++;
148 continue;
149 }
150
151 *pos2++ = '\0';
152 if (*pos2 == '"') {
153 if (os_strchr(pos2 + 1, '"') == NULL) {
154 wpa_printf(MSG_ERROR, "Line %d: invalid "
155 "quotation '%s'.", *line, pos2);
156 errors++;
157 continue;
158 }
159 }
160
161 if (wpa_config_set(ssid, pos, pos2, *line) < 0)
162 errors++;
163 }
164
165 if (!end) {
166 wpa_printf(MSG_ERROR, "Line %d: network block was not "
167 "terminated properly.", *line);
168 errors++;
169 }
170
171 errors += wpa_config_validate_network(ssid, *line);
172
173 if (errors) {
174 wpa_config_free_ssid(ssid);
175 ssid = NULL;
176 }
177
178 return ssid;
179 }
180
181
182 static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
183 {
184 struct wpa_cred *cred;
185 int errors = 0, end = 0;
186 char buf[256], *pos, *pos2;
187
188 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
189 cred = os_zalloc(sizeof(*cred));
190 if (cred == NULL)
191 return NULL;
192 cred->id = id;
193
194 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
195 if (os_strcmp(pos, "}") == 0) {
196 end = 1;
197 break;
198 }
199
200 pos2 = os_strchr(pos, '=');
201 if (pos2 == NULL) {
202 wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
203 "'%s'.", *line, pos);
204 errors++;
205 continue;
206 }
207
208 *pos2++ = '\0';
209 if (*pos2 == '"') {
210 if (os_strchr(pos2 + 1, '"') == NULL) {
211 wpa_printf(MSG_ERROR, "Line %d: invalid "
212 "quotation '%s'.", *line, pos2);
213 errors++;
214 continue;
215 }
216 }
217
218 if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
219 errors++;
220 }
221
222 if (!end) {
223 wpa_printf(MSG_ERROR, "Line %d: cred block was not "
224 "terminated properly.", *line);
225 errors++;
226 }
227
228 if (errors) {
229 wpa_config_free_cred(cred);
230 cred = NULL;
231 }
232
233 return cred;
234 }
235
236
237 #ifndef CONFIG_NO_CONFIG_BLOBS
238 static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
239 const char *name)
240 {
241 struct wpa_config_blob *blob;
242 char buf[256], *pos;
243 unsigned char *encoded = NULL, *nencoded;
244 int end = 0;
245 size_t encoded_len = 0, len;
246
247 wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
248 *line, name);
249
250 while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
251 if (os_strcmp(pos, "}") == 0) {
252 end = 1;
253 break;
254 }
255
256 len = os_strlen(pos);
257 nencoded = os_realloc(encoded, encoded_len + len);
258 if (nencoded == NULL) {
259 wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
260 "blob", *line);
261 os_free(encoded);
262 return NULL;
263 }
264 encoded = nencoded;
265 os_memcpy(encoded + encoded_len, pos, len);
266 encoded_len += len;
267 }
268
269 if (!end) {
270 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
271 "properly", *line);
272 os_free(encoded);
273 return NULL;
274 }
275
276 blob = os_zalloc(sizeof(*blob));
277 if (blob == NULL) {
278 os_free(encoded);
279 return NULL;
280 }
281 blob->name = os_strdup(name);
282 blob->data = base64_decode(encoded, encoded_len, &blob->len);
283 os_free(encoded);
284
285 if (blob->name == NULL || blob->data == NULL) {
286 wpa_config_free_blob(blob);
287 return NULL;
288 }
289
290 return blob;
291 }
292
293
294 static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
295 int *line, char *bname)
296 {
297 char *name_end;
298 struct wpa_config_blob *blob;
299
300 name_end = os_strchr(bname, '=');
301 if (name_end == NULL) {
302 wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
303 *line);
304 return -1;
305 }
306 *name_end = '\0';
307
308 blob = wpa_config_read_blob(f, line, bname);
309 if (blob == NULL) {
310 wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
311 *line, bname);
312 return -1;
313 }
314 wpa_config_set_blob(config, blob);
315 return 0;
316 }
317 #endif /* CONFIG_NO_CONFIG_BLOBS */
318
319
320 struct wpa_config * wpa_config_read(const char *name)
321 {
322 FILE *f;
323 char buf[256], *pos;
324 int errors = 0, line = 0;
325 struct wpa_ssid *ssid, *tail = NULL, *head = NULL;
326 struct wpa_cred *cred, *cred_tail = NULL, *cred_head = NULL;
327 struct wpa_config *config;
328 int id = 0;
329 int cred_id = 0;
330
331 config = wpa_config_alloc_empty(NULL, NULL);
332 if (config == NULL)
333 return NULL;
334 wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
335 f = fopen(name, "r");
336 if (f == NULL) {
337 os_free(config);
338 return NULL;
339 }
340
341 while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
342 if (os_strcmp(pos, "network={") == 0) {
343 ssid = wpa_config_read_network(f, &line, id++);
344 if (ssid == NULL) {
345 wpa_printf(MSG_ERROR, "Line %d: failed to "
346 "parse network block.", line);
347 errors++;
348 continue;
349 }
350 if (head == NULL) {
351 head = tail = ssid;
352 } else {
353 tail->next = ssid;
354 tail = ssid;
355 }
356 if (wpa_config_add_prio_network(config, ssid)) {
357 wpa_printf(MSG_ERROR, "Line %d: failed to add "
358 "network block to priority list.",
359 line);
360 errors++;
361 continue;
362 }
363 } else if (os_strcmp(pos, "cred={") == 0) {
364 cred = wpa_config_read_cred(f, &line, cred_id++);
365 if (cred == NULL) {
366 wpa_printf(MSG_ERROR, "Line %d: failed to "
367 "parse cred block.", line);
368 errors++;
369 continue;
370 }
371 if (cred_head == NULL) {
372 cred_head = cred_tail = cred;
373 } else {
374 cred_tail->next = cred;
375 cred_tail = cred;
376 }
377 #ifndef CONFIG_NO_CONFIG_BLOBS
378 } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
379 if (wpa_config_process_blob(config, f, &line, pos + 12)
380 < 0) {
381 errors++;
382 continue;
383 }
384 #endif /* CONFIG_NO_CONFIG_BLOBS */
385 } else if (wpa_config_process_global(config, pos, line) < 0) {
386 wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
387 "line '%s'.", line, pos);
388 errors++;
389 continue;
390 }
391 }
392
393 fclose(f);
394
395 config->ssid = head;
396 wpa_config_debug_dump_networks(config);
397 config->cred = cred_head;
398
399 #ifndef WPA_IGNORE_CONFIG_ERRORS
400 if (errors) {
401 wpa_config_free(config);
402 config = NULL;
403 head = NULL;
404 }
405 #endif /* WPA_IGNORE_CONFIG_ERRORS */
406
407 return config;
408 }
409
410
411 #ifndef CONFIG_NO_CONFIG_WRITE
412
413 static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
414 {
415 char *value = wpa_config_get(ssid, field);
416 if (value == NULL)
417 return;
418 fprintf(f, "\t%s=%s\n", field, value);
419 os_free(value);
420 }
421
422
423 static void write_int(FILE *f, const char *field, int value, int def)
424 {
425 if (value == def)
426 return;
427 fprintf(f, "\t%s=%d\n", field, value);
428 }
429
430
431 static void write_bssid(FILE *f, struct wpa_ssid *ssid)
432 {
433 char *value = wpa_config_get(ssid, "bssid");
434 if (value == NULL)
435 return;
436 fprintf(f, "\tbssid=%s\n", value);
437 os_free(value);
438 }
439
440
441 static void write_psk(FILE *f, struct wpa_ssid *ssid)
442 {
443 char *value = wpa_config_get(ssid, "psk");
444 if (value == NULL)
445 return;
446 fprintf(f, "\tpsk=%s\n", value);
447 os_free(value);
448 }
449
450
451 static void write_proto(FILE *f, struct wpa_ssid *ssid)
452 {
453 char *value;
454
455 if (ssid->proto == DEFAULT_PROTO)
456 return;
457
458 value = wpa_config_get(ssid, "proto");
459 if (value == NULL)
460 return;
461 if (value[0])
462 fprintf(f, "\tproto=%s\n", value);
463 os_free(value);
464 }
465
466
467 static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
468 {
469 char *value;
470
471 if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
472 return;
473
474 value = wpa_config_get(ssid, "key_mgmt");
475 if (value == NULL)
476 return;
477 if (value[0])
478 fprintf(f, "\tkey_mgmt=%s\n", value);
479 os_free(value);
480 }
481
482
483 static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
484 {
485 char *value;
486
487 if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
488 return;
489
490 value = wpa_config_get(ssid, "pairwise");
491 if (value == NULL)
492 return;
493 if (value[0])
494 fprintf(f, "\tpairwise=%s\n", value);
495 os_free(value);
496 }
497
498
499 static void write_group(FILE *f, struct wpa_ssid *ssid)
500 {
501 char *value;
502
503 if (ssid->group_cipher == DEFAULT_GROUP)
504 return;
505
506 value = wpa_config_get(ssid, "group");
507 if (value == NULL)
508 return;
509 if (value[0])
510 fprintf(f, "\tgroup=%s\n", value);
511 os_free(value);
512 }
513
514
515 static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
516 {
517 char *value;
518
519 if (ssid->auth_alg == 0)
520 return;
521
522 value = wpa_config_get(ssid, "auth_alg");
523 if (value == NULL)
524 return;
525 if (value[0])
526 fprintf(f, "\tauth_alg=%s\n", value);
527 os_free(value);
528 }
529
530
531 #ifdef IEEE8021X_EAPOL
532 static void write_eap(FILE *f, struct wpa_ssid *ssid)
533 {
534 char *value;
535
536 value = wpa_config_get(ssid, "eap");
537 if (value == NULL)
538 return;
539
540 if (value[0])
541 fprintf(f, "\teap=%s\n", value);
542 os_free(value);
543 }
544 #endif /* IEEE8021X_EAPOL */
545
546
547 static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
548 {
549 char field[20], *value;
550 int res;
551
552 res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
553 if (res < 0 || (size_t) res >= sizeof(field))
554 return;
555 value = wpa_config_get(ssid, field);
556 if (value) {
557 fprintf(f, "\t%s=%s\n", field, value);
558 os_free(value);
559 }
560 }
561
562
563 #ifdef CONFIG_P2P
564 static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
565 {
566 char *value = wpa_config_get(ssid, "p2p_client_list");
567 if (value == NULL)
568 return;
569 fprintf(f, "\tp2p_client_list=%s\n", value);
570 os_free(value);
571 }
572 #endif /* CONFIG_P2P */
573
574
575 static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
576 {
577 int i;
578
579 #define STR(t) write_str(f, #t, ssid)
580 #define INT(t) write_int(f, #t, ssid->t, 0)
581 #define INTe(t) write_int(f, #t, ssid->eap.t, 0)
582 #define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
583 #define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
584
585 STR(ssid);
586 INT(scan_ssid);
587 write_bssid(f, ssid);
588 write_psk(f, ssid);
589 write_proto(f, ssid);
590 write_key_mgmt(f, ssid);
591 INT(bg_scan_period);
592 write_pairwise(f, ssid);
593 write_group(f, ssid);
594 write_auth_alg(f, ssid);
595 STR(bgscan);
596 #ifdef IEEE8021X_EAPOL
597 write_eap(f, ssid);
598 STR(identity);
599 STR(anonymous_identity);
600 STR(password);
601 STR(ca_cert);
602 STR(ca_path);
603 STR(client_cert);
604 STR(private_key);
605 STR(private_key_passwd);
606 STR(dh_file);
607 STR(subject_match);
608 STR(altsubject_match);
609 STR(ca_cert2);
610 STR(ca_path2);
611 STR(client_cert2);
612 STR(private_key2);
613 STR(private_key2_passwd);
614 STR(dh_file2);
615 STR(subject_match2);
616 STR(altsubject_match2);
617 STR(phase1);
618 STR(phase2);
619 STR(pcsc);
620 STR(pin);
621 STR(engine_id);
622 STR(key_id);
623 STR(cert_id);
624 STR(ca_cert_id);
625 STR(key2_id);
626 STR(pin2);
627 STR(engine2_id);
628 STR(cert2_id);
629 STR(ca_cert2_id);
630 INTe(engine);
631 INTe(engine2);
632 INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
633 #endif /* IEEE8021X_EAPOL */
634 for (i = 0; i < 4; i++)
635 write_wep_key(f, i, ssid);
636 INT(wep_tx_keyidx);
637 INT(priority);
638 #ifdef IEEE8021X_EAPOL
639 INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
640 STR(pac_file);
641 INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
642 #endif /* IEEE8021X_EAPOL */
643 INT(mode);
644 INT(proactive_key_caching);
645 INT(disabled);
646 INT(peerkey);
647 #ifdef CONFIG_IEEE80211W
648 INT(ieee80211w);
649 #endif /* CONFIG_IEEE80211W */
650 STR(id_str);
651 #ifdef CONFIG_P2P
652 write_p2p_client_list(f, ssid);
653 #endif /* CONFIG_P2P */
654
655 #undef STR
656 #undef INT
657 #undef INT_DEF
658 }
659
660
661 static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
662 {
663 if (cred->priority)
664 fprintf(f, "\tpriority=%d\n", cred->priority);
665 if (cred->pcsc)
666 fprintf(f, "\tpcsc=%d\n", cred->pcsc);
667 if (cred->realm)
668 fprintf(f, "\trealm=\"%s\"\n", cred->realm);
669 if (cred->username)
670 fprintf(f, "\tusername=\"%s\"\n", cred->username);
671 if (cred->password)
672 fprintf(f, "\tpassword=\"%s\"\n", cred->password);
673 if (cred->ca_cert)
674 fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
675 if (cred->imsi)
676 fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
677 if (cred->milenage)
678 fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
679 if (cred->domain)
680 fprintf(f, "\tdomain=\"%s\"\n", cred->domain);
681 }
682
683
684 #ifndef CONFIG_NO_CONFIG_BLOBS
685 static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
686 {
687 unsigned char *encoded;
688
689 encoded = base64_encode(blob->data, blob->len, NULL);
690 if (encoded == NULL)
691 return -1;
692
693 fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
694 os_free(encoded);
695 return 0;
696 }
697 #endif /* CONFIG_NO_CONFIG_BLOBS */
698
699
700 static void wpa_config_write_global(FILE *f, struct wpa_config *config)
701 {
702 #ifdef CONFIG_CTRL_IFACE
703 if (config->ctrl_interface)
704 fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
705 if (config->ctrl_interface_group)
706 fprintf(f, "ctrl_interface_group=%s\n",
707 config->ctrl_interface_group);
708 #endif /* CONFIG_CTRL_IFACE */
709 if (config->eapol_version != DEFAULT_EAPOL_VERSION)
710 fprintf(f, "eapol_version=%d\n", config->eapol_version);
711 if (config->ap_scan != DEFAULT_AP_SCAN)
712 fprintf(f, "ap_scan=%d\n", config->ap_scan);
713 if (config->fast_reauth != DEFAULT_FAST_REAUTH)
714 fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
715 if (config->opensc_engine_path)
716 fprintf(f, "opensc_engine_path=%s\n",
717 config->opensc_engine_path);
718 if (config->pkcs11_engine_path)
719 fprintf(f, "pkcs11_engine_path=%s\n",
720 config->pkcs11_engine_path);
721 if (config->pkcs11_module_path)
722 fprintf(f, "pkcs11_module_path=%s\n",
723 config->pkcs11_module_path);
724 if (config->pcsc_reader)
725 fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
726 if (config->pcsc_pin)
727 fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
728 if (config->driver_param)
729 fprintf(f, "driver_param=%s\n", config->driver_param);
730 if (config->dot11RSNAConfigPMKLifetime)
731 fprintf(f, "dot11RSNAConfigPMKLifetime=%d\n",
732 config->dot11RSNAConfigPMKLifetime);
733 if (config->dot11RSNAConfigPMKReauthThreshold)
734 fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%d\n",
735 config->dot11RSNAConfigPMKReauthThreshold);
736 if (config->dot11RSNAConfigSATimeout)
737 fprintf(f, "dot11RSNAConfigSATimeout=%d\n",
738 config->dot11RSNAConfigSATimeout);
739 if (config->update_config)
740 fprintf(f, "update_config=%d\n", config->update_config);
741 #ifdef CONFIG_WPS
742 if (!is_nil_uuid(config->uuid)) {
743 char buf[40];
744 uuid_bin2str(config->uuid, buf, sizeof(buf));
745 fprintf(f, "uuid=%s\n", buf);
746 }
747 if (config->device_name)
748 fprintf(f, "device_name=%s\n", config->device_name);
749 if (config->manufacturer)
750 fprintf(f, "manufacturer=%s\n", config->manufacturer);
751 if (config->model_name)
752 fprintf(f, "model_name=%s\n", config->model_name);
753 if (config->model_number)
754 fprintf(f, "model_number=%s\n", config->model_number);
755 if (config->serial_number)
756 fprintf(f, "serial_number=%s\n", config->serial_number);
757 {
758 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
759 buf = wps_dev_type_bin2str(config->device_type,
760 _buf, sizeof(_buf));
761 if (os_strcmp(buf, "0-00000000-0") != 0)
762 fprintf(f, "device_type=%s\n", buf);
763 }
764 if (WPA_GET_BE32(config->os_version))
765 fprintf(f, "os_version=%08x\n",
766 WPA_GET_BE32(config->os_version));
767 if (config->config_methods)
768 fprintf(f, "config_methods=%s\n", config->config_methods);
769 if (config->wps_cred_processing)
770 fprintf(f, "wps_cred_processing=%d\n",
771 config->wps_cred_processing);
772 if (config->wps_vendor_ext_m1) {
773 int i, len = wpabuf_len(config->wps_vendor_ext_m1);
774 const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
775 if (len > 0) {
776 fprintf(f, "wps_vendor_ext_m1=");
777 for (i = 0; i < len; i++)
778 fprintf(f, "%02x", *p++);
779 fprintf(f, "\n");
780 }
781 }
782 #endif /* CONFIG_WPS */
783 #ifdef CONFIG_P2P
784 if (config->p2p_listen_reg_class)
785 fprintf(f, "p2p_listen_reg_class=%u\n",
786 config->p2p_listen_reg_class);
787 if (config->p2p_listen_channel)
788 fprintf(f, "p2p_listen_channel=%u\n",
789 config->p2p_listen_channel);
790 if (config->p2p_oper_reg_class)
791 fprintf(f, "p2p_oper_reg_class=%u\n",
792 config->p2p_oper_reg_class);
793 if (config->p2p_oper_channel)
794 fprintf(f, "p2p_oper_channel=%u\n", config->p2p_oper_channel);
795 if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
796 fprintf(f, "p2p_go_intent=%u\n", config->p2p_go_intent);
797 if (config->p2p_ssid_postfix)
798 fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
799 if (config->persistent_reconnect)
800 fprintf(f, "persistent_reconnect=%u\n",
801 config->persistent_reconnect);
802 if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
803 fprintf(f, "p2p_intra_bss=%u\n", config->p2p_intra_bss);
804 if (config->p2p_group_idle)
805 fprintf(f, "p2p_group_idle=%u\n", config->p2p_group_idle);
806 if (config->p2p_pref_chan) {
807 unsigned int i;
808 fprintf(f, "p2p_pref_chan=");
809 for (i = 0; i < config->num_p2p_pref_chan; i++) {
810 fprintf(f, "%s%u:%u", i > 0 ? "," : "",
811 config->p2p_pref_chan[i].op_class,
812 config->p2p_pref_chan[i].chan);
813 }
814 fprintf(f, "\n");
815 }
816 #endif /* CONFIG_P2P */
817 if (config->country[0] && config->country[1]) {
818 fprintf(f, "country=%c%c\n",
819 config->country[0], config->country[1]);
820 }
821 if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
822 fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
823 if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
824 fprintf(f, "bss_expiration_age=%u\n",
825 config->bss_expiration_age);
826 if (config->bss_expiration_scan_count !=
827 DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
828 fprintf(f, "bss_expiration_scan_count=%u\n",
829 config->bss_expiration_scan_count);
830 if (config->filter_ssids)
831 fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
832 if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
833 fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
834 if (config->disassoc_low_ack)
835 fprintf(f, "disassoc_low_ack=%u\n", config->disassoc_low_ack);
836 #ifdef CONFIG_INTERWORKING
837 if (config->interworking)
838 fprintf(f, "interworking=%u\n", config->interworking);
839 if (!is_zero_ether_addr(config->hessid))
840 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
841 if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
842 fprintf(f, "access_network_type=%d\n",
843 config->access_network_type);
844 #endif /* CONFIG_INTERWORKING */
845 }
846
847 #endif /* CONFIG_NO_CONFIG_WRITE */
848
849
850 int wpa_config_write(const char *name, struct wpa_config *config)
851 {
852 #ifndef CONFIG_NO_CONFIG_WRITE
853 FILE *f;
854 struct wpa_ssid *ssid;
855 struct wpa_cred *cred;
856 #ifndef CONFIG_NO_CONFIG_BLOBS
857 struct wpa_config_blob *blob;
858 #endif /* CONFIG_NO_CONFIG_BLOBS */
859 int ret = 0;
860
861 wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
862
863 f = fopen(name, "w");
864 if (f == NULL) {
865 wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
866 return -1;
867 }
868
869 wpa_config_write_global(f, config);
870
871 for (cred = config->cred; cred; cred = cred->next) {
872 fprintf(f, "\ncred={\n");
873 wpa_config_write_cred(f, cred);
874 fprintf(f, "}\n");
875 }
876
877 for (ssid = config->ssid; ssid; ssid = ssid->next) {
878 if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
879 continue; /* do not save temporary networks */
880 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
881 !ssid->passphrase)
882 continue; /* do not save invalid network */
883 fprintf(f, "\nnetwork={\n");
884 wpa_config_write_network(f, ssid);
885 fprintf(f, "}\n");
886 }
887
888 #ifndef CONFIG_NO_CONFIG_BLOBS
889 for (blob = config->blobs; blob; blob = blob->next) {
890 ret = wpa_config_write_blob(f, blob);
891 if (ret)
892 break;
893 }
894 #endif /* CONFIG_NO_CONFIG_BLOBS */
895
896 fclose(f);
897
898 wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
899 name, ret ? "un" : "");
900 return ret;
901 #else /* CONFIG_NO_CONFIG_WRITE */
902 return -1;
903 #endif /* CONFIG_NO_CONFIG_WRITE */
904 }