Add SIM identifier to the network profile and cred block
[mech_eap.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 #include "eap_peer/eap_methods.h"
21 #include "eap_peer/eap.h"
22
23
24 static int newline_terminated(const char *buf, size_t buflen)
25 {
26         size_t len = os_strlen(buf);
27         if (len == 0)
28                 return 0;
29         if (len == buflen - 1 && buf[buflen - 1] != '\r' &&
30             buf[len - 1] != '\n')
31                 return 0;
32         return 1;
33 }
34
35
36 static void skip_line_end(FILE *stream)
37 {
38         char buf[100];
39         while (fgets(buf, sizeof(buf), stream)) {
40                 buf[sizeof(buf) - 1] = '\0';
41                 if (newline_terminated(buf, sizeof(buf)))
42                         return;
43         }
44 }
45
46
47 /**
48  * wpa_config_get_line - Read the next configuration file line
49  * @s: Buffer for the line
50  * @size: The buffer length
51  * @stream: File stream to read from
52  * @line: Pointer to a variable storing the file line number
53  * @_pos: Buffer for the pointer to the beginning of data on the text line or
54  * %NULL if not needed (returned value used instead)
55  * Returns: Pointer to the beginning of data on the text line or %NULL if no
56  * more text lines are available.
57  *
58  * This function reads the next non-empty line from the configuration file and
59  * removes comments. The returned string is guaranteed to be null-terminated.
60  */
61 static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line,
62                                   char **_pos)
63 {
64         char *pos, *end, *sstart;
65
66         while (fgets(s, size, stream)) {
67                 (*line)++;
68                 s[size - 1] = '\0';
69                 if (!newline_terminated(s, size)) {
70                         /*
71                          * The line was truncated - skip rest of it to avoid
72                          * confusing error messages.
73                          */
74                         wpa_printf(MSG_INFO, "Long line in configuration file "
75                                    "truncated");
76                         skip_line_end(stream);
77                 }
78                 pos = s;
79
80                 /* Skip white space from the beginning of line. */
81                 while (*pos == ' ' || *pos == '\t' || *pos == '\r')
82                         pos++;
83
84                 /* Skip comment lines and empty lines */
85                 if (*pos == '#' || *pos == '\n' || *pos == '\0')
86                         continue;
87
88                 /*
89                  * Remove # comments unless they are within a double quoted
90                  * string.
91                  */
92                 sstart = os_strchr(pos, '"');
93                 if (sstart)
94                         sstart = os_strrchr(sstart + 1, '"');
95                 if (!sstart)
96                         sstart = pos;
97                 end = os_strchr(sstart, '#');
98                 if (end)
99                         *end-- = '\0';
100                 else
101                         end = pos + os_strlen(pos) - 1;
102
103                 /* Remove trailing white space. */
104                 while (end > pos &&
105                        (*end == '\n' || *end == ' ' || *end == '\t' ||
106                         *end == '\r'))
107                         *end-- = '\0';
108
109                 if (*pos == '\0')
110                         continue;
111
112                 if (_pos)
113                         *_pos = pos;
114                 return pos;
115         }
116
117         if (_pos)
118                 *_pos = NULL;
119         return NULL;
120 }
121
122
123 static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
124 {
125         int errors = 0;
126
127         if (ssid->passphrase) {
128                 if (ssid->psk_set) {
129                         wpa_printf(MSG_ERROR, "Line %d: both PSK and "
130                                    "passphrase configured.", line);
131                         errors++;
132                 }
133                 wpa_config_update_psk(ssid);
134         }
135
136         if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
137             !(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
138             !(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
139                 /* Group cipher cannot be stronger than the pairwise cipher. */
140                 wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher"
141                            " list since it was not allowed for pairwise "
142                            "cipher", line);
143                 ssid->group_cipher &= ~WPA_CIPHER_CCMP;
144         }
145
146         return errors;
147 }
148
149
150 static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id)
151 {
152         struct wpa_ssid *ssid;
153         int errors = 0, end = 0;
154         char buf[2000], *pos, *pos2;
155
156         wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block",
157                    *line);
158         ssid = os_zalloc(sizeof(*ssid));
159         if (ssid == NULL)
160                 return NULL;
161         dl_list_init(&ssid->psk_list);
162         ssid->id = id;
163
164         wpa_config_set_network_defaults(ssid);
165
166         while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
167                 if (os_strcmp(pos, "}") == 0) {
168                         end = 1;
169                         break;
170                 }
171
172                 pos2 = os_strchr(pos, '=');
173                 if (pos2 == NULL) {
174                         wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line "
175                                    "'%s'.", *line, pos);
176                         errors++;
177                         continue;
178                 }
179
180                 *pos2++ = '\0';
181                 if (*pos2 == '"') {
182                         if (os_strchr(pos2 + 1, '"') == NULL) {
183                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
184                                            "quotation '%s'.", *line, pos2);
185                                 errors++;
186                                 continue;
187                         }
188                 }
189
190                 if (wpa_config_set(ssid, pos, pos2, *line) < 0)
191                         errors++;
192         }
193
194         if (!end) {
195                 wpa_printf(MSG_ERROR, "Line %d: network block was not "
196                            "terminated properly.", *line);
197                 errors++;
198         }
199
200         errors += wpa_config_validate_network(ssid, *line);
201
202         if (errors) {
203                 wpa_config_free_ssid(ssid);
204                 ssid = NULL;
205         }
206
207         return ssid;
208 }
209
210
211 static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id)
212 {
213         struct wpa_cred *cred;
214         int errors = 0, end = 0;
215         char buf[256], *pos, *pos2;
216
217         wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line);
218         cred = os_zalloc(sizeof(*cred));
219         if (cred == NULL)
220                 return NULL;
221         cred->id = id;
222         cred->sim_num = DEFAULT_USER_SELECTED_SIM;
223
224         while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
225                 if (os_strcmp(pos, "}") == 0) {
226                         end = 1;
227                         break;
228                 }
229
230                 pos2 = os_strchr(pos, '=');
231                 if (pos2 == NULL) {
232                         wpa_printf(MSG_ERROR, "Line %d: Invalid cred line "
233                                    "'%s'.", *line, pos);
234                         errors++;
235                         continue;
236                 }
237
238                 *pos2++ = '\0';
239                 if (*pos2 == '"') {
240                         if (os_strchr(pos2 + 1, '"') == NULL) {
241                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
242                                            "quotation '%s'.", *line, pos2);
243                                 errors++;
244                                 continue;
245                         }
246                 }
247
248                 if (wpa_config_set_cred(cred, pos, pos2, *line) < 0)
249                         errors++;
250         }
251
252         if (!end) {
253                 wpa_printf(MSG_ERROR, "Line %d: cred block was not "
254                            "terminated properly.", *line);
255                 errors++;
256         }
257
258         if (errors) {
259                 wpa_config_free_cred(cred);
260                 cred = NULL;
261         }
262
263         return cred;
264 }
265
266
267 #ifndef CONFIG_NO_CONFIG_BLOBS
268 static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line,
269                                                      const char *name)
270 {
271         struct wpa_config_blob *blob;
272         char buf[256], *pos;
273         unsigned char *encoded = NULL, *nencoded;
274         int end = 0;
275         size_t encoded_len = 0, len;
276
277         wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'",
278                    *line, name);
279
280         while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) {
281                 if (os_strcmp(pos, "}") == 0) {
282                         end = 1;
283                         break;
284                 }
285
286                 len = os_strlen(pos);
287                 nencoded = os_realloc(encoded, encoded_len + len);
288                 if (nencoded == NULL) {
289                         wpa_printf(MSG_ERROR, "Line %d: not enough memory for "
290                                    "blob", *line);
291                         os_free(encoded);
292                         return NULL;
293                 }
294                 encoded = nencoded;
295                 os_memcpy(encoded + encoded_len, pos, len);
296                 encoded_len += len;
297         }
298
299         if (!end) {
300                 wpa_printf(MSG_ERROR, "Line %d: blob was not terminated "
301                            "properly", *line);
302                 os_free(encoded);
303                 return NULL;
304         }
305
306         blob = os_zalloc(sizeof(*blob));
307         if (blob == NULL) {
308                 os_free(encoded);
309                 return NULL;
310         }
311         blob->name = os_strdup(name);
312         blob->data = base64_decode(encoded, encoded_len, &blob->len);
313         os_free(encoded);
314
315         if (blob->name == NULL || blob->data == NULL) {
316                 wpa_config_free_blob(blob);
317                 return NULL;
318         }
319
320         return blob;
321 }
322
323
324 static int wpa_config_process_blob(struct wpa_config *config, FILE *f,
325                                    int *line, char *bname)
326 {
327         char *name_end;
328         struct wpa_config_blob *blob;
329
330         name_end = os_strchr(bname, '=');
331         if (name_end == NULL) {
332                 wpa_printf(MSG_ERROR, "Line %d: no blob name terminator",
333                            *line);
334                 return -1;
335         }
336         *name_end = '\0';
337
338         blob = wpa_config_read_blob(f, line, bname);
339         if (blob == NULL) {
340                 wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s",
341                            *line, bname);
342                 return -1;
343         }
344         wpa_config_set_blob(config, blob);
345         return 0;
346 }
347 #endif /* CONFIG_NO_CONFIG_BLOBS */
348
349
350 struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp)
351 {
352         FILE *f;
353         char buf[512], *pos;
354         int errors = 0, line = 0;
355         struct wpa_ssid *ssid, *tail = NULL, *head = NULL;
356         struct wpa_cred *cred, *cred_tail = NULL, *cred_head = NULL;
357         struct wpa_config *config;
358         int id = 0;
359         int cred_id = 0;
360
361         if (name == NULL)
362                 return NULL;
363         if (cfgp)
364                 config = cfgp;
365         else
366                 config = wpa_config_alloc_empty(NULL, NULL);
367         if (config == NULL) {
368                 wpa_printf(MSG_ERROR, "Failed to allocate config file "
369                            "structure");
370                 return NULL;
371         }
372         head = config->ssid;
373         cred_head = config->cred;
374
375         wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name);
376         f = fopen(name, "r");
377         if (f == NULL) {
378                 wpa_printf(MSG_ERROR, "Failed to open config file '%s', "
379                            "error: %s", name, strerror(errno));
380                 os_free(config);
381                 return NULL;
382         }
383
384         while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) {
385                 if (os_strcmp(pos, "network={") == 0) {
386                         ssid = wpa_config_read_network(f, &line, id++);
387                         if (ssid == NULL) {
388                                 wpa_printf(MSG_ERROR, "Line %d: failed to "
389                                            "parse network block.", line);
390                                 errors++;
391                                 continue;
392                         }
393                         if (head == NULL) {
394                                 head = tail = ssid;
395                         } else {
396                                 tail->next = ssid;
397                                 tail = ssid;
398                         }
399                         if (wpa_config_add_prio_network(config, ssid)) {
400                                 wpa_printf(MSG_ERROR, "Line %d: failed to add "
401                                            "network block to priority list.",
402                                            line);
403                                 errors++;
404                                 continue;
405                         }
406                 } else if (os_strcmp(pos, "cred={") == 0) {
407                         cred = wpa_config_read_cred(f, &line, cred_id++);
408                         if (cred == NULL) {
409                                 wpa_printf(MSG_ERROR, "Line %d: failed to "
410                                            "parse cred block.", line);
411                                 errors++;
412                                 continue;
413                         }
414                         if (cred_head == NULL) {
415                                 cred_head = cred_tail = cred;
416                         } else {
417                                 cred_tail->next = cred;
418                                 cred_tail = cred;
419                         }
420 #ifndef CONFIG_NO_CONFIG_BLOBS
421                 } else if (os_strncmp(pos, "blob-base64-", 12) == 0) {
422                         if (wpa_config_process_blob(config, f, &line, pos + 12)
423                             < 0) {
424                                 wpa_printf(MSG_ERROR, "Line %d: failed to "
425                                            "process blob.", line);
426                                 errors++;
427                                 continue;
428                         }
429 #endif /* CONFIG_NO_CONFIG_BLOBS */
430                 } else if (wpa_config_process_global(config, pos, line) < 0) {
431                         wpa_printf(MSG_ERROR, "Line %d: Invalid configuration "
432                                    "line '%s'.", line, pos);
433                         errors++;
434                         continue;
435                 }
436         }
437
438         fclose(f);
439
440         config->ssid = head;
441         wpa_config_debug_dump_networks(config);
442         config->cred = cred_head;
443
444 #ifndef WPA_IGNORE_CONFIG_ERRORS
445         if (errors) {
446                 wpa_config_free(config);
447                 config = NULL;
448                 head = NULL;
449         }
450 #endif /* WPA_IGNORE_CONFIG_ERRORS */
451
452         return config;
453 }
454
455
456 #ifndef CONFIG_NO_CONFIG_WRITE
457
458 static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid)
459 {
460         char *value = wpa_config_get(ssid, field);
461         if (value == NULL)
462                 return;
463         fprintf(f, "\t%s=%s\n", field, value);
464         os_free(value);
465 }
466
467
468 static void write_int(FILE *f, const char *field, int value, int def)
469 {
470         if (value == def)
471                 return;
472         fprintf(f, "\t%s=%d\n", field, value);
473 }
474
475
476 static void write_bssid(FILE *f, struct wpa_ssid *ssid)
477 {
478         char *value = wpa_config_get(ssid, "bssid");
479         if (value == NULL)
480                 return;
481         fprintf(f, "\tbssid=%s\n", value);
482         os_free(value);
483 }
484
485
486 static void write_psk(FILE *f, struct wpa_ssid *ssid)
487 {
488         char *value = wpa_config_get(ssid, "psk");
489         if (value == NULL)
490                 return;
491         fprintf(f, "\tpsk=%s\n", value);
492         os_free(value);
493 }
494
495
496 static void write_proto(FILE *f, struct wpa_ssid *ssid)
497 {
498         char *value;
499
500         if (ssid->proto == DEFAULT_PROTO)
501                 return;
502
503         value = wpa_config_get(ssid, "proto");
504         if (value == NULL)
505                 return;
506         if (value[0])
507                 fprintf(f, "\tproto=%s\n", value);
508         os_free(value);
509 }
510
511
512 static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid)
513 {
514         char *value;
515
516         if (ssid->key_mgmt == DEFAULT_KEY_MGMT)
517                 return;
518
519         value = wpa_config_get(ssid, "key_mgmt");
520         if (value == NULL)
521                 return;
522         if (value[0])
523                 fprintf(f, "\tkey_mgmt=%s\n", value);
524         os_free(value);
525 }
526
527
528 static void write_pairwise(FILE *f, struct wpa_ssid *ssid)
529 {
530         char *value;
531
532         if (ssid->pairwise_cipher == DEFAULT_PAIRWISE)
533                 return;
534
535         value = wpa_config_get(ssid, "pairwise");
536         if (value == NULL)
537                 return;
538         if (value[0])
539                 fprintf(f, "\tpairwise=%s\n", value);
540         os_free(value);
541 }
542
543
544 static void write_group(FILE *f, struct wpa_ssid *ssid)
545 {
546         char *value;
547
548         if (ssid->group_cipher == DEFAULT_GROUP)
549                 return;
550
551         value = wpa_config_get(ssid, "group");
552         if (value == NULL)
553                 return;
554         if (value[0])
555                 fprintf(f, "\tgroup=%s\n", value);
556         os_free(value);
557 }
558
559
560 static void write_auth_alg(FILE *f, struct wpa_ssid *ssid)
561 {
562         char *value;
563
564         if (ssid->auth_alg == 0)
565                 return;
566
567         value = wpa_config_get(ssid, "auth_alg");
568         if (value == NULL)
569                 return;
570         if (value[0])
571                 fprintf(f, "\tauth_alg=%s\n", value);
572         os_free(value);
573 }
574
575
576 #ifdef IEEE8021X_EAPOL
577 static void write_eap(FILE *f, struct wpa_ssid *ssid)
578 {
579         char *value;
580
581         value = wpa_config_get(ssid, "eap");
582         if (value == NULL)
583                 return;
584
585         if (value[0])
586                 fprintf(f, "\teap=%s\n", value);
587         os_free(value);
588 }
589 #endif /* IEEE8021X_EAPOL */
590
591
592 static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid)
593 {
594         char field[20], *value;
595         int res;
596
597         res = os_snprintf(field, sizeof(field), "wep_key%d", idx);
598         if (res < 0 || (size_t) res >= sizeof(field))
599                 return;
600         value = wpa_config_get(ssid, field);
601         if (value) {
602                 fprintf(f, "\t%s=%s\n", field, value);
603                 os_free(value);
604         }
605 }
606
607
608 #ifdef CONFIG_P2P
609
610 static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid)
611 {
612         char *value = wpa_config_get(ssid, "go_p2p_dev_addr");
613         if (value == NULL)
614                 return;
615         fprintf(f, "\tgo_p2p_dev_addr=%s\n", value);
616         os_free(value);
617 }
618
619 static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid)
620 {
621         char *value = wpa_config_get(ssid, "p2p_client_list");
622         if (value == NULL)
623                 return;
624         fprintf(f, "\tp2p_client_list=%s\n", value);
625         os_free(value);
626 }
627
628
629 static void write_psk_list(FILE *f, struct wpa_ssid *ssid)
630 {
631         struct psk_list_entry *psk;
632         char hex[32 * 2 + 1];
633
634         dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) {
635                 wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk));
636                 fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n",
637                         psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex);
638         }
639 }
640
641 #endif /* CONFIG_P2P */
642
643
644 static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid)
645 {
646         int i;
647
648 #define STR(t) write_str(f, #t, ssid)
649 #define INT(t) write_int(f, #t, ssid->t, 0)
650 #define INTe(t) write_int(f, #t, ssid->eap.t, 0)
651 #define INT_DEF(t, def) write_int(f, #t, ssid->t, def)
652 #define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def)
653
654         STR(ssid);
655         INT(scan_ssid);
656         write_bssid(f, ssid);
657         write_psk(f, ssid);
658         write_proto(f, ssid);
659         write_key_mgmt(f, ssid);
660         INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD);
661         write_pairwise(f, ssid);
662         write_group(f, ssid);
663         write_auth_alg(f, ssid);
664         STR(bgscan);
665         STR(autoscan);
666         STR(scan_freq);
667 #ifdef IEEE8021X_EAPOL
668         write_eap(f, ssid);
669         STR(identity);
670         STR(anonymous_identity);
671         STR(password);
672         STR(ca_cert);
673         STR(ca_path);
674         STR(client_cert);
675         STR(private_key);
676         STR(private_key_passwd);
677         STR(dh_file);
678         STR(subject_match);
679         STR(altsubject_match);
680         STR(domain_suffix_match);
681         STR(ca_cert2);
682         STR(ca_path2);
683         STR(client_cert2);
684         STR(private_key2);
685         STR(private_key2_passwd);
686         STR(dh_file2);
687         STR(subject_match2);
688         STR(altsubject_match2);
689         STR(domain_suffix_match2);
690         STR(phase1);
691         STR(phase2);
692         STR(pcsc);
693         STR(pin);
694         STR(engine_id);
695         STR(key_id);
696         STR(cert_id);
697         STR(ca_cert_id);
698         STR(key2_id);
699         STR(pin2);
700         STR(engine2_id);
701         STR(cert2_id);
702         STR(ca_cert2_id);
703         INTe(engine);
704         INTe(engine2);
705         INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS);
706 #endif /* IEEE8021X_EAPOL */
707         for (i = 0; i < 4; i++)
708                 write_wep_key(f, i, ssid);
709         INT(wep_tx_keyidx);
710         INT(priority);
711 #ifdef IEEE8021X_EAPOL
712         INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND);
713         STR(pac_file);
714         INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE);
715         INTe(ocsp);
716         INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM);
717 #endif /* IEEE8021X_EAPOL */
718         INT(mode);
719         INT(frequency);
720         write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1);
721         INT(disabled);
722         INT(peerkey);
723 #ifdef CONFIG_IEEE80211W
724         write_int(f, "ieee80211w", ssid->ieee80211w,
725                   MGMT_FRAME_PROTECTION_DEFAULT);
726 #endif /* CONFIG_IEEE80211W */
727         STR(id_str);
728 #ifdef CONFIG_P2P
729         write_go_p2p_dev_addr(f, ssid);
730         write_p2p_client_list(f, ssid);
731         write_psk_list(f, ssid);
732 #endif /* CONFIG_P2P */
733         INT(dtim_period);
734         INT(beacon_int);
735
736 #undef STR
737 #undef INT
738 #undef INT_DEF
739 }
740
741
742 static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred)
743 {
744         size_t i;
745
746         if (cred->priority)
747                 fprintf(f, "\tpriority=%d\n", cred->priority);
748         if (cred->pcsc)
749                 fprintf(f, "\tpcsc=%d\n", cred->pcsc);
750         if (cred->realm)
751                 fprintf(f, "\trealm=\"%s\"\n", cred->realm);
752         if (cred->username)
753                 fprintf(f, "\tusername=\"%s\"\n", cred->username);
754         if (cred->password && cred->ext_password)
755                 fprintf(f, "\tpassword=ext:%s\n", cred->password);
756         else if (cred->password)
757                 fprintf(f, "\tpassword=\"%s\"\n", cred->password);
758         if (cred->ca_cert)
759                 fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert);
760         if (cred->client_cert)
761                 fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert);
762         if (cred->private_key)
763                 fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key);
764         if (cred->private_key_passwd)
765                 fprintf(f, "\tprivate_key_passwd=\"%s\"\n",
766                         cred->private_key_passwd);
767         if (cred->imsi)
768                 fprintf(f, "\timsi=\"%s\"\n", cred->imsi);
769         if (cred->milenage)
770                 fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage);
771         for (i = 0; i < cred->num_domain; i++)
772                 fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]);
773         if (cred->domain_suffix_match)
774                 fprintf(f, "\tdomain_suffix_match=\"%s\"",
775                         cred->domain_suffix_match);
776         if (cred->roaming_consortium_len) {
777                 fprintf(f, "\troaming_consortium=");
778                 for (i = 0; i < cred->roaming_consortium_len; i++)
779                         fprintf(f, "%02x", cred->roaming_consortium[i]);
780                 fprintf(f, "\n");
781         }
782         if (cred->eap_method) {
783                 const char *name;
784                 name = eap_get_name(cred->eap_method[0].vendor,
785                                     cred->eap_method[0].method);
786                 fprintf(f, "\teap=%s\n", name);
787         }
788         if (cred->phase1)
789                 fprintf(f, "\tphase1=\"%s\"\n", cred->phase1);
790         if (cred->phase2)
791                 fprintf(f, "\tphase2=\"%s\"\n", cred->phase2);
792         if (cred->excluded_ssid) {
793                 size_t j;
794                 for (i = 0; i < cred->num_excluded_ssid; i++) {
795                         struct excluded_ssid *e = &cred->excluded_ssid[i];
796                         fprintf(f, "\texcluded_ssid=");
797                         for (j = 0; j < e->ssid_len; j++)
798                                 fprintf(f, "%02x", e->ssid[j]);
799                         fprintf(f, "\n");
800                 }
801         }
802         if (cred->roaming_partner) {
803                 for (i = 0; i < cred->num_roaming_partner; i++) {
804                         struct roaming_partner *p = &cred->roaming_partner[i];
805                         fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n",
806                                 p->fqdn, p->exact_match, p->priority,
807                                 p->country);
808                 }
809         }
810         if (cred->update_identifier)
811                 fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier);
812
813         if (cred->provisioning_sp)
814                 fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp);
815         if (cred->sp_priority)
816                 fprintf(f, "\tsp_priority=%d\n", cred->sp_priority);
817
818         if (cred->min_dl_bandwidth_home)
819                 fprintf(f, "\tmin_dl_bandwidth_home=%u\n",
820                         cred->min_dl_bandwidth_home);
821         if (cred->min_ul_bandwidth_home)
822                 fprintf(f, "\tmin_ul_bandwidth_home=%u\n",
823                         cred->min_ul_bandwidth_home);
824         if (cred->min_dl_bandwidth_roaming)
825                 fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n",
826                         cred->min_dl_bandwidth_roaming);
827         if (cred->min_ul_bandwidth_roaming)
828                 fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n",
829                         cred->min_ul_bandwidth_roaming);
830
831         if (cred->max_bss_load)
832                 fprintf(f, "\tmax_bss_load=%u\n",
833                         cred->max_bss_load);
834
835         if (cred->ocsp)
836                 fprintf(f, "\tocsp=%d\n", cred->ocsp);
837
838         if (cred->num_req_conn_capab) {
839                 for (i = 0; i < cred->num_req_conn_capab; i++) {
840                         int *ports;
841
842                         fprintf(f, "\treq_conn_capab=%u",
843                                 cred->req_conn_capab_proto[i]);
844                         ports = cred->req_conn_capab_port[i];
845                         if (ports) {
846                                 int j;
847                                 for (j = 0; ports[j] != -1; j++) {
848                                         fprintf(f, "%s%d", j > 0 ? "," : ":",
849                                                 ports[j]);
850                                 }
851                         }
852                         fprintf(f, "\n");
853                 }
854         }
855
856         if (cred->required_roaming_consortium_len) {
857                 fprintf(f, "\trequired_roaming_consortium=");
858                 for (i = 0; i < cred->required_roaming_consortium_len; i++)
859                         fprintf(f, "%02x",
860                                 cred->required_roaming_consortium[i]);
861                 fprintf(f, "\n");
862         }
863
864         if (cred->sim_num != DEFAULT_USER_SELECTED_SIM)
865                 fprintf(f, "\tsim_num=%d\n", cred->sim_num);
866 }
867
868
869 #ifndef CONFIG_NO_CONFIG_BLOBS
870 static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob)
871 {
872         unsigned char *encoded;
873
874         encoded = base64_encode(blob->data, blob->len, NULL);
875         if (encoded == NULL)
876                 return -1;
877
878         fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded);
879         os_free(encoded);
880         return 0;
881 }
882 #endif /* CONFIG_NO_CONFIG_BLOBS */
883
884
885 static void write_global_bin(FILE *f, const char *field,
886                              const struct wpabuf *val)
887 {
888         size_t i;
889         const u8 *pos;
890
891         if (val == NULL)
892                 return;
893
894         fprintf(f, "%s=", field);
895         pos = wpabuf_head(val);
896         for (i = 0; i < wpabuf_len(val); i++)
897                 fprintf(f, "%02X", *pos++);
898         fprintf(f, "\n");
899 }
900
901
902 static void wpa_config_write_global(FILE *f, struct wpa_config *config)
903 {
904 #ifdef CONFIG_CTRL_IFACE
905         if (config->ctrl_interface)
906                 fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface);
907         if (config->ctrl_interface_group)
908                 fprintf(f, "ctrl_interface_group=%s\n",
909                         config->ctrl_interface_group);
910 #endif /* CONFIG_CTRL_IFACE */
911         if (config->eapol_version != DEFAULT_EAPOL_VERSION)
912                 fprintf(f, "eapol_version=%d\n", config->eapol_version);
913         if (config->ap_scan != DEFAULT_AP_SCAN)
914                 fprintf(f, "ap_scan=%d\n", config->ap_scan);
915         if (config->disable_scan_offload)
916                 fprintf(f, "disable_scan_offload=%d\n",
917                         config->disable_scan_offload);
918         if (config->fast_reauth != DEFAULT_FAST_REAUTH)
919                 fprintf(f, "fast_reauth=%d\n", config->fast_reauth);
920         if (config->opensc_engine_path)
921                 fprintf(f, "opensc_engine_path=%s\n",
922                         config->opensc_engine_path);
923         if (config->pkcs11_engine_path)
924                 fprintf(f, "pkcs11_engine_path=%s\n",
925                         config->pkcs11_engine_path);
926         if (config->pkcs11_module_path)
927                 fprintf(f, "pkcs11_module_path=%s\n",
928                         config->pkcs11_module_path);
929         if (config->pcsc_reader)
930                 fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader);
931         if (config->pcsc_pin)
932                 fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin);
933         if (config->driver_param)
934                 fprintf(f, "driver_param=%s\n", config->driver_param);
935         if (config->dot11RSNAConfigPMKLifetime)
936                 fprintf(f, "dot11RSNAConfigPMKLifetime=%d\n",
937                         config->dot11RSNAConfigPMKLifetime);
938         if (config->dot11RSNAConfigPMKReauthThreshold)
939                 fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%d\n",
940                         config->dot11RSNAConfigPMKReauthThreshold);
941         if (config->dot11RSNAConfigSATimeout)
942                 fprintf(f, "dot11RSNAConfigSATimeout=%d\n",
943                         config->dot11RSNAConfigSATimeout);
944         if (config->update_config)
945                 fprintf(f, "update_config=%d\n", config->update_config);
946 #ifdef CONFIG_WPS
947         if (!is_nil_uuid(config->uuid)) {
948                 char buf[40];
949                 uuid_bin2str(config->uuid, buf, sizeof(buf));
950                 fprintf(f, "uuid=%s\n", buf);
951         }
952         if (config->device_name)
953                 fprintf(f, "device_name=%s\n", config->device_name);
954         if (config->manufacturer)
955                 fprintf(f, "manufacturer=%s\n", config->manufacturer);
956         if (config->model_name)
957                 fprintf(f, "model_name=%s\n", config->model_name);
958         if (config->model_number)
959                 fprintf(f, "model_number=%s\n", config->model_number);
960         if (config->serial_number)
961                 fprintf(f, "serial_number=%s\n", config->serial_number);
962         {
963                 char _buf[WPS_DEV_TYPE_BUFSIZE], *buf;
964                 buf = wps_dev_type_bin2str(config->device_type,
965                                            _buf, sizeof(_buf));
966                 if (os_strcmp(buf, "0-00000000-0") != 0)
967                         fprintf(f, "device_type=%s\n", buf);
968         }
969         if (WPA_GET_BE32(config->os_version))
970                 fprintf(f, "os_version=%08x\n",
971                         WPA_GET_BE32(config->os_version));
972         if (config->config_methods)
973                 fprintf(f, "config_methods=%s\n", config->config_methods);
974         if (config->wps_cred_processing)
975                 fprintf(f, "wps_cred_processing=%d\n",
976                         config->wps_cred_processing);
977         if (config->wps_vendor_ext_m1) {
978                 int i, len = wpabuf_len(config->wps_vendor_ext_m1);
979                 const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1);
980                 if (len > 0) {
981                         fprintf(f, "wps_vendor_ext_m1=");
982                         for (i = 0; i < len; i++)
983                                 fprintf(f, "%02x", *p++);
984                         fprintf(f, "\n");
985                 }
986         }
987 #endif /* CONFIG_WPS */
988 #ifdef CONFIG_P2P
989         if (config->p2p_listen_reg_class)
990                 fprintf(f, "p2p_listen_reg_class=%u\n",
991                         config->p2p_listen_reg_class);
992         if (config->p2p_listen_channel)
993                 fprintf(f, "p2p_listen_channel=%u\n",
994                         config->p2p_listen_channel);
995         if (config->p2p_oper_reg_class)
996                 fprintf(f, "p2p_oper_reg_class=%u\n",
997                         config->p2p_oper_reg_class);
998         if (config->p2p_oper_channel)
999                 fprintf(f, "p2p_oper_channel=%u\n", config->p2p_oper_channel);
1000         if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT)
1001                 fprintf(f, "p2p_go_intent=%u\n", config->p2p_go_intent);
1002         if (config->p2p_ssid_postfix)
1003                 fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix);
1004         if (config->persistent_reconnect)
1005                 fprintf(f, "persistent_reconnect=%u\n",
1006                         config->persistent_reconnect);
1007         if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS)
1008                 fprintf(f, "p2p_intra_bss=%u\n", config->p2p_intra_bss);
1009         if (config->p2p_group_idle)
1010                 fprintf(f, "p2p_group_idle=%u\n", config->p2p_group_idle);
1011         if (config->p2p_pref_chan) {
1012                 unsigned int i;
1013                 fprintf(f, "p2p_pref_chan=");
1014                 for (i = 0; i < config->num_p2p_pref_chan; i++) {
1015                         fprintf(f, "%s%u:%u", i > 0 ? "," : "",
1016                                 config->p2p_pref_chan[i].op_class,
1017                                 config->p2p_pref_chan[i].chan);
1018                 }
1019                 fprintf(f, "\n");
1020         }
1021         if (config->p2p_no_go_freq.num) {
1022                 char *val = freq_range_list_str(&config->p2p_no_go_freq);
1023                 if (val) {
1024                         fprintf(f, "p2p_no_go_freq=%s\n", val);
1025                         os_free(val);
1026                 }
1027         }
1028         if (config->p2p_add_cli_chan)
1029                 fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan);
1030         if (config->p2p_go_ht40)
1031                 fprintf(f, "p2p_go_ht40=%u\n", config->p2p_go_ht40);
1032         if (config->p2p_go_vht)
1033                 fprintf(f, "p2p_go_vht=%u\n", config->p2p_go_vht);
1034         if (config->p2p_disabled)
1035                 fprintf(f, "p2p_disabled=%u\n", config->p2p_disabled);
1036         if (config->p2p_no_group_iface)
1037                 fprintf(f, "p2p_no_group_iface=%u\n",
1038                         config->p2p_no_group_iface);
1039         if (config->p2p_ignore_shared_freq)
1040                 fprintf(f, "p2p_ignore_shared_freq=%u\n",
1041                         config->p2p_ignore_shared_freq);
1042 #endif /* CONFIG_P2P */
1043         if (config->country[0] && config->country[1]) {
1044                 fprintf(f, "country=%c%c\n",
1045                         config->country[0], config->country[1]);
1046         }
1047         if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT)
1048                 fprintf(f, "bss_max_count=%u\n", config->bss_max_count);
1049         if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE)
1050                 fprintf(f, "bss_expiration_age=%u\n",
1051                         config->bss_expiration_age);
1052         if (config->bss_expiration_scan_count !=
1053             DEFAULT_BSS_EXPIRATION_SCAN_COUNT)
1054                 fprintf(f, "bss_expiration_scan_count=%u\n",
1055                         config->bss_expiration_scan_count);
1056         if (config->filter_ssids)
1057                 fprintf(f, "filter_ssids=%d\n", config->filter_ssids);
1058         if (config->max_num_sta != DEFAULT_MAX_NUM_STA)
1059                 fprintf(f, "max_num_sta=%u\n", config->max_num_sta);
1060         if (config->disassoc_low_ack)
1061                 fprintf(f, "disassoc_low_ack=%u\n", config->disassoc_low_ack);
1062 #ifdef CONFIG_HS20
1063         if (config->hs20)
1064                 fprintf(f, "hs20=1\n");
1065 #endif /* CONFIG_HS20 */
1066 #ifdef CONFIG_INTERWORKING
1067         if (config->interworking)
1068                 fprintf(f, "interworking=%u\n", config->interworking);
1069         if (!is_zero_ether_addr(config->hessid))
1070                 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
1071         if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE)
1072                 fprintf(f, "access_network_type=%d\n",
1073                         config->access_network_type);
1074 #endif /* CONFIG_INTERWORKING */
1075         if (config->pbc_in_m1)
1076                 fprintf(f, "pbc_in_m1=%u\n", config->pbc_in_m1);
1077         if (config->wps_nfc_pw_from_config) {
1078                 if (config->wps_nfc_dev_pw_id)
1079                         fprintf(f, "wps_nfc_dev_pw_id=%d\n",
1080                                 config->wps_nfc_dev_pw_id);
1081                 write_global_bin(f, "wps_nfc_dh_pubkey",
1082                                  config->wps_nfc_dh_pubkey);
1083                 write_global_bin(f, "wps_nfc_dh_privkey",
1084                                  config->wps_nfc_dh_privkey);
1085                 write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw);
1086         }
1087
1088         if (config->ext_password_backend)
1089                 fprintf(f, "ext_password_backend=%s\n",
1090                         config->ext_password_backend);
1091         if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY)
1092                 fprintf(f, "p2p_go_max_inactivity=%d\n",
1093                         config->p2p_go_max_inactivity);
1094         if (config->auto_interworking)
1095                 fprintf(f, "auto_interworking=%d\n",
1096                         config->auto_interworking);
1097         if (config->okc)
1098                 fprintf(f, "okc=%d\n", config->okc);
1099         if (config->pmf)
1100                 fprintf(f, "pmf=%d\n", config->pmf);
1101         if (config->dtim_period)
1102                 fprintf(f, "dtim_period=%d\n", config->dtim_period);
1103         if (config->beacon_int)
1104                 fprintf(f, "beacon_int=%d\n", config->beacon_int);
1105
1106         if (config->sae_groups) {
1107                 int i;
1108                 fprintf(f, "sae_groups=");
1109                 for (i = 0; config->sae_groups[i] >= 0; i++) {
1110                         fprintf(f, "%s%d", i > 0 ? " " : "",
1111                                 config->sae_groups[i]);
1112                 }
1113                 fprintf(f, "\n");
1114         }
1115
1116         if (config->ap_vendor_elements) {
1117                 int i, len = wpabuf_len(config->ap_vendor_elements);
1118                 const u8 *p = wpabuf_head_u8(config->ap_vendor_elements);
1119                 if (len > 0) {
1120                         fprintf(f, "ap_vendor_elements=");
1121                         for (i = 0; i < len; i++)
1122                                 fprintf(f, "%02x", *p++);
1123                         fprintf(f, "\n");
1124                 }
1125         }
1126
1127         if (config->ignore_old_scan_res)
1128                 fprintf(f, "ignore_old_scan_res=%d\n",
1129                         config->ignore_old_scan_res);
1130
1131         if (config->freq_list && config->freq_list[0]) {
1132                 int i;
1133                 fprintf(f, "freq_list=");
1134                 for (i = 0; config->freq_list[i]; i++) {
1135                         fprintf(f, "%s%u", i > 0 ? " " : "",
1136                                 config->freq_list[i]);
1137                 }
1138                 fprintf(f, "\n");
1139         }
1140         if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ)
1141                 fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq);
1142
1143         if (config->sched_scan_interval)
1144                 fprintf(f, "sched_scan_interval=%u\n",
1145                         config->sched_scan_interval);
1146
1147         if (config->external_sim)
1148                 fprintf(f, "external_sim=%d\n", config->external_sim);
1149
1150         if (config->tdls_external_control)
1151                 fprintf(f, "tdls_external_control=%d\n",
1152                         config->tdls_external_control);
1153
1154         if (config->bgscan)
1155                 fprintf(f, "bgscan=\"%s\"\n", config->bgscan);
1156 }
1157
1158 #endif /* CONFIG_NO_CONFIG_WRITE */
1159
1160
1161 int wpa_config_write(const char *name, struct wpa_config *config)
1162 {
1163 #ifndef CONFIG_NO_CONFIG_WRITE
1164         FILE *f;
1165         struct wpa_ssid *ssid;
1166         struct wpa_cred *cred;
1167 #ifndef CONFIG_NO_CONFIG_BLOBS
1168         struct wpa_config_blob *blob;
1169 #endif /* CONFIG_NO_CONFIG_BLOBS */
1170         int ret = 0;
1171
1172         wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name);
1173
1174         f = fopen(name, "w");
1175         if (f == NULL) {
1176                 wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name);
1177                 return -1;
1178         }
1179
1180         wpa_config_write_global(f, config);
1181
1182         for (cred = config->cred; cred; cred = cred->next) {
1183                 if (cred->temporary)
1184                         continue;
1185                 fprintf(f, "\ncred={\n");
1186                 wpa_config_write_cred(f, cred);
1187                 fprintf(f, "}\n");
1188         }
1189
1190         for (ssid = config->ssid; ssid; ssid = ssid->next) {
1191                 if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary)
1192                         continue; /* do not save temporary networks */
1193                 if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set &&
1194                     !ssid->passphrase)
1195                         continue; /* do not save invalid network */
1196                 fprintf(f, "\nnetwork={\n");
1197                 wpa_config_write_network(f, ssid);
1198                 fprintf(f, "}\n");
1199         }
1200
1201 #ifndef CONFIG_NO_CONFIG_BLOBS
1202         for (blob = config->blobs; blob; blob = blob->next) {
1203                 ret = wpa_config_write_blob(f, blob);
1204                 if (ret)
1205                         break;
1206         }
1207 #endif /* CONFIG_NO_CONFIG_BLOBS */
1208
1209         fclose(f);
1210
1211         wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully",
1212                    name, ret ? "un" : "");
1213         return ret;
1214 #else /* CONFIG_NO_CONFIG_WRITE */
1215         return -1;
1216 #endif /* CONFIG_NO_CONFIG_WRITE */
1217 }