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