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