2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* WPA Supplicant - Common definitions
|
2015-01-25 22:32:01 +01:00
|
|
|
* Copyright (c) 2004-2015, 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 DEFS_H
|
|
|
|
#define DEFS_H
|
|
|
|
|
|
|
|
#ifdef FALSE
|
|
|
|
#undef FALSE
|
|
|
|
#endif
|
|
|
|
#ifdef TRUE
|
|
|
|
#undef TRUE
|
|
|
|
#endif
|
|
|
|
typedef enum { FALSE = 0, TRUE = 1 } Boolean;
|
|
|
|
|
|
|
|
|
|
|
|
#define WPA_CIPHER_NONE BIT(0)
|
|
|
|
#define WPA_CIPHER_WEP40 BIT(1)
|
|
|
|
#define WPA_CIPHER_WEP104 BIT(2)
|
|
|
|
#define WPA_CIPHER_TKIP BIT(3)
|
|
|
|
#define WPA_CIPHER_CCMP BIT(4)
|
|
|
|
#define WPA_CIPHER_AES_128_CMAC BIT(5)
|
2012-08-29 10:52:15 +02:00
|
|
|
#define WPA_CIPHER_GCMP BIT(6)
|
2012-09-30 19:26:55 +02:00
|
|
|
#define WPA_CIPHER_SMS4 BIT(7)
|
2013-12-24 21:21:04 +01:00
|
|
|
#define WPA_CIPHER_GCMP_256 BIT(8)
|
|
|
|
#define WPA_CIPHER_CCMP_256 BIT(9)
|
|
|
|
#define WPA_CIPHER_BIP_GMAC_128 BIT(11)
|
|
|
|
#define WPA_CIPHER_BIP_GMAC_256 BIT(12)
|
|
|
|
#define WPA_CIPHER_BIP_CMAC_256 BIT(13)
|
2013-07-23 20:24:05 +02:00
|
|
|
#define WPA_CIPHER_GTK_NOT_USED BIT(14)
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
#define WPA_KEY_MGMT_IEEE8021X BIT(0)
|
|
|
|
#define WPA_KEY_MGMT_PSK BIT(1)
|
|
|
|
#define WPA_KEY_MGMT_NONE BIT(2)
|
|
|
|
#define WPA_KEY_MGMT_IEEE8021X_NO_WPA BIT(3)
|
|
|
|
#define WPA_KEY_MGMT_WPA_NONE BIT(4)
|
|
|
|
#define WPA_KEY_MGMT_FT_IEEE8021X BIT(5)
|
|
|
|
#define WPA_KEY_MGMT_FT_PSK BIT(6)
|
2008-08-31 21:57:28 +02:00
|
|
|
#define WPA_KEY_MGMT_IEEE8021X_SHA256 BIT(7)
|
|
|
|
#define WPA_KEY_MGMT_PSK_SHA256 BIT(8)
|
2008-11-23 18:34:26 +01:00
|
|
|
#define WPA_KEY_MGMT_WPS BIT(9)
|
2012-09-30 18:51:07 +02:00
|
|
|
#define WPA_KEY_MGMT_SAE BIT(10)
|
|
|
|
#define WPA_KEY_MGMT_FT_SAE BIT(11)
|
2012-09-30 19:26:55 +02:00
|
|
|
#define WPA_KEY_MGMT_WAPI_PSK BIT(12)
|
|
|
|
#define WPA_KEY_MGMT_WAPI_CERT BIT(13)
|
|
|
|
#define WPA_KEY_MGMT_CCKM BIT(14)
|
2013-07-23 20:23:25 +02:00
|
|
|
#define WPA_KEY_MGMT_OSEN BIT(15)
|
2014-11-16 12:20:51 +01:00
|
|
|
#define WPA_KEY_MGMT_IEEE8021X_SUITE_B BIT(16)
|
2015-01-25 22:32:01 +01:00
|
|
|
#define WPA_KEY_MGMT_IEEE8021X_SUITE_B_192 BIT(17)
|
2008-08-31 21:57:28 +02:00
|
|
|
|
|
|
|
static inline int wpa_key_mgmt_wpa_ieee8021x(int akm)
|
|
|
|
{
|
2011-04-08 18:11:54 +02:00
|
|
|
return !!(akm & (WPA_KEY_MGMT_IEEE8021X |
|
|
|
|
WPA_KEY_MGMT_FT_IEEE8021X |
|
2012-09-30 19:26:55 +02:00
|
|
|
WPA_KEY_MGMT_CCKM |
|
2013-07-23 20:23:25 +02:00
|
|
|
WPA_KEY_MGMT_OSEN |
|
2014-11-16 12:20:51 +01:00
|
|
|
WPA_KEY_MGMT_IEEE8021X_SHA256 |
|
2015-01-25 22:32:01 +01:00
|
|
|
WPA_KEY_MGMT_IEEE8021X_SUITE_B |
|
|
|
|
WPA_KEY_MGMT_IEEE8021X_SUITE_B_192));
|
2008-08-31 21:57:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int wpa_key_mgmt_wpa_psk(int akm)
|
|
|
|
{
|
2011-04-08 18:11:54 +02:00
|
|
|
return !!(akm & (WPA_KEY_MGMT_PSK |
|
|
|
|
WPA_KEY_MGMT_FT_PSK |
|
2012-09-30 18:51:07 +02:00
|
|
|
WPA_KEY_MGMT_PSK_SHA256 |
|
2013-12-28 12:41:02 +01:00
|
|
|
WPA_KEY_MGMT_SAE |
|
|
|
|
WPA_KEY_MGMT_FT_SAE));
|
2008-08-31 21:57:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int wpa_key_mgmt_ft(int akm)
|
|
|
|
{
|
2011-04-08 18:11:54 +02:00
|
|
|
return !!(akm & (WPA_KEY_MGMT_FT_PSK |
|
2012-09-30 18:51:07 +02:00
|
|
|
WPA_KEY_MGMT_FT_IEEE8021X |
|
|
|
|
WPA_KEY_MGMT_FT_SAE));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int wpa_key_mgmt_sae(int akm)
|
|
|
|
{
|
|
|
|
return !!(akm & (WPA_KEY_MGMT_SAE |
|
|
|
|
WPA_KEY_MGMT_FT_SAE));
|
2008-08-31 21:57:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int wpa_key_mgmt_sha256(int akm)
|
|
|
|
{
|
2011-04-08 18:11:54 +02:00
|
|
|
return !!(akm & (WPA_KEY_MGMT_PSK_SHA256 |
|
2013-07-23 20:23:25 +02:00
|
|
|
WPA_KEY_MGMT_IEEE8021X_SHA256 |
|
2014-11-16 12:20:51 +01:00
|
|
|
WPA_KEY_MGMT_OSEN |
|
|
|
|
WPA_KEY_MGMT_IEEE8021X_SUITE_B));
|
|
|
|
}
|
|
|
|
|
2015-01-25 22:32:01 +01:00
|
|
|
static inline int wpa_key_mgmt_sha384(int akm)
|
|
|
|
{
|
|
|
|
return !!(akm & WPA_KEY_MGMT_IEEE8021X_SUITE_B_192);
|
|
|
|
}
|
|
|
|
|
2014-11-16 12:20:51 +01:00
|
|
|
static inline int wpa_key_mgmt_suite_b(int akm)
|
|
|
|
{
|
2015-01-25 22:32:01 +01:00
|
|
|
return !!(akm & (WPA_KEY_MGMT_IEEE8021X_SUITE_B |
|
|
|
|
WPA_KEY_MGMT_IEEE8021X_SUITE_B_192));
|
2008-08-31 21:57:28 +02:00
|
|
|
}
|
|
|
|
|
2010-11-08 20:14:32 +01:00
|
|
|
static inline int wpa_key_mgmt_wpa(int akm)
|
|
|
|
{
|
|
|
|
return wpa_key_mgmt_wpa_ieee8021x(akm) ||
|
2013-12-28 12:41:02 +01:00
|
|
|
wpa_key_mgmt_wpa_psk(akm) ||
|
|
|
|
wpa_key_mgmt_sae(akm);
|
2010-11-08 20:14:32 +01:00
|
|
|
}
|
|
|
|
|
2011-11-24 21:46:14 +01:00
|
|
|
static inline int wpa_key_mgmt_wpa_any(int akm)
|
|
|
|
{
|
|
|
|
return wpa_key_mgmt_wpa(akm) || (akm & WPA_KEY_MGMT_WPA_NONE);
|
|
|
|
}
|
|
|
|
|
2012-09-30 19:26:55 +02:00
|
|
|
static inline int wpa_key_mgmt_cckm(int akm)
|
|
|
|
{
|
|
|
|
return akm == WPA_KEY_MGMT_CCKM;
|
|
|
|
}
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
#define WPA_PROTO_WPA BIT(0)
|
|
|
|
#define WPA_PROTO_RSN BIT(1)
|
2012-09-30 19:26:55 +02:00
|
|
|
#define WPA_PROTO_WAPI BIT(2)
|
2013-07-23 20:23:25 +02:00
|
|
|
#define WPA_PROTO_OSEN BIT(3)
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
#define WPA_AUTH_ALG_OPEN BIT(0)
|
|
|
|
#define WPA_AUTH_ALG_SHARED BIT(1)
|
|
|
|
#define WPA_AUTH_ALG_LEAP BIT(2)
|
2010-03-07 20:02:55 +01:00
|
|
|
#define WPA_AUTH_ALG_FT BIT(3)
|
2012-09-30 18:51:07 +02:00
|
|
|
#define WPA_AUTH_ALG_SAE BIT(4)
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
|
2009-12-26 09:35:08 +01:00
|
|
|
enum wpa_alg {
|
|
|
|
WPA_ALG_NONE,
|
|
|
|
WPA_ALG_WEP,
|
|
|
|
WPA_ALG_TKIP,
|
|
|
|
WPA_ALG_CCMP,
|
|
|
|
WPA_ALG_IGTK,
|
2012-08-29 10:52:15 +02:00
|
|
|
WPA_ALG_PMK,
|
2012-09-30 19:26:55 +02:00
|
|
|
WPA_ALG_GCMP,
|
|
|
|
WPA_ALG_SMS4,
|
2013-12-24 21:21:04 +01:00
|
|
|
WPA_ALG_KRK,
|
|
|
|
WPA_ALG_GCMP_256,
|
|
|
|
WPA_ALG_CCMP_256,
|
|
|
|
WPA_ALG_BIP_GMAC_128,
|
|
|
|
WPA_ALG_BIP_GMAC_256,
|
|
|
|
WPA_ALG_BIP_CMAC_256
|
2009-12-26 09:35:08 +01:00
|
|
|
};
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* enum wpa_states - wpa_supplicant state
|
|
|
|
*
|
|
|
|
* These enumeration values are used to indicate the current wpa_supplicant
|
|
|
|
* state (wpa_s->wpa_state). The current state can be retrieved with
|
|
|
|
* wpa_supplicant_get_state() function and the state can be changed by calling
|
|
|
|
* wpa_supplicant_set_state(). In WPA state machine (wpa.c and preauth.c), the
|
|
|
|
* wrapper functions wpa_sm_get_state() and wpa_sm_set_state() should be used
|
|
|
|
* to access the state variable.
|
|
|
|
*/
|
2009-12-26 09:35:08 +01:00
|
|
|
enum wpa_states {
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* WPA_DISCONNECTED - Disconnected state
|
|
|
|
*
|
|
|
|
* This state indicates that client is not associated, but is likely to
|
|
|
|
* start looking for an access point. This state is entered when a
|
|
|
|
* connection is lost.
|
|
|
|
*/
|
|
|
|
WPA_DISCONNECTED,
|
|
|
|
|
2010-05-23 09:27:32 +02:00
|
|
|
/**
|
|
|
|
* WPA_INTERFACE_DISABLED - Interface disabled
|
|
|
|
*
|
|
|
|
* This stat eis entered if the network interface is disabled, e.g.,
|
|
|
|
* due to rfkill. wpa_supplicant refuses any new operations that would
|
|
|
|
* use the radio until the interface has been enabled.
|
|
|
|
*/
|
|
|
|
WPA_INTERFACE_DISABLED,
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* WPA_INACTIVE - Inactive state (wpa_supplicant disabled)
|
|
|
|
*
|
|
|
|
* This state is entered if there are no enabled networks in the
|
|
|
|
* configuration. wpa_supplicant is not trying to associate with a new
|
|
|
|
* network and external interaction (e.g., ctrl_iface call to add or
|
|
|
|
* enable a network) is needed to start association.
|
|
|
|
*/
|
|
|
|
WPA_INACTIVE,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WPA_SCANNING - Scanning for a network
|
|
|
|
*
|
|
|
|
* This state is entered when wpa_supplicant starts scanning for a
|
|
|
|
* network.
|
|
|
|
*/
|
|
|
|
WPA_SCANNING,
|
|
|
|
|
2009-03-20 21:26:41 +01:00
|
|
|
/**
|
|
|
|
* WPA_AUTHENTICATING - Trying to authenticate with a BSS/SSID
|
|
|
|
*
|
|
|
|
* This state is entered when wpa_supplicant has found a suitable BSS
|
|
|
|
* to authenticate with and the driver is configured to try to
|
|
|
|
* authenticate with this BSS. This state is used only with drivers
|
|
|
|
* that use wpa_supplicant as the SME.
|
|
|
|
*/
|
|
|
|
WPA_AUTHENTICATING,
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
/**
|
|
|
|
* WPA_ASSOCIATING - Trying to associate with a BSS/SSID
|
|
|
|
*
|
|
|
|
* This state is entered when wpa_supplicant has found a suitable BSS
|
|
|
|
* to associate with and the driver is configured to try to associate
|
|
|
|
* with this BSS in ap_scan=1 mode. When using ap_scan=2 mode, this
|
|
|
|
* state is entered when the driver is configured to try to associate
|
|
|
|
* with a network using the configured SSID and security policy.
|
|
|
|
*/
|
|
|
|
WPA_ASSOCIATING,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WPA_ASSOCIATED - Association completed
|
|
|
|
*
|
|
|
|
* This state is entered when the driver reports that association has
|
|
|
|
* been successfully completed with an AP. If IEEE 802.1X is used
|
|
|
|
* (with or without WPA/WPA2), wpa_supplicant remains in this state
|
|
|
|
* until the IEEE 802.1X/EAPOL authentication has been completed.
|
|
|
|
*/
|
|
|
|
WPA_ASSOCIATED,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WPA_4WAY_HANDSHAKE - WPA 4-Way Key Handshake in progress
|
|
|
|
*
|
|
|
|
* This state is entered when WPA/WPA2 4-Way Handshake is started. In
|
|
|
|
* case of WPA-PSK, this happens when receiving the first EAPOL-Key
|
|
|
|
* frame after association. In case of WPA-EAP, this state is entered
|
|
|
|
* when the IEEE 802.1X/EAPOL authentication has been completed.
|
|
|
|
*/
|
|
|
|
WPA_4WAY_HANDSHAKE,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WPA_GROUP_HANDSHAKE - WPA Group Key Handshake in progress
|
|
|
|
*
|
|
|
|
* This state is entered when 4-Way Key Handshake has been completed
|
|
|
|
* (i.e., when the supplicant sends out message 4/4) and when Group
|
|
|
|
* Key rekeying is started by the AP (i.e., when supplicant receives
|
|
|
|
* message 1/2).
|
|
|
|
*/
|
|
|
|
WPA_GROUP_HANDSHAKE,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WPA_COMPLETED - All authentication completed
|
|
|
|
*
|
|
|
|
* This state is entered when the full authentication process is
|
|
|
|
* completed. In case of WPA2, this happens when the 4-Way Handshake is
|
|
|
|
* successfully completed. With WPA, this state is entered after the
|
|
|
|
* Group Key Handshake; with IEEE 802.1X (non-WPA) connection is
|
|
|
|
* completed after dynamic keys are received (or if not used, after
|
|
|
|
* the EAP authentication has been completed). With static WEP keys and
|
|
|
|
* plaintext connections, this state is entered when an association
|
|
|
|
* has been completed.
|
|
|
|
*
|
|
|
|
* This state indicates that the supplicant has completed its
|
|
|
|
* processing for the association phase and that data connection is
|
|
|
|
* fully configured.
|
|
|
|
*/
|
|
|
|
WPA_COMPLETED
|
2009-12-26 09:35:08 +01:00
|
|
|
};
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
#define MLME_SETPROTECTION_PROTECT_TYPE_NONE 0
|
|
|
|
#define MLME_SETPROTECTION_PROTECT_TYPE_RX 1
|
|
|
|
#define MLME_SETPROTECTION_PROTECT_TYPE_TX 2
|
|
|
|
#define MLME_SETPROTECTION_PROTECT_TYPE_RX_TX 3
|
|
|
|
|
|
|
|
#define MLME_SETPROTECTION_KEY_TYPE_GROUP 0
|
|
|
|
#define MLME_SETPROTECTION_KEY_TYPE_PAIRWISE 1
|
|
|
|
|
2009-03-26 15:06:15 +01:00
|
|
|
|
2010-01-03 20:02:51 +01:00
|
|
|
/**
|
|
|
|
* enum mfp_options - Management frame protection (IEEE 802.11w) options
|
|
|
|
*/
|
2009-03-26 15:06:15 +01:00
|
|
|
enum mfp_options {
|
2010-01-03 20:02:51 +01:00
|
|
|
NO_MGMT_FRAME_PROTECTION = 0,
|
|
|
|
MGMT_FRAME_PROTECTION_OPTIONAL = 1,
|
2012-11-24 21:21:29 +01:00
|
|
|
MGMT_FRAME_PROTECTION_REQUIRED = 2,
|
2009-03-26 15:06:15 +01:00
|
|
|
};
|
2012-11-24 21:21:29 +01:00
|
|
|
#define MGMT_FRAME_PROTECTION_DEFAULT 3
|
2009-03-26 15:06:15 +01:00
|
|
|
|
2010-01-03 19:49:48 +01:00
|
|
|
/**
|
|
|
|
* enum hostapd_hw_mode - Hardware mode
|
|
|
|
*/
|
2009-12-26 09:35:08 +01:00
|
|
|
enum hostapd_hw_mode {
|
2009-04-03 18:04:20 +02:00
|
|
|
HOSTAPD_MODE_IEEE80211B,
|
|
|
|
HOSTAPD_MODE_IEEE80211G,
|
|
|
|
HOSTAPD_MODE_IEEE80211A,
|
2012-12-18 10:50:35 +01:00
|
|
|
HOSTAPD_MODE_IEEE80211AD,
|
2015-05-08 19:53:08 +02:00
|
|
|
HOSTAPD_MODE_IEEE80211ANY,
|
2009-04-03 18:04:20 +02:00
|
|
|
NUM_HOSTAPD_MODES
|
2009-12-26 09:35:08 +01:00
|
|
|
};
|
2009-04-03 18:04:20 +02:00
|
|
|
|
2011-10-24 18:00:19 +02:00
|
|
|
/**
|
|
|
|
* enum wpa_ctrl_req_type - Control interface request types
|
|
|
|
*/
|
|
|
|
enum wpa_ctrl_req_type {
|
2011-10-24 18:04:40 +02:00
|
|
|
WPA_CTRL_REQ_UNKNOWN,
|
2011-10-24 18:00:19 +02:00
|
|
|
WPA_CTRL_REQ_EAP_IDENTITY,
|
|
|
|
WPA_CTRL_REQ_EAP_PASSWORD,
|
|
|
|
WPA_CTRL_REQ_EAP_NEW_PASSWORD,
|
|
|
|
WPA_CTRL_REQ_EAP_PIN,
|
|
|
|
WPA_CTRL_REQ_EAP_OTP,
|
|
|
|
WPA_CTRL_REQ_EAP_PASSPHRASE,
|
2013-10-19 16:32:05 +02:00
|
|
|
WPA_CTRL_REQ_SIM,
|
2015-03-28 10:05:13 +01:00
|
|
|
WPA_CTRL_REQ_PSK_PASSPHRASE,
|
2011-10-24 18:00:19 +02:00
|
|
|
NUM_WPA_CTRL_REQS
|
|
|
|
};
|
|
|
|
|
2011-11-17 19:06:33 +01:00
|
|
|
/* Maximum number of EAP methods to store for EAP server user information */
|
|
|
|
#define EAP_MAX_METHODS 8
|
|
|
|
|
2014-09-01 06:23:23 +02:00
|
|
|
enum mesh_plink_state {
|
|
|
|
PLINK_LISTEN = 1,
|
|
|
|
PLINK_OPEN_SENT,
|
|
|
|
PLINK_OPEN_RCVD,
|
|
|
|
PLINK_CNF_RCVD,
|
|
|
|
PLINK_ESTAB,
|
|
|
|
PLINK_HOLDING,
|
|
|
|
PLINK_BLOCKED,
|
|
|
|
};
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
#endif /* DEFS_H */
|