Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * WPA Supplicant / Configuration backend: text file |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 3 | * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi> |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4 | * |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 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" |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 14 | #ifdef ANDROID |
| 15 | #include <sys/stat.h> |
| 16 | #endif /* ANDROID */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 17 | |
| 18 | #include "common.h" |
| 19 | #include "config.h" |
| 20 | #include "base64.h" |
| 21 | #include "uuid.h" |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 22 | #include "common/ieee802_1x_defs.h" |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 23 | #include "p2p/p2p.h" |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 24 | #include "eap_peer/eap_methods.h" |
| 25 | #include "eap_peer/eap.h" |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 26 | |
| 27 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 28 | static int newline_terminated(const char *buf, size_t buflen) |
| 29 | { |
| 30 | size_t len = os_strlen(buf); |
| 31 | if (len == 0) |
| 32 | return 0; |
| 33 | if (len == buflen - 1 && buf[buflen - 1] != '\r' && |
| 34 | buf[len - 1] != '\n') |
| 35 | return 0; |
| 36 | return 1; |
| 37 | } |
| 38 | |
| 39 | |
| 40 | static void skip_line_end(FILE *stream) |
| 41 | { |
| 42 | char buf[100]; |
| 43 | while (fgets(buf, sizeof(buf), stream)) { |
| 44 | buf[sizeof(buf) - 1] = '\0'; |
| 45 | if (newline_terminated(buf, sizeof(buf))) |
| 46 | return; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 51 | /** |
| 52 | * wpa_config_get_line - Read the next configuration file line |
| 53 | * @s: Buffer for the line |
| 54 | * @size: The buffer length |
| 55 | * @stream: File stream to read from |
| 56 | * @line: Pointer to a variable storing the file line number |
| 57 | * @_pos: Buffer for the pointer to the beginning of data on the text line or |
| 58 | * %NULL if not needed (returned value used instead) |
| 59 | * Returns: Pointer to the beginning of data on the text line or %NULL if no |
| 60 | * more text lines are available. |
| 61 | * |
| 62 | * This function reads the next non-empty line from the configuration file and |
| 63 | * removes comments. The returned string is guaranteed to be null-terminated. |
| 64 | */ |
| 65 | static char * wpa_config_get_line(char *s, int size, FILE *stream, int *line, |
| 66 | char **_pos) |
| 67 | { |
| 68 | char *pos, *end, *sstart; |
| 69 | |
| 70 | while (fgets(s, size, stream)) { |
| 71 | (*line)++; |
| 72 | s[size - 1] = '\0'; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 73 | if (!newline_terminated(s, size)) { |
| 74 | /* |
| 75 | * The line was truncated - skip rest of it to avoid |
| 76 | * confusing error messages. |
| 77 | */ |
| 78 | wpa_printf(MSG_INFO, "Long line in configuration file " |
| 79 | "truncated"); |
| 80 | skip_line_end(stream); |
| 81 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 82 | pos = s; |
| 83 | |
| 84 | /* Skip white space from the beginning of line. */ |
| 85 | while (*pos == ' ' || *pos == '\t' || *pos == '\r') |
| 86 | pos++; |
| 87 | |
| 88 | /* Skip comment lines and empty lines */ |
| 89 | if (*pos == '#' || *pos == '\n' || *pos == '\0') |
| 90 | continue; |
| 91 | |
| 92 | /* |
| 93 | * Remove # comments unless they are within a double quoted |
| 94 | * string. |
| 95 | */ |
| 96 | sstart = os_strchr(pos, '"'); |
| 97 | if (sstart) |
| 98 | sstart = os_strrchr(sstart + 1, '"'); |
| 99 | if (!sstart) |
| 100 | sstart = pos; |
| 101 | end = os_strchr(sstart, '#'); |
| 102 | if (end) |
| 103 | *end-- = '\0'; |
| 104 | else |
| 105 | end = pos + os_strlen(pos) - 1; |
| 106 | |
| 107 | /* Remove trailing white space. */ |
| 108 | while (end > pos && |
| 109 | (*end == '\n' || *end == ' ' || *end == '\t' || |
| 110 | *end == '\r')) |
| 111 | *end-- = '\0'; |
| 112 | |
| 113 | if (*pos == '\0') |
| 114 | continue; |
| 115 | |
| 116 | if (_pos) |
| 117 | *_pos = pos; |
| 118 | return pos; |
| 119 | } |
| 120 | |
| 121 | if (_pos) |
| 122 | *_pos = NULL; |
| 123 | return NULL; |
| 124 | } |
| 125 | |
| 126 | |
| 127 | static int wpa_config_validate_network(struct wpa_ssid *ssid, int line) |
| 128 | { |
| 129 | int errors = 0; |
| 130 | |
| 131 | if (ssid->passphrase) { |
| 132 | if (ssid->psk_set) { |
| 133 | wpa_printf(MSG_ERROR, "Line %d: both PSK and " |
| 134 | "passphrase configured.", line); |
| 135 | errors++; |
| 136 | } |
| 137 | wpa_config_update_psk(ssid); |
| 138 | } |
| 139 | |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 140 | if (ssid->disabled == 2) |
| 141 | ssid->p2p_persistent_group = 1; |
| 142 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 143 | if ((ssid->group_cipher & WPA_CIPHER_CCMP) && |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 144 | !(ssid->pairwise_cipher & (WPA_CIPHER_CCMP | WPA_CIPHER_CCMP_256 | |
| 145 | WPA_CIPHER_GCMP | WPA_CIPHER_GCMP_256 | |
| 146 | WPA_CIPHER_NONE))) { |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 147 | /* Group cipher cannot be stronger than the pairwise cipher. */ |
| 148 | wpa_printf(MSG_DEBUG, "Line %d: removed CCMP from group cipher" |
| 149 | " list since it was not allowed for pairwise " |
| 150 | "cipher", line); |
| 151 | ssid->group_cipher &= ~WPA_CIPHER_CCMP; |
| 152 | } |
| 153 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 154 | if (ssid->mode == WPAS_MODE_MESH && |
| 155 | (ssid->key_mgmt != WPA_KEY_MGMT_NONE && |
| 156 | ssid->key_mgmt != WPA_KEY_MGMT_SAE)) { |
| 157 | wpa_printf(MSG_ERROR, |
| 158 | "Line %d: key_mgmt for mesh network should be open or SAE", |
| 159 | line); |
| 160 | errors++; |
| 161 | } |
| 162 | |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 163 | #ifdef CONFIG_OCV |
| 164 | if (ssid->ocv && ssid->ieee80211w == NO_MGMT_FRAME_PROTECTION) { |
| 165 | wpa_printf(MSG_ERROR, |
| 166 | "Line %d: PMF needs to be enabled whenever using OCV", |
| 167 | line); |
| 168 | errors++; |
| 169 | } |
| 170 | #endif /* CONFIG_OCV */ |
| 171 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 172 | return errors; |
| 173 | } |
| 174 | |
| 175 | |
| 176 | static struct wpa_ssid * wpa_config_read_network(FILE *f, int *line, int id) |
| 177 | { |
| 178 | struct wpa_ssid *ssid; |
| 179 | int errors = 0, end = 0; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 180 | char buf[2000], *pos, *pos2; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 181 | |
| 182 | wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new network block", |
| 183 | *line); |
| 184 | ssid = os_zalloc(sizeof(*ssid)); |
| 185 | if (ssid == NULL) |
| 186 | return NULL; |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 187 | dl_list_init(&ssid->psk_list); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 188 | ssid->id = id; |
| 189 | |
| 190 | wpa_config_set_network_defaults(ssid); |
| 191 | |
| 192 | while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) { |
| 193 | if (os_strcmp(pos, "}") == 0) { |
| 194 | end = 1; |
| 195 | break; |
| 196 | } |
| 197 | |
| 198 | pos2 = os_strchr(pos, '='); |
| 199 | if (pos2 == NULL) { |
| 200 | wpa_printf(MSG_ERROR, "Line %d: Invalid SSID line " |
| 201 | "'%s'.", *line, pos); |
| 202 | errors++; |
| 203 | continue; |
| 204 | } |
| 205 | |
| 206 | *pos2++ = '\0'; |
| 207 | if (*pos2 == '"') { |
| 208 | if (os_strchr(pos2 + 1, '"') == NULL) { |
| 209 | wpa_printf(MSG_ERROR, "Line %d: invalid " |
| 210 | "quotation '%s'.", *line, pos2); |
| 211 | errors++; |
| 212 | continue; |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | if (wpa_config_set(ssid, pos, pos2, *line) < 0) |
| 217 | errors++; |
| 218 | } |
| 219 | |
| 220 | if (!end) { |
| 221 | wpa_printf(MSG_ERROR, "Line %d: network block was not " |
| 222 | "terminated properly.", *line); |
| 223 | errors++; |
| 224 | } |
| 225 | |
| 226 | errors += wpa_config_validate_network(ssid, *line); |
| 227 | |
| 228 | if (errors) { |
| 229 | wpa_config_free_ssid(ssid); |
| 230 | ssid = NULL; |
| 231 | } |
| 232 | |
| 233 | return ssid; |
| 234 | } |
| 235 | |
| 236 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 237 | static struct wpa_cred * wpa_config_read_cred(FILE *f, int *line, int id) |
| 238 | { |
| 239 | struct wpa_cred *cred; |
| 240 | int errors = 0, end = 0; |
| 241 | char buf[256], *pos, *pos2; |
| 242 | |
| 243 | wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new cred block", *line); |
| 244 | cred = os_zalloc(sizeof(*cred)); |
| 245 | if (cred == NULL) |
| 246 | return NULL; |
| 247 | cred->id = id; |
Dmitry Shmidt | f9bdef9 | 2014-04-25 10:46:36 -0700 | [diff] [blame] | 248 | cred->sim_num = DEFAULT_USER_SELECTED_SIM; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 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 | pos2 = os_strchr(pos, '='); |
| 257 | if (pos2 == NULL) { |
| 258 | wpa_printf(MSG_ERROR, "Line %d: Invalid cred line " |
| 259 | "'%s'.", *line, pos); |
| 260 | errors++; |
| 261 | continue; |
| 262 | } |
| 263 | |
| 264 | *pos2++ = '\0'; |
| 265 | if (*pos2 == '"') { |
| 266 | if (os_strchr(pos2 + 1, '"') == NULL) { |
| 267 | wpa_printf(MSG_ERROR, "Line %d: invalid " |
| 268 | "quotation '%s'.", *line, pos2); |
| 269 | errors++; |
| 270 | continue; |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | if (wpa_config_set_cred(cred, pos, pos2, *line) < 0) |
| 275 | errors++; |
| 276 | } |
| 277 | |
| 278 | if (!end) { |
| 279 | wpa_printf(MSG_ERROR, "Line %d: cred block was not " |
| 280 | "terminated properly.", *line); |
| 281 | errors++; |
| 282 | } |
| 283 | |
| 284 | if (errors) { |
| 285 | wpa_config_free_cred(cred); |
| 286 | cred = NULL; |
| 287 | } |
| 288 | |
| 289 | return cred; |
| 290 | } |
| 291 | |
| 292 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 293 | #ifndef CONFIG_NO_CONFIG_BLOBS |
| 294 | static struct wpa_config_blob * wpa_config_read_blob(FILE *f, int *line, |
| 295 | const char *name) |
| 296 | { |
| 297 | struct wpa_config_blob *blob; |
| 298 | char buf[256], *pos; |
| 299 | unsigned char *encoded = NULL, *nencoded; |
| 300 | int end = 0; |
| 301 | size_t encoded_len = 0, len; |
| 302 | |
| 303 | wpa_printf(MSG_MSGDUMP, "Line: %d - start of a new named blob '%s'", |
| 304 | *line, name); |
| 305 | |
| 306 | while (wpa_config_get_line(buf, sizeof(buf), f, line, &pos)) { |
| 307 | if (os_strcmp(pos, "}") == 0) { |
| 308 | end = 1; |
| 309 | break; |
| 310 | } |
| 311 | |
| 312 | len = os_strlen(pos); |
| 313 | nencoded = os_realloc(encoded, encoded_len + len); |
| 314 | if (nencoded == NULL) { |
| 315 | wpa_printf(MSG_ERROR, "Line %d: not enough memory for " |
| 316 | "blob", *line); |
| 317 | os_free(encoded); |
| 318 | return NULL; |
| 319 | } |
| 320 | encoded = nencoded; |
| 321 | os_memcpy(encoded + encoded_len, pos, len); |
| 322 | encoded_len += len; |
| 323 | } |
| 324 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 325 | if (!end || !encoded) { |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 326 | wpa_printf(MSG_ERROR, "Line %d: blob was not terminated " |
| 327 | "properly", *line); |
| 328 | os_free(encoded); |
| 329 | return NULL; |
| 330 | } |
| 331 | |
| 332 | blob = os_zalloc(sizeof(*blob)); |
| 333 | if (blob == NULL) { |
| 334 | os_free(encoded); |
| 335 | return NULL; |
| 336 | } |
| 337 | blob->name = os_strdup(name); |
| 338 | blob->data = base64_decode(encoded, encoded_len, &blob->len); |
| 339 | os_free(encoded); |
| 340 | |
| 341 | if (blob->name == NULL || blob->data == NULL) { |
| 342 | wpa_config_free_blob(blob); |
| 343 | return NULL; |
| 344 | } |
| 345 | |
| 346 | return blob; |
| 347 | } |
| 348 | |
| 349 | |
| 350 | static int wpa_config_process_blob(struct wpa_config *config, FILE *f, |
| 351 | int *line, char *bname) |
| 352 | { |
| 353 | char *name_end; |
| 354 | struct wpa_config_blob *blob; |
| 355 | |
| 356 | name_end = os_strchr(bname, '='); |
| 357 | if (name_end == NULL) { |
| 358 | wpa_printf(MSG_ERROR, "Line %d: no blob name terminator", |
| 359 | *line); |
| 360 | return -1; |
| 361 | } |
| 362 | *name_end = '\0'; |
| 363 | |
| 364 | blob = wpa_config_read_blob(f, line, bname); |
| 365 | if (blob == NULL) { |
| 366 | wpa_printf(MSG_ERROR, "Line %d: failed to read blob %s", |
| 367 | *line, bname); |
| 368 | return -1; |
| 369 | } |
| 370 | wpa_config_set_blob(config, blob); |
| 371 | return 0; |
| 372 | } |
| 373 | #endif /* CONFIG_NO_CONFIG_BLOBS */ |
| 374 | |
| 375 | |
Dmitry Shmidt | 64f47c5 | 2013-04-16 10:41:54 -0700 | [diff] [blame] | 376 | struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 377 | { |
| 378 | FILE *f; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 379 | char buf[512], *pos; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 380 | int errors = 0, line = 0; |
Dmitry Shmidt | 7832adb | 2014-04-29 10:53:02 -0700 | [diff] [blame] | 381 | struct wpa_ssid *ssid, *tail, *head; |
| 382 | struct wpa_cred *cred, *cred_tail, *cred_head; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 383 | struct wpa_config *config; |
| 384 | int id = 0; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 385 | int cred_id = 0; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 386 | |
Dmitry Shmidt | 64f47c5 | 2013-04-16 10:41:54 -0700 | [diff] [blame] | 387 | if (name == NULL) |
| 388 | return NULL; |
| 389 | if (cfgp) |
| 390 | config = cfgp; |
| 391 | else |
| 392 | config = wpa_config_alloc_empty(NULL, NULL); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 393 | if (config == NULL) { |
| 394 | wpa_printf(MSG_ERROR, "Failed to allocate config file " |
| 395 | "structure"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 396 | return NULL; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 397 | } |
Dmitry Shmidt | 7832adb | 2014-04-29 10:53:02 -0700 | [diff] [blame] | 398 | tail = head = config->ssid; |
| 399 | while (tail && tail->next) |
| 400 | tail = tail->next; |
| 401 | cred_tail = cred_head = config->cred; |
| 402 | while (cred_tail && cred_tail->next) |
| 403 | cred_tail = cred_tail->next; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 404 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 405 | wpa_printf(MSG_DEBUG, "Reading configuration file '%s'", name); |
| 406 | f = fopen(name, "r"); |
| 407 | if (f == NULL) { |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 408 | wpa_printf(MSG_ERROR, "Failed to open config file '%s', " |
| 409 | "error: %s", name, strerror(errno)); |
Dmitry Shmidt | e3d76d9 | 2018-02-01 00:34:54 +0000 | [diff] [blame] | 410 | if (config != cfgp) |
| 411 | os_free(config); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 412 | return NULL; |
| 413 | } |
| 414 | |
| 415 | while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) { |
| 416 | if (os_strcmp(pos, "network={") == 0) { |
| 417 | ssid = wpa_config_read_network(f, &line, id++); |
| 418 | if (ssid == NULL) { |
| 419 | wpa_printf(MSG_ERROR, "Line %d: failed to " |
| 420 | "parse network block.", line); |
| 421 | errors++; |
| 422 | continue; |
| 423 | } |
| 424 | if (head == NULL) { |
| 425 | head = tail = ssid; |
| 426 | } else { |
| 427 | tail->next = ssid; |
| 428 | tail = ssid; |
| 429 | } |
| 430 | if (wpa_config_add_prio_network(config, ssid)) { |
| 431 | wpa_printf(MSG_ERROR, "Line %d: failed to add " |
| 432 | "network block to priority list.", |
| 433 | line); |
| 434 | errors++; |
| 435 | continue; |
| 436 | } |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 437 | } else if (os_strcmp(pos, "cred={") == 0) { |
| 438 | cred = wpa_config_read_cred(f, &line, cred_id++); |
| 439 | if (cred == NULL) { |
| 440 | wpa_printf(MSG_ERROR, "Line %d: failed to " |
| 441 | "parse cred block.", line); |
| 442 | errors++; |
| 443 | continue; |
| 444 | } |
| 445 | if (cred_head == NULL) { |
| 446 | cred_head = cred_tail = cred; |
| 447 | } else { |
| 448 | cred_tail->next = cred; |
| 449 | cred_tail = cred; |
| 450 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 451 | #ifndef CONFIG_NO_CONFIG_BLOBS |
| 452 | } else if (os_strncmp(pos, "blob-base64-", 12) == 0) { |
| 453 | if (wpa_config_process_blob(config, f, &line, pos + 12) |
| 454 | < 0) { |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 455 | wpa_printf(MSG_ERROR, "Line %d: failed to " |
| 456 | "process blob.", line); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 457 | errors++; |
| 458 | continue; |
| 459 | } |
| 460 | #endif /* CONFIG_NO_CONFIG_BLOBS */ |
| 461 | } else if (wpa_config_process_global(config, pos, line) < 0) { |
| 462 | wpa_printf(MSG_ERROR, "Line %d: Invalid configuration " |
| 463 | "line '%s'.", line, pos); |
| 464 | errors++; |
| 465 | continue; |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | fclose(f); |
| 470 | |
Iliyan Malchev | 97d9806 | 2013-04-23 02:37:51 +0000 | [diff] [blame] | 471 | config->ssid = head; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 472 | wpa_config_debug_dump_networks(config); |
Iliyan Malchev | 97d9806 | 2013-04-23 02:37:51 +0000 | [diff] [blame] | 473 | config->cred = cred_head; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 474 | |
| 475 | #ifndef WPA_IGNORE_CONFIG_ERRORS |
| 476 | if (errors) { |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 477 | if (config != cfgp) |
| 478 | wpa_config_free(config); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 479 | config = NULL; |
| 480 | head = NULL; |
| 481 | } |
| 482 | #endif /* WPA_IGNORE_CONFIG_ERRORS */ |
| 483 | |
| 484 | return config; |
| 485 | } |
| 486 | |
| 487 | |
| 488 | #ifndef CONFIG_NO_CONFIG_WRITE |
| 489 | |
| 490 | static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid) |
| 491 | { |
| 492 | char *value = wpa_config_get(ssid, field); |
| 493 | if (value == NULL) |
| 494 | return; |
| 495 | fprintf(f, "\t%s=%s\n", field, value); |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 496 | str_clear_free(value); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | |
| 500 | static void write_int(FILE *f, const char *field, int value, int def) |
| 501 | { |
| 502 | if (value == def) |
| 503 | return; |
| 504 | fprintf(f, "\t%s=%d\n", field, value); |
| 505 | } |
| 506 | |
| 507 | |
| 508 | static void write_bssid(FILE *f, struct wpa_ssid *ssid) |
| 509 | { |
| 510 | char *value = wpa_config_get(ssid, "bssid"); |
| 511 | if (value == NULL) |
| 512 | return; |
| 513 | fprintf(f, "\tbssid=%s\n", value); |
| 514 | os_free(value); |
| 515 | } |
| 516 | |
| 517 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 518 | static void write_bssid_hint(FILE *f, struct wpa_ssid *ssid) |
| 519 | { |
| 520 | char *value = wpa_config_get(ssid, "bssid_hint"); |
| 521 | |
| 522 | if (!value) |
| 523 | return; |
| 524 | fprintf(f, "\tbssid_hint=%s\n", value); |
| 525 | os_free(value); |
| 526 | } |
| 527 | |
| 528 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 529 | static void write_psk(FILE *f, struct wpa_ssid *ssid) |
| 530 | { |
Dmitry Shmidt | 912c6ec | 2015-03-30 13:16:51 -0700 | [diff] [blame] | 531 | char *value; |
| 532 | |
| 533 | if (ssid->mem_only_psk) |
| 534 | return; |
| 535 | |
| 536 | value = wpa_config_get(ssid, "psk"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 537 | if (value == NULL) |
| 538 | return; |
| 539 | fprintf(f, "\tpsk=%s\n", value); |
| 540 | os_free(value); |
| 541 | } |
| 542 | |
| 543 | |
| 544 | static void write_proto(FILE *f, struct wpa_ssid *ssid) |
| 545 | { |
| 546 | char *value; |
| 547 | |
| 548 | if (ssid->proto == DEFAULT_PROTO) |
| 549 | return; |
| 550 | |
| 551 | value = wpa_config_get(ssid, "proto"); |
| 552 | if (value == NULL) |
| 553 | return; |
| 554 | if (value[0]) |
| 555 | fprintf(f, "\tproto=%s\n", value); |
| 556 | os_free(value); |
| 557 | } |
| 558 | |
| 559 | |
| 560 | static void write_key_mgmt(FILE *f, struct wpa_ssid *ssid) |
| 561 | { |
| 562 | char *value; |
| 563 | |
| 564 | if (ssid->key_mgmt == DEFAULT_KEY_MGMT) |
| 565 | return; |
| 566 | |
| 567 | value = wpa_config_get(ssid, "key_mgmt"); |
| 568 | if (value == NULL) |
| 569 | return; |
| 570 | if (value[0]) |
| 571 | fprintf(f, "\tkey_mgmt=%s\n", value); |
| 572 | os_free(value); |
| 573 | } |
| 574 | |
| 575 | |
| 576 | static void write_pairwise(FILE *f, struct wpa_ssid *ssid) |
| 577 | { |
| 578 | char *value; |
| 579 | |
| 580 | if (ssid->pairwise_cipher == DEFAULT_PAIRWISE) |
| 581 | return; |
| 582 | |
| 583 | value = wpa_config_get(ssid, "pairwise"); |
| 584 | if (value == NULL) |
| 585 | return; |
| 586 | if (value[0]) |
| 587 | fprintf(f, "\tpairwise=%s\n", value); |
| 588 | os_free(value); |
| 589 | } |
| 590 | |
| 591 | |
| 592 | static void write_group(FILE *f, struct wpa_ssid *ssid) |
| 593 | { |
| 594 | char *value; |
| 595 | |
| 596 | if (ssid->group_cipher == DEFAULT_GROUP) |
| 597 | return; |
| 598 | |
| 599 | value = wpa_config_get(ssid, "group"); |
| 600 | if (value == NULL) |
| 601 | return; |
| 602 | if (value[0]) |
| 603 | fprintf(f, "\tgroup=%s\n", value); |
| 604 | os_free(value); |
| 605 | } |
| 606 | |
| 607 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 608 | static void write_group_mgmt(FILE *f, struct wpa_ssid *ssid) |
| 609 | { |
| 610 | char *value; |
| 611 | |
| 612 | if (!ssid->group_mgmt_cipher) |
| 613 | return; |
| 614 | |
| 615 | value = wpa_config_get(ssid, "group_mgmt"); |
| 616 | if (!value) |
| 617 | return; |
| 618 | if (value[0]) |
| 619 | fprintf(f, "\tgroup_mgmt=%s\n", value); |
| 620 | os_free(value); |
| 621 | } |
| 622 | |
| 623 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 624 | static void write_auth_alg(FILE *f, struct wpa_ssid *ssid) |
| 625 | { |
| 626 | char *value; |
| 627 | |
| 628 | if (ssid->auth_alg == 0) |
| 629 | return; |
| 630 | |
| 631 | value = wpa_config_get(ssid, "auth_alg"); |
| 632 | if (value == NULL) |
| 633 | return; |
| 634 | if (value[0]) |
| 635 | fprintf(f, "\tauth_alg=%s\n", value); |
| 636 | os_free(value); |
| 637 | } |
| 638 | |
| 639 | |
| 640 | #ifdef IEEE8021X_EAPOL |
| 641 | static void write_eap(FILE *f, struct wpa_ssid *ssid) |
| 642 | { |
| 643 | char *value; |
| 644 | |
| 645 | value = wpa_config_get(ssid, "eap"); |
| 646 | if (value == NULL) |
| 647 | return; |
| 648 | |
| 649 | if (value[0]) |
| 650 | fprintf(f, "\teap=%s\n", value); |
| 651 | os_free(value); |
| 652 | } |
| 653 | #endif /* IEEE8021X_EAPOL */ |
| 654 | |
| 655 | |
| 656 | static void write_wep_key(FILE *f, int idx, struct wpa_ssid *ssid) |
| 657 | { |
| 658 | char field[20], *value; |
| 659 | int res; |
| 660 | |
| 661 | res = os_snprintf(field, sizeof(field), "wep_key%d", idx); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 662 | if (os_snprintf_error(sizeof(field), res)) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 663 | return; |
| 664 | value = wpa_config_get(ssid, field); |
| 665 | if (value) { |
| 666 | fprintf(f, "\t%s=%s\n", field, value); |
| 667 | os_free(value); |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 672 | #ifdef CONFIG_P2P |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 673 | |
Dmitry Shmidt | 5460547 | 2013-11-08 11:10:19 -0800 | [diff] [blame] | 674 | static void write_go_p2p_dev_addr(FILE *f, struct wpa_ssid *ssid) |
| 675 | { |
| 676 | char *value = wpa_config_get(ssid, "go_p2p_dev_addr"); |
| 677 | if (value == NULL) |
| 678 | return; |
| 679 | fprintf(f, "\tgo_p2p_dev_addr=%s\n", value); |
| 680 | os_free(value); |
| 681 | } |
| 682 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 683 | static void write_p2p_client_list(FILE *f, struct wpa_ssid *ssid) |
| 684 | { |
| 685 | char *value = wpa_config_get(ssid, "p2p_client_list"); |
| 686 | if (value == NULL) |
| 687 | return; |
| 688 | fprintf(f, "\tp2p_client_list=%s\n", value); |
| 689 | os_free(value); |
| 690 | } |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 691 | |
| 692 | |
| 693 | static void write_psk_list(FILE *f, struct wpa_ssid *ssid) |
| 694 | { |
| 695 | struct psk_list_entry *psk; |
| 696 | char hex[32 * 2 + 1]; |
| 697 | |
| 698 | dl_list_for_each(psk, &ssid->psk_list, struct psk_list_entry, list) { |
| 699 | wpa_snprintf_hex(hex, sizeof(hex), psk->psk, sizeof(psk->psk)); |
| 700 | fprintf(f, "\tpsk_list=%s" MACSTR "-%s\n", |
| 701 | psk->p2p ? "P2P-" : "", MAC2STR(psk->addr), hex); |
| 702 | } |
| 703 | } |
| 704 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 705 | #endif /* CONFIG_P2P */ |
| 706 | |
| 707 | |
Dmitry Shmidt | abb90a3 | 2016-12-05 15:34:39 -0800 | [diff] [blame] | 708 | #ifdef CONFIG_MACSEC |
| 709 | |
| 710 | static void write_mka_cak(FILE *f, struct wpa_ssid *ssid) |
| 711 | { |
| 712 | char *value; |
| 713 | |
| 714 | if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK)) |
| 715 | return; |
| 716 | |
| 717 | value = wpa_config_get(ssid, "mka_cak"); |
| 718 | if (!value) |
| 719 | return; |
| 720 | fprintf(f, "\tmka_cak=%s\n", value); |
| 721 | os_free(value); |
| 722 | } |
| 723 | |
| 724 | |
| 725 | static void write_mka_ckn(FILE *f, struct wpa_ssid *ssid) |
| 726 | { |
| 727 | char *value; |
| 728 | |
| 729 | if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN)) |
| 730 | return; |
| 731 | |
| 732 | value = wpa_config_get(ssid, "mka_ckn"); |
| 733 | if (!value) |
| 734 | return; |
| 735 | fprintf(f, "\tmka_ckn=%s\n", value); |
| 736 | os_free(value); |
| 737 | } |
| 738 | |
| 739 | #endif /* CONFIG_MACSEC */ |
| 740 | |
| 741 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 742 | static void wpa_config_write_network(FILE *f, struct wpa_ssid *ssid) |
| 743 | { |
| 744 | int i; |
| 745 | |
| 746 | #define STR(t) write_str(f, #t, ssid) |
| 747 | #define INT(t) write_int(f, #t, ssid->t, 0) |
| 748 | #define INTe(t) write_int(f, #t, ssid->eap.t, 0) |
| 749 | #define INT_DEF(t, def) write_int(f, #t, ssid->t, def) |
| 750 | #define INT_DEFe(t, def) write_int(f, #t, ssid->eap.t, def) |
| 751 | |
| 752 | STR(ssid); |
| 753 | INT(scan_ssid); |
| 754 | write_bssid(f, ssid); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 755 | write_bssid_hint(f, ssid); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 756 | write_str(f, "bssid_blacklist", ssid); |
| 757 | write_str(f, "bssid_whitelist", ssid); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 758 | write_psk(f, ssid); |
Dmitry Shmidt | 912c6ec | 2015-03-30 13:16:51 -0700 | [diff] [blame] | 759 | INT(mem_only_psk); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 760 | STR(sae_password); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 761 | STR(sae_password_id); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 762 | write_proto(f, ssid); |
| 763 | write_key_mgmt(f, ssid); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 764 | INT_DEF(bg_scan_period, DEFAULT_BG_SCAN_PERIOD); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 765 | write_pairwise(f, ssid); |
| 766 | write_group(f, ssid); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 767 | write_group_mgmt(f, ssid); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 768 | write_auth_alg(f, ssid); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 769 | STR(bgscan); |
| 770 | STR(autoscan); |
Dmitry Shmidt | 5605286 | 2013-10-04 10:23:25 -0700 | [diff] [blame] | 771 | STR(scan_freq); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 772 | #ifdef IEEE8021X_EAPOL |
| 773 | write_eap(f, ssid); |
| 774 | STR(identity); |
| 775 | STR(anonymous_identity); |
Jouni Malinen | a3cb6f0 | 2017-12-08 17:05:40 +0200 | [diff] [blame] | 776 | STR(imsi_identity); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 777 | STR(password); |
| 778 | STR(ca_cert); |
| 779 | STR(ca_path); |
| 780 | STR(client_cert); |
| 781 | STR(private_key); |
| 782 | STR(private_key_passwd); |
| 783 | STR(dh_file); |
| 784 | STR(subject_match); |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 785 | STR(check_cert_subject); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 786 | STR(altsubject_match); |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 787 | STR(domain_suffix_match); |
Dmitry Shmidt | 2f74e36 | 2015-01-21 13:19:05 -0800 | [diff] [blame] | 788 | STR(domain_match); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 789 | STR(ca_cert2); |
| 790 | STR(ca_path2); |
| 791 | STR(client_cert2); |
| 792 | STR(private_key2); |
| 793 | STR(private_key2_passwd); |
| 794 | STR(dh_file2); |
| 795 | STR(subject_match2); |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 796 | STR(check_cert_subject2); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 797 | STR(altsubject_match2); |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 798 | STR(domain_suffix_match2); |
Dmitry Shmidt | 2f74e36 | 2015-01-21 13:19:05 -0800 | [diff] [blame] | 799 | STR(domain_match2); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 800 | STR(phase1); |
| 801 | STR(phase2); |
| 802 | STR(pcsc); |
| 803 | STR(pin); |
| 804 | STR(engine_id); |
| 805 | STR(key_id); |
| 806 | STR(cert_id); |
| 807 | STR(ca_cert_id); |
| 808 | STR(key2_id); |
| 809 | STR(pin2); |
| 810 | STR(engine2_id); |
| 811 | STR(cert2_id); |
| 812 | STR(ca_cert2_id); |
| 813 | INTe(engine); |
| 814 | INTe(engine2); |
| 815 | INT_DEF(eapol_flags, DEFAULT_EAPOL_FLAGS); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 816 | STR(openssl_ciphers); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 817 | INTe(erp); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 818 | #endif /* IEEE8021X_EAPOL */ |
| 819 | for (i = 0; i < 4; i++) |
| 820 | write_wep_key(f, i, ssid); |
| 821 | INT(wep_tx_keyidx); |
| 822 | INT(priority); |
| 823 | #ifdef IEEE8021X_EAPOL |
| 824 | INT_DEF(eap_workaround, DEFAULT_EAP_WORKAROUND); |
| 825 | STR(pac_file); |
| 826 | INT_DEFe(fragment_size, DEFAULT_FRAGMENT_SIZE); |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 827 | INTe(ocsp); |
Dmitry Shmidt | f9bdef9 | 2014-04-25 10:46:36 -0700 | [diff] [blame] | 828 | INT_DEFe(sim_num, DEFAULT_USER_SELECTED_SIM); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 829 | #endif /* IEEE8021X_EAPOL */ |
| 830 | INT(mode); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 831 | INT(no_auto_peer); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 832 | INT(frequency); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 833 | INT(fixed_freq); |
Dmitry Shmidt | 014a3ff | 2015-12-28 13:27:49 -0800 | [diff] [blame] | 834 | #ifdef CONFIG_ACS |
| 835 | INT(acs); |
| 836 | #endif /* CONFIG_ACS */ |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 837 | write_int(f, "proactive_key_caching", ssid->proactive_key_caching, -1); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 838 | INT(disabled); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 839 | INT(mixed_cell); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 840 | INT(vht); |
| 841 | INT_DEF(ht, 1); |
| 842 | INT(ht40); |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 843 | INT_DEF(max_oper_chwidth, DEFAULT_MAX_OPER_CHWIDTH); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 844 | INT(vht_center_freq1); |
| 845 | INT(vht_center_freq2); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 846 | INT(pbss); |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 847 | INT(wps_disabled); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 848 | INT(fils_dh_group); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 849 | #ifdef CONFIG_IEEE80211W |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 850 | write_int(f, "ieee80211w", ssid->ieee80211w, |
| 851 | MGMT_FRAME_PROTECTION_DEFAULT); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 852 | #endif /* CONFIG_IEEE80211W */ |
| 853 | STR(id_str); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 854 | #ifdef CONFIG_P2P |
Dmitry Shmidt | 5460547 | 2013-11-08 11:10:19 -0800 | [diff] [blame] | 855 | write_go_p2p_dev_addr(f, ssid); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 856 | write_p2p_client_list(f, ssid); |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 857 | write_psk_list(f, ssid); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 858 | #endif /* CONFIG_P2P */ |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 859 | INT(ap_max_inactivity); |
Dmitry Shmidt | 7a5e50a | 2013-03-05 12:37:16 -0800 | [diff] [blame] | 860 | INT(dtim_period); |
| 861 | INT(beacon_int); |
Dmitry Shmidt | 5a1480c | 2014-05-12 09:46:02 -0700 | [diff] [blame] | 862 | #ifdef CONFIG_MACSEC |
| 863 | INT(macsec_policy); |
Dmitry Shmidt | abb90a3 | 2016-12-05 15:34:39 -0800 | [diff] [blame] | 864 | write_mka_cak(f, ssid); |
| 865 | write_mka_ckn(f, ssid); |
| 866 | INT(macsec_integ_only); |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 867 | INT(macsec_replay_protect); |
| 868 | INT(macsec_replay_window); |
Dmitry Shmidt | abb90a3 | 2016-12-05 15:34:39 -0800 | [diff] [blame] | 869 | INT(macsec_port); |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 870 | INT_DEF(mka_priority, DEFAULT_PRIO_NOT_KEY_SERVER); |
Dmitry Shmidt | 5a1480c | 2014-05-12 09:46:02 -0700 | [diff] [blame] | 871 | #endif /* CONFIG_MACSEC */ |
Dmitry Shmidt | c281702 | 2014-07-02 10:32:10 -0700 | [diff] [blame] | 872 | #ifdef CONFIG_HS20 |
| 873 | INT(update_identifier); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 874 | STR(roaming_consortium_selection); |
Dmitry Shmidt | c281702 | 2014-07-02 10:32:10 -0700 | [diff] [blame] | 875 | #endif /* CONFIG_HS20 */ |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 876 | write_int(f, "mac_addr", ssid->mac_addr, -1); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 877 | #ifdef CONFIG_MESH |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 878 | STR(mesh_basic_rates); |
| 879 | INT_DEF(dot11MeshMaxRetries, DEFAULT_MESH_MAX_RETRIES); |
| 880 | INT_DEF(dot11MeshRetryTimeout, DEFAULT_MESH_RETRY_TIMEOUT); |
| 881 | INT_DEF(dot11MeshConfirmTimeout, DEFAULT_MESH_CONFIRM_TIMEOUT); |
| 882 | INT_DEF(dot11MeshHoldingTimeout, DEFAULT_MESH_HOLDING_TIMEOUT); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 883 | INT_DEF(mesh_rssi_threshold, DEFAULT_MESH_RSSI_THRESHOLD); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 884 | #endif /* CONFIG_MESH */ |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 885 | INT(wpa_ptk_rekey); |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 886 | INT(group_rekey); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 887 | INT(ignore_broadcast_ssid); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 888 | #ifdef CONFIG_DPP |
| 889 | STR(dpp_connector); |
| 890 | STR(dpp_netaccesskey); |
| 891 | INT(dpp_netaccesskey_expiry); |
| 892 | STR(dpp_csign); |
| 893 | #endif /* CONFIG_DPP */ |
| 894 | INT(owe_group); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 895 | INT(owe_only); |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 896 | INT(multi_ap_backhaul_sta); |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame^] | 897 | INT(ft_eap_pmksa_caching); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 898 | #ifdef CONFIG_HT_OVERRIDES |
| 899 | INT_DEF(disable_ht, DEFAULT_DISABLE_HT); |
| 900 | INT_DEF(disable_ht40, DEFAULT_DISABLE_HT40); |
| 901 | INT_DEF(disable_sgi, DEFAULT_DISABLE_SGI); |
| 902 | INT_DEF(disable_ldpc, DEFAULT_DISABLE_LDPC); |
| 903 | INT(ht40_intolerant); |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 904 | INT_DEF(tx_stbc, DEFAULT_TX_STBC); |
| 905 | INT_DEF(rx_stbc, DEFAULT_RX_STBC); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 906 | INT_DEF(disable_max_amsdu, DEFAULT_DISABLE_MAX_AMSDU); |
| 907 | INT_DEF(ampdu_factor, DEFAULT_AMPDU_FACTOR); |
| 908 | INT_DEF(ampdu_density, DEFAULT_AMPDU_DENSITY); |
| 909 | STR(ht_mcs); |
| 910 | #endif /* CONFIG_HT_OVERRIDES */ |
| 911 | #ifdef CONFIG_VHT_OVERRIDES |
| 912 | INT(disable_vht); |
| 913 | INT(vht_capa); |
| 914 | INT(vht_capa_mask); |
| 915 | INT_DEF(vht_rx_mcs_nss_1, -1); |
| 916 | INT_DEF(vht_rx_mcs_nss_2, -1); |
| 917 | INT_DEF(vht_rx_mcs_nss_3, -1); |
| 918 | INT_DEF(vht_rx_mcs_nss_4, -1); |
| 919 | INT_DEF(vht_rx_mcs_nss_5, -1); |
| 920 | INT_DEF(vht_rx_mcs_nss_6, -1); |
| 921 | INT_DEF(vht_rx_mcs_nss_7, -1); |
| 922 | INT_DEF(vht_rx_mcs_nss_8, -1); |
| 923 | INT_DEF(vht_tx_mcs_nss_1, -1); |
| 924 | INT_DEF(vht_tx_mcs_nss_2, -1); |
| 925 | INT_DEF(vht_tx_mcs_nss_3, -1); |
| 926 | INT_DEF(vht_tx_mcs_nss_4, -1); |
| 927 | INT_DEF(vht_tx_mcs_nss_5, -1); |
| 928 | INT_DEF(vht_tx_mcs_nss_6, -1); |
| 929 | INT_DEF(vht_tx_mcs_nss_7, -1); |
| 930 | INT_DEF(vht_tx_mcs_nss_8, -1); |
| 931 | #endif /* CONFIG_VHT_OVERRIDES */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 932 | |
| 933 | #undef STR |
| 934 | #undef INT |
| 935 | #undef INT_DEF |
| 936 | } |
| 937 | |
| 938 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 939 | static void wpa_config_write_cred(FILE *f, struct wpa_cred *cred) |
| 940 | { |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 941 | size_t i; |
| 942 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 943 | if (cred->priority) |
| 944 | fprintf(f, "\tpriority=%d\n", cred->priority); |
| 945 | if (cred->pcsc) |
| 946 | fprintf(f, "\tpcsc=%d\n", cred->pcsc); |
| 947 | if (cred->realm) |
| 948 | fprintf(f, "\trealm=\"%s\"\n", cred->realm); |
| 949 | if (cred->username) |
| 950 | fprintf(f, "\tusername=\"%s\"\n", cred->username); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 951 | if (cred->password && cred->ext_password) |
| 952 | fprintf(f, "\tpassword=ext:%s\n", cred->password); |
| 953 | else if (cred->password) |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 954 | fprintf(f, "\tpassword=\"%s\"\n", cred->password); |
| 955 | if (cred->ca_cert) |
| 956 | fprintf(f, "\tca_cert=\"%s\"\n", cred->ca_cert); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 957 | if (cred->client_cert) |
| 958 | fprintf(f, "\tclient_cert=\"%s\"\n", cred->client_cert); |
| 959 | if (cred->private_key) |
| 960 | fprintf(f, "\tprivate_key=\"%s\"\n", cred->private_key); |
| 961 | if (cred->private_key_passwd) |
| 962 | fprintf(f, "\tprivate_key_passwd=\"%s\"\n", |
| 963 | cred->private_key_passwd); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 964 | if (cred->imsi) |
| 965 | fprintf(f, "\timsi=\"%s\"\n", cred->imsi); |
| 966 | if (cred->milenage) |
| 967 | fprintf(f, "\tmilenage=\"%s\"\n", cred->milenage); |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 968 | for (i = 0; i < cred->num_domain; i++) |
| 969 | fprintf(f, "\tdomain=\"%s\"\n", cred->domain[i]); |
| 970 | if (cred->domain_suffix_match) |
Dmitry Shmidt | b58836e | 2014-04-29 14:35:56 -0700 | [diff] [blame] | 971 | fprintf(f, "\tdomain_suffix_match=\"%s\"\n", |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 972 | cred->domain_suffix_match); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 973 | if (cred->roaming_consortium_len) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 974 | fprintf(f, "\troaming_consortium="); |
| 975 | for (i = 0; i < cred->roaming_consortium_len; i++) |
| 976 | fprintf(f, "%02x", cred->roaming_consortium[i]); |
| 977 | fprintf(f, "\n"); |
| 978 | } |
| 979 | if (cred->eap_method) { |
| 980 | const char *name; |
| 981 | name = eap_get_name(cred->eap_method[0].vendor, |
| 982 | cred->eap_method[0].method); |
Dmitry Shmidt | 09f57ba | 2014-06-10 16:07:13 -0700 | [diff] [blame] | 983 | if (name) |
| 984 | fprintf(f, "\teap=%s\n", name); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 985 | } |
| 986 | if (cred->phase1) |
| 987 | fprintf(f, "\tphase1=\"%s\"\n", cred->phase1); |
| 988 | if (cred->phase2) |
| 989 | fprintf(f, "\tphase2=\"%s\"\n", cred->phase2); |
| 990 | if (cred->excluded_ssid) { |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 991 | size_t j; |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 992 | for (i = 0; i < cred->num_excluded_ssid; i++) { |
| 993 | struct excluded_ssid *e = &cred->excluded_ssid[i]; |
| 994 | fprintf(f, "\texcluded_ssid="); |
| 995 | for (j = 0; j < e->ssid_len; j++) |
| 996 | fprintf(f, "%02x", e->ssid[j]); |
| 997 | fprintf(f, "\n"); |
| 998 | } |
| 999 | } |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 1000 | if (cred->roaming_partner) { |
| 1001 | for (i = 0; i < cred->num_roaming_partner; i++) { |
| 1002 | struct roaming_partner *p = &cred->roaming_partner[i]; |
| 1003 | fprintf(f, "\troaming_partner=\"%s,%d,%u,%s\"\n", |
| 1004 | p->fqdn, p->exact_match, p->priority, |
| 1005 | p->country); |
| 1006 | } |
| 1007 | } |
| 1008 | if (cred->update_identifier) |
| 1009 | fprintf(f, "\tupdate_identifier=%d\n", cred->update_identifier); |
| 1010 | |
| 1011 | if (cred->provisioning_sp) |
Dmitry Shmidt | 61593f0 | 2014-04-21 16:27:35 -0700 | [diff] [blame] | 1012 | fprintf(f, "\tprovisioning_sp=\"%s\"\n", cred->provisioning_sp); |
Dmitry Shmidt | f21452a | 2014-02-26 10:55:25 -0800 | [diff] [blame] | 1013 | if (cred->sp_priority) |
| 1014 | fprintf(f, "\tsp_priority=%d\n", cred->sp_priority); |
| 1015 | |
| 1016 | if (cred->min_dl_bandwidth_home) |
| 1017 | fprintf(f, "\tmin_dl_bandwidth_home=%u\n", |
| 1018 | cred->min_dl_bandwidth_home); |
| 1019 | if (cred->min_ul_bandwidth_home) |
| 1020 | fprintf(f, "\tmin_ul_bandwidth_home=%u\n", |
| 1021 | cred->min_ul_bandwidth_home); |
| 1022 | if (cred->min_dl_bandwidth_roaming) |
| 1023 | fprintf(f, "\tmin_dl_bandwidth_roaming=%u\n", |
| 1024 | cred->min_dl_bandwidth_roaming); |
| 1025 | if (cred->min_ul_bandwidth_roaming) |
| 1026 | fprintf(f, "\tmin_ul_bandwidth_roaming=%u\n", |
| 1027 | cred->min_ul_bandwidth_roaming); |
| 1028 | |
| 1029 | if (cred->max_bss_load) |
| 1030 | fprintf(f, "\tmax_bss_load=%u\n", |
| 1031 | cred->max_bss_load); |
| 1032 | |
| 1033 | if (cred->ocsp) |
| 1034 | fprintf(f, "\tocsp=%d\n", cred->ocsp); |
Dmitry Shmidt | 0cfd5f7 | 2014-04-04 14:48:05 -0700 | [diff] [blame] | 1035 | |
| 1036 | if (cred->num_req_conn_capab) { |
| 1037 | for (i = 0; i < cred->num_req_conn_capab; i++) { |
| 1038 | int *ports; |
| 1039 | |
| 1040 | fprintf(f, "\treq_conn_capab=%u", |
| 1041 | cred->req_conn_capab_proto[i]); |
| 1042 | ports = cred->req_conn_capab_port[i]; |
| 1043 | if (ports) { |
| 1044 | int j; |
| 1045 | for (j = 0; ports[j] != -1; j++) { |
| 1046 | fprintf(f, "%s%d", j > 0 ? "," : ":", |
| 1047 | ports[j]); |
| 1048 | } |
| 1049 | } |
| 1050 | fprintf(f, "\n"); |
| 1051 | } |
| 1052 | } |
| 1053 | |
| 1054 | if (cred->required_roaming_consortium_len) { |
| 1055 | fprintf(f, "\trequired_roaming_consortium="); |
| 1056 | for (i = 0; i < cred->required_roaming_consortium_len; i++) |
| 1057 | fprintf(f, "%02x", |
| 1058 | cred->required_roaming_consortium[i]); |
| 1059 | fprintf(f, "\n"); |
| 1060 | } |
Dmitry Shmidt | f9bdef9 | 2014-04-25 10:46:36 -0700 | [diff] [blame] | 1061 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1062 | if (cred->num_roaming_consortiums) { |
| 1063 | size_t j; |
| 1064 | |
| 1065 | fprintf(f, "\troaming_consortiums=\""); |
| 1066 | for (i = 0; i < cred->num_roaming_consortiums; i++) { |
| 1067 | if (i > 0) |
| 1068 | fprintf(f, ","); |
| 1069 | for (j = 0; j < cred->roaming_consortiums_len[i]; j++) |
| 1070 | fprintf(f, "%02x", |
| 1071 | cred->roaming_consortiums[i][j]); |
| 1072 | } |
| 1073 | fprintf(f, "\"\n"); |
| 1074 | } |
| 1075 | |
Dmitry Shmidt | f9bdef9 | 2014-04-25 10:46:36 -0700 | [diff] [blame] | 1076 | if (cred->sim_num != DEFAULT_USER_SELECTED_SIM) |
| 1077 | fprintf(f, "\tsim_num=%d\n", cred->sim_num); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1078 | } |
| 1079 | |
| 1080 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1081 | #ifndef CONFIG_NO_CONFIG_BLOBS |
| 1082 | static int wpa_config_write_blob(FILE *f, struct wpa_config_blob *blob) |
| 1083 | { |
| 1084 | unsigned char *encoded; |
| 1085 | |
| 1086 | encoded = base64_encode(blob->data, blob->len, NULL); |
| 1087 | if (encoded == NULL) |
| 1088 | return -1; |
| 1089 | |
| 1090 | fprintf(f, "\nblob-base64-%s={\n%s}\n", blob->name, encoded); |
| 1091 | os_free(encoded); |
| 1092 | return 0; |
| 1093 | } |
| 1094 | #endif /* CONFIG_NO_CONFIG_BLOBS */ |
| 1095 | |
| 1096 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1097 | static void write_global_bin(FILE *f, const char *field, |
| 1098 | const struct wpabuf *val) |
| 1099 | { |
| 1100 | size_t i; |
| 1101 | const u8 *pos; |
| 1102 | |
| 1103 | if (val == NULL) |
| 1104 | return; |
| 1105 | |
| 1106 | fprintf(f, "%s=", field); |
| 1107 | pos = wpabuf_head(val); |
| 1108 | for (i = 0; i < wpabuf_len(val); i++) |
| 1109 | fprintf(f, "%02X", *pos++); |
| 1110 | fprintf(f, "\n"); |
| 1111 | } |
| 1112 | |
| 1113 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1114 | static void wpa_config_write_global(FILE *f, struct wpa_config *config) |
| 1115 | { |
| 1116 | #ifdef CONFIG_CTRL_IFACE |
| 1117 | if (config->ctrl_interface) |
| 1118 | fprintf(f, "ctrl_interface=%s\n", config->ctrl_interface); |
| 1119 | if (config->ctrl_interface_group) |
| 1120 | fprintf(f, "ctrl_interface_group=%s\n", |
| 1121 | config->ctrl_interface_group); |
| 1122 | #endif /* CONFIG_CTRL_IFACE */ |
| 1123 | if (config->eapol_version != DEFAULT_EAPOL_VERSION) |
| 1124 | fprintf(f, "eapol_version=%d\n", config->eapol_version); |
| 1125 | if (config->ap_scan != DEFAULT_AP_SCAN) |
| 1126 | fprintf(f, "ap_scan=%d\n", config->ap_scan); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1127 | if (config->disable_scan_offload) |
| 1128 | fprintf(f, "disable_scan_offload=%d\n", |
| 1129 | config->disable_scan_offload); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1130 | if (config->fast_reauth != DEFAULT_FAST_REAUTH) |
| 1131 | fprintf(f, "fast_reauth=%d\n", config->fast_reauth); |
| 1132 | if (config->opensc_engine_path) |
| 1133 | fprintf(f, "opensc_engine_path=%s\n", |
| 1134 | config->opensc_engine_path); |
| 1135 | if (config->pkcs11_engine_path) |
| 1136 | fprintf(f, "pkcs11_engine_path=%s\n", |
| 1137 | config->pkcs11_engine_path); |
| 1138 | if (config->pkcs11_module_path) |
| 1139 | fprintf(f, "pkcs11_module_path=%s\n", |
| 1140 | config->pkcs11_module_path); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1141 | if (config->openssl_ciphers) |
| 1142 | fprintf(f, "openssl_ciphers=%s\n", config->openssl_ciphers); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1143 | if (config->pcsc_reader) |
| 1144 | fprintf(f, "pcsc_reader=%s\n", config->pcsc_reader); |
| 1145 | if (config->pcsc_pin) |
| 1146 | fprintf(f, "pcsc_pin=%s\n", config->pcsc_pin); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1147 | if (config->driver_param) |
| 1148 | fprintf(f, "driver_param=%s\n", config->driver_param); |
| 1149 | if (config->dot11RSNAConfigPMKLifetime) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1150 | fprintf(f, "dot11RSNAConfigPMKLifetime=%u\n", |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1151 | config->dot11RSNAConfigPMKLifetime); |
| 1152 | if (config->dot11RSNAConfigPMKReauthThreshold) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1153 | fprintf(f, "dot11RSNAConfigPMKReauthThreshold=%u\n", |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1154 | config->dot11RSNAConfigPMKReauthThreshold); |
| 1155 | if (config->dot11RSNAConfigSATimeout) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1156 | fprintf(f, "dot11RSNAConfigSATimeout=%u\n", |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1157 | config->dot11RSNAConfigSATimeout); |
| 1158 | if (config->update_config) |
| 1159 | fprintf(f, "update_config=%d\n", config->update_config); |
| 1160 | #ifdef CONFIG_WPS |
| 1161 | if (!is_nil_uuid(config->uuid)) { |
| 1162 | char buf[40]; |
| 1163 | uuid_bin2str(config->uuid, buf, sizeof(buf)); |
| 1164 | fprintf(f, "uuid=%s\n", buf); |
| 1165 | } |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1166 | if (config->auto_uuid) |
| 1167 | fprintf(f, "auto_uuid=%d\n", config->auto_uuid); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1168 | if (config->device_name) |
| 1169 | fprintf(f, "device_name=%s\n", config->device_name); |
| 1170 | if (config->manufacturer) |
| 1171 | fprintf(f, "manufacturer=%s\n", config->manufacturer); |
| 1172 | if (config->model_name) |
| 1173 | fprintf(f, "model_name=%s\n", config->model_name); |
| 1174 | if (config->model_number) |
| 1175 | fprintf(f, "model_number=%s\n", config->model_number); |
| 1176 | if (config->serial_number) |
| 1177 | fprintf(f, "serial_number=%s\n", config->serial_number); |
| 1178 | { |
| 1179 | char _buf[WPS_DEV_TYPE_BUFSIZE], *buf; |
| 1180 | buf = wps_dev_type_bin2str(config->device_type, |
| 1181 | _buf, sizeof(_buf)); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1182 | if (os_strcmp(buf, "0-00000000-0") != 0) |
| 1183 | fprintf(f, "device_type=%s\n", buf); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1184 | } |
| 1185 | if (WPA_GET_BE32(config->os_version)) |
| 1186 | fprintf(f, "os_version=%08x\n", |
| 1187 | WPA_GET_BE32(config->os_version)); |
| 1188 | if (config->config_methods) |
| 1189 | fprintf(f, "config_methods=%s\n", config->config_methods); |
| 1190 | if (config->wps_cred_processing) |
| 1191 | fprintf(f, "wps_cred_processing=%d\n", |
| 1192 | config->wps_cred_processing); |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 1193 | if (config->wps_cred_add_sae) |
| 1194 | fprintf(f, "wps_cred_add_sae=%d\n", |
| 1195 | config->wps_cred_add_sae); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1196 | if (config->wps_vendor_ext_m1) { |
| 1197 | int i, len = wpabuf_len(config->wps_vendor_ext_m1); |
| 1198 | const u8 *p = wpabuf_head_u8(config->wps_vendor_ext_m1); |
| 1199 | if (len > 0) { |
| 1200 | fprintf(f, "wps_vendor_ext_m1="); |
| 1201 | for (i = 0; i < len; i++) |
| 1202 | fprintf(f, "%02x", *p++); |
| 1203 | fprintf(f, "\n"); |
| 1204 | } |
| 1205 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1206 | #endif /* CONFIG_WPS */ |
| 1207 | #ifdef CONFIG_P2P |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 1208 | { |
| 1209 | int i; |
| 1210 | char _buf[WPS_DEV_TYPE_BUFSIZE], *buf; |
| 1211 | |
| 1212 | for (i = 0; i < config->num_sec_device_types; i++) { |
| 1213 | buf = wps_dev_type_bin2str(config->sec_device_type[i], |
| 1214 | _buf, sizeof(_buf)); |
| 1215 | if (buf) |
| 1216 | fprintf(f, "sec_device_type=%s\n", buf); |
| 1217 | } |
| 1218 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1219 | if (config->p2p_listen_reg_class) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1220 | fprintf(f, "p2p_listen_reg_class=%d\n", |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1221 | config->p2p_listen_reg_class); |
| 1222 | if (config->p2p_listen_channel) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1223 | fprintf(f, "p2p_listen_channel=%d\n", |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1224 | config->p2p_listen_channel); |
| 1225 | if (config->p2p_oper_reg_class) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1226 | fprintf(f, "p2p_oper_reg_class=%d\n", |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1227 | config->p2p_oper_reg_class); |
| 1228 | if (config->p2p_oper_channel) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1229 | fprintf(f, "p2p_oper_channel=%d\n", config->p2p_oper_channel); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1230 | if (config->p2p_go_intent != DEFAULT_P2P_GO_INTENT) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1231 | fprintf(f, "p2p_go_intent=%d\n", config->p2p_go_intent); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1232 | if (config->p2p_ssid_postfix) |
| 1233 | fprintf(f, "p2p_ssid_postfix=%s\n", config->p2p_ssid_postfix); |
| 1234 | if (config->persistent_reconnect) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1235 | fprintf(f, "persistent_reconnect=%d\n", |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1236 | config->persistent_reconnect); |
| 1237 | if (config->p2p_intra_bss != DEFAULT_P2P_INTRA_BSS) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1238 | fprintf(f, "p2p_intra_bss=%d\n", config->p2p_intra_bss); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1239 | if (config->p2p_group_idle) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1240 | fprintf(f, "p2p_group_idle=%d\n", config->p2p_group_idle); |
Dmitry Shmidt | 2271d3f | 2014-06-23 12:16:31 -0700 | [diff] [blame] | 1241 | if (config->p2p_passphrase_len) |
| 1242 | fprintf(f, "p2p_passphrase_len=%u\n", |
| 1243 | config->p2p_passphrase_len); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1244 | if (config->p2p_pref_chan) { |
| 1245 | unsigned int i; |
| 1246 | fprintf(f, "p2p_pref_chan="); |
| 1247 | for (i = 0; i < config->num_p2p_pref_chan; i++) { |
| 1248 | fprintf(f, "%s%u:%u", i > 0 ? "," : "", |
| 1249 | config->p2p_pref_chan[i].op_class, |
| 1250 | config->p2p_pref_chan[i].chan); |
| 1251 | } |
| 1252 | fprintf(f, "\n"); |
| 1253 | } |
Dmitry Shmidt | 68d0e3e | 2013-10-28 17:59:21 -0700 | [diff] [blame] | 1254 | if (config->p2p_no_go_freq.num) { |
| 1255 | char *val = freq_range_list_str(&config->p2p_no_go_freq); |
| 1256 | if (val) { |
| 1257 | fprintf(f, "p2p_no_go_freq=%s\n", val); |
| 1258 | os_free(val); |
| 1259 | } |
| 1260 | } |
| 1261 | if (config->p2p_add_cli_chan) |
| 1262 | fprintf(f, "p2p_add_cli_chan=%d\n", config->p2p_add_cli_chan); |
Dmitry Shmidt | 43cb578 | 2014-06-16 16:23:22 -0700 | [diff] [blame] | 1263 | if (config->p2p_optimize_listen_chan != |
| 1264 | DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN) |
| 1265 | fprintf(f, "p2p_optimize_listen_chan=%d\n", |
| 1266 | config->p2p_optimize_listen_chan); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1267 | if (config->p2p_go_ht40) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1268 | fprintf(f, "p2p_go_ht40=%d\n", config->p2p_go_ht40); |
Dmitry Shmidt | 68d0e3e | 2013-10-28 17:59:21 -0700 | [diff] [blame] | 1269 | if (config->p2p_go_vht) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1270 | fprintf(f, "p2p_go_vht=%d\n", config->p2p_go_vht); |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 1271 | if (config->p2p_go_he) |
| 1272 | fprintf(f, "p2p_go_he=%d\n", config->p2p_go_he); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1273 | if (config->p2p_go_ctwindow != DEFAULT_P2P_GO_CTWINDOW) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1274 | fprintf(f, "p2p_go_ctwindow=%d\n", config->p2p_go_ctwindow); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1275 | if (config->p2p_disabled) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1276 | fprintf(f, "p2p_disabled=%d\n", config->p2p_disabled); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1277 | if (config->p2p_no_group_iface) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1278 | fprintf(f, "p2p_no_group_iface=%d\n", |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1279 | config->p2p_no_group_iface); |
Dmitry Shmidt | 0ccb66e | 2013-03-29 16:41:28 -0700 | [diff] [blame] | 1280 | if (config->p2p_ignore_shared_freq) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1281 | fprintf(f, "p2p_ignore_shared_freq=%d\n", |
Dmitry Shmidt | 0ccb66e | 2013-03-29 16:41:28 -0700 | [diff] [blame] | 1282 | config->p2p_ignore_shared_freq); |
Dmitry Shmidt | a3dc309 | 2015-06-23 11:21:28 -0700 | [diff] [blame] | 1283 | if (config->p2p_cli_probe) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1284 | fprintf(f, "p2p_cli_probe=%d\n", config->p2p_cli_probe); |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1285 | if (config->p2p_go_freq_change_policy != DEFAULT_P2P_GO_FREQ_MOVE) |
| 1286 | fprintf(f, "p2p_go_freq_change_policy=%u\n", |
| 1287 | config->p2p_go_freq_change_policy); |
Dmitry Shmidt | 1d6bf42 | 2016-01-19 15:51:35 -0800 | [diff] [blame] | 1288 | if (WPA_GET_BE32(config->ip_addr_go)) |
| 1289 | fprintf(f, "ip_addr_go=%u.%u.%u.%u\n", |
| 1290 | config->ip_addr_go[0], config->ip_addr_go[1], |
| 1291 | config->ip_addr_go[2], config->ip_addr_go[3]); |
| 1292 | if (WPA_GET_BE32(config->ip_addr_mask)) |
| 1293 | fprintf(f, "ip_addr_mask=%u.%u.%u.%u\n", |
| 1294 | config->ip_addr_mask[0], config->ip_addr_mask[1], |
| 1295 | config->ip_addr_mask[2], config->ip_addr_mask[3]); |
| 1296 | if (WPA_GET_BE32(config->ip_addr_start)) |
| 1297 | fprintf(f, "ip_addr_start=%u.%u.%u.%u\n", |
| 1298 | config->ip_addr_start[0], config->ip_addr_start[1], |
| 1299 | config->ip_addr_start[2], config->ip_addr_start[3]); |
| 1300 | if (WPA_GET_BE32(config->ip_addr_end)) |
| 1301 | fprintf(f, "ip_addr_end=%u.%u.%u.%u\n", |
| 1302 | config->ip_addr_end[0], config->ip_addr_end[1], |
| 1303 | config->ip_addr_end[2], config->ip_addr_end[3]); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1304 | #endif /* CONFIG_P2P */ |
| 1305 | if (config->country[0] && config->country[1]) { |
| 1306 | fprintf(f, "country=%c%c\n", |
| 1307 | config->country[0], config->country[1]); |
| 1308 | } |
| 1309 | if (config->bss_max_count != DEFAULT_BSS_MAX_COUNT) |
| 1310 | fprintf(f, "bss_max_count=%u\n", config->bss_max_count); |
| 1311 | if (config->bss_expiration_age != DEFAULT_BSS_EXPIRATION_AGE) |
| 1312 | fprintf(f, "bss_expiration_age=%u\n", |
| 1313 | config->bss_expiration_age); |
| 1314 | if (config->bss_expiration_scan_count != |
| 1315 | DEFAULT_BSS_EXPIRATION_SCAN_COUNT) |
| 1316 | fprintf(f, "bss_expiration_scan_count=%u\n", |
| 1317 | config->bss_expiration_scan_count); |
| 1318 | if (config->filter_ssids) |
| 1319 | fprintf(f, "filter_ssids=%d\n", config->filter_ssids); |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 1320 | if (config->filter_rssi) |
| 1321 | fprintf(f, "filter_rssi=%d\n", config->filter_rssi); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1322 | if (config->max_num_sta != DEFAULT_MAX_NUM_STA) |
| 1323 | fprintf(f, "max_num_sta=%u\n", config->max_num_sta); |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1324 | if (config->ap_isolate != DEFAULT_AP_ISOLATE) |
| 1325 | fprintf(f, "ap_isolate=%u\n", config->ap_isolate); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1326 | if (config->disassoc_low_ack) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1327 | fprintf(f, "disassoc_low_ack=%d\n", config->disassoc_low_ack); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1328 | #ifdef CONFIG_HS20 |
| 1329 | if (config->hs20) |
| 1330 | fprintf(f, "hs20=1\n"); |
| 1331 | #endif /* CONFIG_HS20 */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1332 | #ifdef CONFIG_INTERWORKING |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1333 | if (config->interworking) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1334 | fprintf(f, "interworking=%d\n", config->interworking); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1335 | if (!is_zero_ether_addr(config->hessid)) |
| 1336 | fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid)); |
| 1337 | if (config->access_network_type != DEFAULT_ACCESS_NETWORK_TYPE) |
| 1338 | fprintf(f, "access_network_type=%d\n", |
| 1339 | config->access_network_type); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1340 | if (config->go_interworking) |
| 1341 | fprintf(f, "go_interworking=%d\n", config->go_interworking); |
| 1342 | if (config->go_access_network_type) |
| 1343 | fprintf(f, "go_access_network_type=%d\n", |
| 1344 | config->go_access_network_type); |
| 1345 | if (config->go_internet) |
| 1346 | fprintf(f, "go_internet=%d\n", config->go_internet); |
| 1347 | if (config->go_venue_group) |
| 1348 | fprintf(f, "go_venue_group=%d\n", config->go_venue_group); |
| 1349 | if (config->go_venue_type) |
| 1350 | fprintf(f, "go_venue_type=%d\n", config->go_venue_type); |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1351 | #endif /* CONFIG_INTERWORKING */ |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1352 | if (config->pbc_in_m1) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1353 | fprintf(f, "pbc_in_m1=%d\n", config->pbc_in_m1); |
Dmitry Shmidt | f862328 | 2013-02-20 14:34:59 -0800 | [diff] [blame] | 1354 | if (config->wps_nfc_pw_from_config) { |
| 1355 | if (config->wps_nfc_dev_pw_id) |
| 1356 | fprintf(f, "wps_nfc_dev_pw_id=%d\n", |
| 1357 | config->wps_nfc_dev_pw_id); |
| 1358 | write_global_bin(f, "wps_nfc_dh_pubkey", |
| 1359 | config->wps_nfc_dh_pubkey); |
| 1360 | write_global_bin(f, "wps_nfc_dh_privkey", |
| 1361 | config->wps_nfc_dh_privkey); |
| 1362 | write_global_bin(f, "wps_nfc_dev_pw", config->wps_nfc_dev_pw); |
| 1363 | } |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 1364 | |
| 1365 | if (config->ext_password_backend) |
| 1366 | fprintf(f, "ext_password_backend=%s\n", |
| 1367 | config->ext_password_backend); |
| 1368 | if (config->p2p_go_max_inactivity != DEFAULT_P2P_GO_MAX_INACTIVITY) |
| 1369 | fprintf(f, "p2p_go_max_inactivity=%d\n", |
| 1370 | config->p2p_go_max_inactivity); |
| 1371 | if (config->auto_interworking) |
| 1372 | fprintf(f, "auto_interworking=%d\n", |
| 1373 | config->auto_interworking); |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 1374 | if (config->okc) |
| 1375 | fprintf(f, "okc=%d\n", config->okc); |
| 1376 | if (config->pmf) |
| 1377 | fprintf(f, "pmf=%d\n", config->pmf); |
Dmitry Shmidt | 7a5e50a | 2013-03-05 12:37:16 -0800 | [diff] [blame] | 1378 | if (config->dtim_period) |
| 1379 | fprintf(f, "dtim_period=%d\n", config->dtim_period); |
| 1380 | if (config->beacon_int) |
| 1381 | fprintf(f, "beacon_int=%d\n", config->beacon_int); |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1382 | |
| 1383 | if (config->sae_groups) { |
| 1384 | int i; |
| 1385 | fprintf(f, "sae_groups="); |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 1386 | for (i = 0; config->sae_groups[i] > 0; i++) { |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 1387 | fprintf(f, "%s%d", i > 0 ? " " : "", |
| 1388 | config->sae_groups[i]); |
| 1389 | } |
| 1390 | fprintf(f, "\n"); |
| 1391 | } |
Dmitry Shmidt | 0ccb66e | 2013-03-29 16:41:28 -0700 | [diff] [blame] | 1392 | |
| 1393 | if (config->ap_vendor_elements) { |
| 1394 | int i, len = wpabuf_len(config->ap_vendor_elements); |
| 1395 | const u8 *p = wpabuf_head_u8(config->ap_vendor_elements); |
| 1396 | if (len > 0) { |
| 1397 | fprintf(f, "ap_vendor_elements="); |
| 1398 | for (i = 0; i < len; i++) |
| 1399 | fprintf(f, "%02x", *p++); |
| 1400 | fprintf(f, "\n"); |
| 1401 | } |
| 1402 | } |
Dmitry Shmidt | 444d567 | 2013-04-01 13:08:44 -0700 | [diff] [blame] | 1403 | |
| 1404 | if (config->ignore_old_scan_res) |
| 1405 | fprintf(f, "ignore_old_scan_res=%d\n", |
| 1406 | config->ignore_old_scan_res); |
Dmitry Shmidt | 51b6ea8 | 2013-05-08 10:42:09 -0700 | [diff] [blame] | 1407 | |
| 1408 | if (config->freq_list && config->freq_list[0]) { |
| 1409 | int i; |
| 1410 | fprintf(f, "freq_list="); |
| 1411 | for (i = 0; config->freq_list[i]; i++) { |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1412 | fprintf(f, "%s%d", i > 0 ? " " : "", |
Dmitry Shmidt | 51b6ea8 | 2013-05-08 10:42:09 -0700 | [diff] [blame] | 1413 | config->freq_list[i]); |
| 1414 | } |
| 1415 | fprintf(f, "\n"); |
| 1416 | } |
Dmitry Shmidt | ea69e84 | 2013-05-13 14:52:28 -0700 | [diff] [blame] | 1417 | if (config->scan_cur_freq != DEFAULT_SCAN_CUR_FREQ) |
| 1418 | fprintf(f, "scan_cur_freq=%d\n", config->scan_cur_freq); |
Dmitry Shmidt | 51b6ea8 | 2013-05-08 10:42:09 -0700 | [diff] [blame] | 1419 | |
| 1420 | if (config->sched_scan_interval) |
| 1421 | fprintf(f, "sched_scan_interval=%u\n", |
| 1422 | config->sched_scan_interval); |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 1423 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1424 | if (config->sched_scan_start_delay) |
| 1425 | fprintf(f, "sched_scan_start_delay=%u\n", |
| 1426 | config->sched_scan_start_delay); |
| 1427 | |
Dmitry Shmidt | 051af73 | 2013-10-22 13:52:46 -0700 | [diff] [blame] | 1428 | if (config->external_sim) |
| 1429 | fprintf(f, "external_sim=%d\n", config->external_sim); |
Dmitry Shmidt | e0e48dc | 2013-11-18 12:00:06 -0800 | [diff] [blame] | 1430 | |
| 1431 | if (config->tdls_external_control) |
| 1432 | fprintf(f, "tdls_external_control=%d\n", |
| 1433 | config->tdls_external_control); |
Dmitry Shmidt | a38abf9 | 2014-03-06 13:38:44 -0800 | [diff] [blame] | 1434 | |
Dmitry Shmidt | b58836e | 2014-04-29 14:35:56 -0700 | [diff] [blame] | 1435 | if (config->wowlan_triggers) |
Dmitry Shmidt | 0365883 | 2014-08-13 11:03:49 -0700 | [diff] [blame] | 1436 | fprintf(f, "wowlan_triggers=%s\n", |
Dmitry Shmidt | b58836e | 2014-04-29 14:35:56 -0700 | [diff] [blame] | 1437 | config->wowlan_triggers); |
| 1438 | |
Dmitry Shmidt | a38abf9 | 2014-03-06 13:38:44 -0800 | [diff] [blame] | 1439 | if (config->bgscan) |
| 1440 | fprintf(f, "bgscan=\"%s\"\n", config->bgscan); |
Dmitry Shmidt | 09f57ba | 2014-06-10 16:07:13 -0700 | [diff] [blame] | 1441 | |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 1442 | if (config->autoscan) |
| 1443 | fprintf(f, "autoscan=%s\n", config->autoscan); |
| 1444 | |
Dmitry Shmidt | 09f57ba | 2014-06-10 16:07:13 -0700 | [diff] [blame] | 1445 | if (config->p2p_search_delay != DEFAULT_P2P_SEARCH_DELAY) |
| 1446 | fprintf(f, "p2p_search_delay=%u\n", |
| 1447 | config->p2p_search_delay); |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 1448 | |
| 1449 | if (config->mac_addr) |
| 1450 | fprintf(f, "mac_addr=%d\n", config->mac_addr); |
| 1451 | |
| 1452 | if (config->rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME) |
| 1453 | fprintf(f, "rand_addr_lifetime=%u\n", |
| 1454 | config->rand_addr_lifetime); |
| 1455 | |
| 1456 | if (config->preassoc_mac_addr) |
| 1457 | fprintf(f, "preassoc_mac_addr=%d\n", config->preassoc_mac_addr); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1458 | |
| 1459 | if (config->key_mgmt_offload != DEFAULT_KEY_MGMT_OFFLOAD) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 1460 | fprintf(f, "key_mgmt_offload=%d\n", config->key_mgmt_offload); |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1461 | |
| 1462 | if (config->user_mpm != DEFAULT_USER_MPM) |
| 1463 | fprintf(f, "user_mpm=%d\n", config->user_mpm); |
| 1464 | |
| 1465 | if (config->max_peer_links != DEFAULT_MAX_PEER_LINKS) |
| 1466 | fprintf(f, "max_peer_links=%d\n", config->max_peer_links); |
Dmitry Shmidt | 2f74e36 | 2015-01-21 13:19:05 -0800 | [diff] [blame] | 1467 | |
| 1468 | if (config->cert_in_cb != DEFAULT_CERT_IN_CB) |
| 1469 | fprintf(f, "cert_in_cb=%d\n", config->cert_in_cb); |
| 1470 | |
| 1471 | if (config->mesh_max_inactivity != DEFAULT_MESH_MAX_INACTIVITY) |
| 1472 | fprintf(f, "mesh_max_inactivity=%d\n", |
| 1473 | config->mesh_max_inactivity); |
Dmitry Shmidt | 807291d | 2015-01-27 13:40:23 -0800 | [diff] [blame] | 1474 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1475 | if (config->dot11RSNASAERetransPeriod != |
| 1476 | DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD) |
| 1477 | fprintf(f, "dot11RSNASAERetransPeriod=%d\n", |
| 1478 | config->dot11RSNASAERetransPeriod); |
| 1479 | |
Dmitry Shmidt | 807291d | 2015-01-27 13:40:23 -0800 | [diff] [blame] | 1480 | if (config->passive_scan) |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1481 | fprintf(f, "passive_scan=%d\n", config->passive_scan); |
| 1482 | |
| 1483 | if (config->reassoc_same_bss_optim) |
| 1484 | fprintf(f, "reassoc_same_bss_optim=%d\n", |
| 1485 | config->reassoc_same_bss_optim); |
Dmitry Shmidt | 7a53dbb | 2015-06-11 13:13:53 -0700 | [diff] [blame] | 1486 | |
| 1487 | if (config->wps_priority) |
| 1488 | fprintf(f, "wps_priority=%d\n", config->wps_priority); |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1489 | |
| 1490 | if (config->wpa_rsc_relaxation != DEFAULT_WPA_RSC_RELAXATION) |
| 1491 | fprintf(f, "wpa_rsc_relaxation=%d\n", |
| 1492 | config->wpa_rsc_relaxation); |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame] | 1493 | |
| 1494 | if (config->sched_scan_plans) |
| 1495 | fprintf(f, "sched_scan_plans=%s\n", config->sched_scan_plans); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 1496 | |
| 1497 | #ifdef CONFIG_MBO |
| 1498 | if (config->non_pref_chan) |
| 1499 | fprintf(f, "non_pref_chan=%s\n", config->non_pref_chan); |
| 1500 | if (config->mbo_cell_capa != DEFAULT_MBO_CELL_CAPA) |
| 1501 | fprintf(f, "mbo_cell_capa=%u\n", config->mbo_cell_capa); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1502 | if (config->disassoc_imminent_rssi_threshold != |
| 1503 | DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD) |
| 1504 | fprintf(f, "disassoc_imminent_rssi_threshold=%d\n", |
| 1505 | config->disassoc_imminent_rssi_threshold); |
| 1506 | if (config->oce != DEFAULT_OCE_SUPPORT) |
| 1507 | fprintf(f, "oce=%u\n", config->oce); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame] | 1508 | #endif /* CONFIG_MBO */ |
| 1509 | |
Dmitry Shmidt | d5ab1b5 | 2016-06-21 12:38:41 -0700 | [diff] [blame] | 1510 | if (config->gas_address3) |
| 1511 | fprintf(f, "gas_address3=%d\n", config->gas_address3); |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 1512 | |
| 1513 | if (config->ftm_responder) |
| 1514 | fprintf(f, "ftm_responder=%d\n", config->ftm_responder); |
| 1515 | if (config->ftm_initiator) |
| 1516 | fprintf(f, "ftm_initiator=%d\n", config->ftm_initiator); |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 1517 | |
| 1518 | if (config->osu_dir) |
| 1519 | fprintf(f, "osu_dir=%s\n", config->osu_dir); |
| 1520 | |
| 1521 | if (config->fst_group_id) |
| 1522 | fprintf(f, "fst_group_id=%s\n", config->fst_group_id); |
| 1523 | if (config->fst_priority) |
| 1524 | fprintf(f, "fst_priority=%d\n", config->fst_priority); |
| 1525 | if (config->fst_llt) |
| 1526 | fprintf(f, "fst_llt=%d\n", config->fst_llt); |
Dmitry Shmidt | ebd93af | 2017-02-21 13:40:44 -0800 | [diff] [blame] | 1527 | |
| 1528 | if (config->gas_rand_addr_lifetime != DEFAULT_RAND_ADDR_LIFETIME) |
| 1529 | fprintf(f, "gas_rand_addr_lifetime=%u\n", |
| 1530 | config->gas_rand_addr_lifetime); |
| 1531 | if (config->gas_rand_mac_addr) |
| 1532 | fprintf(f, "gas_rand_mac_addr=%d\n", config->gas_rand_mac_addr); |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1533 | if (config->dpp_config_processing) |
| 1534 | fprintf(f, "dpp_config_processing=%d\n", |
| 1535 | config->dpp_config_processing); |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 1536 | if (config->coloc_intf_reporting) |
| 1537 | fprintf(f, "coloc_intf_reporting=%d\n", |
| 1538 | config->coloc_intf_reporting); |
Jimmy Chen | f887c7b | 2018-11-13 15:19:57 +0800 | [diff] [blame] | 1539 | if (config->p2p_device_random_mac_addr) |
| 1540 | fprintf(f, "p2p_device_random_mac_addr=%d\n", |
| 1541 | config->p2p_device_random_mac_addr); |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 1542 | if (!is_zero_ether_addr(config->p2p_device_persistent_mac_addr)) |
| 1543 | fprintf(f, "p2p_device_persistent_mac_addr=" MACSTR "\n", |
| 1544 | MAC2STR(config->p2p_device_persistent_mac_addr)); |
Jimmy Chen | 36c2199 | 2018-11-29 16:46:43 +0800 | [diff] [blame] | 1545 | if (config->p2p_interface_random_mac_addr) |
| 1546 | fprintf(f, "p2p_interface_random_mac_addr=%d\n", |
| 1547 | config->p2p_interface_random_mac_addr); |
Jimmy Chen | 0bb4f86 | 2019-03-21 18:41:47 +0800 | [diff] [blame] | 1548 | if (config->bss_no_flush_when_down) |
| 1549 | fprintf(f, "bss_no_flush_when_down=%d\n", |
| 1550 | config->bss_no_flush_when_down); |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame^] | 1551 | if (config->disable_btm) |
| 1552 | fprintf(f, "disable_btm=1\n"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1553 | } |
| 1554 | |
| 1555 | #endif /* CONFIG_NO_CONFIG_WRITE */ |
| 1556 | |
| 1557 | |
| 1558 | int wpa_config_write(const char *name, struct wpa_config *config) |
| 1559 | { |
| 1560 | #ifndef CONFIG_NO_CONFIG_WRITE |
| 1561 | FILE *f; |
| 1562 | struct wpa_ssid *ssid; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1563 | struct wpa_cred *cred; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1564 | #ifndef CONFIG_NO_CONFIG_BLOBS |
| 1565 | struct wpa_config_blob *blob; |
| 1566 | #endif /* CONFIG_NO_CONFIG_BLOBS */ |
| 1567 | int ret = 0; |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1568 | const char *orig_name = name; |
| 1569 | int tmp_len = os_strlen(name) + 5; /* allow space for .tmp suffix */ |
Vinit Deshpande | 0a217de | 2015-02-05 12:48:02 -0800 | [diff] [blame] | 1570 | char *tmp_name = os_malloc(tmp_len); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1571 | |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1572 | if (tmp_name) { |
Vinit Deshpande | 0a217de | 2015-02-05 12:48:02 -0800 | [diff] [blame] | 1573 | os_snprintf(tmp_name, tmp_len, "%s.tmp", name); |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1574 | name = tmp_name; |
| 1575 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1576 | |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1577 | wpa_printf(MSG_DEBUG, "Writing configuration file '%s'", name); |
Vinit Deshpande | 0a217de | 2015-02-05 12:48:02 -0800 | [diff] [blame] | 1578 | |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1579 | f = fopen(name, "w"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1580 | if (f == NULL) { |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1581 | wpa_printf(MSG_DEBUG, "Failed to open '%s' for writing", name); |
| 1582 | os_free(tmp_name); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1583 | return -1; |
| 1584 | } |
| 1585 | |
| 1586 | wpa_config_write_global(f, config); |
| 1587 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1588 | for (cred = config->cred; cred; cred = cred->next) { |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 1589 | if (cred->temporary) |
| 1590 | continue; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 1591 | fprintf(f, "\ncred={\n"); |
| 1592 | wpa_config_write_cred(f, cred); |
| 1593 | fprintf(f, "}\n"); |
| 1594 | } |
| 1595 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1596 | for (ssid = config->ssid; ssid; ssid = ssid->next) { |
| 1597 | if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary) |
| 1598 | continue; /* do not save temporary networks */ |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 1599 | if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set && |
| 1600 | !ssid->passphrase) |
| 1601 | continue; /* do not save invalid network */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1602 | fprintf(f, "\nnetwork={\n"); |
| 1603 | wpa_config_write_network(f, ssid); |
| 1604 | fprintf(f, "}\n"); |
| 1605 | } |
| 1606 | |
| 1607 | #ifndef CONFIG_NO_CONFIG_BLOBS |
| 1608 | for (blob = config->blobs; blob; blob = blob->next) { |
| 1609 | ret = wpa_config_write_blob(f, blob); |
| 1610 | if (ret) |
| 1611 | break; |
| 1612 | } |
| 1613 | #endif /* CONFIG_NO_CONFIG_BLOBS */ |
| 1614 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1615 | os_fdatasync(f); |
Mitchell Wills | 447c7ff | 2015-08-24 17:24:30 -0700 | [diff] [blame] | 1616 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1617 | fclose(f); |
| 1618 | |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1619 | if (tmp_name) { |
Vinit Deshpande | 0a217de | 2015-02-05 12:48:02 -0800 | [diff] [blame] | 1620 | int chmod_ret = 0; |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1621 | |
Vinit Deshpande | 0a217de | 2015-02-05 12:48:02 -0800 | [diff] [blame] | 1622 | #ifdef ANDROID |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1623 | chmod_ret = chmod(tmp_name, |
| 1624 | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP); |
| 1625 | #endif /* ANDROID */ |
| 1626 | if (chmod_ret != 0 || rename(tmp_name, orig_name) != 0) |
Vinit Deshpande | 0a217de | 2015-02-05 12:48:02 -0800 | [diff] [blame] | 1627 | ret = -1; |
| 1628 | |
| 1629 | os_free(tmp_name); |
| 1630 | } |
| 1631 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1632 | wpa_printf(MSG_DEBUG, "Configuration file '%s' written %ssuccessfully", |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 1633 | orig_name, ret ? "un" : ""); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1634 | return ret; |
| 1635 | #else /* CONFIG_NO_CONFIG_WRITE */ |
| 1636 | return -1; |
| 1637 | #endif /* CONFIG_NO_CONFIG_WRITE */ |
| 1638 | } |