Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * WPA Supplicant / Network configuration structures |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 3 | * Copyright (c) 2003-2013, 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 | |
| 9 | #ifndef CONFIG_SSID_H |
| 10 | #define CONFIG_SSID_H |
| 11 | |
| 12 | #include "common/defs.h" |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 13 | #include "utils/list.h" |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 14 | #include "eap_peer/eap_config.h" |
| 15 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 16 | |
| 17 | #define DEFAULT_EAP_WORKAROUND ((unsigned int) -1) |
| 18 | #define DEFAULT_EAPOL_FLAGS (EAPOL_FLAG_REQUIRE_KEY_UNICAST | \ |
| 19 | EAPOL_FLAG_REQUIRE_KEY_BROADCAST) |
| 20 | #define DEFAULT_PROTO (WPA_PROTO_WPA | WPA_PROTO_RSN) |
| 21 | #define DEFAULT_KEY_MGMT (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X) |
| 22 | #define DEFAULT_PAIRWISE (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP) |
Dmitry Shmidt | 4171258 | 2015-06-29 11:02:15 -0700 | [diff] [blame] | 23 | #define DEFAULT_GROUP (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 24 | #define DEFAULT_FRAGMENT_SIZE 1398 |
| 25 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 26 | #define DEFAULT_BG_SCAN_PERIOD -1 |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 27 | #define DEFAULT_MESH_MAX_RETRIES 2 |
| 28 | #define DEFAULT_MESH_RETRY_TIMEOUT 40 |
| 29 | #define DEFAULT_MESH_CONFIRM_TIMEOUT 40 |
| 30 | #define DEFAULT_MESH_HOLDING_TIMEOUT 40 |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 31 | #define DEFAULT_DISABLE_HT 0 |
| 32 | #define DEFAULT_DISABLE_HT40 0 |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 33 | #define DEFAULT_DISABLE_SGI 0 |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 34 | #define DEFAULT_DISABLE_LDPC 0 |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 35 | #define DEFAULT_DISABLE_MAX_AMSDU -1 /* no change */ |
| 36 | #define DEFAULT_AMPDU_FACTOR -1 /* no change */ |
| 37 | #define DEFAULT_AMPDU_DENSITY -1 /* no change */ |
Dmitry Shmidt | f9bdef9 | 2014-04-25 10:46:36 -0700 | [diff] [blame] | 38 | #define DEFAULT_USER_SELECTED_SIM 1 |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 39 | |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 40 | struct psk_list_entry { |
| 41 | struct dl_list list; |
| 42 | u8 addr[ETH_ALEN]; |
| 43 | u8 psk[32]; |
| 44 | u8 p2p; |
| 45 | }; |
| 46 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 47 | /** |
| 48 | * struct wpa_ssid - Network configuration data |
| 49 | * |
| 50 | * This structure includes all the configuration variables for a network. This |
| 51 | * data is included in the per-interface configuration data as an element of |
| 52 | * the network list, struct wpa_config::ssid. Each network block in the |
| 53 | * configuration is mapped to a struct wpa_ssid instance. |
| 54 | */ |
| 55 | struct wpa_ssid { |
| 56 | /** |
| 57 | * next - Next network in global list |
| 58 | * |
| 59 | * This pointer can be used to iterate over all networks. The head of |
| 60 | * this list is stored in the ssid field of struct wpa_config. |
| 61 | */ |
| 62 | struct wpa_ssid *next; |
| 63 | |
| 64 | /** |
| 65 | * pnext - Next network in per-priority list |
| 66 | * |
| 67 | * This pointer can be used to iterate over all networks in the same |
| 68 | * priority class. The heads of these list are stored in the pssid |
| 69 | * fields of struct wpa_config. |
| 70 | */ |
| 71 | struct wpa_ssid *pnext; |
| 72 | |
| 73 | /** |
| 74 | * id - Unique id for the network |
| 75 | * |
| 76 | * This identifier is used as a unique identifier for each network |
| 77 | * block when using the control interface. Each network is allocated an |
| 78 | * id when it is being created, either when reading the configuration |
| 79 | * file or when a new network is added through the control interface. |
| 80 | */ |
| 81 | int id; |
| 82 | |
| 83 | /** |
| 84 | * priority - Priority group |
| 85 | * |
| 86 | * By default, all networks will get same priority group (0). If some |
| 87 | * of the networks are more desirable, this field can be used to change |
| 88 | * the order in which wpa_supplicant goes through the networks when |
| 89 | * selecting a BSS. The priority groups will be iterated in decreasing |
| 90 | * priority (i.e., the larger the priority value, the sooner the |
| 91 | * network is matched against the scan results). Within each priority |
| 92 | * group, networks will be selected based on security policy, signal |
| 93 | * strength, etc. |
| 94 | * |
| 95 | * Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are |
| 96 | * not using this priority to select the order for scanning. Instead, |
| 97 | * they try the networks in the order that used in the configuration |
| 98 | * file. |
| 99 | */ |
| 100 | int priority; |
| 101 | |
| 102 | /** |
| 103 | * ssid - Service set identifier (network name) |
| 104 | * |
| 105 | * This is the SSID for the network. For wireless interfaces, this is |
| 106 | * used to select which network will be used. If set to %NULL (or |
| 107 | * ssid_len=0), any SSID can be used. For wired interfaces, this must |
| 108 | * be set to %NULL. Note: SSID may contain any characters, even nul |
| 109 | * (ASCII 0) and as such, this should not be assumed to be a nul |
| 110 | * terminated string. ssid_len defines how many characters are valid |
| 111 | * and the ssid field is not guaranteed to be nul terminated. |
| 112 | */ |
| 113 | u8 *ssid; |
| 114 | |
| 115 | /** |
| 116 | * ssid_len - Length of the SSID |
| 117 | */ |
| 118 | size_t ssid_len; |
| 119 | |
| 120 | /** |
| 121 | * bssid - BSSID |
| 122 | * |
| 123 | * If set, this network block is used only when associating with the AP |
| 124 | * using the configured BSSID |
| 125 | * |
| 126 | * If this is a persistent P2P group (disabled == 2), this is the GO |
| 127 | * Device Address. |
| 128 | */ |
| 129 | u8 bssid[ETH_ALEN]; |
| 130 | |
| 131 | /** |
Dmitry Shmidt | ff787d5 | 2015-01-12 13:01:47 -0800 | [diff] [blame] | 132 | * bssid_blacklist - List of inacceptable BSSIDs |
| 133 | */ |
| 134 | u8 *bssid_blacklist; |
| 135 | size_t num_bssid_blacklist; |
| 136 | |
| 137 | /** |
| 138 | * bssid_blacklist - List of acceptable BSSIDs |
| 139 | */ |
| 140 | u8 *bssid_whitelist; |
| 141 | size_t num_bssid_whitelist; |
| 142 | |
| 143 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 144 | * bssid_set - Whether BSSID is configured for this network |
| 145 | */ |
| 146 | int bssid_set; |
| 147 | |
| 148 | /** |
Dmitry Shmidt | 5460547 | 2013-11-08 11:10:19 -0800 | [diff] [blame] | 149 | * go_p2p_dev_addr - GO's P2P Device Address or all zeros if not set |
| 150 | */ |
| 151 | u8 go_p2p_dev_addr[ETH_ALEN]; |
| 152 | |
| 153 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 154 | * psk - WPA pre-shared key (256 bits) |
| 155 | */ |
| 156 | u8 psk[32]; |
| 157 | |
| 158 | /** |
| 159 | * psk_set - Whether PSK field is configured |
| 160 | */ |
| 161 | int psk_set; |
| 162 | |
| 163 | /** |
| 164 | * passphrase - WPA ASCII passphrase |
| 165 | * |
| 166 | * If this is set, psk will be generated using the SSID and passphrase |
| 167 | * configured for the network. ASCII passphrase must be between 8 and |
| 168 | * 63 characters (inclusive). |
| 169 | */ |
| 170 | char *passphrase; |
| 171 | |
| 172 | /** |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 173 | * ext_psk - PSK/passphrase name in external storage |
| 174 | * |
| 175 | * If this is set, PSK/passphrase will be fetched from external storage |
| 176 | * when requesting association with the network. |
| 177 | */ |
| 178 | char *ext_psk; |
| 179 | |
| 180 | /** |
Dmitry Shmidt | 912c6ec | 2015-03-30 13:16:51 -0700 | [diff] [blame] | 181 | * mem_only_psk - Whether to keep PSK/passphrase only in memory |
| 182 | * |
| 183 | * 0 = allow psk/passphrase to be stored to the configuration file |
| 184 | * 1 = do not store psk/passphrase to the configuration file |
| 185 | */ |
| 186 | int mem_only_psk; |
| 187 | |
| 188 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 189 | * pairwise_cipher - Bitfield of allowed pairwise ciphers, WPA_CIPHER_* |
| 190 | */ |
| 191 | int pairwise_cipher; |
| 192 | |
| 193 | /** |
| 194 | * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_* |
| 195 | */ |
| 196 | int group_cipher; |
| 197 | |
| 198 | /** |
| 199 | * key_mgmt - Bitfield of allowed key management protocols |
| 200 | * |
| 201 | * WPA_KEY_MGMT_* |
| 202 | */ |
| 203 | int key_mgmt; |
| 204 | |
| 205 | /** |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 206 | * bg_scan_period - Background scan period in seconds, 0 to disable, or |
| 207 | * -1 to indicate no change to default driver configuration |
| 208 | */ |
| 209 | int bg_scan_period; |
| 210 | |
| 211 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 212 | * proto - Bitfield of allowed protocols, WPA_PROTO_* |
| 213 | */ |
| 214 | int proto; |
| 215 | |
| 216 | /** |
| 217 | * auth_alg - Bitfield of allowed authentication algorithms |
| 218 | * |
| 219 | * WPA_AUTH_ALG_* |
| 220 | */ |
| 221 | int auth_alg; |
| 222 | |
| 223 | /** |
| 224 | * scan_ssid - Scan this SSID with Probe Requests |
| 225 | * |
| 226 | * scan_ssid can be used to scan for APs using hidden SSIDs. |
| 227 | * Note: Many drivers do not support this. ap_mode=2 can be used with |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 228 | * such drivers to use hidden SSIDs. Note2: Most nl80211-based drivers |
| 229 | * do support scan_ssid=1 and that should be used with them instead of |
| 230 | * ap_scan=2. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 231 | */ |
| 232 | int scan_ssid; |
| 233 | |
| 234 | #ifdef IEEE8021X_EAPOL |
| 235 | #define EAPOL_FLAG_REQUIRE_KEY_UNICAST BIT(0) |
| 236 | #define EAPOL_FLAG_REQUIRE_KEY_BROADCAST BIT(1) |
| 237 | /** |
| 238 | * eapol_flags - Bit field of IEEE 802.1X/EAPOL options (EAPOL_FLAG_*) |
| 239 | */ |
| 240 | int eapol_flags; |
| 241 | |
| 242 | /** |
| 243 | * eap - EAP peer configuration for this network |
| 244 | */ |
| 245 | struct eap_peer_config eap; |
| 246 | #endif /* IEEE8021X_EAPOL */ |
| 247 | |
| 248 | #define NUM_WEP_KEYS 4 |
| 249 | #define MAX_WEP_KEY_LEN 16 |
| 250 | /** |
| 251 | * wep_key - WEP keys |
| 252 | */ |
| 253 | u8 wep_key[NUM_WEP_KEYS][MAX_WEP_KEY_LEN]; |
| 254 | |
| 255 | /** |
| 256 | * wep_key_len - WEP key lengths |
| 257 | */ |
| 258 | size_t wep_key_len[NUM_WEP_KEYS]; |
| 259 | |
| 260 | /** |
| 261 | * wep_tx_keyidx - Default key index for TX frames using WEP |
| 262 | */ |
| 263 | int wep_tx_keyidx; |
| 264 | |
| 265 | /** |
| 266 | * proactive_key_caching - Enable proactive key caching |
| 267 | * |
| 268 | * This field can be used to enable proactive key caching which is also |
| 269 | * known as opportunistic PMKSA caching for WPA2. This is disabled (0) |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 270 | * by default unless default value is changed with the global okc=1 |
| 271 | * parameter. Enable by setting this to 1. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 272 | * |
| 273 | * Proactive key caching is used to make supplicant assume that the APs |
| 274 | * are using the same PMK and generate PMKSA cache entries without |
| 275 | * doing RSN pre-authentication. This requires support from the AP side |
| 276 | * and is normally used with wireless switches that co-locate the |
| 277 | * authenticator. |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 278 | * |
| 279 | * Internally, special value -1 is used to indicate that the parameter |
| 280 | * was not specified in the configuration (i.e., default behavior is |
| 281 | * followed). |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 282 | */ |
| 283 | int proactive_key_caching; |
| 284 | |
| 285 | /** |
| 286 | * mixed_cell - Whether mixed cells are allowed |
| 287 | * |
| 288 | * This option can be used to configure whether so called mixed cells, |
| 289 | * i.e., networks that use both plaintext and encryption in the same |
| 290 | * SSID, are allowed. This is disabled (0) by default. Enable by |
| 291 | * setting this to 1. |
| 292 | */ |
| 293 | int mixed_cell; |
| 294 | |
| 295 | #ifdef IEEE8021X_EAPOL |
| 296 | |
| 297 | /** |
| 298 | * leap - Number of EAP methods using LEAP |
| 299 | * |
| 300 | * This field should be set to 1 if LEAP is enabled. This is used to |
| 301 | * select IEEE 802.11 authentication algorithm. |
| 302 | */ |
| 303 | int leap; |
| 304 | |
| 305 | /** |
| 306 | * non_leap - Number of EAP methods not using LEAP |
| 307 | * |
| 308 | * This field should be set to >0 if any EAP method other than LEAP is |
| 309 | * enabled. This is used to select IEEE 802.11 authentication |
| 310 | * algorithm. |
| 311 | */ |
| 312 | int non_leap; |
| 313 | |
| 314 | /** |
| 315 | * eap_workaround - EAP workarounds enabled |
| 316 | * |
| 317 | * wpa_supplicant supports number of "EAP workarounds" to work around |
| 318 | * interoperability issues with incorrectly behaving authentication |
| 319 | * servers. This is recommended to be enabled by default because some |
| 320 | * of the issues are present in large number of authentication servers. |
| 321 | * |
| 322 | * Strict EAP conformance mode can be configured by disabling |
| 323 | * workarounds with eap_workaround = 0. |
| 324 | */ |
| 325 | unsigned int eap_workaround; |
| 326 | |
| 327 | #endif /* IEEE8021X_EAPOL */ |
| 328 | |
| 329 | /** |
| 330 | * mode - IEEE 802.11 operation mode (Infrastucture/IBSS) |
| 331 | * |
| 332 | * 0 = infrastructure (Managed) mode, i.e., associate with an AP. |
| 333 | * |
| 334 | * 1 = IBSS (ad-hoc, peer-to-peer) |
| 335 | * |
| 336 | * 2 = AP (access point) |
| 337 | * |
| 338 | * 3 = P2P Group Owner (can be set in the configuration file) |
| 339 | * |
| 340 | * 4 = P2P Group Formation (used internally; not in configuration |
| 341 | * files) |
| 342 | * |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 343 | * 5 = Mesh |
| 344 | * |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 345 | * Note: IBSS can only be used with key_mgmt NONE (plaintext and static |
| 346 | * WEP) and WPA-PSK (with proto=RSN). In addition, key_mgmt=WPA-NONE |
| 347 | * (fixed group key TKIP/CCMP) is available for backwards compatibility, |
| 348 | * but its use is deprecated. WPA-None requires following network block |
| 349 | * options: proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or |
| 350 | * CCMP, but not both), and psk must also be set (either directly or |
| 351 | * using ASCII passphrase). |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 352 | */ |
| 353 | enum wpas_mode { |
| 354 | WPAS_MODE_INFRA = 0, |
| 355 | WPAS_MODE_IBSS = 1, |
| 356 | WPAS_MODE_AP = 2, |
| 357 | WPAS_MODE_P2P_GO = 3, |
| 358 | WPAS_MODE_P2P_GROUP_FORMATION = 4, |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 359 | WPAS_MODE_MESH = 5, |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 360 | } mode; |
| 361 | |
| 362 | /** |
| 363 | * disabled - Whether this network is currently disabled |
| 364 | * |
| 365 | * 0 = this network can be used (default). |
| 366 | * 1 = this network block is disabled (can be enabled through |
| 367 | * ctrl_iface, e.g., with wpa_cli or wpa_gui). |
| 368 | * 2 = this network block includes parameters for a persistent P2P |
| 369 | * group (can be used with P2P ctrl_iface commands) |
| 370 | */ |
| 371 | int disabled; |
| 372 | |
| 373 | /** |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 374 | * disabled_for_connect - Whether this network was temporarily disabled |
| 375 | * |
| 376 | * This flag is used to reenable all the temporarily disabled networks |
| 377 | * after either the success or failure of a WPS connection. |
| 378 | */ |
| 379 | int disabled_for_connect; |
| 380 | |
| 381 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 382 | * peerkey - Whether PeerKey handshake for direct links is allowed |
| 383 | * |
| 384 | * This is only used when both RSN/WPA2 and IEEE 802.11e (QoS) are |
| 385 | * enabled. |
| 386 | * |
| 387 | * 0 = disabled (default) |
| 388 | * 1 = enabled |
| 389 | */ |
| 390 | int peerkey; |
| 391 | |
| 392 | /** |
| 393 | * id_str - Network identifier string for external scripts |
| 394 | * |
| 395 | * This value is passed to external ctrl_iface monitors in |
| 396 | * WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR |
| 397 | * environment variable for action scripts. |
| 398 | */ |
| 399 | char *id_str; |
| 400 | |
| 401 | #ifdef CONFIG_IEEE80211W |
| 402 | /** |
| 403 | * ieee80211w - Whether management frame protection is enabled |
| 404 | * |
| 405 | * This value is used to configure policy for management frame |
| 406 | * protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required. |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 407 | * This is disabled by default unless the default value has been changed |
| 408 | * with the global pmf=1/2 parameter. |
| 409 | * |
| 410 | * Internally, special value 3 is used to indicate that the parameter |
| 411 | * was not specified in the configuration (i.e., default behavior is |
| 412 | * followed). |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 413 | */ |
| 414 | enum mfp_options ieee80211w; |
| 415 | #endif /* CONFIG_IEEE80211W */ |
| 416 | |
| 417 | /** |
| 418 | * frequency - Channel frequency in megahertz (MHz) for IBSS |
| 419 | * |
| 420 | * This value is used to configure the initial channel for IBSS (adhoc) |
| 421 | * networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in |
| 422 | * the infrastructure mode. In addition, this value is only used by the |
| 423 | * station that creates the IBSS. If an IBSS network with the |
| 424 | * configured SSID is already present, the frequency of the network |
| 425 | * will be used instead of this configured value. |
| 426 | */ |
| 427 | int frequency; |
| 428 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 429 | /** |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 430 | * fixed_freq - Use fixed frequency for IBSS |
| 431 | */ |
| 432 | int fixed_freq; |
| 433 | |
Dmitry Shmidt | 014a3ff | 2015-12-28 13:27:49 -0800 | [diff] [blame^] | 434 | #ifdef CONFIG_ACS |
| 435 | /** |
| 436 | * ACS - Automatic Channel Selection for AP mode |
| 437 | * |
| 438 | * If present, it will be handled together with frequency. |
| 439 | * frequency will be used to determine hardware mode only, when it is |
| 440 | * used for both hardware mode and channel when used alone. This will |
| 441 | * force the channel to be set to 0, thus enabling ACS. |
| 442 | */ |
| 443 | int acs; |
| 444 | #endif /* CONFIG_ACS */ |
| 445 | |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 446 | /** |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 447 | * mesh_basic_rates - BSS Basic rate set for mesh network |
| 448 | * |
| 449 | */ |
| 450 | int *mesh_basic_rates; |
| 451 | |
| 452 | /** |
| 453 | * Mesh network plink parameters |
| 454 | */ |
| 455 | int dot11MeshMaxRetries; |
| 456 | int dot11MeshRetryTimeout; /* msec */ |
| 457 | int dot11MeshConfirmTimeout; /* msec */ |
| 458 | int dot11MeshHoldingTimeout; /* msec */ |
| 459 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 460 | int ht40; |
| 461 | |
Dmitry Shmidt | 68d0e3e | 2013-10-28 17:59:21 -0700 | [diff] [blame] | 462 | int vht; |
| 463 | |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame] | 464 | u8 max_oper_chwidth; |
| 465 | |
| 466 | unsigned int vht_center_freq2; |
| 467 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 468 | /** |
| 469 | * wpa_ptk_rekey - Maximum lifetime for PTK in seconds |
| 470 | * |
| 471 | * This value can be used to enforce rekeying of PTK to mitigate some |
| 472 | * attacks against TKIP deficiencies. |
| 473 | */ |
| 474 | int wpa_ptk_rekey; |
| 475 | |
| 476 | /** |
| 477 | * scan_freq - Array of frequencies to scan or %NULL for all |
| 478 | * |
| 479 | * This is an optional zero-terminated array of frequencies in |
| 480 | * megahertz (MHz) to include in scan requests when searching for this |
| 481 | * network. This can be used to speed up scanning when the network is |
| 482 | * known to not use all possible channels. |
| 483 | */ |
| 484 | int *scan_freq; |
| 485 | |
| 486 | /** |
| 487 | * bgscan - Background scan and roaming parameters or %NULL if none |
| 488 | * |
| 489 | * This is an optional set of parameters for background scanning and |
| 490 | * roaming within a network (ESS) in following format: |
| 491 | * <bgscan module name>:<module parameters> |
| 492 | */ |
| 493 | char *bgscan; |
| 494 | |
| 495 | /** |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 496 | * ignore_broadcast_ssid - Hide SSID in AP mode |
| 497 | * |
| 498 | * Send empty SSID in beacons and ignore probe request frames that do |
| 499 | * not specify full SSID, i.e., require stations to know SSID. |
| 500 | * default: disabled (0) |
| 501 | * 1 = send empty (length=0) SSID in beacon and ignore probe request |
| 502 | * for broadcast SSID |
| 503 | * 2 = clear SSID (ASCII 0), but keep the original length (this may be |
| 504 | * required with some clients that do not support empty SSID) and |
| 505 | * ignore probe requests for broadcast SSID |
| 506 | */ |
| 507 | int ignore_broadcast_ssid; |
| 508 | |
| 509 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 510 | * freq_list - Array of allowed frequencies or %NULL for all |
| 511 | * |
| 512 | * This is an optional zero-terminated array of frequencies in |
| 513 | * megahertz (MHz) to allow for selecting the BSS. If set, scan results |
| 514 | * that do not match any of the specified frequencies are not |
| 515 | * considered when selecting a BSS. |
| 516 | */ |
| 517 | int *freq_list; |
| 518 | |
| 519 | /** |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 520 | * p2p_client_list - List of P2P Clients in a persistent group (GO) |
| 521 | * |
| 522 | * This is a list of P2P Clients (P2P Device Address) that have joined |
| 523 | * the persistent group. This is maintained on the GO for persistent |
| 524 | * group entries (disabled == 2). |
| 525 | */ |
| 526 | u8 *p2p_client_list; |
| 527 | |
| 528 | /** |
| 529 | * num_p2p_clients - Number of entries in p2p_client_list |
| 530 | */ |
| 531 | size_t num_p2p_clients; |
| 532 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 533 | #ifndef P2P_MAX_STORED_CLIENTS |
| 534 | #define P2P_MAX_STORED_CLIENTS 100 |
| 535 | #endif /* P2P_MAX_STORED_CLIENTS */ |
| 536 | |
Dmitry Shmidt | 1f69aa5 | 2012-01-24 16:10:04 -0800 | [diff] [blame] | 537 | /** |
Dmitry Shmidt | 391c59f | 2013-09-03 12:16:28 -0700 | [diff] [blame] | 538 | * psk_list - Per-client PSKs (struct psk_list_entry) |
| 539 | */ |
| 540 | struct dl_list psk_list; |
| 541 | |
| 542 | /** |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 543 | * p2p_group - Network generated as a P2P group (used internally) |
| 544 | */ |
| 545 | int p2p_group; |
| 546 | |
| 547 | /** |
| 548 | * p2p_persistent_group - Whether this is a persistent group |
| 549 | */ |
| 550 | int p2p_persistent_group; |
| 551 | |
| 552 | /** |
| 553 | * temporary - Whether this network is temporary and not to be saved |
| 554 | */ |
| 555 | int temporary; |
| 556 | |
| 557 | /** |
| 558 | * export_keys - Whether keys may be exported |
| 559 | * |
| 560 | * This attribute will be set when keys are determined through |
| 561 | * WPS or similar so that they may be exported. |
| 562 | */ |
| 563 | int export_keys; |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 564 | |
| 565 | #ifdef CONFIG_HT_OVERRIDES |
| 566 | /** |
| 567 | * disable_ht - Disable HT (IEEE 802.11n) for this network |
| 568 | * |
| 569 | * By default, use it if it is available, but this can be configured |
| 570 | * to 1 to have it disabled. |
| 571 | */ |
| 572 | int disable_ht; |
| 573 | |
| 574 | /** |
| 575 | * disable_ht40 - Disable HT40 for this network |
| 576 | * |
| 577 | * By default, use it if it is available, but this can be configured |
| 578 | * to 1 to have it disabled. |
| 579 | */ |
| 580 | int disable_ht40; |
| 581 | |
| 582 | /** |
Dmitry Shmidt | a54fa5f | 2013-01-15 13:53:35 -0800 | [diff] [blame] | 583 | * disable_sgi - Disable SGI (Short Guard Interval) for this network |
| 584 | * |
| 585 | * By default, use it if it is available, but this can be configured |
| 586 | * to 1 to have it disabled. |
| 587 | */ |
| 588 | int disable_sgi; |
| 589 | |
| 590 | /** |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 591 | * disable_ldpc - Disable LDPC for this network |
| 592 | * |
| 593 | * By default, use it if it is available, but this can be configured |
| 594 | * to 1 to have it disabled. |
| 595 | */ |
| 596 | int disable_ldpc; |
| 597 | |
| 598 | /** |
Dmitry Shmidt | 61593f0 | 2014-04-21 16:27:35 -0700 | [diff] [blame] | 599 | * ht40_intolerant - Indicate 40 MHz intolerant for this network |
| 600 | */ |
| 601 | int ht40_intolerant; |
| 602 | |
| 603 | /** |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 604 | * disable_max_amsdu - Disable MAX A-MSDU |
| 605 | * |
| 606 | * A-MDSU will be 3839 bytes when disabled, or 7935 |
| 607 | * when enabled (assuming it is otherwise supported) |
| 608 | * -1 (default) means do not apply any settings to the kernel. |
| 609 | */ |
| 610 | int disable_max_amsdu; |
| 611 | |
| 612 | /** |
| 613 | * ampdu_factor - Maximum A-MPDU Length Exponent |
| 614 | * |
| 615 | * Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009. |
| 616 | */ |
| 617 | int ampdu_factor; |
| 618 | |
| 619 | /** |
| 620 | * ampdu_density - Minimum A-MPDU Start Spacing |
| 621 | * |
| 622 | * Value: 0-7, see 7.3.2.56.3 in IEEE Std 802.11n-2009. |
| 623 | */ |
| 624 | int ampdu_density; |
| 625 | |
| 626 | /** |
| 627 | * ht_mcs - Allowed HT-MCS rates, in ASCII hex: ffff0000... |
| 628 | * |
| 629 | * By default (empty string): Use whatever the OS has configured. |
| 630 | */ |
| 631 | char *ht_mcs; |
| 632 | #endif /* CONFIG_HT_OVERRIDES */ |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 633 | |
Dmitry Shmidt | 2f02319 | 2013-03-12 12:44:17 -0700 | [diff] [blame] | 634 | #ifdef CONFIG_VHT_OVERRIDES |
| 635 | /** |
| 636 | * disable_vht - Disable VHT (IEEE 802.11ac) for this network |
| 637 | * |
| 638 | * By default, use it if it is available, but this can be configured |
| 639 | * to 1 to have it disabled. |
| 640 | */ |
| 641 | int disable_vht; |
| 642 | |
| 643 | /** |
| 644 | * vht_capa - VHT capabilities to use |
| 645 | */ |
| 646 | unsigned int vht_capa; |
| 647 | |
| 648 | /** |
| 649 | * vht_capa_mask - mask for VHT capabilities |
| 650 | */ |
| 651 | unsigned int vht_capa_mask; |
| 652 | |
| 653 | int vht_rx_mcs_nss_1, vht_rx_mcs_nss_2, |
| 654 | vht_rx_mcs_nss_3, vht_rx_mcs_nss_4, |
| 655 | vht_rx_mcs_nss_5, vht_rx_mcs_nss_6, |
| 656 | vht_rx_mcs_nss_7, vht_rx_mcs_nss_8; |
| 657 | int vht_tx_mcs_nss_1, vht_tx_mcs_nss_2, |
| 658 | vht_tx_mcs_nss_3, vht_tx_mcs_nss_4, |
| 659 | vht_tx_mcs_nss_5, vht_tx_mcs_nss_6, |
| 660 | vht_tx_mcs_nss_7, vht_tx_mcs_nss_8; |
| 661 | #endif /* CONFIG_VHT_OVERRIDES */ |
| 662 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 663 | /** |
| 664 | * ap_max_inactivity - Timeout in seconds to detect STA's inactivity |
| 665 | * |
| 666 | * This timeout value is used in AP mode to clean up inactive stations. |
| 667 | * By default: 300 seconds. |
| 668 | */ |
| 669 | int ap_max_inactivity; |
| 670 | |
| 671 | /** |
| 672 | * dtim_period - DTIM period in Beacon intervals |
| 673 | * By default: 2 |
| 674 | */ |
| 675 | int dtim_period; |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 676 | |
| 677 | /** |
Dmitry Shmidt | 7a5e50a | 2013-03-05 12:37:16 -0800 | [diff] [blame] | 678 | * beacon_int - Beacon interval (default: 100 TU) |
| 679 | */ |
| 680 | int beacon_int; |
| 681 | |
| 682 | /** |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 683 | * auth_failures - Number of consecutive authentication failures |
| 684 | */ |
| 685 | unsigned int auth_failures; |
| 686 | |
| 687 | /** |
| 688 | * disabled_until - Network block disabled until this time if non-zero |
| 689 | */ |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 690 | struct os_reltime disabled_until; |
Dmitry Shmidt | d5e4923 | 2012-12-03 15:08:10 -0800 | [diff] [blame] | 691 | |
| 692 | /** |
| 693 | * parent_cred - Pointer to parent wpa_cred entry |
| 694 | * |
| 695 | * This pointer can be used to delete temporary networks when a wpa_cred |
| 696 | * that was used to create them is removed. This pointer should not be |
| 697 | * dereferences since it may not be updated in all cases. |
| 698 | */ |
| 699 | void *parent_cred; |
Dmitry Shmidt | 5a1480c | 2014-05-12 09:46:02 -0700 | [diff] [blame] | 700 | |
| 701 | #ifdef CONFIG_MACSEC |
| 702 | /** |
| 703 | * macsec_policy - Determines the policy for MACsec secure session |
| 704 | * |
| 705 | * 0: MACsec not in use (default) |
| 706 | * 1: MACsec enabled - Should secure, accept key server's advice to |
| 707 | * determine whether to use a secure session or not. |
| 708 | */ |
| 709 | int macsec_policy; |
| 710 | #endif /* CONFIG_MACSEC */ |
Dmitry Shmidt | c281702 | 2014-07-02 10:32:10 -0700 | [diff] [blame] | 711 | |
| 712 | #ifdef CONFIG_HS20 |
| 713 | int update_identifier; |
| 714 | #endif /* CONFIG_HS20 */ |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 715 | |
| 716 | unsigned int wps_run; |
| 717 | |
| 718 | /** |
| 719 | * mac_addr - MAC address policy |
| 720 | * |
| 721 | * 0 = use permanent MAC address |
| 722 | * 1 = use random MAC address for each ESS connection |
| 723 | * 2 = like 1, but maintain OUI (with local admin bit set) |
| 724 | * |
| 725 | * Internally, special value -1 is used to indicate that the parameter |
| 726 | * was not specified in the configuration (i.e., default behavior is |
| 727 | * followed). |
| 728 | */ |
| 729 | int mac_addr; |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 730 | |
| 731 | /** |
| 732 | * no_auto_peer - Do not automatically peer with compatible mesh peers |
| 733 | * |
| 734 | * When unset, the reception of a beacon from a another mesh peer in |
| 735 | * this MBSS will trigger a peering attempt. |
| 736 | */ |
| 737 | int no_auto_peer; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 738 | }; |
| 739 | |
| 740 | #endif /* CONFIG_SSID_H */ |