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