2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* WPA Supplicant / Network configuration structures
|
2013-09-01 12:40:33 +02:00
|
|
|
* Copyright (c) 2003-2013, Jouni Malinen <j@w1.fi>
|
2008-02-28 02:34:43 +01:00
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONFIG_SSID_H
|
|
|
|
#define CONFIG_SSID_H
|
|
|
|
|
2009-11-29 16:51:55 +01:00
|
|
|
#include "common/defs.h"
|
2013-09-01 12:40:33 +02:00
|
|
|
#include "utils/list.h"
|
2008-02-28 02:34:43 +01:00
|
|
|
#include "eap_peer/eap_config.h"
|
|
|
|
|
|
|
|
#define MAX_SSID_LEN 32
|
|
|
|
|
|
|
|
|
|
|
|
#define DEFAULT_EAP_WORKAROUND ((unsigned int) -1)
|
|
|
|
#define DEFAULT_EAPOL_FLAGS (EAPOL_FLAG_REQUIRE_KEY_UNICAST | \
|
|
|
|
EAPOL_FLAG_REQUIRE_KEY_BROADCAST)
|
|
|
|
#define DEFAULT_PROTO (WPA_PROTO_WPA | WPA_PROTO_RSN)
|
|
|
|
#define DEFAULT_KEY_MGMT (WPA_KEY_MGMT_PSK | WPA_KEY_MGMT_IEEE8021X)
|
|
|
|
#define DEFAULT_PAIRWISE (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP)
|
|
|
|
#define DEFAULT_GROUP (WPA_CIPHER_CCMP | WPA_CIPHER_TKIP | \
|
|
|
|
WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40)
|
|
|
|
#define DEFAULT_FRAGMENT_SIZE 1398
|
|
|
|
|
2012-03-30 14:20:35 +02:00
|
|
|
#define DEFAULT_BG_SCAN_PERIOD -1
|
2012-01-29 20:01:31 +01:00
|
|
|
#define DEFAULT_DISABLE_HT 0
|
|
|
|
#define DEFAULT_DISABLE_HT40 0
|
2012-12-18 13:44:15 +01:00
|
|
|
#define DEFAULT_DISABLE_SGI 0
|
2012-01-29 20:01:31 +01:00
|
|
|
#define DEFAULT_DISABLE_MAX_AMSDU -1 /* no change */
|
|
|
|
#define DEFAULT_AMPDU_FACTOR -1 /* no change */
|
|
|
|
#define DEFAULT_AMPDU_DENSITY -1 /* no change */
|
|
|
|
|
2013-09-01 12:40:33 +02:00
|
|
|
struct psk_list_entry {
|
|
|
|
struct dl_list list;
|
|
|
|
u8 addr[ETH_ALEN];
|
|
|
|
u8 psk[32];
|
|
|
|
u8 p2p;
|
|
|
|
};
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* struct wpa_ssid - Network configuration data
|
|
|
|
*
|
|
|
|
* This structure includes all the configuration variables for a network. This
|
|
|
|
* data is included in the per-interface configuration data as an element of
|
|
|
|
* the network list, struct wpa_config::ssid. Each network block in the
|
|
|
|
* configuration is mapped to a struct wpa_ssid instance.
|
|
|
|
*/
|
|
|
|
struct wpa_ssid {
|
|
|
|
/**
|
|
|
|
* next - Next network in global list
|
|
|
|
*
|
|
|
|
* This pointer can be used to iterate over all networks. The head of
|
|
|
|
* this list is stored in the ssid field of struct wpa_config.
|
|
|
|
*/
|
|
|
|
struct wpa_ssid *next;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* pnext - Next network in per-priority list
|
|
|
|
*
|
|
|
|
* This pointer can be used to iterate over all networks in the same
|
|
|
|
* priority class. The heads of these list are stored in the pssid
|
|
|
|
* fields of struct wpa_config.
|
|
|
|
*/
|
|
|
|
struct wpa_ssid *pnext;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* id - Unique id for the network
|
|
|
|
*
|
|
|
|
* This identifier is used as a unique identifier for each network
|
|
|
|
* block when using the control interface. Each network is allocated an
|
|
|
|
* id when it is being created, either when reading the configuration
|
|
|
|
* file or when a new network is added through the control interface.
|
|
|
|
*/
|
|
|
|
int id;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* priority - Priority group
|
|
|
|
*
|
|
|
|
* By default, all networks will get same priority group (0). If some
|
|
|
|
* of the networks are more desirable, this field can be used to change
|
|
|
|
* the order in which wpa_supplicant goes through the networks when
|
|
|
|
* selecting a BSS. The priority groups will be iterated in decreasing
|
|
|
|
* priority (i.e., the larger the priority value, the sooner the
|
|
|
|
* network is matched against the scan results). Within each priority
|
|
|
|
* group, networks will be selected based on security policy, signal
|
|
|
|
* strength, etc.
|
|
|
|
*
|
|
|
|
* Please note that AP scanning with scan_ssid=1 and ap_scan=2 mode are
|
|
|
|
* not using this priority to select the order for scanning. Instead,
|
|
|
|
* they try the networks in the order that used in the configuration
|
|
|
|
* file.
|
|
|
|
*/
|
|
|
|
int priority;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssid - Service set identifier (network name)
|
|
|
|
*
|
|
|
|
* This is the SSID for the network. For wireless interfaces, this is
|
|
|
|
* used to select which network will be used. If set to %NULL (or
|
|
|
|
* ssid_len=0), any SSID can be used. For wired interfaces, this must
|
|
|
|
* be set to %NULL. Note: SSID may contain any characters, even nul
|
|
|
|
* (ASCII 0) and as such, this should not be assumed to be a nul
|
|
|
|
* terminated string. ssid_len defines how many characters are valid
|
|
|
|
* and the ssid field is not guaranteed to be nul terminated.
|
|
|
|
*/
|
|
|
|
u8 *ssid;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ssid_len - Length of the SSID
|
|
|
|
*/
|
|
|
|
size_t ssid_len;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bssid - BSSID
|
|
|
|
*
|
|
|
|
* If set, this network block is used only when associating with the AP
|
|
|
|
* using the configured BSSID
|
2010-07-18 23:30:24 +02:00
|
|
|
*
|
|
|
|
* If this is a persistent P2P group (disabled == 2), this is the GO
|
|
|
|
* Device Address.
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
u8 bssid[ETH_ALEN];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bssid_set - Whether BSSID is configured for this network
|
|
|
|
*/
|
|
|
|
int bssid_set;
|
|
|
|
|
2013-09-08 00:42:53 +02:00
|
|
|
/**
|
|
|
|
* go_p2p_dev_addr - GO's P2P Device Address or all zeros if not set
|
|
|
|
*/
|
|
|
|
u8 go_p2p_dev_addr[ETH_ALEN];
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* psk - WPA pre-shared key (256 bits)
|
|
|
|
*/
|
|
|
|
u8 psk[32];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* psk_set - Whether PSK field is configured
|
|
|
|
*/
|
|
|
|
int psk_set;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* passphrase - WPA ASCII passphrase
|
|
|
|
*
|
|
|
|
* If this is set, psk will be generated using the SSID and passphrase
|
|
|
|
* configured for the network. ASCII passphrase must be between 8 and
|
|
|
|
* 63 characters (inclusive).
|
|
|
|
*/
|
|
|
|
char *passphrase;
|
|
|
|
|
2012-08-03 20:28:42 +02:00
|
|
|
/**
|
|
|
|
* ext_psk - PSK/passphrase name in external storage
|
|
|
|
*
|
|
|
|
* If this is set, PSK/passphrase will be fetched from external storage
|
|
|
|
* when requesting association with the network.
|
|
|
|
*/
|
|
|
|
char *ext_psk;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* pairwise_cipher - Bitfield of allowed pairwise ciphers, WPA_CIPHER_*
|
|
|
|
*/
|
|
|
|
int pairwise_cipher;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* group_cipher - Bitfield of allowed group ciphers, WPA_CIPHER_*
|
|
|
|
*/
|
|
|
|
int group_cipher;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* key_mgmt - Bitfield of allowed key management protocols
|
|
|
|
*
|
|
|
|
* WPA_KEY_MGMT_*
|
|
|
|
*/
|
|
|
|
int key_mgmt;
|
|
|
|
|
2012-03-30 14:20:35 +02:00
|
|
|
/**
|
|
|
|
* bg_scan_period - Background scan period in seconds, 0 to disable, or
|
|
|
|
* -1 to indicate no change to default driver configuration
|
|
|
|
*/
|
|
|
|
int bg_scan_period;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* proto - Bitfield of allowed protocols, WPA_PROTO_*
|
|
|
|
*/
|
|
|
|
int proto;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* auth_alg - Bitfield of allowed authentication algorithms
|
|
|
|
*
|
|
|
|
* WPA_AUTH_ALG_*
|
|
|
|
*/
|
|
|
|
int auth_alg;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* scan_ssid - Scan this SSID with Probe Requests
|
|
|
|
*
|
|
|
|
* scan_ssid can be used to scan for APs using hidden SSIDs.
|
|
|
|
* Note: Many drivers do not support this. ap_mode=2 can be used with
|
|
|
|
* such drivers to use hidden SSIDs.
|
|
|
|
*/
|
|
|
|
int scan_ssid;
|
|
|
|
|
|
|
|
#ifdef IEEE8021X_EAPOL
|
|
|
|
#define EAPOL_FLAG_REQUIRE_KEY_UNICAST BIT(0)
|
|
|
|
#define EAPOL_FLAG_REQUIRE_KEY_BROADCAST BIT(1)
|
|
|
|
/**
|
|
|
|
* eapol_flags - Bit field of IEEE 802.1X/EAPOL options (EAPOL_FLAG_*)
|
|
|
|
*/
|
|
|
|
int eapol_flags;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* eap - EAP peer configuration for this network
|
|
|
|
*/
|
|
|
|
struct eap_peer_config eap;
|
|
|
|
#endif /* IEEE8021X_EAPOL */
|
|
|
|
|
|
|
|
#define NUM_WEP_KEYS 4
|
|
|
|
#define MAX_WEP_KEY_LEN 16
|
|
|
|
/**
|
|
|
|
* wep_key - WEP keys
|
|
|
|
*/
|
|
|
|
u8 wep_key[NUM_WEP_KEYS][MAX_WEP_KEY_LEN];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wep_key_len - WEP key lengths
|
|
|
|
*/
|
|
|
|
size_t wep_key_len[NUM_WEP_KEYS];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* wep_tx_keyidx - Default key index for TX frames using WEP
|
|
|
|
*/
|
|
|
|
int wep_tx_keyidx;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* proactive_key_caching - Enable proactive key caching
|
|
|
|
*
|
|
|
|
* This field can be used to enable proactive key caching which is also
|
|
|
|
* known as opportunistic PMKSA caching for WPA2. This is disabled (0)
|
2012-11-12 19:07:53 +01:00
|
|
|
* by default unless default value is changed with the global okc=1
|
|
|
|
* parameter. Enable by setting this to 1.
|
2008-02-28 02:34:43 +01:00
|
|
|
*
|
|
|
|
* Proactive key caching is used to make supplicant assume that the APs
|
|
|
|
* are using the same PMK and generate PMKSA cache entries without
|
|
|
|
* doing RSN pre-authentication. This requires support from the AP side
|
|
|
|
* and is normally used with wireless switches that co-locate the
|
|
|
|
* authenticator.
|
2012-11-12 19:07:53 +01:00
|
|
|
*
|
|
|
|
* Internally, special value -1 is used to indicate that the parameter
|
|
|
|
* was not specified in the configuration (i.e., default behavior is
|
|
|
|
* followed).
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
int proactive_key_caching;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* mixed_cell - Whether mixed cells are allowed
|
|
|
|
*
|
|
|
|
* This option can be used to configure whether so called mixed cells,
|
|
|
|
* i.e., networks that use both plaintext and encryption in the same
|
|
|
|
* SSID, are allowed. This is disabled (0) by default. Enable by
|
|
|
|
* setting this to 1.
|
|
|
|
*/
|
|
|
|
int mixed_cell;
|
|
|
|
|
|
|
|
#ifdef IEEE8021X_EAPOL
|
|
|
|
|
|
|
|
/**
|
|
|
|
* leap - Number of EAP methods using LEAP
|
|
|
|
*
|
|
|
|
* This field should be set to 1 if LEAP is enabled. This is used to
|
|
|
|
* select IEEE 802.11 authentication algorithm.
|
|
|
|
*/
|
|
|
|
int leap;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* non_leap - Number of EAP methods not using LEAP
|
|
|
|
*
|
|
|
|
* This field should be set to >0 if any EAP method other than LEAP is
|
|
|
|
* enabled. This is used to select IEEE 802.11 authentication
|
|
|
|
* algorithm.
|
|
|
|
*/
|
|
|
|
int non_leap;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* eap_workaround - EAP workarounds enabled
|
|
|
|
*
|
|
|
|
* wpa_supplicant supports number of "EAP workarounds" to work around
|
|
|
|
* interoperability issues with incorrectly behaving authentication
|
|
|
|
* servers. This is recommended to be enabled by default because some
|
|
|
|
* of the issues are present in large number of authentication servers.
|
|
|
|
*
|
|
|
|
* Strict EAP conformance mode can be configured by disabling
|
|
|
|
* workarounds with eap_workaround = 0.
|
|
|
|
*/
|
|
|
|
unsigned int eap_workaround;
|
|
|
|
|
|
|
|
#endif /* IEEE8021X_EAPOL */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* mode - IEEE 802.11 operation mode (Infrastucture/IBSS)
|
|
|
|
*
|
|
|
|
* 0 = infrastructure (Managed) mode, i.e., associate with an AP.
|
|
|
|
*
|
|
|
|
* 1 = IBSS (ad-hoc, peer-to-peer)
|
|
|
|
*
|
2009-03-25 10:38:47 +01:00
|
|
|
* 2 = AP (access point)
|
|
|
|
*
|
2010-07-18 23:30:24 +02:00
|
|
|
* 3 = P2P Group Owner (can be set in the configuration file)
|
|
|
|
*
|
|
|
|
* 4 = P2P Group Formation (used internally; not in configuration
|
|
|
|
* files)
|
|
|
|
*
|
2008-02-28 02:34:43 +01:00
|
|
|
* Note: IBSS can only be used with key_mgmt NONE (plaintext and
|
|
|
|
* static WEP) and key_mgmt=WPA-NONE (fixed group key TKIP/CCMP). In
|
|
|
|
* addition, ap_scan has to be set to 2 for IBSS. WPA-None requires
|
|
|
|
* following network block options: proto=WPA, key_mgmt=WPA-NONE,
|
|
|
|
* pairwise=NONE, group=TKIP (or CCMP, but not both), and psk must also
|
|
|
|
* be set (either directly or using ASCII passphrase).
|
|
|
|
*/
|
2009-12-28 15:00:36 +01:00
|
|
|
enum wpas_mode {
|
|
|
|
WPAS_MODE_INFRA = 0,
|
|
|
|
WPAS_MODE_IBSS = 1,
|
|
|
|
WPAS_MODE_AP = 2,
|
2010-07-18 23:30:24 +02:00
|
|
|
WPAS_MODE_P2P_GO = 3,
|
|
|
|
WPAS_MODE_P2P_GROUP_FORMATION = 4,
|
2009-12-28 15:00:36 +01:00
|
|
|
} mode;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* disabled - Whether this network is currently disabled
|
|
|
|
*
|
|
|
|
* 0 = this network can be used (default).
|
|
|
|
* 1 = this network block is disabled (can be enabled through
|
|
|
|
* ctrl_iface, e.g., with wpa_cli or wpa_gui).
|
2010-07-18 23:30:24 +02:00
|
|
|
* 2 = this network block includes parameters for a persistent P2P
|
|
|
|
* group (can be used with P2P ctrl_iface commands)
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
|
|
|
int disabled;
|
|
|
|
|
2012-10-04 20:11:04 +02:00
|
|
|
/**
|
|
|
|
* disabled_for_connect - Whether this network was temporarily disabled
|
|
|
|
*
|
|
|
|
* This flag is used to reenable all the temporarily disabled networks
|
|
|
|
* after either the success or failure of a WPS connection.
|
|
|
|
*/
|
|
|
|
int disabled_for_connect;
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* peerkey - Whether PeerKey handshake for direct links is allowed
|
|
|
|
*
|
|
|
|
* This is only used when both RSN/WPA2 and IEEE 802.11e (QoS) are
|
|
|
|
* enabled.
|
|
|
|
*
|
|
|
|
* 0 = disabled (default)
|
|
|
|
* 1 = enabled
|
|
|
|
*/
|
|
|
|
int peerkey;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* id_str - Network identifier string for external scripts
|
|
|
|
*
|
|
|
|
* This value is passed to external ctrl_iface monitors in
|
|
|
|
* WPA_EVENT_CONNECTED event and wpa_cli sets this as WPA_ID_STR
|
|
|
|
* environment variable for action scripts.
|
|
|
|
*/
|
|
|
|
char *id_str;
|
|
|
|
|
|
|
|
#ifdef CONFIG_IEEE80211W
|
|
|
|
/**
|
|
|
|
* ieee80211w - Whether management frame protection is enabled
|
|
|
|
*
|
|
|
|
* This value is used to configure policy for management frame
|
|
|
|
* protection (IEEE 802.11w). 0 = disabled, 1 = optional, 2 = required.
|
2012-11-24 21:21:29 +01:00
|
|
|
* This is disabled by default unless the default value has been changed
|
|
|
|
* with the global pmf=1/2 parameter.
|
|
|
|
*
|
|
|
|
* Internally, special value 3 is used to indicate that the parameter
|
|
|
|
* was not specified in the configuration (i.e., default behavior is
|
|
|
|
* followed).
|
2008-02-28 02:34:43 +01:00
|
|
|
*/
|
2009-03-26 15:06:15 +01:00
|
|
|
enum mfp_options ieee80211w;
|
2008-02-28 02:34:43 +01:00
|
|
|
#endif /* CONFIG_IEEE80211W */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* frequency - Channel frequency in megahertz (MHz) for IBSS
|
|
|
|
*
|
|
|
|
* This value is used to configure the initial channel for IBSS (adhoc)
|
|
|
|
* networks, e.g., 2412 = IEEE 802.11b/g channel 1. It is ignored in
|
|
|
|
* the infrastructure mode. In addition, this value is only used by the
|
|
|
|
* station that creates the IBSS. If an IBSS network with the
|
|
|
|
* configured SSID is already present, the frequency of the network
|
|
|
|
* will be used instead of this configured value.
|
|
|
|
*/
|
|
|
|
int frequency;
|
2008-11-06 18:57:21 +01:00
|
|
|
|
2012-08-15 21:53:01 +02:00
|
|
|
int ht40;
|
|
|
|
|
2013-10-27 18:46:17 +01:00
|
|
|
int vht;
|
|
|
|
|
2008-11-06 18:57:21 +01:00
|
|
|
/**
|
|
|
|
* wpa_ptk_rekey - Maximum lifetime for PTK in seconds
|
|
|
|
*
|
|
|
|
* This value can be used to enforce rekeying of PTK to mitigate some
|
|
|
|
* attacks against TKIP deficiencies.
|
|
|
|
*/
|
|
|
|
int wpa_ptk_rekey;
|
2009-03-26 20:55:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* scan_freq - Array of frequencies to scan or %NULL for all
|
|
|
|
*
|
|
|
|
* This is an optional zero-terminated array of frequencies in
|
|
|
|
* megahertz (MHz) to include in scan requests when searching for this
|
|
|
|
* network. This can be used to speed up scanning when the network is
|
|
|
|
* known to not use all possible channels.
|
|
|
|
*/
|
|
|
|
int *scan_freq;
|
2009-09-14 23:08:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* bgscan - Background scan and roaming parameters or %NULL if none
|
|
|
|
*
|
|
|
|
* This is an optional set of parameters for background scanning and
|
|
|
|
* roaming within a network (ESS) in following format:
|
|
|
|
* <bgscan module name>:<module parameters>
|
|
|
|
*/
|
|
|
|
char *bgscan;
|
2010-03-27 06:45:50 +01:00
|
|
|
|
2012-02-27 15:28:45 +01:00
|
|
|
/**
|
|
|
|
* ignore_broadcast_ssid - Hide SSID in AP mode
|
|
|
|
*
|
|
|
|
* Send empty SSID in beacons and ignore probe request frames that do
|
|
|
|
* not specify full SSID, i.e., require stations to know SSID.
|
|
|
|
* default: disabled (0)
|
|
|
|
* 1 = send empty (length=0) SSID in beacon and ignore probe request
|
|
|
|
* for broadcast SSID
|
|
|
|
* 2 = clear SSID (ASCII 0), but keep the original length (this may be
|
|
|
|
* required with some clients that do not support empty SSID) and
|
|
|
|
* ignore probe requests for broadcast SSID
|
|
|
|
*/
|
|
|
|
int ignore_broadcast_ssid;
|
|
|
|
|
2010-03-27 06:45:50 +01:00
|
|
|
/**
|
|
|
|
* freq_list - Array of allowed frequencies or %NULL for all
|
|
|
|
*
|
|
|
|
* This is an optional zero-terminated array of frequencies in
|
|
|
|
* megahertz (MHz) to allow for selecting the BSS. If set, scan results
|
|
|
|
* that do not match any of the specified frequencies are not
|
|
|
|
* considered when selecting a BSS.
|
|
|
|
*/
|
|
|
|
int *freq_list;
|
2010-07-18 23:30:24 +02:00
|
|
|
|
2011-12-22 21:47:41 +01:00
|
|
|
/**
|
|
|
|
* p2p_client_list - List of P2P Clients in a persistent group (GO)
|
|
|
|
*
|
|
|
|
* This is a list of P2P Clients (P2P Device Address) that have joined
|
|
|
|
* the persistent group. This is maintained on the GO for persistent
|
|
|
|
* group entries (disabled == 2).
|
|
|
|
*/
|
|
|
|
u8 *p2p_client_list;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* num_p2p_clients - Number of entries in p2p_client_list
|
|
|
|
*/
|
|
|
|
size_t num_p2p_clients;
|
|
|
|
|
2012-08-23 23:23:44 +02:00
|
|
|
#ifndef P2P_MAX_STORED_CLIENTS
|
|
|
|
#define P2P_MAX_STORED_CLIENTS 100
|
|
|
|
#endif /* P2P_MAX_STORED_CLIENTS */
|
|
|
|
|
2013-09-01 12:40:33 +02:00
|
|
|
/**
|
|
|
|
* psk_list - Per-client PSKs (struct psk_list_entry)
|
|
|
|
*/
|
|
|
|
struct dl_list psk_list;
|
|
|
|
|
2010-07-18 23:30:24 +02:00
|
|
|
/**
|
|
|
|
* p2p_group - Network generated as a P2P group (used internally)
|
|
|
|
*/
|
|
|
|
int p2p_group;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* p2p_persistent_group - Whether this is a persistent group
|
|
|
|
*/
|
|
|
|
int p2p_persistent_group;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* temporary - Whether this network is temporary and not to be saved
|
|
|
|
*/
|
|
|
|
int temporary;
|
2011-02-02 16:00:12 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* export_keys - Whether keys may be exported
|
|
|
|
*
|
|
|
|
* This attribute will be set when keys are determined through
|
|
|
|
* WPS or similar so that they may be exported.
|
|
|
|
*/
|
|
|
|
int export_keys;
|
2012-01-29 20:01:31 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_HT_OVERRIDES
|
|
|
|
/**
|
|
|
|
* disable_ht - Disable HT (IEEE 802.11n) for this network
|
|
|
|
*
|
|
|
|
* By default, use it if it is available, but this can be configured
|
|
|
|
* to 1 to have it disabled.
|
|
|
|
*/
|
|
|
|
int disable_ht;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* disable_ht40 - Disable HT40 for this network
|
|
|
|
*
|
|
|
|
* By default, use it if it is available, but this can be configured
|
|
|
|
* to 1 to have it disabled.
|
|
|
|
*/
|
|
|
|
int disable_ht40;
|
|
|
|
|
2012-12-18 13:44:15 +01:00
|
|
|
/**
|
|
|
|
* disable_sgi - Disable SGI (Short Guard Interval) for this network
|
|
|
|
*
|
|
|
|
* By default, use it if it is available, but this can be configured
|
|
|
|
* to 1 to have it disabled.
|
|
|
|
*/
|
|
|
|
int disable_sgi;
|
|
|
|
|
2012-01-29 20:01:31 +01:00
|
|
|
/**
|
|
|
|
* disable_max_amsdu - Disable MAX A-MSDU
|
|
|
|
*
|
|
|
|
* A-MDSU will be 3839 bytes when disabled, or 7935
|
|
|
|
* when enabled (assuming it is otherwise supported)
|
|
|
|
* -1 (default) means do not apply any settings to the kernel.
|
|
|
|
*/
|
|
|
|
int disable_max_amsdu;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ampdu_factor - Maximum A-MPDU Length Exponent
|
|
|
|
*
|
|
|
|
* Value: 0-3, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
|
|
|
|
*/
|
|
|
|
int ampdu_factor;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ampdu_density - Minimum A-MPDU Start Spacing
|
|
|
|
*
|
|
|
|
* Value: 0-7, see 7.3.2.56.3 in IEEE Std 802.11n-2009.
|
|
|
|
*/
|
|
|
|
int ampdu_density;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ht_mcs - Allowed HT-MCS rates, in ASCII hex: ffff0000...
|
|
|
|
*
|
|
|
|
* By default (empty string): Use whatever the OS has configured.
|
|
|
|
*/
|
|
|
|
char *ht_mcs;
|
|
|
|
#endif /* CONFIG_HT_OVERRIDES */
|
2012-03-27 19:41:27 +02:00
|
|
|
|
2013-03-10 17:04:39 +01:00
|
|
|
#ifdef CONFIG_VHT_OVERRIDES
|
|
|
|
/**
|
|
|
|
* disable_vht - Disable VHT (IEEE 802.11ac) for this network
|
|
|
|
*
|
|
|
|
* By default, use it if it is available, but this can be configured
|
|
|
|
* to 1 to have it disabled.
|
|
|
|
*/
|
|
|
|
int disable_vht;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* vht_capa - VHT capabilities to use
|
|
|
|
*/
|
|
|
|
unsigned int vht_capa;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* vht_capa_mask - mask for VHT capabilities
|
|
|
|
*/
|
|
|
|
unsigned int vht_capa_mask;
|
|
|
|
|
|
|
|
int vht_rx_mcs_nss_1, vht_rx_mcs_nss_2,
|
|
|
|
vht_rx_mcs_nss_3, vht_rx_mcs_nss_4,
|
|
|
|
vht_rx_mcs_nss_5, vht_rx_mcs_nss_6,
|
|
|
|
vht_rx_mcs_nss_7, vht_rx_mcs_nss_8;
|
|
|
|
int vht_tx_mcs_nss_1, vht_tx_mcs_nss_2,
|
|
|
|
vht_tx_mcs_nss_3, vht_tx_mcs_nss_4,
|
|
|
|
vht_tx_mcs_nss_5, vht_tx_mcs_nss_6,
|
|
|
|
vht_tx_mcs_nss_7, vht_tx_mcs_nss_8;
|
|
|
|
#endif /* CONFIG_VHT_OVERRIDES */
|
|
|
|
|
2012-03-27 19:41:27 +02:00
|
|
|
/**
|
|
|
|
* ap_max_inactivity - Timeout in seconds to detect STA's inactivity
|
|
|
|
*
|
|
|
|
* This timeout value is used in AP mode to clean up inactive stations.
|
|
|
|
* By default: 300 seconds.
|
|
|
|
*/
|
|
|
|
int ap_max_inactivity;
|
2012-06-04 16:52:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* dtim_period - DTIM period in Beacon intervals
|
|
|
|
* By default: 2
|
|
|
|
*/
|
|
|
|
int dtim_period;
|
2012-08-26 22:01:26 +02:00
|
|
|
|
2013-03-01 19:50:08 +01:00
|
|
|
/**
|
|
|
|
* beacon_int - Beacon interval (default: 100 TU)
|
|
|
|
*/
|
|
|
|
int beacon_int;
|
|
|
|
|
2012-08-26 22:01:26 +02:00
|
|
|
/**
|
|
|
|
* auth_failures - Number of consecutive authentication failures
|
|
|
|
*/
|
|
|
|
unsigned int auth_failures;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* disabled_until - Network block disabled until this time if non-zero
|
|
|
|
*/
|
|
|
|
struct os_time disabled_until;
|
2012-11-22 16:53:27 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* parent_cred - Pointer to parent wpa_cred entry
|
|
|
|
*
|
|
|
|
* This pointer can be used to delete temporary networks when a wpa_cred
|
|
|
|
* that was used to create them is removed. This pointer should not be
|
|
|
|
* dereferences since it may not be updated in all cases.
|
|
|
|
*/
|
|
|
|
void *parent_cred;
|
2008-02-28 02:34:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* CONFIG_SSID_H */
|