2008-02-28 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* hostapd - IEEE 802.11i-2004 / WPA Authenticator
|
2017-03-12 00:26:43 +01:00
|
|
|
* Copyright (c) 2004-2017, 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 WPA_AUTH_H
|
|
|
|
#define WPA_AUTH_H
|
|
|
|
|
2009-11-29 16:51:55 +01:00
|
|
|
#include "common/defs.h"
|
|
|
|
#include "common/eapol_common.h"
|
|
|
|
#include "common/wpa_common.h"
|
2015-04-07 11:59:29 +02:00
|
|
|
#include "common/ieee802_11_defs.h"
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2015-08-08 17:18:03 +02:00
|
|
|
#define MAX_OWN_IE_OVERRIDE 256
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma pack(push, 1)
|
|
|
|
#endif /* _MSC_VER */
|
|
|
|
|
2008-08-15 10:25:24 +02:00
|
|
|
/* IEEE Std 802.11r-2008, 11A.10.3 - Remote request/response frame definition
|
|
|
|
*/
|
2008-02-28 02:34:43 +01:00
|
|
|
struct ft_rrb_frame {
|
|
|
|
u8 frame_type; /* RSN_REMOTE_FRAME_TYPE_FT_RRB */
|
|
|
|
u8 packet_type; /* FT_PACKET_REQUEST/FT_PACKET_RESPONSE */
|
2009-01-03 20:00:38 +01:00
|
|
|
le16 action_length; /* little endian length of action_frame */
|
2008-02-28 02:34:43 +01:00
|
|
|
u8 ap_address[ETH_ALEN];
|
|
|
|
/*
|
|
|
|
* Followed by action_length bytes of FT Action frame (from Category
|
|
|
|
* field to the end of Action Frame body.
|
|
|
|
*/
|
|
|
|
} STRUCT_PACKED;
|
|
|
|
|
|
|
|
#define RSN_REMOTE_FRAME_TYPE_FT_RRB 1
|
|
|
|
|
|
|
|
#define FT_PACKET_REQUEST 0
|
|
|
|
#define FT_PACKET_RESPONSE 1
|
2017-04-02 14:52:49 +02:00
|
|
|
|
|
|
|
/* Vendor-specific types for R0KH-R1KH protocol; not defined in 802.11r. These
|
|
|
|
* use OUI Extended EtherType as the encapsulating format. */
|
|
|
|
#define FT_PACKET_R0KH_R1KH_PULL 0x01
|
|
|
|
#define FT_PACKET_R0KH_R1KH_RESP 0x02
|
|
|
|
#define FT_PACKET_R0KH_R1KH_PUSH 0x03
|
2017-04-02 14:52:51 +02:00
|
|
|
#define FT_PACKET_R0KH_R1KH_SEQ_REQ 0x04
|
|
|
|
#define FT_PACKET_R0KH_R1KH_SEQ_RESP 0x05
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2017-04-02 14:52:50 +02:00
|
|
|
/* packet layout
|
|
|
|
* IEEE 802 extended OUI ethertype frame header
|
|
|
|
* u16 authlen (little endian)
|
|
|
|
* multiple of struct ft_rrb_tlv (authenticated only, length = authlen)
|
|
|
|
* multiple of struct ft_rrb_tlv (AES-SIV encrypted, AES-SIV needs an extra
|
|
|
|
* blocksize length)
|
|
|
|
*
|
|
|
|
* AES-SIV AAD;
|
|
|
|
* source MAC address (6)
|
|
|
|
* authenticated-only TLVs (authlen)
|
|
|
|
* subtype (1; FT_PACKET_*)
|
|
|
|
*/
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2017-04-02 14:52:50 +02:00
|
|
|
#define FT_RRB_NONCE_LEN 16
|
|
|
|
|
|
|
|
#define FT_RRB_LAST_EMPTY 0 /* placeholder or padding */
|
|
|
|
|
2017-04-02 14:52:51 +02:00
|
|
|
#define FT_RRB_SEQ 1 /* struct ft_rrb_seq */
|
2017-04-02 14:52:50 +02:00
|
|
|
#define FT_RRB_NONCE 2 /* size FT_RRB_NONCE_LEN */
|
|
|
|
#define FT_RRB_TIMESTAMP 3 /* le32 unix seconds */
|
|
|
|
|
|
|
|
#define FT_RRB_R0KH_ID 4 /* FT_R0KH_ID_MAX_LEN */
|
|
|
|
#define FT_RRB_R1KH_ID 5 /* FT_R1KH_ID_LEN */
|
|
|
|
#define FT_RRB_S1KH_ID 6 /* ETH_ALEN */
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2017-04-02 14:52:50 +02:00
|
|
|
#define FT_RRB_PMK_R0_NAME 7 /* WPA_PMK_NAME_LEN */
|
|
|
|
#define FT_RRB_PMK_R0 8 /* PMK_LEN */
|
|
|
|
#define FT_RRB_PMK_R1_NAME 9 /* WPA_PMK_NAME_LEN */
|
|
|
|
#define FT_RRB_PMK_R1 10 /* PMK_LEN */
|
|
|
|
|
|
|
|
#define FT_RRB_PAIRWISE 11 /* le16 */
|
|
|
|
|
|
|
|
struct ft_rrb_tlv {
|
|
|
|
le16 type;
|
|
|
|
le16 len;
|
|
|
|
/* followed by data of length len */
|
2008-02-28 02:34:43 +01:00
|
|
|
} STRUCT_PACKED;
|
|
|
|
|
2017-04-02 14:52:51 +02:00
|
|
|
struct ft_rrb_seq {
|
|
|
|
le32 dom;
|
|
|
|
le32 seq;
|
|
|
|
le32 ts;
|
|
|
|
} STRUCT_PACKED;
|
|
|
|
|
2017-04-02 14:52:50 +02:00
|
|
|
/* session TLVs:
|
|
|
|
* required: PMK_R1, PMK_R1_NAME, PAIRWISE
|
|
|
|
*
|
|
|
|
* pull frame TLVs:
|
|
|
|
* auth:
|
2017-04-02 14:52:51 +02:00
|
|
|
* required: SEQ, NONCE, R0KH_ID, R1KH_ID
|
2017-04-02 14:52:50 +02:00
|
|
|
* encrypted:
|
|
|
|
* required: PMK_R0_NAME, S1KH_ID
|
|
|
|
*
|
|
|
|
* response frame TLVs:
|
|
|
|
* auth:
|
2017-04-02 14:52:51 +02:00
|
|
|
* required: SEQ, NONCE, R0KH_ID, R1KH_ID
|
2017-04-02 14:52:50 +02:00
|
|
|
* encrypted:
|
2017-04-02 14:52:52 +02:00
|
|
|
* required: S1KH_ID
|
|
|
|
* optional: session TLVs
|
2017-04-02 14:52:50 +02:00
|
|
|
*
|
|
|
|
* push frame TLVs:
|
|
|
|
* auth:
|
2017-04-02 14:52:51 +02:00
|
|
|
* required: SEQ, R0KH_ID, R1KH_ID
|
2017-04-02 14:52:50 +02:00
|
|
|
* encrypted:
|
|
|
|
* required: S1KH_ID, PMK_R0_NAME, session TLVs
|
2017-04-02 14:52:51 +02:00
|
|
|
*
|
|
|
|
* sequence number request frame TLVs:
|
|
|
|
* auth:
|
|
|
|
* required: R0KH_ID, R1KH_ID, NONCE
|
|
|
|
*
|
|
|
|
* sequence number response frame TLVs:
|
|
|
|
* auth:
|
|
|
|
* required: SEQ, NONCE, R0KH_ID, R1KH_ID
|
2017-04-02 14:52:50 +02:00
|
|
|
*/
|
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma pack(pop)
|
|
|
|
#endif /* _MSC_VER */
|
|
|
|
|
|
|
|
|
|
|
|
/* per STA state machine data */
|
|
|
|
|
|
|
|
struct wpa_authenticator;
|
|
|
|
struct wpa_state_machine;
|
|
|
|
struct rsn_pmksa_cache_entry;
|
|
|
|
struct eapol_state_machine;
|
2017-04-02 14:52:51 +02:00
|
|
|
struct ft_remote_seq;
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
struct ft_remote_r0kh {
|
|
|
|
struct ft_remote_r0kh *next;
|
|
|
|
u8 addr[ETH_ALEN];
|
|
|
|
u8 id[FT_R0KH_ID_MAX_LEN];
|
|
|
|
size_t id_len;
|
2017-04-02 14:52:50 +02:00
|
|
|
u8 key[32];
|
2017-04-02 14:52:51 +02:00
|
|
|
struct ft_remote_seq *seq;
|
2008-02-28 02:34:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct ft_remote_r1kh {
|
|
|
|
struct ft_remote_r1kh *next;
|
|
|
|
u8 addr[ETH_ALEN];
|
|
|
|
u8 id[FT_R1KH_ID_LEN];
|
2017-04-02 14:52:50 +02:00
|
|
|
u8 key[32];
|
2017-04-02 14:52:51 +02:00
|
|
|
struct ft_remote_seq *seq;
|
2008-02-28 02:34:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct wpa_auth_config {
|
|
|
|
int wpa;
|
|
|
|
int wpa_key_mgmt;
|
|
|
|
int wpa_pairwise;
|
|
|
|
int wpa_group;
|
|
|
|
int wpa_group_rekey;
|
|
|
|
int wpa_strict_rekey;
|
|
|
|
int wpa_gmk_rekey;
|
2008-11-06 18:57:21 +01:00
|
|
|
int wpa_ptk_rekey;
|
2017-01-05 17:00:33 +01:00
|
|
|
u32 wpa_group_update_count;
|
|
|
|
u32 wpa_pairwise_update_count;
|
2017-10-16 17:37:43 +02:00
|
|
|
int wpa_disable_eapol_key_retries;
|
2008-02-28 02:34:43 +01:00
|
|
|
int rsn_pairwise;
|
|
|
|
int rsn_preauth;
|
|
|
|
int eapol_version;
|
2009-03-04 11:33:24 +01:00
|
|
|
int wmm_enabled;
|
2010-04-11 10:32:15 +02:00
|
|
|
int wmm_uapsd;
|
2011-07-05 16:13:04 +02:00
|
|
|
int disable_pmksa_caching;
|
2008-08-03 19:17:58 +02:00
|
|
|
int okc;
|
2011-03-29 16:39:12 +02:00
|
|
|
int tx_status;
|
2008-02-28 02:34:43 +01:00
|
|
|
#ifdef CONFIG_IEEE80211W
|
2010-01-03 20:02:51 +01:00
|
|
|
enum mfp_options ieee80211w;
|
2014-03-12 19:26:37 +01:00
|
|
|
int group_mgmt_cipher;
|
2008-02-28 02:34:43 +01:00
|
|
|
#endif /* CONFIG_IEEE80211W */
|
2016-10-27 14:18:32 +02:00
|
|
|
#ifdef CONFIG_IEEE80211R_AP
|
2015-04-07 11:59:29 +02:00
|
|
|
u8 ssid[SSID_MAX_LEN];
|
2008-02-28 02:34:43 +01:00
|
|
|
size_t ssid_len;
|
|
|
|
u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
|
|
|
|
u8 r0_key_holder[FT_R0KH_ID_MAX_LEN];
|
|
|
|
size_t r0_key_holder_len;
|
|
|
|
u8 r1_key_holder[FT_R1KH_ID_LEN];
|
|
|
|
u32 r0_key_lifetime;
|
2017-04-02 14:52:52 +02:00
|
|
|
int rkh_pos_timeout;
|
|
|
|
int rkh_neg_timeout;
|
|
|
|
int rkh_pull_timeout; /* ms */
|
|
|
|
int rkh_pull_retries;
|
2008-02-28 02:34:43 +01:00
|
|
|
u32 reassociation_deadline;
|
2017-04-02 14:52:52 +02:00
|
|
|
struct ft_remote_r0kh **r0kh_list;
|
|
|
|
struct ft_remote_r1kh **r1kh_list;
|
2008-02-28 02:34:43 +01:00
|
|
|
int pmk_r1_push;
|
2010-10-25 12:35:51 +02:00
|
|
|
int ft_over_ds;
|
2016-09-24 22:53:42 +02:00
|
|
|
int ft_psk_generate_local;
|
2016-10-27 14:18:32 +02:00
|
|
|
#endif /* CONFIG_IEEE80211R_AP */
|
2011-10-18 11:38:32 +02:00
|
|
|
int disable_gtk;
|
2010-10-25 13:30:04 +02:00
|
|
|
int ap_mlme;
|
2013-05-04 10:45:03 +02:00
|
|
|
#ifdef CONFIG_TESTING_OPTIONS
|
|
|
|
double corrupt_gtk_rekey_mic_probability;
|
2015-08-08 17:18:03 +02:00
|
|
|
u8 own_ie_override[MAX_OWN_IE_OVERRIDE];
|
|
|
|
size_t own_ie_override_len;
|
2013-05-04 10:45:03 +02:00
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
2013-03-16 18:13:31 +01:00
|
|
|
#ifdef CONFIG_P2P
|
|
|
|
u8 ip_addr_go[4];
|
|
|
|
u8 ip_addr_mask[4];
|
|
|
|
u8 ip_addr_start[4];
|
|
|
|
u8 ip_addr_end[4];
|
|
|
|
#endif /* CONFIG_P2P */
|
2017-02-21 11:18:58 +01:00
|
|
|
#ifdef CONFIG_FILS
|
|
|
|
unsigned int fils_cache_id_set:1;
|
|
|
|
u8 fils_cache_id[FILS_CACHE_ID_LEN];
|
|
|
|
#endif /* CONFIG_FILS */
|
2008-02-28 02:34:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
LOGGER_DEBUG, LOGGER_INFO, LOGGER_WARNING
|
|
|
|
} logger_level;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
WPA_EAPOL_portEnabled, WPA_EAPOL_portValid, WPA_EAPOL_authorized,
|
|
|
|
WPA_EAPOL_portControl_Auto, WPA_EAPOL_keyRun, WPA_EAPOL_keyAvailable,
|
|
|
|
WPA_EAPOL_keyDone, WPA_EAPOL_inc_EapolFramesTx
|
|
|
|
} wpa_eapol_variable;
|
|
|
|
|
|
|
|
struct wpa_auth_callbacks {
|
|
|
|
void (*logger)(void *ctx, const u8 *addr, logger_level level,
|
|
|
|
const char *txt);
|
|
|
|
void (*disconnect)(void *ctx, const u8 *addr, u16 reason);
|
2012-11-18 12:06:03 +01:00
|
|
|
int (*mic_failure_report)(void *ctx, const u8 *addr);
|
2015-03-19 12:14:21 +01:00
|
|
|
void (*psk_failure_report)(void *ctx, const u8 *addr);
|
2008-02-28 02:34:43 +01:00
|
|
|
void (*set_eapol)(void *ctx, const u8 *addr, wpa_eapol_variable var,
|
|
|
|
int value);
|
|
|
|
int (*get_eapol)(void *ctx, const u8 *addr, wpa_eapol_variable var);
|
2013-09-01 10:30:26 +02:00
|
|
|
const u8 * (*get_psk)(void *ctx, const u8 *addr, const u8 *p2p_dev_addr,
|
2017-10-08 15:37:32 +02:00
|
|
|
const u8 *prev_psk, size_t *psk_len);
|
2008-02-28 02:34:43 +01:00
|
|
|
int (*get_msk)(void *ctx, const u8 *addr, u8 *msk, size_t *len);
|
2009-12-26 09:35:08 +01:00
|
|
|
int (*set_key)(void *ctx, int vlan_id, enum wpa_alg alg,
|
|
|
|
const u8 *addr, int idx, u8 *key, size_t key_len);
|
2008-02-28 02:34:43 +01:00
|
|
|
int (*get_seqnum)(void *ctx, const u8 *addr, int idx, u8 *seq);
|
|
|
|
int (*send_eapol)(void *ctx, const u8 *addr, const u8 *data,
|
|
|
|
size_t data_len, int encrypt);
|
|
|
|
int (*for_each_sta)(void *ctx, int (*cb)(struct wpa_state_machine *sm,
|
|
|
|
void *ctx), void *cb_ctx);
|
2008-08-03 19:17:58 +02:00
|
|
|
int (*for_each_auth)(void *ctx, int (*cb)(struct wpa_authenticator *a,
|
|
|
|
void *ctx), void *cb_ctx);
|
2008-02-28 02:34:43 +01:00
|
|
|
int (*send_ether)(void *ctx, const u8 *dst, u16 proto, const u8 *data,
|
|
|
|
size_t data_len);
|
2017-04-02 14:52:49 +02:00
|
|
|
int (*send_oui)(void *ctx, const u8 *dst, u8 oui_suffix, const u8 *data,
|
|
|
|
size_t data_len);
|
2016-10-27 14:18:32 +02:00
|
|
|
#ifdef CONFIG_IEEE80211R_AP
|
2008-02-28 02:34:43 +01:00
|
|
|
struct wpa_state_machine * (*add_sta)(void *ctx, const u8 *sta_addr);
|
|
|
|
int (*send_ft_action)(void *ctx, const u8 *dst,
|
|
|
|
const u8 *data, size_t data_len);
|
2010-10-25 13:30:04 +02:00
|
|
|
int (*add_tspec)(void *ctx, const u8 *sta_addr, u8 *tspec_ie,
|
2013-12-29 09:23:45 +01:00
|
|
|
size_t tspec_ielen);
|
2016-10-27 14:18:32 +02:00
|
|
|
#endif /* CONFIG_IEEE80211R_AP */
|
2014-09-01 06:23:29 +02:00
|
|
|
#ifdef CONFIG_MESH
|
|
|
|
int (*start_ampe)(void *ctx, const u8 *sta_addr);
|
|
|
|
#endif /* CONFIG_MESH */
|
2008-02-28 02:34:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct wpa_authenticator * wpa_init(const u8 *addr,
|
|
|
|
struct wpa_auth_config *conf,
|
2017-01-26 16:24:06 +01:00
|
|
|
const struct wpa_auth_callbacks *cb,
|
|
|
|
void *cb_ctx);
|
2011-08-09 13:56:16 +02:00
|
|
|
int wpa_init_keys(struct wpa_authenticator *wpa_auth);
|
2008-02-28 02:34:43 +01:00
|
|
|
void wpa_deinit(struct wpa_authenticator *wpa_auth);
|
|
|
|
int wpa_reconfig(struct wpa_authenticator *wpa_auth,
|
|
|
|
struct wpa_auth_config *conf);
|
|
|
|
|
|
|
|
enum {
|
|
|
|
WPA_IE_OK, WPA_INVALID_IE, WPA_INVALID_GROUP, WPA_INVALID_PAIRWISE,
|
|
|
|
WPA_INVALID_AKMP, WPA_NOT_ENABLED, WPA_ALLOC_FAIL,
|
|
|
|
WPA_MGMT_FRAME_PROTECTION_VIOLATION, WPA_INVALID_MGMT_GROUP_CIPHER,
|
2017-06-17 22:48:52 +02:00
|
|
|
WPA_INVALID_MDIE, WPA_INVALID_PROTO, WPA_INVALID_PMKID
|
2008-02-28 02:34:43 +01:00
|
|
|
};
|
2017-01-31 13:38:44 +01:00
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
int wpa_validate_wpa_ie(struct wpa_authenticator *wpa_auth,
|
|
|
|
struct wpa_state_machine *sm,
|
|
|
|
const u8 *wpa_ie, size_t wpa_ie_len,
|
2017-03-12 00:26:43 +01:00
|
|
|
const u8 *mdie, size_t mdie_len,
|
|
|
|
const u8 *owe_dh, size_t owe_dh_len);
|
2013-07-23 20:25:21 +02:00
|
|
|
int wpa_validate_osen(struct wpa_authenticator *wpa_auth,
|
|
|
|
struct wpa_state_machine *sm,
|
|
|
|
const u8 *osen_ie, size_t osen_ie_len);
|
2008-06-17 10:21:11 +02:00
|
|
|
int wpa_auth_uses_mfp(struct wpa_state_machine *sm);
|
2008-02-28 02:34:43 +01:00
|
|
|
struct wpa_state_machine *
|
2013-09-01 10:05:19 +02:00
|
|
|
wpa_auth_sta_init(struct wpa_authenticator *wpa_auth, const u8 *addr,
|
|
|
|
const u8 *p2p_dev_addr);
|
2010-01-10 20:45:44 +01:00
|
|
|
int wpa_auth_sta_associated(struct wpa_authenticator *wpa_auth,
|
|
|
|
struct wpa_state_machine *sm);
|
2008-11-30 16:22:51 +01:00
|
|
|
void wpa_auth_sta_no_wpa(struct wpa_state_machine *sm);
|
2008-02-28 02:34:43 +01:00
|
|
|
void wpa_auth_sta_deinit(struct wpa_state_machine *sm);
|
|
|
|
void wpa_receive(struct wpa_authenticator *wpa_auth,
|
|
|
|
struct wpa_state_machine *sm,
|
|
|
|
u8 *data, size_t data_len);
|
2015-08-28 15:34:38 +02:00
|
|
|
enum wpa_event {
|
2008-02-28 02:34:43 +01:00
|
|
|
WPA_AUTH, WPA_ASSOC, WPA_DISASSOC, WPA_DEAUTH, WPA_REAUTH,
|
2017-07-14 15:15:35 +02:00
|
|
|
WPA_REAUTH_EAPOL, WPA_ASSOC_FT, WPA_ASSOC_FILS, WPA_DRV_STA_REMOVED
|
2015-08-28 15:34:38 +02:00
|
|
|
};
|
2008-02-28 02:34:43 +01:00
|
|
|
void wpa_remove_ptk(struct wpa_state_machine *sm);
|
2015-08-28 15:34:38 +02:00
|
|
|
int wpa_auth_sm_event(struct wpa_state_machine *sm, enum wpa_event event);
|
2008-02-28 02:34:43 +01:00
|
|
|
void wpa_auth_sm_notify(struct wpa_state_machine *sm);
|
|
|
|
void wpa_gtk_rekey(struct wpa_authenticator *wpa_auth);
|
|
|
|
int wpa_get_mib(struct wpa_authenticator *wpa_auth, char *buf, size_t buflen);
|
|
|
|
int wpa_get_mib_sta(struct wpa_state_machine *sm, char *buf, size_t buflen);
|
|
|
|
void wpa_auth_countermeasures_start(struct wpa_authenticator *wpa_auth);
|
|
|
|
int wpa_auth_pairwise_set(struct wpa_state_machine *sm);
|
2008-12-22 13:05:53 +01:00
|
|
|
int wpa_auth_get_pairwise(struct wpa_state_machine *sm);
|
2008-02-28 02:34:43 +01:00
|
|
|
int wpa_auth_sta_key_mgmt(struct wpa_state_machine *sm);
|
|
|
|
int wpa_auth_sta_wpa_version(struct wpa_state_machine *sm);
|
2017-07-14 15:15:35 +02:00
|
|
|
int wpa_auth_sta_ft_tk_already_set(struct wpa_state_machine *sm);
|
2017-08-25 15:24:18 +02:00
|
|
|
int wpa_auth_sta_fils_tk_already_set(struct wpa_state_machine *sm);
|
2008-02-28 02:34:43 +01:00
|
|
|
int wpa_auth_sta_clear_pmksa(struct wpa_state_machine *sm,
|
|
|
|
struct rsn_pmksa_cache_entry *entry);
|
|
|
|
struct rsn_pmksa_cache_entry *
|
|
|
|
wpa_auth_sta_get_pmksa(struct wpa_state_machine *sm);
|
|
|
|
void wpa_auth_sta_local_mic_failure_report(struct wpa_state_machine *sm);
|
|
|
|
const u8 * wpa_auth_get_wpa_ie(struct wpa_authenticator *wpa_auth,
|
|
|
|
size_t *len);
|
|
|
|
int wpa_auth_pmksa_add(struct wpa_state_machine *sm, const u8 *pmk,
|
2015-10-14 00:18:11 +02:00
|
|
|
unsigned int pmk_len,
|
2008-02-28 02:34:43 +01:00
|
|
|
int session_timeout, struct eapol_state_machine *eapol);
|
|
|
|
int wpa_auth_pmksa_add_preauth(struct wpa_authenticator *wpa_auth,
|
|
|
|
const u8 *pmk, size_t len, const u8 *sta_addr,
|
|
|
|
int session_timeout,
|
|
|
|
struct eapol_state_machine *eapol);
|
2014-10-18 12:00:29 +02:00
|
|
|
int wpa_auth_pmksa_add_sae(struct wpa_authenticator *wpa_auth, const u8 *addr,
|
2016-02-15 03:23:37 +01:00
|
|
|
const u8 *pmk, const u8 *pmkid);
|
2017-06-18 13:14:18 +02:00
|
|
|
int wpa_auth_pmksa_add2(struct wpa_authenticator *wpa_auth, const u8 *addr,
|
|
|
|
const u8 *pmk, size_t pmk_len, const u8 *pmkid,
|
|
|
|
int session_timeout, int akmp);
|
2013-04-05 17:55:32 +02:00
|
|
|
void wpa_auth_pmksa_remove(struct wpa_authenticator *wpa_auth,
|
|
|
|
const u8 *sta_addr);
|
2016-03-09 10:16:12 +01:00
|
|
|
int wpa_auth_pmksa_list(struct wpa_authenticator *wpa_auth, char *buf,
|
|
|
|
size_t len);
|
2016-03-09 10:16:13 +01:00
|
|
|
void wpa_auth_pmksa_flush(struct wpa_authenticator *wpa_auth);
|
2017-01-02 11:32:07 +01:00
|
|
|
int wpa_auth_pmksa_list_mesh(struct wpa_authenticator *wpa_auth, const u8 *addr,
|
|
|
|
char *buf, size_t len);
|
|
|
|
struct rsn_pmksa_cache_entry *
|
|
|
|
wpa_auth_pmksa_create_entry(const u8 *aa, const u8 *spa, const u8 *pmk,
|
|
|
|
const u8 *pmkid, int expiration);
|
|
|
|
int wpa_auth_pmksa_add_entry(struct wpa_authenticator *wpa_auth,
|
|
|
|
struct rsn_pmksa_cache_entry *entry);
|
2016-03-09 10:16:14 +01:00
|
|
|
struct rsn_pmksa_cache_entry *
|
2015-09-04 23:04:21 +02:00
|
|
|
wpa_auth_pmksa_get(struct wpa_authenticator *wpa_auth, const u8 *sta_addr,
|
|
|
|
const u8 *pmkid);
|
2017-02-21 11:18:58 +01:00
|
|
|
struct rsn_pmksa_cache_entry *
|
|
|
|
wpa_auth_pmksa_get_fils_cache_id(struct wpa_authenticator *wpa_auth,
|
|
|
|
const u8 *sta_addr, const u8 *pmkid);
|
2016-03-09 10:16:14 +01:00
|
|
|
void wpa_auth_pmksa_set_to_sm(struct rsn_pmksa_cache_entry *pmksa,
|
|
|
|
struct wpa_state_machine *sm,
|
|
|
|
struct wpa_authenticator *wpa_auth,
|
|
|
|
u8 *pmkid, u8 *pmk);
|
2008-02-28 02:34:43 +01:00
|
|
|
int wpa_auth_sta_set_vlan(struct wpa_state_machine *sm, int vlan_id);
|
2011-03-29 16:39:12 +02:00
|
|
|
void wpa_auth_eapol_key_tx_status(struct wpa_authenticator *wpa_auth,
|
|
|
|
struct wpa_state_machine *sm, int ack);
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2016-10-27 14:18:32 +02:00
|
|
|
#ifdef CONFIG_IEEE80211R_AP
|
2008-02-28 02:34:43 +01:00
|
|
|
u8 * wpa_sm_write_assoc_resp_ies(struct wpa_state_machine *sm, u8 *pos,
|
2009-03-09 21:25:58 +01:00
|
|
|
size_t max_len, int auth_alg,
|
|
|
|
const u8 *req_ies, size_t req_ies_len);
|
2008-02-28 02:34:43 +01:00
|
|
|
void wpa_ft_process_auth(struct wpa_state_machine *sm, const u8 *bssid,
|
|
|
|
u16 auth_transaction, const u8 *ies, size_t ies_len,
|
|
|
|
void (*cb)(void *ctx, const u8 *dst, const u8 *bssid,
|
|
|
|
u16 auth_transaction, u16 resp,
|
|
|
|
const u8 *ies, size_t ies_len),
|
|
|
|
void *ctx);
|
|
|
|
u16 wpa_ft_validate_reassoc(struct wpa_state_machine *sm, const u8 *ies,
|
|
|
|
size_t ies_len);
|
|
|
|
int wpa_ft_action_rx(struct wpa_state_machine *sm, const u8 *data, size_t len);
|
|
|
|
int wpa_ft_rrb_rx(struct wpa_authenticator *wpa_auth, const u8 *src_addr,
|
|
|
|
const u8 *data, size_t data_len);
|
2017-04-02 14:52:49 +02:00
|
|
|
void wpa_ft_rrb_oui_rx(struct wpa_authenticator *wpa_auth, const u8 *src_addr,
|
|
|
|
const u8 *dst_addr, u8 oui_suffix, const u8 *data,
|
|
|
|
size_t data_len);
|
2008-02-28 02:34:43 +01:00
|
|
|
void wpa_ft_push_pmk_r1(struct wpa_authenticator *wpa_auth, const u8 *addr);
|
2017-04-02 14:52:51 +02:00
|
|
|
void wpa_ft_deinit(struct wpa_authenticator *wpa_auth);
|
2017-04-02 14:52:52 +02:00
|
|
|
void wpa_ft_sta_deinit(struct wpa_state_machine *sm);
|
2016-10-27 14:18:32 +02:00
|
|
|
#endif /* CONFIG_IEEE80211R_AP */
|
2008-02-28 02:34:43 +01:00
|
|
|
|
2012-02-26 16:25:55 +01:00
|
|
|
void wpa_wnmsleep_rekey_gtk(struct wpa_state_machine *sm);
|
|
|
|
void wpa_set_wnmsleep(struct wpa_state_machine *sm, int flag);
|
|
|
|
int wpa_wnmsleep_gtk_subelem(struct wpa_state_machine *sm, u8 *pos);
|
|
|
|
int wpa_wnmsleep_igtk_subelem(struct wpa_state_machine *sm, u8 *pos);
|
|
|
|
|
2012-09-30 18:51:07 +02:00
|
|
|
int wpa_auth_uses_sae(struct wpa_state_machine *sm);
|
2013-12-28 12:41:02 +01:00
|
|
|
int wpa_auth_uses_ft_sae(struct wpa_state_machine *sm);
|
2012-09-30 18:51:07 +02:00
|
|
|
|
2013-03-16 18:13:31 +01:00
|
|
|
int wpa_auth_get_ip_addr(struct wpa_state_machine *sm, u8 *addr);
|
|
|
|
|
2015-01-16 14:55:39 +01:00
|
|
|
struct radius_das_attrs;
|
|
|
|
int wpa_auth_radius_das_disconnect_pmksa(struct wpa_authenticator *wpa_auth,
|
|
|
|
struct radius_das_attrs *attr);
|
2015-02-10 17:19:51 +01:00
|
|
|
void wpa_auth_reconfig_group_keys(struct wpa_authenticator *wpa_auth);
|
2015-01-16 14:55:39 +01:00
|
|
|
|
2015-10-05 16:14:26 +02:00
|
|
|
int wpa_auth_ensure_group(struct wpa_authenticator *wpa_auth, int vlan_id);
|
|
|
|
int wpa_auth_release_group(struct wpa_authenticator *wpa_auth, int vlan_id);
|
2015-09-04 23:04:21 +02:00
|
|
|
int fils_auth_pmk_to_ptk(struct wpa_state_machine *sm, const u8 *pmk,
|
2017-05-07 16:04:08 +02:00
|
|
|
size_t pmk_len, const u8 *snonce, const u8 *anonce,
|
2017-09-13 20:36:05 +02:00
|
|
|
const u8 *dhss, size_t dhss_len,
|
2017-05-07 16:04:08 +02:00
|
|
|
struct wpabuf *g_sta, struct wpabuf *g_ap);
|
2015-09-09 00:27:22 +02:00
|
|
|
int fils_decrypt_assoc(struct wpa_state_machine *sm, const u8 *fils_session,
|
|
|
|
const struct ieee80211_mgmt *mgmt, size_t frame_len,
|
|
|
|
u8 *pos, size_t left);
|
2015-09-09 14:43:53 +02:00
|
|
|
int fils_encrypt_assoc(struct wpa_state_machine *sm, u8 *buf,
|
2017-01-31 13:38:44 +01:00
|
|
|
size_t current_len, size_t max_len,
|
|
|
|
const struct wpabuf *hlp);
|
2015-09-09 18:32:44 +02:00
|
|
|
int fils_set_tk(struct wpa_state_machine *sm);
|
2017-04-21 17:42:00 +02:00
|
|
|
u8 * hostapd_eid_assoc_fils_session(struct wpa_state_machine *sm, u8 *eid,
|
2017-07-06 12:57:54 +02:00
|
|
|
const u8 *fils_session,
|
|
|
|
struct wpabuf *fils_hlp_resp);
|
2017-04-21 17:42:00 +02:00
|
|
|
const u8 * wpa_fils_validate_fils_session(struct wpa_state_machine *sm,
|
|
|
|
const u8 *ies, size_t ies_len,
|
|
|
|
const u8 *fils_session);
|
2017-04-21 17:42:00 +02:00
|
|
|
int wpa_fils_validate_key_confirm(struct wpa_state_machine *sm, const u8 *ies,
|
|
|
|
size_t ies_len);
|
2015-10-05 16:14:26 +02:00
|
|
|
|
2017-04-02 21:38:48 +02:00
|
|
|
int wpa_auth_write_fte(struct wpa_authenticator *wpa_auth, u8 *buf, size_t len);
|
2017-04-21 19:43:57 +02:00
|
|
|
void wpa_auth_get_fils_aead_params(struct wpa_state_machine *sm,
|
|
|
|
u8 *fils_anonce, u8 *fils_snonce,
|
|
|
|
u8 *fils_kek, size_t *fils_kek_len);
|
2017-10-08 12:49:45 +02:00
|
|
|
u8 * wpa_auth_write_assoc_resp_owe(struct wpa_state_machine *sm,
|
|
|
|
u8 *pos, size_t max_len,
|
|
|
|
const u8 *req_ies, size_t req_ies_len);
|
2017-04-02 21:38:48 +02:00
|
|
|
|
2017-10-19 11:16:18 +02:00
|
|
|
int wpa_auth_resend_m1(struct wpa_state_machine *sm, int change_anonce,
|
|
|
|
void (*cb)(void *ctx1, void *ctx2),
|
|
|
|
void *ctx1, void *ctx2);
|
|
|
|
int wpa_auth_resend_m3(struct wpa_state_machine *sm,
|
|
|
|
void (*cb)(void *ctx1, void *ctx2),
|
|
|
|
void *ctx1, void *ctx2);
|
|
|
|
int wpa_auth_resend_group_m1(struct wpa_state_machine *sm,
|
|
|
|
void (*cb)(void *ctx1, void *ctx2),
|
|
|
|
void *ctx1, void *ctx2);
|
2017-10-25 10:26:10 +02:00
|
|
|
int wpa_auth_rekey_gtk(struct wpa_authenticator *wpa_auth);
|
2017-10-14 15:53:27 +02:00
|
|
|
|
2008-02-28 02:34:43 +01:00
|
|
|
#endif /* WPA_AUTH_H */
|