]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/config_ssid.h
AP: Allow PTK rekeying without Ext KeyID to be disabled as a workaround
[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
303#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;
319
320 /**
321 * proactive_key_caching - Enable proactive key caching
322 *
323 * This field can be used to enable proactive key caching which is also
324 * known as opportunistic PMKSA caching for WPA2. This is disabled (0)
6e202021
JM
325 * by default unless default value is changed with the global okc=1
326 * parameter. Enable by setting this to 1.
6fc6879b
JM
327 *
328 * Proactive key caching is used to make supplicant assume that the APs
329 * are using the same PMK and generate PMKSA cache entries without
330 * doing RSN pre-authentication. This requires support from the AP side
331 * and is normally used with wireless switches that co-locate the
332 * authenticator.
6e202021
JM
333 *
334 * Internally, special value -1 is used to indicate that the parameter
335 * was not specified in the configuration (i.e., default behavior is
336 * followed).
6fc6879b
JM
337 */
338 int proactive_key_caching;
339
340 /**
341 * mixed_cell - Whether mixed cells are allowed
342 *
343 * This option can be used to configure whether so called mixed cells,
344 * i.e., networks that use both plaintext and encryption in the same
345 * SSID, are allowed. This is disabled (0) by default. Enable by
346 * setting this to 1.
347 */
348 int mixed_cell;
349
350#ifdef IEEE8021X_EAPOL
351
352 /**
353 * leap - Number of EAP methods using LEAP
354 *
355 * This field should be set to 1 if LEAP is enabled. This is used to
356 * select IEEE 802.11 authentication algorithm.
357 */
358 int leap;
359
360 /**
361 * non_leap - Number of EAP methods not using LEAP
362 *
363 * This field should be set to >0 if any EAP method other than LEAP is
364 * enabled. This is used to select IEEE 802.11 authentication
365 * algorithm.
366 */
367 int non_leap;
368
369 /**
370 * eap_workaround - EAP workarounds enabled
371 *
372 * wpa_supplicant supports number of "EAP workarounds" to work around
373 * interoperability issues with incorrectly behaving authentication
374 * servers. This is recommended to be enabled by default because some
375 * of the issues are present in large number of authentication servers.
376 *
377 * Strict EAP conformance mode can be configured by disabling
378 * workarounds with eap_workaround = 0.
379 */
380 unsigned int eap_workaround;
381
382#endif /* IEEE8021X_EAPOL */
383
384 /**
385 * mode - IEEE 802.11 operation mode (Infrastucture/IBSS)
386 *
387 * 0 = infrastructure (Managed) mode, i.e., associate with an AP.
388 *
389 * 1 = IBSS (ad-hoc, peer-to-peer)
390 *
1581b38b
JM
391 * 2 = AP (access point)
392 *
2c5d725c
JM
393 * 3 = P2P Group Owner (can be set in the configuration file)
394 *
395 * 4 = P2P Group Formation (used internally; not in configuration
396 * files)
397 *
476e6bb6
TP
398 * 5 = Mesh
399 *
b2838baf
JM
400 * Note: IBSS can only be used with key_mgmt NONE (plaintext and static
401 * WEP) and WPA-PSK (with proto=RSN). In addition, key_mgmt=WPA-NONE
402 * (fixed group key TKIP/CCMP) is available for backwards compatibility,
403 * but its use is deprecated. WPA-None requires following network block
404 * options: proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or
405 * CCMP, but not both), and psk must also be set (either directly or
406 * using ASCII passphrase).
6fc6879b 407 */
64e37be9 408 enum wpas_mode mode;
6fc6879b 409
b9074912
LD
410 /**
411 * pbss - Whether to use PBSS. Relevant to DMG networks only.
90f14962
LD
412 * 0 = do not use PBSS
413 * 1 = use PBSS
414 * 2 = don't care (not allowed in AP mode)
b9074912
LD
415 * Used together with mode configuration. When mode is AP, it
416 * means to start a PCP instead of a regular AP. When mode is INFRA it
90f14962
LD
417 * means connect to a PCP instead of AP. In this mode you can also
418 * specify 2 (don't care) meaning connect to either AP or PCP.
419 * P2P_GO and P2P_GROUP_FORMATION modes must use PBSS in DMG network.
b9074912
LD
420 */
421 int pbss;
422
6fc6879b
JM
423 /**
424 * disabled - Whether this network is currently disabled
425 *
426 * 0 = this network can be used (default).
427 * 1 = this network block is disabled (can be enabled through
428 * ctrl_iface, e.g., with wpa_cli or wpa_gui).
2c5d725c
JM
429 * 2 = this network block includes parameters for a persistent P2P
430 * group (can be used with P2P ctrl_iface commands)
6fc6879b
JM
431 */
432 int disabled;
433
ec947ffc
SD
434 /**
435 * disabled_for_connect - Whether this network was temporarily disabled
436 *
437 * This flag is used to reenable all the temporarily disabled networks
438 * after either the success or failure of a WPS connection.
439 */
440 int disabled_for_connect;
441
6fc6879b
JM
442 /**
443 * id_str - Network identifier string for external scripts
444 *
445 * This value is passed to external ctrl_iface monitors in
446 * WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR
447 * environment variable for action scripts.
448 */
449 char *id_str;
450
6fc6879b
JM
451 /**
452 * ieee80211w - Whether management frame protection is enabled
453 *
454 * This value is used to configure policy for management frame
455 * protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required.
62d49803
JM
456 * This is disabled by default unless the default value has been changed
457 * with the global pmf=1/2 parameter.
458 *
459 * Internally, special value 3 is used to indicate that the parameter
460 * was not specified in the configuration (i.e., default behavior is
461 * followed).
6fc6879b 462 */
c746331b 463 enum mfp_options ieee80211w;
6fc6879b 464
ce6829c2
MV
465#ifdef CONFIG_OCV
466 /**
467 * ocv - Enable/disable operating channel validation
468 *
469 * If this parameter is set to 1, stations will exchange OCI element
470 * to cryptographically verify the operating channel. Setting this
471 * parameter to 0 disables this option. Default value: 0.
472 */
473 int ocv;
474#endif /* CONFIG_OCV */
475
6fc6879b
JM
476 /**
477 * frequency - Channel frequency in megahertz (MHz) for IBSS
478 *
479 * This value is used to configure the initial channel for IBSS (adhoc)
480 * networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in
481 * the infrastructure mode. In addition, this value is only used by the
482 * station that creates the IBSS. If an IBSS network with the
483 * configured SSID is already present, the frequency of the network
484 * will be used instead of this configured value.
485 */
486 int frequency;
581a8cde 487
e8ff22f4
AAL
488 /**
489 * enable_edmg - Enable EDMG feature in STA/AP mode
490 *
491 * This flag is used for enabling the EDMG capability in STA/AP mode.
492 */
493 int enable_edmg;
494
495 /**
496 * edmg_channel - EDMG channel number
497 *
498 * This value is used to configure the EDMG channel bonding feature.
499 * In AP mode it defines the EDMG channel to start the AP on.
500 * in STA mode it defines the EDMG channel to use for connection
501 * (if supported by AP).
502 */
503 u8 edmg_channel;
504
4d9e6fba
JD
505 /**
506 * fixed_freq - Use fixed frequency for IBSS
507 */
508 int fixed_freq;
509
d9909717
TB
510#ifdef CONFIG_ACS
511 /**
512 * ACS - Automatic Channel Selection for AP mode
513 *
514 * If present, it will be handled together with frequency.
515 * frequency will be used to determine hardware mode only, when it is
516 * used for both hardware mode and channel when used alone. This will
517 * force the channel to be set to 0, thus enabling ACS.
518 */
519 int acs;
520#endif /* CONFIG_ACS */
521
2b2bb5a8
MH
522 /**
523 * mesh_basic_rates - BSS Basic rate set for mesh network
524 *
525 */
526 int *mesh_basic_rates;
527
e6096799
MH
528 /**
529 * Mesh network plink parameters
530 */
531 int dot11MeshMaxRetries;
532 int dot11MeshRetryTimeout; /* msec */
533 int dot11MeshConfirmTimeout; /* msec */
534 int dot11MeshHoldingTimeout; /* msec */
535
b07ff9cb 536 int ht;
7aeac985
RM
537 int ht40;
538
20ea1ca4
EP
539 int vht;
540
5a3319ab
PX
541 int he;
542
20c2ea41 543 int max_oper_chwidth;
c27f4c90 544
2124a615 545 unsigned int vht_center_freq1;
c27f4c90
AK
546 unsigned int vht_center_freq2;
547
581a8cde
JM
548 /**
549 * wpa_ptk_rekey - Maximum lifetime for PTK in seconds
550 *
551 * This value can be used to enforce rekeying of PTK to mitigate some
552 * attacks against TKIP deficiencies.
553 */
554 int wpa_ptk_rekey;
d3a98225 555
6c33ca9f
JM
556 /**
557 * group_rekey - Group rekeying time in seconds
558 *
559 * This value, if non-zero, is used as the dot11RSNAConfigGroupRekeyTime
560 * parameter when operating in Authenticator role in IBSS.
561 */
562 int group_rekey;
563
d3a98225
JM
564 /**
565 * scan_freq - Array of frequencies to scan or %NULL for all
566 *
567 * This is an optional zero-terminated array of frequencies in
568 * megahertz (MHz) to include in scan requests when searching for this
569 * network. This can be used to speed up scanning when the network is
570 * known to not use all possible channels.
571 */
572 int *scan_freq;
60b94c98
JM
573
574 /**
575 * bgscan - Background scan and roaming parameters or %NULL if none
576 *
577 * This is an optional set of parameters for background scanning and
578 * roaming within a network (ESS) in following format:
579 * <bgscan module name>:<module parameters>
580 */
581 char *bgscan;
b766a9a2 582
e62f4ed0
VN
583 /**
584 * ignore_broadcast_ssid - Hide SSID in AP mode
585 *
586 * Send empty SSID in beacons and ignore probe request frames that do
587 * not specify full SSID, i.e., require stations to know SSID.
588 * default: disabled (0)
589 * 1 = send empty (length=0) SSID in beacon and ignore probe request
590 * for broadcast SSID
591 * 2 = clear SSID (ASCII 0), but keep the original length (this may be
592 * required with some clients that do not support empty SSID) and
593 * ignore probe requests for broadcast SSID
594 */
595 int ignore_broadcast_ssid;
596
b766a9a2
JM
597 /**
598 * freq_list - Array of allowed frequencies or %NULL for all
599 *
600 * This is an optional zero-terminated array of frequencies in
601 * megahertz (MHz) to allow for selecting the BSS. If set, scan results
602 * that do not match any of the specified frequencies are not
603 * considered when selecting a BSS.
604 */
605 int *freq_list;
2c5d725c 606
fbdcfd57
JM
607 /**
608 * p2p_client_list - List of P2P Clients in a persistent group (GO)
609 *
610 * This is a list of P2P Clients (P2P Device Address) that have joined
611 * the persistent group. This is maintained on the GO for persistent
612 * group entries (disabled == 2).
613 */
614 u8 *p2p_client_list;
615
616 /**
617 * num_p2p_clients - Number of entries in p2p_client_list
618 */
619 size_t num_p2p_clients;
620
b4a5dfa9
JM
621#ifndef P2P_MAX_STORED_CLIENTS
622#define P2P_MAX_STORED_CLIENTS 100
623#endif /* P2P_MAX_STORED_CLIENTS */
624
01a57fe4
JM
625 /**
626 * psk_list - Per-client PSKs (struct psk_list_entry)
627 */
628 struct dl_list psk_list;
629
2c5d725c
JM
630 /**
631 * p2p_group - Network generated as a P2P group (used internally)
632 */
633 int p2p_group;
634
635 /**
636 * p2p_persistent_group - Whether this is a persistent group
637 */
638 int p2p_persistent_group;
639
640 /**
641 * temporary - Whether this network is temporary and not to be saved
642 */
643 int temporary;
d1c8ac88
JB
644
645 /**
646 * export_keys - Whether keys may be exported
647 *
648 * This attribute will be set when keys are determined through
649 * WPS or similar so that they may be exported.
650 */
651 int export_keys;
80e8a5ee
BG
652
653#ifdef CONFIG_HT_OVERRIDES
654 /**
655 * disable_ht - Disable HT (IEEE 802.11n) for this network
656 *
657 * By default, use it if it is available, but this can be configured
658 * to 1 to have it disabled.
659 */
660 int disable_ht;
661
662 /**
663 * disable_ht40 - Disable HT40 for this network
664 *
665 * By default, use it if it is available, but this can be configured
666 * to 1 to have it disabled.
667 */
668 int disable_ht40;
669
a90497f8
BG
670 /**
671 * disable_sgi - Disable SGI (Short Guard Interval) for this network
672 *
673 * By default, use it if it is available, but this can be configured
674 * to 1 to have it disabled.
675 */
676 int disable_sgi;
677
39a5800f
PK
678 /**
679 * disable_ldpc - Disable LDPC for this network
680 *
681 * By default, use it if it is available, but this can be configured
682 * to 1 to have it disabled.
683 */
684 int disable_ldpc;
685
d41cc8cc
JM
686 /**
687 * ht40_intolerant - Indicate 40 MHz intolerant for this network
688 */
689 int ht40_intolerant;
690
80e8a5ee
BG
691 /**
692 * disable_max_amsdu - Disable MAX A-MSDU
693 *
694 * A-MDSU will be 3839 bytes when disabled, or 7935
695 * when enabled (assuming it is otherwise supported)
696 * -1 (default) means do not apply any settings to the kernel.
697 */
698 int disable_max_amsdu;
699
700 /**
701 * ampdu_factor - Maximum A-MPDU Length Exponent
702 *
703 * Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
704 */
705 int ampdu_factor;
706
707 /**
708 * ampdu_density - Minimum A-MPDU Start Spacing
709 *
710 * Value: 0-7, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
711 */
712 int ampdu_density;
713
714 /**
715 * ht_mcs - Allowed HT-MCS rates, in ASCII hex: ffff0000...
716 *
717 * By default (empty string): Use whatever the OS has configured.
718 */
719 char *ht_mcs;
cdeea70f
SM
720
721 /**
722 * tx_stbc - Indicate STBC support for TX streams
723 *
724 * Value: -1..1, by default (-1): use whatever the OS or card has
725 * configured. See IEEE Std 802.11-2016, 9.4.2.56.2.
726 */
727 int tx_stbc;
728
729 /**
730 * rx_stbc - Indicate STBC support for RX streams
731 *
732 * Value: -1..3, by default (-1): use whatever the OS or card has
733 * configured. See IEEE Std 802.11-2016, 9.4.2.56.2.
734 */
735 int rx_stbc;
80e8a5ee 736#endif /* CONFIG_HT_OVERRIDES */
07f53b8c 737
e9ee8dc3
JB
738#ifdef CONFIG_VHT_OVERRIDES
739 /**
740 * disable_vht - Disable VHT (IEEE 802.11ac) for this network
741 *
742 * By default, use it if it is available, but this can be configured
743 * to 1 to have it disabled.
744 */
745 int disable_vht;
746
747 /**
748 * vht_capa - VHT capabilities to use
749 */
750 unsigned int vht_capa;
751
752 /**
753 * vht_capa_mask - mask for VHT capabilities
754 */
755 unsigned int vht_capa_mask;
756
757 int vht_rx_mcs_nss_1, vht_rx_mcs_nss_2,
758 vht_rx_mcs_nss_3, vht_rx_mcs_nss_4,
759 vht_rx_mcs_nss_5, vht_rx_mcs_nss_6,
760 vht_rx_mcs_nss_7, vht_rx_mcs_nss_8;
761 int vht_tx_mcs_nss_1, vht_tx_mcs_nss_2,
762 vht_tx_mcs_nss_3, vht_tx_mcs_nss_4,
763 vht_tx_mcs_nss_5, vht_tx_mcs_nss_6,
764 vht_tx_mcs_nss_7, vht_tx_mcs_nss_8;
765#endif /* CONFIG_VHT_OVERRIDES */
766
07f53b8c
VT
767 /**
768 * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
769 *
770 * This timeout value is used in AP mode to clean up inactive stations.
771 * By default: 300 seconds.
772 */
773 int ap_max_inactivity;
fdfb1c8b
EL
774
775 /**
776 * dtim_period - DTIM period in Beacon intervals
777 * By default: 2
778 */
779 int dtim_period;
00e5e3d5 780
18206e02
JM
781 /**
782 * beacon_int - Beacon interval (default: 100 TU)
783 */
784 int beacon_int;
785
00e5e3d5
JM
786 /**
787 * auth_failures - Number of consecutive authentication failures
788 */
789 unsigned int auth_failures;
790
791 /**
792 * disabled_until - Network block disabled until this time if non-zero
793 */
4e1eae1d 794 struct os_reltime disabled_until;
736d4f2d
JM
795
796 /**
797 * parent_cred - Pointer to parent wpa_cred entry
798 *
799 * This pointer can be used to delete temporary networks when a wpa_cred
800 * that was used to create them is removed. This pointer should not be
801 * dereferences since it may not be updated in all cases.
802 */
803 void *parent_cred;
dd10abcc
HW
804
805#ifdef CONFIG_MACSEC
806 /**
807 * macsec_policy - Determines the policy for MACsec secure session
808 *
809 * 0: MACsec not in use (default)
810 * 1: MACsec enabled - Should secure, accept key server's advice to
811 * determine whether to use a secure session or not.
812 */
813 int macsec_policy;
ad51731a 814
7b4d546e
SD
815 /**
816 * macsec_integ_only - Determines how MACsec are transmitted
817 *
818 * This setting applies only when MACsec is in use, i.e.,
819 * - macsec_policy is enabled
820 * - the key server has decided to enable MACsec
821 *
822 * 0: Encrypt traffic (default)
823 * 1: Integrity only
824 */
825 int macsec_integ_only;
826
e49b78c0
AK
827 /**
828 * macsec_replay_protect - Enable MACsec replay protection
829 *
830 * This setting applies only when MACsec is in use, i.e.,
831 * - macsec_policy is enabled
832 * - the key server has decided to enable MACsec
833 *
834 * 0: Replay protection disabled (default)
835 * 1: Replay protection enabled
836 */
837 int macsec_replay_protect;
838
839 /**
840 * macsec_replay_window - MACsec replay protection window
841 *
842 * A window in which replay is tolerated, to allow receipt of frames
843 * that have been misordered by the network.
844 *
845 * This setting applies only when MACsec replay protection active, i.e.,
846 * - macsec_replay_protect is enabled
847 * - the key server has decided to enable MACsec
848 *
849 * 0: No replay window, strict check (default)
850 * 1..2^32-1: number of packets that could be misordered
851 */
852 u32 macsec_replay_window;
853
e0d9fd34
SD
854 /**
855 * macsec_port - MACsec port (in SCI)
856 *
857 * Port component of the SCI.
858 *
859 * Range: 1-65534 (default: 1)
860 */
861 int macsec_port;
862
65dfa872
BA
863 /**
864 * mka_priority - Priority of MKA Actor
865 *
866 * Range: 0-255 (default: 255)
867 */
868 int mka_priority;
869
ad51731a
SD
870 /**
871 * mka_ckn - MKA pre-shared CKN
872 */
b678ed1e 873#define MACSEC_CKN_MAX_LEN 32
874 size_t mka_ckn_len;
875 u8 mka_ckn[MACSEC_CKN_MAX_LEN];
ad51731a
SD
876
877 /**
878 * mka_cak - MKA pre-shared CAK
879 */
871439b5
JM
880#define MACSEC_CAK_MAX_LEN 32
881 size_t mka_cak_len;
882 u8 mka_cak[MACSEC_CAK_MAX_LEN];
ad51731a
SD
883
884#define MKA_PSK_SET_CKN BIT(0)
885#define MKA_PSK_SET_CAK BIT(1)
886#define MKA_PSK_SET (MKA_PSK_SET_CKN | MKA_PSK_SET_CAK)
887 /**
888 * mka_psk_set - Whether mka_ckn and mka_cak are set
889 */
890 u8 mka_psk_set;
dd10abcc 891#endif /* CONFIG_MACSEC */
e376290c
DS
892
893#ifdef CONFIG_HS20
894 int update_identifier;
6311547e
JM
895
896 /**
897 * roaming_consortium_selection - Roaming Consortium Selection
898 *
899 * The matching Roaming Consortium OI that was used to generate this
900 * network profile.
901 */
902 u8 *roaming_consortium_selection;
903
904 /**
905 * roaming_consortium_selection_len - roaming_consortium_selection len
906 */
907 size_t roaming_consortium_selection_len;
e376290c 908#endif /* CONFIG_HS20 */
e5a4b85b
HW
909
910 unsigned int wps_run;
c267753b
JM
911
912 /**
913 * mac_addr - MAC address policy
914 *
915 * 0 = use permanent MAC address
916 * 1 = use random MAC address for each ESS connection
a313d17d 917 * 2 = like 1, but maintain OUI (with local admin bit set)
c267753b
JM
918 *
919 * Internally, special value -1 is used to indicate that the parameter
920 * was not specified in the configuration (i.e., default behavior is
921 * followed).
922 */
923 int mac_addr;
07cb45cc
TP
924
925 /**
926 * no_auto_peer - Do not automatically peer with compatible mesh peers
927 *
928 * When unset, the reception of a beacon from a another mesh peer in
929 * this MBSS will trigger a peering attempt.
930 */
931 int no_auto_peer;
b6317b41 932
31a856a1
MH
933 /**
934 * mesh_rssi_threshold - Set mesh parameter mesh_rssi_threshold (dBm)
935 *
936 * -255..-1 = threshold value in dBm
937 * 0 = not using RSSI threshold
938 * 1 = do not change driver default
939 */
940 int mesh_rssi_threshold;
941
b6317b41
LD
942 /**
943 * wps_disabled - WPS disabled in AP mode
944 *
945 * 0 = WPS enabled and configured (default)
946 * 1 = WPS disabled
947 */
948 int wps_disabled;
76e20f4f
JM
949
950 /**
951 * fils_dh_group - FILS DH Group
952 *
953 * 0 = PFS disabled with FILS shared key authentication
954 * 1-65535 DH Group to use for FILS PFS
955 */
956 int fils_dh_group;
b979caae
JM
957
958 /**
959 * dpp_connector - DPP Connector (signedConnector as string)
960 */
961 char *dpp_connector;
962
963 /**
964 * dpp_netaccesskey - DPP netAccessKey (own private key)
965 */
966 u8 *dpp_netaccesskey;
967
968 /**
969 * dpp_netaccesskey_len - DPP netAccessKey length in octets
970 */
971 size_t dpp_netaccesskey_len;
972
973 /**
974 * net_access_key_expiry - DPP netAccessKey expiry in UNIX time stamp
975 *
976 * 0 indicates no expiration.
977 */
978 unsigned int dpp_netaccesskey_expiry;
979
980 /**
981 * dpp_csign - C-sign-key (Configurator public key)
982 */
983 u8 *dpp_csign;
984
985 /**
986 * dpp_csign_len - C-sign-key length in octets
987 */
988 size_t dpp_csign_len;
989
ec9f4837
JM
990 /**
991 * owe_group - OWE DH Group
992 *
2cb40e9f
JM
993 * 0 = use default (19) first and then try all supported groups one by
994 * one if AP rejects the selected group
ec9f4837
JM
995 * 1-65535 DH Group to use for OWE
996 *
997 * Groups 19 (NIST P-256), 20 (NIST P-384), and 21 (NIST P-521) are
998 * currently supported.
999 */
1000 int owe_group;
c1790a5f
JM
1001
1002 /**
1003 * owe_only - OWE-only mode (disable transition mode)
1004 *
1005 * 0 = enable transition mode (allow connection to either OWE or open
1006 * BSS)
1007 * 1 = disable transition mode (allow connection only with OWE)
1008 */
1009 int owe_only;
91073cca 1010
8b138d28
JM
1011 /**
1012 * owe_ptk_workaround - OWE PTK derivation workaround
1013 *
1014 * Initial OWE implementation used SHA256 when deriving the PTK for all
1015 * OWE groups. This was supposed to change to SHA384 for group 20 and
1016 * SHA512 for group 21. This parameter can be used to enable older
1017 * behavior mainly for testing purposes. There is no impact to group 19
1018 * behavior, but if enabled, this will make group 20 and 21 cases use
1019 * SHA256-based PTK derivation which will not work with the updated
1020 * OWE implementation on the AP side.
1021 */
1022 int owe_ptk_workaround;
1023
91073cca
SD
1024 /**
1025 * owe_transition_bss_select_count - OWE transition BSS select count
1026 *
1027 * This is an internally used variable (i.e., not used in external
1028 * configuration) to track the number of selection attempts done for
1029 * OWE BSS in transition mode. This allows fallback to an open BSS if
1030 * the selection attempts for OWE BSS exceed the configured threshold.
1031 */
1032 int owe_transition_bss_select_count;
5abc7823
VN
1033
1034 /**
1035 * multi_ap_backhaul_sta - Multi-AP backhaul STA
1036 * 0 = normal (non-Multi-AP) station
1037 * 1 = Multi-AP backhaul station
1038 */
1039 int multi_ap_backhaul_sta;
9083ef13
JM
1040
1041 /**
1042 * ft_eap_pmksa_caching - Whether FT-EAP PMKSA caching is allowed
1043 * 0 = do not try to use PMKSA caching with FT-EAP
1044 * 1 = try to use PMKSA caching with FT-EAP
1045 *
1046 * This controls whether to try to use PMKSA caching with FT-EAP for the
1047 * FT initial mobility domain association.
1048 */
1049 int ft_eap_pmksa_caching;
ecbf59e6
JM
1050
1051 /**
1052 * beacon_prot - Whether Beacon protection is enabled
1053 *
1054 * This depends on management frame protection (ieee80211w) being
1055 * enabled.
1056 */
1057 int beacon_prot;
6fc6879b
JM
1058};
1059
1060#endif /* CONFIG_SSID_H */