]> git.ipfire.org Git - thirdparty/hostap.git/blob - wpa_supplicant/config_ssid.h
618145e8b203101dc13d053b5c75a0a7f87115b1
[thirdparty/hostap.git] / wpa_supplicant / config_ssid.h
1 /*
2 * WPA Supplicant / Network configuration structures
3 * Copyright (c) 2003-2013, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9 #ifndef CONFIG_SSID_H
10 #define CONFIG_SSID_H
11
12 #include "common/defs.h"
13 #include "utils/list.h"
14 #include "eap_peer/eap_config.h"
15
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)
23 #define DEFAULT_GROUP (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP)
24 #define DEFAULT_FRAGMENT_SIZE 1398
25
26 #define DEFAULT_BG_SCAN_PERIOD -1
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
31 #define DEFAULT_MESH_RSSI_THRESHOLD 1 /* no change */
32 #define DEFAULT_DISABLE_HT 0
33 #define DEFAULT_DISABLE_HT40 0
34 #define DEFAULT_DISABLE_SGI 0
35 #define DEFAULT_DISABLE_LDPC 0
36 #define DEFAULT_TX_STBC -1 /* no change */
37 #define DEFAULT_RX_STBC -1 /* no change */
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 */
41 #define DEFAULT_USER_SELECTED_SIM 1
42 #define DEFAULT_MAX_OPER_CHWIDTH -1
43
44 struct psk_list_entry {
45 struct dl_list list;
46 u8 addr[ETH_ALEN];
47 u8 psk[32];
48 u8 p2p;
49 };
50
51 enum 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
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 */
68 struct 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
138 *
139 * If this is a persistent P2P group (disabled == 2), this is the GO
140 * Device Address.
141 */
142 u8 bssid[ETH_ALEN];
143
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
156 /**
157 * bssid_set - Whether BSSID is configured for this network
158 */
159 int bssid_set;
160
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
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
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
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
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
216 struct sae_pt *pt;
217
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
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
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
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
253 /**
254 * key_mgmt - Bitfield of allowed key management protocols
255 *
256 * WPA_KEY_MGMT_*
257 */
258 int key_mgmt;
259
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
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
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.
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 #ifdef CONFIG_WEP
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;
320 #endif /* CONFIG_WEP */
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)
327 * by default unless default value is changed with the global okc=1
328 * parameter. Enable by setting this to 1.
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.
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).
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 *
393 * 2 = AP (access point)
394 *
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 *
400 * 5 = Mesh
401 *
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).
409 */
410 enum wpas_mode mode;
411
412 /**
413 * pbss - Whether to use PBSS. Relevant to DMG networks only.
414 * 0 = do not use PBSS
415 * 1 = use PBSS
416 * 2 = don't care (not allowed in AP mode)
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
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.
422 */
423 int pbss;
424
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).
431 * 2 = this network block includes parameters for a persistent P2P
432 * group (can be used with P2P ctrl_iface commands)
433 */
434 int disabled;
435
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
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
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.
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).
464 */
465 enum mfp_options ieee80211w;
466
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
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;
489
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
507 /**
508 * fixed_freq - Use fixed frequency for IBSS
509 */
510 int fixed_freq;
511
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
524 /**
525 * mesh_basic_rates - BSS Basic rate set for mesh network
526 *
527 */
528 int *mesh_basic_rates;
529
530 /**
531 * Mesh network plink parameters
532 */
533 int dot11MeshMaxRetries;
534 int dot11MeshRetryTimeout; /* msec */
535 int dot11MeshConfirmTimeout; /* msec */
536 int dot11MeshHoldingTimeout; /* msec */
537
538 int ht;
539 int ht40;
540
541 int vht;
542
543 int he;
544
545 int max_oper_chwidth;
546
547 unsigned int vht_center_freq1;
548 unsigned int vht_center_freq2;
549
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;
557
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
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
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;
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;
597
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
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;
621
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
636 #ifndef P2P_MAX_STORED_CLIENTS
637 #define P2P_MAX_STORED_CLIENTS 100
638 #endif /* P2P_MAX_STORED_CLIENTS */
639
640 /**
641 * psk_list - Per-client PSKs (struct psk_list_entry)
642 */
643 struct dl_list psk_list;
644
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;
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;
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
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
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
701 /**
702 * ht40_intolerant - Indicate 40 MHz intolerant for this network
703 */
704 int ht40_intolerant;
705
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;
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;
751 #endif /* CONFIG_HT_OVERRIDES */
752
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
782 /**
783 * ap_max_inactivity - Timeout in seconds to detect STA's inactivity
784 *
785 * This timeout value is used in AP mode to clean up inactive stations.
786 * By default: 300 seconds.
787 */
788 int ap_max_inactivity;
789
790 /**
791 * dtim_period - DTIM period in Beacon intervals
792 * By default: 2
793 */
794 int dtim_period;
795
796 /**
797 * beacon_int - Beacon interval (default: 100 TU)
798 */
799 int beacon_int;
800
801 /**
802 * auth_failures - Number of consecutive authentication failures
803 */
804 unsigned int auth_failures;
805
806 /**
807 * disabled_until - Network block disabled until this time if non-zero
808 */
809 struct os_reltime disabled_until;
810
811 /**
812 * parent_cred - Pointer to parent wpa_cred entry
813 *
814 * This pointer can be used to delete temporary networks when a wpa_cred
815 * that was used to create them is removed. This pointer should not be
816 * dereferences since it may not be updated in all cases.
817 */
818 void *parent_cred;
819
820 #ifdef CONFIG_MACSEC
821 /**
822 * macsec_policy - Determines the policy for MACsec secure session
823 *
824 * 0: MACsec not in use (default)
825 * 1: MACsec enabled - Should secure, accept key server's advice to
826 * determine whether to use a secure session or not.
827 */
828 int macsec_policy;
829
830 /**
831 * macsec_integ_only - Determines how MACsec are transmitted
832 *
833 * This setting applies only when MACsec is in use, i.e.,
834 * - macsec_policy is enabled
835 * - the key server has decided to enable MACsec
836 *
837 * 0: Encrypt traffic (default)
838 * 1: Integrity only
839 */
840 int macsec_integ_only;
841
842 /**
843 * macsec_replay_protect - Enable MACsec replay protection
844 *
845 * This setting applies only when MACsec is in use, i.e.,
846 * - macsec_policy is enabled
847 * - the key server has decided to enable MACsec
848 *
849 * 0: Replay protection disabled (default)
850 * 1: Replay protection enabled
851 */
852 int macsec_replay_protect;
853
854 /**
855 * macsec_replay_window - MACsec replay protection window
856 *
857 * A window in which replay is tolerated, to allow receipt of frames
858 * that have been misordered by the network.
859 *
860 * This setting applies only when MACsec replay protection active, i.e.,
861 * - macsec_replay_protect is enabled
862 * - the key server has decided to enable MACsec
863 *
864 * 0: No replay window, strict check (default)
865 * 1..2^32-1: number of packets that could be misordered
866 */
867 u32 macsec_replay_window;
868
869 /**
870 * macsec_port - MACsec port (in SCI)
871 *
872 * Port component of the SCI.
873 *
874 * Range: 1-65534 (default: 1)
875 */
876 int macsec_port;
877
878 /**
879 * mka_priority - Priority of MKA Actor
880 *
881 * Range: 0-255 (default: 255)
882 */
883 int mka_priority;
884
885 /**
886 * mka_ckn - MKA pre-shared CKN
887 */
888 #define MACSEC_CKN_MAX_LEN 32
889 size_t mka_ckn_len;
890 u8 mka_ckn[MACSEC_CKN_MAX_LEN];
891
892 /**
893 * mka_cak - MKA pre-shared CAK
894 */
895 #define MACSEC_CAK_MAX_LEN 32
896 size_t mka_cak_len;
897 u8 mka_cak[MACSEC_CAK_MAX_LEN];
898
899 #define MKA_PSK_SET_CKN BIT(0)
900 #define MKA_PSK_SET_CAK BIT(1)
901 #define MKA_PSK_SET (MKA_PSK_SET_CKN | MKA_PSK_SET_CAK)
902 /**
903 * mka_psk_set - Whether mka_ckn and mka_cak are set
904 */
905 u8 mka_psk_set;
906 #endif /* CONFIG_MACSEC */
907
908 #ifdef CONFIG_HS20
909 int update_identifier;
910
911 /**
912 * roaming_consortium_selection - Roaming Consortium Selection
913 *
914 * The matching Roaming Consortium OI that was used to generate this
915 * network profile.
916 */
917 u8 *roaming_consortium_selection;
918
919 /**
920 * roaming_consortium_selection_len - roaming_consortium_selection len
921 */
922 size_t roaming_consortium_selection_len;
923 #endif /* CONFIG_HS20 */
924
925 unsigned int wps_run;
926
927 /**
928 * mac_addr - MAC address policy
929 *
930 * 0 = use permanent MAC address
931 * 1 = use random MAC address for each ESS connection
932 * 2 = like 1, but maintain OUI (with local admin bit set)
933 *
934 * Internally, special value -1 is used to indicate that the parameter
935 * was not specified in the configuration (i.e., default behavior is
936 * followed).
937 */
938 int mac_addr;
939
940 /**
941 * no_auto_peer - Do not automatically peer with compatible mesh peers
942 *
943 * When unset, the reception of a beacon from a another mesh peer in
944 * this MBSS will trigger a peering attempt.
945 */
946 int no_auto_peer;
947
948 /**
949 * mesh_rssi_threshold - Set mesh parameter mesh_rssi_threshold (dBm)
950 *
951 * -255..-1 = threshold value in dBm
952 * 0 = not using RSSI threshold
953 * 1 = do not change driver default
954 */
955 int mesh_rssi_threshold;
956
957 /**
958 * wps_disabled - WPS disabled in AP mode
959 *
960 * 0 = WPS enabled and configured (default)
961 * 1 = WPS disabled
962 */
963 int wps_disabled;
964
965 /**
966 * fils_dh_group - FILS DH Group
967 *
968 * 0 = PFS disabled with FILS shared key authentication
969 * 1-65535 DH Group to use for FILS PFS
970 */
971 int fils_dh_group;
972
973 /**
974 * dpp_connector - DPP Connector (signedConnector as string)
975 */
976 char *dpp_connector;
977
978 /**
979 * dpp_netaccesskey - DPP netAccessKey (own private key)
980 */
981 u8 *dpp_netaccesskey;
982
983 /**
984 * dpp_netaccesskey_len - DPP netAccessKey length in octets
985 */
986 size_t dpp_netaccesskey_len;
987
988 /**
989 * net_access_key_expiry - DPP netAccessKey expiry in UNIX time stamp
990 *
991 * 0 indicates no expiration.
992 */
993 unsigned int dpp_netaccesskey_expiry;
994
995 /**
996 * dpp_csign - C-sign-key (Configurator public key)
997 */
998 u8 *dpp_csign;
999
1000 /**
1001 * dpp_csign_len - C-sign-key length in octets
1002 */
1003 size_t dpp_csign_len;
1004
1005 /**
1006 * owe_group - OWE DH Group
1007 *
1008 * 0 = use default (19) first and then try all supported groups one by
1009 * one if AP rejects the selected group
1010 * 1-65535 DH Group to use for OWE
1011 *
1012 * Groups 19 (NIST P-256), 20 (NIST P-384), and 21 (NIST P-521) are
1013 * currently supported.
1014 */
1015 int owe_group;
1016
1017 /**
1018 * owe_only - OWE-only mode (disable transition mode)
1019 *
1020 * 0 = enable transition mode (allow connection to either OWE or open
1021 * BSS)
1022 * 1 = disable transition mode (allow connection only with OWE)
1023 */
1024 int owe_only;
1025
1026 /**
1027 * owe_ptk_workaround - OWE PTK derivation workaround
1028 *
1029 * Initial OWE implementation used SHA256 when deriving the PTK for all
1030 * OWE groups. This was supposed to change to SHA384 for group 20 and
1031 * SHA512 for group 21. This parameter can be used to enable older
1032 * behavior mainly for testing purposes. There is no impact to group 19
1033 * behavior, but if enabled, this will make group 20 and 21 cases use
1034 * SHA256-based PTK derivation which will not work with the updated
1035 * OWE implementation on the AP side.
1036 */
1037 int owe_ptk_workaround;
1038
1039 /**
1040 * owe_transition_bss_select_count - OWE transition BSS select count
1041 *
1042 * This is an internally used variable (i.e., not used in external
1043 * configuration) to track the number of selection attempts done for
1044 * OWE BSS in transition mode. This allows fallback to an open BSS if
1045 * the selection attempts for OWE BSS exceed the configured threshold.
1046 */
1047 int owe_transition_bss_select_count;
1048
1049 /**
1050 * multi_ap_backhaul_sta - Multi-AP backhaul STA
1051 * 0 = normal (non-Multi-AP) station
1052 * 1 = Multi-AP backhaul station
1053 */
1054 int multi_ap_backhaul_sta;
1055
1056 /**
1057 * ft_eap_pmksa_caching - Whether FT-EAP PMKSA caching is allowed
1058 * 0 = do not try to use PMKSA caching with FT-EAP
1059 * 1 = try to use PMKSA caching with FT-EAP
1060 *
1061 * This controls whether to try to use PMKSA caching with FT-EAP for the
1062 * FT initial mobility domain association.
1063 */
1064 int ft_eap_pmksa_caching;
1065
1066 /**
1067 * beacon_prot - Whether Beacon protection is enabled
1068 *
1069 * This depends on management frame protection (ieee80211w) being
1070 * enabled.
1071 */
1072 int beacon_prot;
1073
1074 /**
1075 * transition_disable - Transition Disable indication
1076 * The AP can notify authenticated stations to disable transition mode
1077 * in their network profiles when the network has completed transition
1078 * steps, i.e., once sufficiently large number of APs in the ESS have
1079 * been updated to support the more secure alternative. When this
1080 * indication is used, the stations are expected to automatically
1081 * disable transition mode and less secure security options. This
1082 * includes use of WEP, TKIP (including use of TKIP as the group
1083 * cipher), and connections without PMF.
1084 * Bitmap bits:
1085 * bit 0 (0x01): WPA3-Personal (i.e., disable WPA2-Personal = WPA-PSK
1086 * and only allow SAE to be used)
1087 * bit 1 (0x02): SAE-PK (disable SAE without use of SAE-PK)
1088 * bit 2 (0x04): WPA3-Enterprise (move to requiring PMF)
1089 * bit 3 (0x08): Enhanced Open (disable use of open network; require
1090 * OWE)
1091 */
1092 u8 transition_disable;
1093 };
1094
1095 #endif /* CONFIG_SSID_H */