blob: a186ab9f95643d7f5c2f05a74d4b5dd096bb95ae [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Network configuration structures
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003 * Copyright (c) 2003-2013, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#ifndef CONFIG_SSID_H
10#define CONFIG_SSID_H
11
12#include "common/defs.h"
Dmitry Shmidt391c59f2013-09-03 12:16:28 -070013#include "utils/list.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070014#include "eap_peer/eap_config.h"
15
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070016#define DEFAULT_EAP_WORKAROUND ((unsigned int) -1)
17#define DEFAULT_EAPOL_FLAGS (EAPOL_FLAG_REQUIRE_KEY_UNICAST | \
18 EAPOL_FLAG_REQUIRE_KEY_BROADCAST)
19#define DEFAULT_PROTO (WPA_PROTO_WPA | WPA_PROTO_RSN)
20#define DEFAULT_KEY_MGMT (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X)
21#define DEFAULT_PAIRWISE (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP)
Dmitry Shmidt41712582015-06-29 11:02:15 -070022#define DEFAULT_GROUP (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070023#define DEFAULT_FRAGMENT_SIZE 1398
24
Dmitry Shmidt04949592012-07-19 12:16:46 -070025#define DEFAULT_BG_SCAN_PERIOD -1
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080026#define DEFAULT_MESH_MAX_RETRIES 2
27#define DEFAULT_MESH_RETRY_TIMEOUT 40
28#define DEFAULT_MESH_CONFIRM_TIMEOUT 40
29#define DEFAULT_MESH_HOLDING_TIMEOUT 40
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070030#define DEFAULT_MESH_RSSI_THRESHOLD 1 /* no change */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -080031#define DEFAULT_DISABLE_HT 0
32#define DEFAULT_DISABLE_HT40 0
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080033#define DEFAULT_DISABLE_SGI 0
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -070034#define DEFAULT_DISABLE_LDPC 0
Hai Shalom74f70d42019-02-11 14:42:39 -080035#define DEFAULT_TX_STBC -1 /* no change */
36#define DEFAULT_RX_STBC -1 /* no change */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -080037#define DEFAULT_DISABLE_MAX_AMSDU -1 /* no change */
38#define DEFAULT_AMPDU_FACTOR -1 /* no change */
39#define DEFAULT_AMPDU_DENSITY -1 /* no change */
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -070040#define DEFAULT_USER_SELECTED_SIM 1
Hai Shalom74f70d42019-02-11 14:42:39 -080041#define DEFAULT_MAX_OPER_CHWIDTH -1
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -080042
Dmitry Shmidt391c59f2013-09-03 12:16:28 -070043struct psk_list_entry {
44 struct dl_list list;
45 u8 addr[ETH_ALEN];
46 u8 psk[32];
47 u8 p2p;
48};
49
Hai Shalom81f62d82019-07-22 12:10:00 -070050enum wpas_mode {
51 WPAS_MODE_INFRA = 0,
52 WPAS_MODE_IBSS = 1,
53 WPAS_MODE_AP = 2,
54 WPAS_MODE_P2P_GO = 3,
55 WPAS_MODE_P2P_GROUP_FORMATION = 4,
56 WPAS_MODE_MESH = 5,
57};
58
59/**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070060 * struct wpa_ssid - Network configuration data
61 *
62 * This structure includes all the configuration variables for a network. This
63 * data is included in the per-interface configuration data as an element of
64 * the network list, struct wpa_config::ssid. Each network block in the
65 * configuration is mapped to a struct wpa_ssid instance.
66 */
67struct wpa_ssid {
68 /**
69 * next - Next network in global list
70 *
71 * This pointer can be used to iterate over all networks. The head of
72 * this list is stored in the ssid field of struct wpa_config.
73 */
74 struct wpa_ssid *next;
75
76 /**
77 * pnext - Next network in per-priority list
78 *
79 * This pointer can be used to iterate over all networks in the same
80 * priority class. The heads of these list are stored in the pssid
81 * fields of struct wpa_config.
82 */
83 struct wpa_ssid *pnext;
84
85 /**
86 * id - Unique id for the network
87 *
88 * This identifier is used as a unique identifier for each network
89 * block when using the control interface. Each network is allocated an
90 * id when it is being created, either when reading the configuration
91 * file or when a new network is added through the control interface.
92 */
93 int id;
94
95 /**
96 * priority - Priority group
97 *
98 * By default, all networks will get same priority group (0). If some
99 * of the networks are more desirable, this field can be used to change
100 * the order in which wpa_supplicant goes through the networks when
101 * selecting a BSS. The priority groups will be iterated in decreasing
102 * priority (i.e., the larger the priority value, the sooner the
103 * network is matched against the scan results). Within each priority
104 * group, networks will be selected based on security policy, signal
105 * strength, etc.
106 *
107 * Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are
108 * not using this priority to select the order for scanning. Instead,
109 * they try the networks in the order that used in the configuration
110 * file.
111 */
112 int priority;
113
114 /**
115 * ssid - Service set identifier (network name)
116 *
117 * This is the SSID for the network. For wireless interfaces, this is
118 * used to select which network will be used. If set to %NULL (or
119 * ssid_len=0), any SSID can be used. For wired interfaces, this must
120 * be set to %NULL. Note: SSID may contain any characters, even nul
121 * (ASCII 0) and as such, this should not be assumed to be a nul
122 * terminated string. ssid_len defines how many characters are valid
123 * and the ssid field is not guaranteed to be nul terminated.
124 */
125 u8 *ssid;
126
127 /**
128 * ssid_len - Length of the SSID
129 */
130 size_t ssid_len;
131
132 /**
133 * bssid - BSSID
134 *
135 * If set, this network block is used only when associating with the AP
136 * using the configured BSSID
137 *
138 * If this is a persistent P2P group (disabled == 2), this is the GO
139 * Device Address.
140 */
141 u8 bssid[ETH_ALEN];
142
143 /**
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800144 * bssid_blacklist - List of inacceptable BSSIDs
145 */
146 u8 *bssid_blacklist;
147 size_t num_bssid_blacklist;
148
149 /**
150 * bssid_blacklist - List of acceptable BSSIDs
151 */
152 u8 *bssid_whitelist;
153 size_t num_bssid_whitelist;
154
155 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700156 * bssid_set - Whether BSSID is configured for this network
157 */
158 int bssid_set;
159
160 /**
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700161 * bssid_hint - BSSID hint
162 *
163 * If set, this is configured to the driver as a preferred initial BSSID
164 * while connecting to this network.
165 */
166 u8 bssid_hint[ETH_ALEN];
167
168 /**
169 * bssid_hint_set - Whether BSSID hint is configured for this network
170 */
171 int bssid_hint_set;
172
173 /**
Dmitry Shmidt54605472013-11-08 11:10:19 -0800174 * go_p2p_dev_addr - GO's P2P Device Address or all zeros if not set
175 */
176 u8 go_p2p_dev_addr[ETH_ALEN];
177
178 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700179 * psk - WPA pre-shared key (256 bits)
180 */
181 u8 psk[32];
182
183 /**
184 * psk_set - Whether PSK field is configured
185 */
186 int psk_set;
187
188 /**
189 * passphrase - WPA ASCII passphrase
190 *
191 * If this is set, psk will be generated using the SSID and passphrase
192 * configured for the network. ASCII passphrase must be between 8 and
193 * 63 characters (inclusive).
194 */
195 char *passphrase;
196
197 /**
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700198 * sae_password - SAE password
199 *
200 * This parameter can be used to set a password for SAE. By default, the
201 * passphrase value is used if this separate parameter is not used, but
202 * passphrase follows the WPA-PSK constraints (8..63 characters) even
203 * though SAE passwords do not have such constraints.
204 */
205 char *sae_password;
206
207 /**
Roshan Pius3a1667e2018-07-03 15:17:14 -0700208 * sae_password_id - SAE password identifier
209 *
210 * This parameter can be used to identify a specific SAE password. If
211 * not included, the default SAE password is used instead.
212 */
213 char *sae_password_id;
214
Hai Shalomc3565922019-10-28 11:58:20 -0700215 struct sae_pt *pt;
216
Roshan Pius3a1667e2018-07-03 15:17:14 -0700217 /**
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700218 * ext_psk - PSK/passphrase name in external storage
219 *
220 * If this is set, PSK/passphrase will be fetched from external storage
221 * when requesting association with the network.
222 */
223 char *ext_psk;
224
225 /**
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -0700226 * mem_only_psk - Whether to keep PSK/passphrase only in memory
227 *
228 * 0 = allow psk/passphrase to be stored to the configuration file
229 * 1 = do not store psk/passphrase to the configuration file
230 */
231 int mem_only_psk;
232
233 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700234 * pairwise_cipher - Bitfield of allowed pairwise ciphers, WPA_CIPHER_*
235 */
236 int pairwise_cipher;
237
238 /**
239 * group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_*
240 */
241 int group_cipher;
242
243 /**
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700244 * group_mgmt_cipher - Bitfield of allowed group management ciphers
245 *
246 * This is a bitfield of WPA_CIPHER_AES_128_CMAC and WPA_CIPHER_BIP_*
247 * values. If 0, no constraint is used for the cipher, i.e., whatever
248 * the AP uses is accepted.
249 */
250 int group_mgmt_cipher;
251
252 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700253 * key_mgmt - Bitfield of allowed key management protocols
254 *
255 * WPA_KEY_MGMT_*
256 */
257 int key_mgmt;
258
259 /**
Dmitry Shmidt04949592012-07-19 12:16:46 -0700260 * bg_scan_period - Background scan period in seconds, 0 to disable, or
261 * -1 to indicate no change to default driver configuration
262 */
263 int bg_scan_period;
264
265 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700266 * proto - Bitfield of allowed protocols, WPA_PROTO_*
267 */
268 int proto;
269
270 /**
271 * auth_alg - Bitfield of allowed authentication algorithms
272 *
273 * WPA_AUTH_ALG_*
274 */
275 int auth_alg;
276
277 /**
278 * scan_ssid - Scan this SSID with Probe Requests
279 *
280 * scan_ssid can be used to scan for APs using hidden SSIDs.
281 * Note: Many drivers do not support this. ap_mode=2 can be used with
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800282 * such drivers to use hidden SSIDs. Note2: Most nl80211-based drivers
283 * do support scan_ssid=1 and that should be used with them instead of
284 * ap_scan=2.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700285 */
286 int scan_ssid;
287
288#ifdef IEEE8021X_EAPOL
289#define EAPOL_FLAG_REQUIRE_KEY_UNICAST BIT(0)
290#define EAPOL_FLAG_REQUIRE_KEY_BROADCAST BIT(1)
291 /**
292 * eapol_flags - Bit field of IEEE 802.1X/EAPOL options (EAPOL_FLAG_*)
293 */
294 int eapol_flags;
295
296 /**
297 * eap - EAP peer configuration for this network
298 */
299 struct eap_peer_config eap;
300#endif /* IEEE8021X_EAPOL */
301
Hai Shalomfdcde762020-04-02 11:19:20 -0700302#ifdef CONFIG_WEP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700303#define NUM_WEP_KEYS 4
304#define MAX_WEP_KEY_LEN 16
305 /**
306 * wep_key - WEP keys
307 */
308 u8 wep_key[NUM_WEP_KEYS][MAX_WEP_KEY_LEN];
309
310 /**
311 * wep_key_len - WEP key lengths
312 */
313 size_t wep_key_len[NUM_WEP_KEYS];
314
315 /**
316 * wep_tx_keyidx - Default key index for TX frames using WEP
317 */
318 int wep_tx_keyidx;
Hai Shalomfdcde762020-04-02 11:19:20 -0700319#endif /* CONFIG_WEP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700320
321 /**
322 * proactive_key_caching - Enable proactive key caching
323 *
324 * This field can be used to enable proactive key caching which is also
325 * known as opportunistic PMKSA caching for WPA2. This is disabled (0)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800326 * by default unless default value is changed with the global okc=1
327 * parameter. Enable by setting this to 1.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700328 *
329 * Proactive key caching is used to make supplicant assume that the APs
330 * are using the same PMK and generate PMKSA cache entries without
331 * doing RSN pre-authentication. This requires support from the AP side
332 * and is normally used with wireless switches that co-locate the
333 * authenticator.
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800334 *
335 * Internally, special value -1 is used to indicate that the parameter
336 * was not specified in the configuration (i.e., default behavior is
337 * followed).
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700338 */
339 int proactive_key_caching;
340
341 /**
342 * mixed_cell - Whether mixed cells are allowed
343 *
344 * This option can be used to configure whether so called mixed cells,
345 * i.e., networks that use both plaintext and encryption in the same
346 * SSID, are allowed. This is disabled (0) by default. Enable by
347 * setting this to 1.
348 */
349 int mixed_cell;
350
351#ifdef IEEE8021X_EAPOL
352
353 /**
354 * leap - Number of EAP methods using LEAP
355 *
356 * This field should be set to 1 if LEAP is enabled. This is used to
357 * select IEEE 802.11 authentication algorithm.
358 */
359 int leap;
360
361 /**
362 * non_leap - Number of EAP methods not using LEAP
363 *
364 * This field should be set to >0 if any EAP method other than LEAP is
365 * enabled. This is used to select IEEE 802.11 authentication
366 * algorithm.
367 */
368 int non_leap;
369
370 /**
371 * eap_workaround - EAP workarounds enabled
372 *
373 * wpa_supplicant supports number of "EAP workarounds" to work around
374 * interoperability issues with incorrectly behaving authentication
375 * servers. This is recommended to be enabled by default because some
376 * of the issues are present in large number of authentication servers.
377 *
378 * Strict EAP conformance mode can be configured by disabling
379 * workarounds with eap_workaround = 0.
380 */
381 unsigned int eap_workaround;
382
383#endif /* IEEE8021X_EAPOL */
384
385 /**
386 * mode - IEEE 802.11 operation mode (Infrastucture/IBSS)
387 *
388 * 0 = infrastructure (Managed) mode, i.e., associate with an AP.
389 *
390 * 1 = IBSS (ad-hoc, peer-to-peer)
391 *
392 * 2 = AP (access point)
393 *
394 * 3 = P2P Group Owner (can be set in the configuration file)
395 *
396 * 4 = P2P Group Formation (used internally; not in configuration
397 * files)
398 *
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800399 * 5 = Mesh
400 *
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800401 * Note: IBSS can only be used with key_mgmt NONE (plaintext and static
402 * WEP) and WPA-PSK (with proto=RSN). In addition, key_mgmt=WPA-NONE
403 * (fixed group key TKIP/CCMP) is available for backwards compatibility,
404 * but its use is deprecated. WPA-None requires following network block
405 * options: proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or
406 * CCMP, but not both), and psk must also be set (either directly or
407 * using ASCII passphrase).
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700408 */
Hai Shalom81f62d82019-07-22 12:10:00 -0700409 enum wpas_mode mode;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700410
411 /**
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800412 * pbss - Whether to use PBSS. Relevant to DMG networks only.
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700413 * 0 = do not use PBSS
414 * 1 = use PBSS
415 * 2 = don't care (not allowed in AP mode)
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800416 * Used together with mode configuration. When mode is AP, it
417 * means to start a PCP instead of a regular AP. When mode is INFRA it
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700418 * means connect to a PCP instead of AP. In this mode you can also
419 * specify 2 (don't care) meaning connect to either AP or PCP.
420 * P2P_GO and P2P_GROUP_FORMATION modes must use PBSS in DMG network.
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800421 */
422 int pbss;
423
424 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700425 * disabled - Whether this network is currently disabled
426 *
427 * 0 = this network can be used (default).
428 * 1 = this network block is disabled (can be enabled through
429 * ctrl_iface, e.g., with wpa_cli or wpa_gui).
430 * 2 = this network block includes parameters for a persistent P2P
431 * group (can be used with P2P ctrl_iface commands)
432 */
433 int disabled;
434
435 /**
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800436 * disabled_for_connect - Whether this network was temporarily disabled
437 *
438 * This flag is used to reenable all the temporarily disabled networks
439 * after either the success or failure of a WPS connection.
440 */
441 int disabled_for_connect;
442
443 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700444 * id_str - Network identifier string for external scripts
445 *
446 * This value is passed to external ctrl_iface monitors in
447 * WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR
448 * environment variable for action scripts.
449 */
450 char *id_str;
451
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700452 /**
453 * ieee80211w - Whether management frame protection is enabled
454 *
455 * This value is used to configure policy for management frame
456 * protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required.
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800457 * This is disabled by default unless the default value has been changed
458 * with the global pmf=1/2 parameter.
459 *
460 * Internally, special value 3 is used to indicate that the parameter
461 * was not specified in the configuration (i.e., default behavior is
462 * followed).
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700463 */
464 enum mfp_options ieee80211w;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700465
Hai Shalom74f70d42019-02-11 14:42:39 -0800466#ifdef CONFIG_OCV
467 /**
468 * ocv - Enable/disable operating channel validation
469 *
470 * If this parameter is set to 1, stations will exchange OCI element
471 * to cryptographically verify the operating channel. Setting this
472 * parameter to 0 disables this option. Default value: 0.
473 */
474 int ocv;
475#endif /* CONFIG_OCV */
476
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700477 /**
478 * frequency - Channel frequency in megahertz (MHz) for IBSS
479 *
480 * This value is used to configure the initial channel for IBSS (adhoc)
481 * networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in
482 * the infrastructure mode. In addition, this value is only used by the
483 * station that creates the IBSS. If an IBSS network with the
484 * configured SSID is already present, the frequency of the network
485 * will be used instead of this configured value.
486 */
487 int frequency;
488
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800489 /**
Hai Shalomc3565922019-10-28 11:58:20 -0700490 * enable_edmg - Enable EDMG feature in STA/AP mode
491 *
492 * This flag is used for enabling the EDMG capability in STA/AP mode.
493 */
494 int enable_edmg;
495
496 /**
497 * edmg_channel - EDMG channel number
498 *
499 * This value is used to configure the EDMG channel bonding feature.
500 * In AP mode it defines the EDMG channel to start the AP on.
501 * in STA mode it defines the EDMG channel to use for connection
502 * (if supported by AP).
503 */
504 u8 edmg_channel;
505
506 /**
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800507 * fixed_freq - Use fixed frequency for IBSS
508 */
509 int fixed_freq;
510
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -0800511#ifdef CONFIG_ACS
512 /**
513 * ACS - Automatic Channel Selection for AP mode
514 *
515 * If present, it will be handled together with frequency.
516 * frequency will be used to determine hardware mode only, when it is
517 * used for both hardware mode and channel when used alone. This will
518 * force the channel to be set to 0, thus enabling ACS.
519 */
520 int acs;
521#endif /* CONFIG_ACS */
522
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800523 /**
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800524 * mesh_basic_rates - BSS Basic rate set for mesh network
525 *
526 */
527 int *mesh_basic_rates;
528
529 /**
530 * Mesh network plink parameters
531 */
532 int dot11MeshMaxRetries;
533 int dot11MeshRetryTimeout; /* msec */
534 int dot11MeshConfirmTimeout; /* msec */
535 int dot11MeshHoldingTimeout; /* msec */
536
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700537 int ht;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700538 int ht40;
539
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -0700540 int vht;
541
Hai Shalom74f70d42019-02-11 14:42:39 -0800542 int he;
543
Roshan Pius3a1667e2018-07-03 15:17:14 -0700544 int max_oper_chwidth;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800545
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700546 unsigned int vht_center_freq1;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800547 unsigned int vht_center_freq2;
548
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700549 /**
550 * wpa_ptk_rekey - Maximum lifetime for PTK in seconds
551 *
552 * This value can be used to enforce rekeying of PTK to mitigate some
553 * attacks against TKIP deficiencies.
554 */
555 int wpa_ptk_rekey;
556
Hai Shalomfdcde762020-04-02 11:19:20 -0700557 /** wpa_deny_ptk0_rekey - Control PTK0 rekeying
558 *
559 * Rekeying a pairwise key using only keyid 0 (PTK0 rekey) has many
560 * broken implementations and should be avoided when using or
561 * interacting with one.
562 *
563 * 0 = always rekey when configured/instructed
564 * 1 = only rekey when the local driver is explicitly indicating it can
565 * perform this operation without issues
566 * 2 = never allow PTK0 rekeys
567 */
568 enum ptk0_rekey_handling wpa_deny_ptk0_rekey;
569
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700570 /**
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -0700571 * group_rekey - Group rekeying time in seconds
572 *
573 * This value, if non-zero, is used as the dot11RSNAConfigGroupRekeyTime
574 * parameter when operating in Authenticator role in IBSS.
575 */
576 int group_rekey;
577
578 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700579 * scan_freq - Array of frequencies to scan or %NULL for all
580 *
581 * This is an optional zero-terminated array of frequencies in
582 * megahertz (MHz) to include in scan requests when searching for this
583 * network. This can be used to speed up scanning when the network is
584 * known to not use all possible channels.
585 */
586 int *scan_freq;
587
588 /**
589 * bgscan - Background scan and roaming parameters or %NULL if none
590 *
591 * This is an optional set of parameters for background scanning and
592 * roaming within a network (ESS) in following format:
593 * <bgscan module name>:<module parameters>
594 */
595 char *bgscan;
596
597 /**
Dmitry Shmidt04949592012-07-19 12:16:46 -0700598 * ignore_broadcast_ssid - Hide SSID in AP mode
599 *
600 * Send empty SSID in beacons and ignore probe request frames that do
601 * not specify full SSID, i.e., require stations to know SSID.
602 * default: disabled (0)
603 * 1 = send empty (length=0) SSID in beacon and ignore probe request
604 * for broadcast SSID
605 * 2 = clear SSID (ASCII 0), but keep the original length (this may be
606 * required with some clients that do not support empty SSID) and
607 * ignore probe requests for broadcast SSID
608 */
609 int ignore_broadcast_ssid;
610
611 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700612 * freq_list - Array of allowed frequencies or %NULL for all
613 *
614 * This is an optional zero-terminated array of frequencies in
615 * megahertz (MHz) to allow for selecting the BSS. If set, scan results
616 * that do not match any of the specified frequencies are not
617 * considered when selecting a BSS.
618 */
619 int *freq_list;
620
621 /**
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800622 * p2p_client_list - List of P2P Clients in a persistent group (GO)
623 *
624 * This is a list of P2P Clients (P2P Device Address) that have joined
625 * the persistent group. This is maintained on the GO for persistent
626 * group entries (disabled == 2).
627 */
628 u8 *p2p_client_list;
629
630 /**
631 * num_p2p_clients - Number of entries in p2p_client_list
632 */
633 size_t num_p2p_clients;
634
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700635#ifndef P2P_MAX_STORED_CLIENTS
636#define P2P_MAX_STORED_CLIENTS 100
637#endif /* P2P_MAX_STORED_CLIENTS */
638
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800639 /**
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700640 * psk_list - Per-client PSKs (struct psk_list_entry)
641 */
642 struct dl_list psk_list;
643
644 /**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700645 * p2p_group - Network generated as a P2P group (used internally)
646 */
647 int p2p_group;
648
649 /**
650 * p2p_persistent_group - Whether this is a persistent group
651 */
652 int p2p_persistent_group;
653
654 /**
655 * temporary - Whether this network is temporary and not to be saved
656 */
657 int temporary;
658
659 /**
660 * export_keys - Whether keys may be exported
661 *
662 * This attribute will be set when keys are determined through
663 * WPS or similar so that they may be exported.
664 */
665 int export_keys;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800666
667#ifdef CONFIG_HT_OVERRIDES
668 /**
669 * disable_ht - Disable HT (IEEE 802.11n) for this network
670 *
671 * By default, use it if it is available, but this can be configured
672 * to 1 to have it disabled.
673 */
674 int disable_ht;
675
676 /**
677 * disable_ht40 - Disable HT40 for this network
678 *
679 * By default, use it if it is available, but this can be configured
680 * to 1 to have it disabled.
681 */
682 int disable_ht40;
683
684 /**
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800685 * disable_sgi - Disable SGI (Short Guard Interval) for this network
686 *
687 * By default, use it if it is available, but this can be configured
688 * to 1 to have it disabled.
689 */
690 int disable_sgi;
691
692 /**
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700693 * disable_ldpc - Disable LDPC for this network
694 *
695 * By default, use it if it is available, but this can be configured
696 * to 1 to have it disabled.
697 */
698 int disable_ldpc;
699
700 /**
Dmitry Shmidt61593f02014-04-21 16:27:35 -0700701 * ht40_intolerant - Indicate 40 MHz intolerant for this network
702 */
703 int ht40_intolerant;
704
705 /**
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800706 * disable_max_amsdu - Disable MAX A-MSDU
707 *
708 * A-MDSU will be 3839 bytes when disabled, or 7935
709 * when enabled (assuming it is otherwise supported)
710 * -1 (default) means do not apply any settings to the kernel.
711 */
712 int disable_max_amsdu;
713
714 /**
715 * ampdu_factor - Maximum A-MPDU Length Exponent
716 *
717 * Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
718 */
719 int ampdu_factor;
720
721 /**
722 * ampdu_density - Minimum A-MPDU Start Spacing
723 *
724 * Value: 0-7, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
725 */
726 int ampdu_density;
727
728 /**
729 * ht_mcs - Allowed HT-MCS rates, in ASCII hex: ffff0000...
730 *
731 * By default (empty string): Use whatever the OS has configured.
732 */
733 char *ht_mcs;
Hai Shalom74f70d42019-02-11 14:42:39 -0800734
735 /**
736 * tx_stbc - Indicate STBC support for TX streams
737 *
738 * Value: -1..1, by default (-1): use whatever the OS or card has
739 * configured. See IEEE Std 802.11-2016, 9.4.2.56.2.
740 */
741 int tx_stbc;
742
743 /**
744 * rx_stbc - Indicate STBC support for RX streams
745 *
746 * Value: -1..3, by default (-1): use whatever the OS or card has
747 * configured. See IEEE Std 802.11-2016, 9.4.2.56.2.
748 */
749 int rx_stbc;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800750#endif /* CONFIG_HT_OVERRIDES */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700751
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700752#ifdef CONFIG_VHT_OVERRIDES
753 /**
754 * disable_vht - Disable VHT (IEEE 802.11ac) for this network
755 *
756 * By default, use it if it is available, but this can be configured
757 * to 1 to have it disabled.
758 */
759 int disable_vht;
760
761 /**
762 * vht_capa - VHT capabilities to use
763 */
764 unsigned int vht_capa;
765
766 /**
767 * vht_capa_mask - mask for VHT capabilities
768 */
769 unsigned int vht_capa_mask;
770
771 int vht_rx_mcs_nss_1, vht_rx_mcs_nss_2,
772 vht_rx_mcs_nss_3, vht_rx_mcs_nss_4,
773 vht_rx_mcs_nss_5, vht_rx_mcs_nss_6,
774 vht_rx_mcs_nss_7, vht_rx_mcs_nss_8;
775 int vht_tx_mcs_nss_1, vht_tx_mcs_nss_2,
776 vht_tx_mcs_nss_3, vht_tx_mcs_nss_4,
777 vht_tx_mcs_nss_5, vht_tx_mcs_nss_6,
778 vht_tx_mcs_nss_7, vht_tx_mcs_nss_8;
779#endif /* CONFIG_VHT_OVERRIDES */
780
Hai Shalomfdcde762020-04-02 11:19:20 -0700781#ifdef CONFIG_HE_OVERRIDES
782 /**
783 * disable_he - Disable HE (IEEE 802.11ax) for this network
784 *
785 * By default, use it if it is available, but this can be configured
786 * to 1 to have it disabled.
787 */
788 int disable_he;
789#endif /* CONFIG_HE_OVERRIDES */
790
Dmitry Shmidt04949592012-07-19 12:16:46 -0700791 /**
792 * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
793 *
794 * This timeout value is used in AP mode to clean up inactive stations.
795 * By default: 300 seconds.
796 */
797 int ap_max_inactivity;
798
799 /**
800 * dtim_period - DTIM period in Beacon intervals
801 * By default: 2
802 */
803 int dtim_period;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700804
805 /**
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -0800806 * beacon_int - Beacon interval (default: 100 TU)
807 */
808 int beacon_int;
809
810 /**
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700811 * auth_failures - Number of consecutive authentication failures
812 */
813 unsigned int auth_failures;
814
815 /**
816 * disabled_until - Network block disabled until this time if non-zero
817 */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800818 struct os_reltime disabled_until;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800819
820 /**
821 * parent_cred - Pointer to parent wpa_cred entry
822 *
823 * This pointer can be used to delete temporary networks when a wpa_cred
824 * that was used to create them is removed. This pointer should not be
825 * dereferences since it may not be updated in all cases.
826 */
827 void *parent_cred;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700828
829#ifdef CONFIG_MACSEC
830 /**
831 * macsec_policy - Determines the policy for MACsec secure session
832 *
833 * 0: MACsec not in use (default)
834 * 1: MACsec enabled - Should secure, accept key server's advice to
835 * determine whether to use a secure session or not.
836 */
837 int macsec_policy;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800838
839 /**
840 * macsec_integ_only - Determines how MACsec are transmitted
841 *
842 * This setting applies only when MACsec is in use, i.e.,
843 * - macsec_policy is enabled
844 * - the key server has decided to enable MACsec
845 *
846 * 0: Encrypt traffic (default)
847 * 1: Integrity only
848 */
849 int macsec_integ_only;
850
851 /**
Hai Shalom74f70d42019-02-11 14:42:39 -0800852 * macsec_replay_protect - Enable MACsec replay protection
853 *
854 * This setting applies only when MACsec is in use, i.e.,
855 * - macsec_policy is enabled
856 * - the key server has decided to enable MACsec
857 *
858 * 0: Replay protection disabled (default)
859 * 1: Replay protection enabled
860 */
861 int macsec_replay_protect;
862
863 /**
864 * macsec_replay_window - MACsec replay protection window
865 *
866 * A window in which replay is tolerated, to allow receipt of frames
867 * that have been misordered by the network.
868 *
869 * This setting applies only when MACsec replay protection active, i.e.,
870 * - macsec_replay_protect is enabled
871 * - the key server has decided to enable MACsec
872 *
873 * 0: No replay window, strict check (default)
874 * 1..2^32-1: number of packets that could be misordered
875 */
876 u32 macsec_replay_window;
877
878 /**
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800879 * macsec_port - MACsec port (in SCI)
880 *
881 * Port component of the SCI.
882 *
883 * Range: 1-65534 (default: 1)
884 */
885 int macsec_port;
886
887 /**
Dmitry Shmidt29333592017-01-09 12:27:11 -0800888 * mka_priority - Priority of MKA Actor
889 *
890 * Range: 0-255 (default: 255)
891 */
892 int mka_priority;
893
894 /**
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800895 * mka_ckn - MKA pre-shared CKN
896 */
Hai Shalom74f70d42019-02-11 14:42:39 -0800897#define MACSEC_CKN_MAX_LEN 32
898 size_t mka_ckn_len;
899 u8 mka_ckn[MACSEC_CKN_MAX_LEN];
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800900
901 /**
902 * mka_cak - MKA pre-shared CAK
903 */
Hai Shalom74f70d42019-02-11 14:42:39 -0800904#define MACSEC_CAK_MAX_LEN 32
905 size_t mka_cak_len;
906 u8 mka_cak[MACSEC_CAK_MAX_LEN];
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800907
908#define MKA_PSK_SET_CKN BIT(0)
909#define MKA_PSK_SET_CAK BIT(1)
910#define MKA_PSK_SET (MKA_PSK_SET_CKN | MKA_PSK_SET_CAK)
911 /**
912 * mka_psk_set - Whether mka_ckn and mka_cak are set
913 */
914 u8 mka_psk_set;
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -0700915#endif /* CONFIG_MACSEC */
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700916
917#ifdef CONFIG_HS20
918 int update_identifier;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700919
920 /**
921 * roaming_consortium_selection - Roaming Consortium Selection
922 *
923 * The matching Roaming Consortium OI that was used to generate this
924 * network profile.
925 */
926 u8 *roaming_consortium_selection;
927
928 /**
929 * roaming_consortium_selection_len - roaming_consortium_selection len
930 */
931 size_t roaming_consortium_selection_len;
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700932#endif /* CONFIG_HS20 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700933
934 unsigned int wps_run;
935
936 /**
937 * mac_addr - MAC address policy
938 *
939 * 0 = use permanent MAC address
940 * 1 = use random MAC address for each ESS connection
941 * 2 = like 1, but maintain OUI (with local admin bit set)
942 *
943 * Internally, special value -1 is used to indicate that the parameter
944 * was not specified in the configuration (i.e., default behavior is
945 * followed).
946 */
947 int mac_addr;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800948
949 /**
950 * no_auto_peer - Do not automatically peer with compatible mesh peers
951 *
952 * When unset, the reception of a beacon from a another mesh peer in
953 * this MBSS will trigger a peering attempt.
954 */
955 int no_auto_peer;
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700956
957 /**
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700958 * mesh_rssi_threshold - Set mesh parameter mesh_rssi_threshold (dBm)
959 *
960 * -255..-1 = threshold value in dBm
961 * 0 = not using RSSI threshold
962 * 1 = do not change driver default
963 */
964 int mesh_rssi_threshold;
965
966 /**
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700967 * wps_disabled - WPS disabled in AP mode
968 *
969 * 0 = WPS enabled and configured (default)
970 * 1 = WPS disabled
971 */
972 int wps_disabled;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700973
974 /**
975 * fils_dh_group - FILS DH Group
976 *
977 * 0 = PFS disabled with FILS shared key authentication
978 * 1-65535 DH Group to use for FILS PFS
979 */
980 int fils_dh_group;
981
982 /**
983 * dpp_connector - DPP Connector (signedConnector as string)
984 */
985 char *dpp_connector;
986
987 /**
988 * dpp_netaccesskey - DPP netAccessKey (own private key)
989 */
990 u8 *dpp_netaccesskey;
991
992 /**
993 * dpp_netaccesskey_len - DPP netAccessKey length in octets
994 */
995 size_t dpp_netaccesskey_len;
996
997 /**
998 * net_access_key_expiry - DPP netAccessKey expiry in UNIX time stamp
999 *
1000 * 0 indicates no expiration.
1001 */
1002 unsigned int dpp_netaccesskey_expiry;
1003
1004 /**
1005 * dpp_csign - C-sign-key (Configurator public key)
1006 */
1007 u8 *dpp_csign;
1008
1009 /**
1010 * dpp_csign_len - C-sign-key length in octets
1011 */
1012 size_t dpp_csign_len;
1013
1014 /**
Hai Shalomfdcde762020-04-02 11:19:20 -07001015 * dpp_pfs - DPP PFS
1016 * 0: allow PFS to be used or not used
1017 * 1: require PFS to be used (note: not compatible with DPP R1)
1018 * 2: do not allow PFS to be used
1019 */
1020 int dpp_pfs;
1021
1022 /**
1023 * dpp_pfs_fallback - DPP PFS fallback selection
1024 *
1025 * This is an internally used variable (i.e., not used in external
1026 * configuration) to track state of the DPP PFS fallback mechanism.
1027 */
1028 int dpp_pfs_fallback;
1029
1030 /**
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001031 * owe_group - OWE DH Group
1032 *
Roshan Pius3a1667e2018-07-03 15:17:14 -07001033 * 0 = use default (19) first and then try all supported groups one by
1034 * one if AP rejects the selected group
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001035 * 1-65535 DH Group to use for OWE
1036 *
1037 * Groups 19 (NIST P-256), 20 (NIST P-384), and 21 (NIST P-521) are
1038 * currently supported.
1039 */
1040 int owe_group;
Roshan Pius3a1667e2018-07-03 15:17:14 -07001041
1042 /**
1043 * owe_only - OWE-only mode (disable transition mode)
1044 *
1045 * 0 = enable transition mode (allow connection to either OWE or open
1046 * BSS)
1047 * 1 = disable transition mode (allow connection only with OWE)
1048 */
1049 int owe_only;
Hai Shalom39ba6fc2019-01-22 12:40:38 -08001050
1051 /**
Hai Shalomfdcde762020-04-02 11:19:20 -07001052 * owe_ptk_workaround - OWE PTK derivation workaround
1053 *
1054 * Initial OWE implementation used SHA256 when deriving the PTK for all
1055 * OWE groups. This was supposed to change to SHA384 for group 20 and
1056 * SHA512 for group 21. This parameter can be used to enable older
1057 * behavior mainly for testing purposes. There is no impact to group 19
1058 * behavior, but if enabled, this will make group 20 and 21 cases use
1059 * SHA256-based PTK derivation which will not work with the updated
1060 * OWE implementation on the AP side.
1061 */
1062 int owe_ptk_workaround;
1063
1064 /**
Hai Shalom39ba6fc2019-01-22 12:40:38 -08001065 * owe_transition_bss_select_count - OWE transition BSS select count
1066 *
1067 * This is an internally used variable (i.e., not used in external
1068 * configuration) to track the number of selection attempts done for
1069 * OWE BSS in transition mode. This allows fallback to an open BSS if
1070 * the selection attempts for OWE BSS exceed the configured threshold.
1071 */
1072 int owe_transition_bss_select_count;
Hai Shalom74f70d42019-02-11 14:42:39 -08001073
1074 /**
1075 * multi_ap_backhaul_sta - Multi-AP backhaul STA
1076 * 0 = normal (non-Multi-AP) station
1077 * 1 = Multi-AP backhaul station
1078 */
1079 int multi_ap_backhaul_sta;
Hai Shalom81f62d82019-07-22 12:10:00 -07001080
1081 /**
1082 * ft_eap_pmksa_caching - Whether FT-EAP PMKSA caching is allowed
1083 * 0 = do not try to use PMKSA caching with FT-EAP
1084 * 1 = try to use PMKSA caching with FT-EAP
1085 *
1086 * This controls whether to try to use PMKSA caching with FT-EAP for the
1087 * FT initial mobility domain association.
1088 */
1089 int ft_eap_pmksa_caching;
Hai Shalomfdcde762020-04-02 11:19:20 -07001090
1091 /**
1092 * beacon_prot - Whether Beacon protection is enabled
1093 *
1094 * This depends on management frame protection (ieee80211w) being
1095 * enabled.
1096 */
1097 int beacon_prot;
1098
1099 /**
1100 * transition_disable - Transition Disable indication
1101 * The AP can notify authenticated stations to disable transition mode
1102 * in their network profiles when the network has completed transition
1103 * steps, i.e., once sufficiently large number of APs in the ESS have
1104 * been updated to support the more secure alternative. When this
1105 * indication is used, the stations are expected to automatically
1106 * disable transition mode and less secure security options. This
1107 * includes use of WEP, TKIP (including use of TKIP as the group
1108 * cipher), and connections without PMF.
1109 * Bitmap bits:
1110 * bit 0 (0x01): WPA3-Personal (i.e., disable WPA2-Personal = WPA-PSK
1111 * and only allow SAE to be used)
1112 * bit 1 (0x02): SAE-PK (disable SAE without use of SAE-PK)
1113 * bit 2 (0x04): WPA3-Enterprise (move to requiring PMF)
1114 * bit 3 (0x08): Enhanced Open (disable use of open network; require
1115 * OWE)
1116 */
1117 u8 transition_disable;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001118};
1119
1120#endif /* CONFIG_SSID_H */