1e5b75505Sopenharmony_ci/* 2e5b75505Sopenharmony_ci * WPA definitions shared between hostapd and wpa_supplicant 3e5b75505Sopenharmony_ci * Copyright (c) 2002-2018, Jouni Malinen <j@w1.fi> 4e5b75505Sopenharmony_ci * 5e5b75505Sopenharmony_ci * This software may be distributed under the terms of the BSD license. 6e5b75505Sopenharmony_ci * See README for more details. 7e5b75505Sopenharmony_ci */ 8e5b75505Sopenharmony_ci 9e5b75505Sopenharmony_ci#ifndef WPA_COMMON_H 10e5b75505Sopenharmony_ci#define WPA_COMMON_H 11e5b75505Sopenharmony_ci 12e5b75505Sopenharmony_ci/* IEEE 802.11i */ 13e5b75505Sopenharmony_ci#define PMKID_LEN 16 14e5b75505Sopenharmony_ci#define PMK_LEN 32 15e5b75505Sopenharmony_ci#define PMK_LEN_SUITE_B_192 48 16e5b75505Sopenharmony_ci#define PMK_LEN_MAX 64 17e5b75505Sopenharmony_ci#define WPA_REPLAY_COUNTER_LEN 8 18e5b75505Sopenharmony_ci#define WPA_NONCE_LEN 32 19e5b75505Sopenharmony_ci#define WPA_KEY_RSC_LEN 8 20e5b75505Sopenharmony_ci#define WPA_GMK_LEN 32 21e5b75505Sopenharmony_ci#define WPA_GTK_MAX_LEN 32 22e5b75505Sopenharmony_ci 23e5b75505Sopenharmony_ci#define OWE_DH_GROUP 19 24e5b75505Sopenharmony_ci 25e5b75505Sopenharmony_ci#define WPA_ALLOWED_PAIRWISE_CIPHERS \ 26e5b75505Sopenharmony_ci(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_TKIP | WPA_CIPHER_NONE | \ 27e5b75505Sopenharmony_ciWPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256) 28e5b75505Sopenharmony_ci#define WPA_ALLOWED_GROUP_CIPHERS \ 29e5b75505Sopenharmony_ci(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_TKIP | \ 30e5b75505Sopenharmony_ciWPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256 | \ 31e5b75505Sopenharmony_ciWPA_CIPHER_GTK_NOT_USED) 32e5b75505Sopenharmony_ci#define WPA_ALLOWED_GROUP_MGMT_CIPHERS \ 33e5b75505Sopenharmony_ci(WPA_CIPHER_AES_128_CMAC | WPA_CIPHER_BIP_GMAC_128 | WPA_CIPHER_BIP_GMAC_256 | \ 34e5b75505Sopenharmony_ciWPA_CIPHER_BIP_CMAC_256) 35e5b75505Sopenharmony_ci 36e5b75505Sopenharmony_ci#define WPA_SELECTOR_LEN 4 37e5b75505Sopenharmony_ci#define WPA_VERSION 1 38e5b75505Sopenharmony_ci#define RSN_SELECTOR_LEN 4 39e5b75505Sopenharmony_ci#define RSN_VERSION 1 40e5b75505Sopenharmony_ci 41e5b75505Sopenharmony_ci#define RSN_SELECTOR(a, b, c, d) \ 42e5b75505Sopenharmony_ci ((((u32) (a)) << 24) | (((u32) (b)) << 16) | (((u32) (c)) << 8) | \ 43e5b75505Sopenharmony_ci (u32) (d)) 44e5b75505Sopenharmony_ci 45e5b75505Sopenharmony_ci#define WPA_AUTH_KEY_MGMT_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0) 46e5b75505Sopenharmony_ci#define WPA_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 1) 47e5b75505Sopenharmony_ci#define WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 2) 48e5b75505Sopenharmony_ci#define WPA_AUTH_KEY_MGMT_CCKM RSN_SELECTOR(0x00, 0x40, 0x96, 0) 49e5b75505Sopenharmony_ci#define WPA_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0) 50e5b75505Sopenharmony_ci#define WPA_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x50, 0xf2, 2) 51e5b75505Sopenharmony_ci#define WPA_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x50, 0xf2, 4) 52e5b75505Sopenharmony_ci 53e5b75505Sopenharmony_ci 54e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 1) 55e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 2) 56e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_FT_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 3) 57e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_FT_PSK RSN_SELECTOR(0x00, 0x0f, 0xac, 4) 58e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_802_1X_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 5) 59e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_PSK_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 6) 60e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_TPK_HANDSHAKE RSN_SELECTOR(0x00, 0x0f, 0xac, 7) 61e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_SAE RSN_SELECTOR(0x00, 0x0f, 0xac, 8) 62e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_FT_SAE RSN_SELECTOR(0x00, 0x0f, 0xac, 9) 63e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_802_1X_SUITE_B RSN_SELECTOR(0x00, 0x0f, 0xac, 11) 64e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_802_1X_SUITE_B_192 RSN_SELECTOR(0x00, 0x0f, 0xac, 12) 65e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_FT_802_1X_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 13) 66e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_FILS_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 14) 67e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_FILS_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 15) 68e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_FT_FILS_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 16) 69e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_FT_FILS_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 17) 70e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_OWE RSN_SELECTOR(0x00, 0x0f, 0xac, 18) 71e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_CCKM RSN_SELECTOR(0x00, 0x40, 0x96, 0x00) 72e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_OSEN RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x01) 73e5b75505Sopenharmony_ci#define RSN_AUTH_KEY_MGMT_DPP RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x02) 74e5b75505Sopenharmony_ci 75e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x0f, 0xac, 0) 76e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_WEP40 RSN_SELECTOR(0x00, 0x0f, 0xac, 1) 77e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x0f, 0xac, 2) 78e5b75505Sopenharmony_ci#if 0 79e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_WRAP RSN_SELECTOR(0x00, 0x0f, 0xac, 3) 80e5b75505Sopenharmony_ci#endif 81e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 4) 82e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_WEP104 RSN_SELECTOR(0x00, 0x0f, 0xac, 5) 83e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_AES_128_CMAC RSN_SELECTOR(0x00, 0x0f, 0xac, 6) 84e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_NO_GROUP_ADDRESSED RSN_SELECTOR(0x00, 0x0f, 0xac, 7) 85e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_GCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 8) 86e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_GCMP_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 9) 87e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_CCMP_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 10) 88e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_BIP_GMAC_128 RSN_SELECTOR(0x00, 0x0f, 0xac, 11) 89e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_BIP_GMAC_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 12) 90e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_BIP_CMAC_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 13) 91e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_SMS4 RSN_SELECTOR(0x00, 0x14, 0x72, 1) 92e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_CKIP RSN_SELECTOR(0x00, 0x40, 0x96, 0) 93e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_CKIP_CMIC RSN_SELECTOR(0x00, 0x40, 0x96, 1) 94e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_CMIC RSN_SELECTOR(0x00, 0x40, 0x96, 2) 95e5b75505Sopenharmony_ci/* KRK is defined for nl80211 use only */ 96e5b75505Sopenharmony_ci#define RSN_CIPHER_SUITE_KRK RSN_SELECTOR(0x00, 0x40, 0x96, 255) 97e5b75505Sopenharmony_ci 98e5b75505Sopenharmony_ci/* EAPOL-Key Key Data Encapsulation 99e5b75505Sopenharmony_ci * GroupKey and PeerKey require encryption, otherwise, encryption is optional. 100e5b75505Sopenharmony_ci */ 101e5b75505Sopenharmony_ci#define RSN_KEY_DATA_GROUPKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 1) 102e5b75505Sopenharmony_ci#if 0 103e5b75505Sopenharmony_ci#define RSN_KEY_DATA_STAKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 2) 104e5b75505Sopenharmony_ci#endif 105e5b75505Sopenharmony_ci#define RSN_KEY_DATA_MAC_ADDR RSN_SELECTOR(0x00, 0x0f, 0xac, 3) 106e5b75505Sopenharmony_ci#define RSN_KEY_DATA_PMKID RSN_SELECTOR(0x00, 0x0f, 0xac, 4) 107e5b75505Sopenharmony_ci#ifdef CONFIG_IEEE80211W 108e5b75505Sopenharmony_ci#define RSN_KEY_DATA_IGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 9) 109e5b75505Sopenharmony_ci#endif /* CONFIG_IEEE80211W */ 110e5b75505Sopenharmony_ci#define RSN_KEY_DATA_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 10) 111e5b75505Sopenharmony_ci#define RSN_KEY_DATA_MULTIBAND_GTK RSN_SELECTOR(0x00, 0x0f, 0xac, 11) 112e5b75505Sopenharmony_ci#define RSN_KEY_DATA_MULTIBAND_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 12) 113e5b75505Sopenharmony_ci#define RSN_KEY_DATA_OCI RSN_SELECTOR(0x00, 0x0f, 0xac, 13) 114e5b75505Sopenharmony_ci 115e5b75505Sopenharmony_ci#define WFA_KEY_DATA_IP_ADDR_REQ RSN_SELECTOR(0x50, 0x6f, 0x9a, 4) 116e5b75505Sopenharmony_ci#define WFA_KEY_DATA_IP_ADDR_ALLOC RSN_SELECTOR(0x50, 0x6f, 0x9a, 5) 117e5b75505Sopenharmony_ci 118e5b75505Sopenharmony_ci#define WPA_OUI_TYPE RSN_SELECTOR(0x00, 0x50, 0xf2, 1) 119e5b75505Sopenharmony_ci 120e5b75505Sopenharmony_ci#define RSN_SELECTOR_PUT(a, val) WPA_PUT_BE32((u8 *) (a), (val)) 121e5b75505Sopenharmony_ci#define RSN_SELECTOR_GET(a) WPA_GET_BE32((const u8 *) (a)) 122e5b75505Sopenharmony_ci 123e5b75505Sopenharmony_ci#define RSN_NUM_REPLAY_COUNTERS_1 0 124e5b75505Sopenharmony_ci#define RSN_NUM_REPLAY_COUNTERS_2 1 125e5b75505Sopenharmony_ci#define RSN_NUM_REPLAY_COUNTERS_4 2 126e5b75505Sopenharmony_ci#define RSN_NUM_REPLAY_COUNTERS_16 3 127e5b75505Sopenharmony_ci 128e5b75505Sopenharmony_ci 129e5b75505Sopenharmony_ci#ifdef _MSC_VER 130e5b75505Sopenharmony_ci#pragma pack(push, 1) 131e5b75505Sopenharmony_ci#endif /* _MSC_VER */ 132e5b75505Sopenharmony_ci 133e5b75505Sopenharmony_ci#ifdef CONFIG_IEEE80211W 134e5b75505Sopenharmony_ci#define WPA_IGTK_LEN 16 135e5b75505Sopenharmony_ci#define WPA_IGTK_MAX_LEN 32 136e5b75505Sopenharmony_ci#endif /* CONFIG_IEEE80211W */ 137e5b75505Sopenharmony_ci 138e5b75505Sopenharmony_ci 139e5b75505Sopenharmony_ci/* IEEE 802.11, 7.3.2.25.3 RSN Capabilities */ 140e5b75505Sopenharmony_ci#define WPA_CAPABILITY_PREAUTH BIT(0) 141e5b75505Sopenharmony_ci#define WPA_CAPABILITY_NO_PAIRWISE BIT(1) 142e5b75505Sopenharmony_ci/* B2-B3: PTKSA Replay Counter */ 143e5b75505Sopenharmony_ci/* B4-B5: GTKSA Replay Counter */ 144e5b75505Sopenharmony_ci#define WPA_CAPABILITY_MFPR BIT(6) 145e5b75505Sopenharmony_ci#define WPA_CAPABILITY_MFPC BIT(7) 146e5b75505Sopenharmony_ci/* B8: Reserved */ 147e5b75505Sopenharmony_ci#define WPA_CAPABILITY_PEERKEY_ENABLED BIT(9) 148e5b75505Sopenharmony_ci#define WPA_CAPABILITY_SPP_A_MSDU_CAPABLE BIT(10) 149e5b75505Sopenharmony_ci#define WPA_CAPABILITY_SPP_A_MSDU_REQUIRED BIT(11) 150e5b75505Sopenharmony_ci#define WPA_CAPABILITY_PBAC BIT(12) 151e5b75505Sopenharmony_ci#define WPA_CAPABILITY_EXT_KEY_ID_FOR_UNICAST BIT(13) 152e5b75505Sopenharmony_ci#define WPA_CAPABILITY_OCVC BIT(14) 153e5b75505Sopenharmony_ci/* B15: Reserved */ 154e5b75505Sopenharmony_ci 155e5b75505Sopenharmony_ci 156e5b75505Sopenharmony_ci/* IEEE 802.11r */ 157e5b75505Sopenharmony_ci#define MOBILITY_DOMAIN_ID_LEN 2 158e5b75505Sopenharmony_ci#define FT_R0KH_ID_MAX_LEN 48 159e5b75505Sopenharmony_ci#define FT_R1KH_ID_LEN 6 160e5b75505Sopenharmony_ci#define WPA_PMK_NAME_LEN 16 161e5b75505Sopenharmony_ci 162e5b75505Sopenharmony_ci 163e5b75505Sopenharmony_ci/* IEEE 802.11, 8.5.2 EAPOL-Key frames */ 164e5b75505Sopenharmony_ci#define WPA_KEY_INFO_TYPE_MASK ((u16) (BIT(0) | BIT(1) | BIT(2))) 165e5b75505Sopenharmony_ci#define WPA_KEY_INFO_TYPE_AKM_DEFINED 0 166e5b75505Sopenharmony_ci#define WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 BIT(0) 167e5b75505Sopenharmony_ci#define WPA_KEY_INFO_TYPE_HMAC_SHA1_AES BIT(1) 168e5b75505Sopenharmony_ci#define WPA_KEY_INFO_TYPE_AES_128_CMAC 3 169e5b75505Sopenharmony_ci#define WPA_KEY_INFO_KEY_TYPE BIT(3) /* 1 = Pairwise, 0 = Group key */ 170e5b75505Sopenharmony_ci/* bit4..5 is used in WPA, but is reserved in IEEE 802.11i/RSN */ 171e5b75505Sopenharmony_ci#define WPA_KEY_INFO_KEY_INDEX_MASK (BIT(4) | BIT(5)) 172e5b75505Sopenharmony_ci#define WPA_KEY_INFO_KEY_INDEX_SHIFT 4 173e5b75505Sopenharmony_ci#define WPA_KEY_INFO_INSTALL BIT(6) /* pairwise */ 174e5b75505Sopenharmony_ci#define WPA_KEY_INFO_TXRX BIT(6) /* group */ 175e5b75505Sopenharmony_ci#define WPA_KEY_INFO_ACK BIT(7) 176e5b75505Sopenharmony_ci#define WPA_KEY_INFO_MIC BIT(8) 177e5b75505Sopenharmony_ci#define WPA_KEY_INFO_SECURE BIT(9) 178e5b75505Sopenharmony_ci#define WPA_KEY_INFO_ERROR BIT(10) 179e5b75505Sopenharmony_ci#define WPA_KEY_INFO_REQUEST BIT(11) 180e5b75505Sopenharmony_ci#define WPA_KEY_INFO_ENCR_KEY_DATA BIT(12) /* IEEE 802.11i/RSN only */ 181e5b75505Sopenharmony_ci#define WPA_KEY_INFO_SMK_MESSAGE BIT(13) 182e5b75505Sopenharmony_ci 183e5b75505Sopenharmony_ci 184e5b75505Sopenharmony_cistruct wpa_eapol_key { 185e5b75505Sopenharmony_ci u8 type; 186e5b75505Sopenharmony_ci /* Note: key_info, key_length, and key_data_length are unaligned */ 187e5b75505Sopenharmony_ci u8 key_info[2]; /* big endian */ 188e5b75505Sopenharmony_ci u8 key_length[2]; /* big endian */ 189e5b75505Sopenharmony_ci u8 replay_counter[WPA_REPLAY_COUNTER_LEN]; 190e5b75505Sopenharmony_ci u8 key_nonce[WPA_NONCE_LEN]; 191e5b75505Sopenharmony_ci u8 key_iv[16]; 192e5b75505Sopenharmony_ci u8 key_rsc[WPA_KEY_RSC_LEN]; 193e5b75505Sopenharmony_ci u8 key_id[8]; /* Reserved in IEEE 802.11i/RSN */ 194e5b75505Sopenharmony_ci /* variable length Key MIC field */ 195e5b75505Sopenharmony_ci /* big endian 2-octet Key Data Length field */ 196e5b75505Sopenharmony_ci /* followed by Key Data Length bytes of Key Data */ 197e5b75505Sopenharmony_ci} STRUCT_PACKED; 198e5b75505Sopenharmony_ci 199e5b75505Sopenharmony_ci#define WPA_EAPOL_KEY_MIC_MAX_LEN 32 200e5b75505Sopenharmony_ci#define WPA_KCK_MAX_LEN 32 201e5b75505Sopenharmony_ci#define WPA_KEK_MAX_LEN 64 202e5b75505Sopenharmony_ci#define WPA_TK_MAX_LEN 32 203e5b75505Sopenharmony_ci#define FILS_ICK_MAX_LEN 48 204e5b75505Sopenharmony_ci#define FILS_FT_MAX_LEN 48 205e5b75505Sopenharmony_ci 206e5b75505Sopenharmony_ci/** 207e5b75505Sopenharmony_ci * struct wpa_ptk - WPA Pairwise Transient Key 208e5b75505Sopenharmony_ci * IEEE Std 802.11i-2004 - 8.5.1.2 Pairwise key hierarchy 209e5b75505Sopenharmony_ci */ 210e5b75505Sopenharmony_cistruct wpa_ptk { 211e5b75505Sopenharmony_ci u8 kck[WPA_KCK_MAX_LEN]; /* EAPOL-Key Key Confirmation Key (KCK) */ 212e5b75505Sopenharmony_ci u8 kek[WPA_KEK_MAX_LEN]; /* EAPOL-Key Key Encryption Key (KEK) */ 213e5b75505Sopenharmony_ci u8 tk[WPA_TK_MAX_LEN]; /* Temporal Key (TK) */ 214e5b75505Sopenharmony_ci u8 kck2[WPA_KCK_MAX_LEN]; /* FT reasoc Key Confirmation Key (KCK2) */ 215e5b75505Sopenharmony_ci u8 kek2[WPA_KEK_MAX_LEN]; /* FT reassoc Key Encryption Key (KEK2) */ 216e5b75505Sopenharmony_ci size_t kck_len; 217e5b75505Sopenharmony_ci size_t kek_len; 218e5b75505Sopenharmony_ci size_t tk_len; 219e5b75505Sopenharmony_ci size_t kck2_len; 220e5b75505Sopenharmony_ci size_t kek2_len; 221e5b75505Sopenharmony_ci int installed; /* 1 if key has already been installed to driver */ 222e5b75505Sopenharmony_ci}; 223e5b75505Sopenharmony_ci 224e5b75505Sopenharmony_cistruct wpa_gtk { 225e5b75505Sopenharmony_ci u8 gtk[WPA_GTK_MAX_LEN]; 226e5b75505Sopenharmony_ci size_t gtk_len; 227e5b75505Sopenharmony_ci}; 228e5b75505Sopenharmony_ci 229e5b75505Sopenharmony_ci#ifdef CONFIG_IEEE80211W 230e5b75505Sopenharmony_cistruct wpa_igtk { 231e5b75505Sopenharmony_ci u8 igtk[WPA_IGTK_MAX_LEN]; 232e5b75505Sopenharmony_ci size_t igtk_len; 233e5b75505Sopenharmony_ci}; 234e5b75505Sopenharmony_ci#endif /* CONFIG_IEEE80211W */ 235e5b75505Sopenharmony_ci 236e5b75505Sopenharmony_ci/* WPA IE version 1 237e5b75505Sopenharmony_ci * 00-50-f2:1 (OUI:OUI type) 238e5b75505Sopenharmony_ci * 0x01 0x00 (version; little endian) 239e5b75505Sopenharmony_ci * (all following fields are optional:) 240e5b75505Sopenharmony_ci * Group Suite Selector (4 octets) (default: TKIP) 241e5b75505Sopenharmony_ci * Pairwise Suite Count (2 octets, little endian) (default: 1) 242e5b75505Sopenharmony_ci * Pairwise Suite List (4 * n octets) (default: TKIP) 243e5b75505Sopenharmony_ci * Authenticated Key Management Suite Count (2 octets, little endian) 244e5b75505Sopenharmony_ci * (default: 1) 245e5b75505Sopenharmony_ci * Authenticated Key Management Suite List (4 * n octets) 246e5b75505Sopenharmony_ci * (default: unspec 802.1X) 247e5b75505Sopenharmony_ci * WPA Capabilities (2 octets, little endian) (default: 0) 248e5b75505Sopenharmony_ci */ 249e5b75505Sopenharmony_ci 250e5b75505Sopenharmony_cistruct wpa_ie_hdr { 251e5b75505Sopenharmony_ci u8 elem_id; 252e5b75505Sopenharmony_ci u8 len; 253e5b75505Sopenharmony_ci u8 oui[4]; /* 24-bit OUI followed by 8-bit OUI type */ 254e5b75505Sopenharmony_ci u8 version[2]; /* little endian */ 255e5b75505Sopenharmony_ci} STRUCT_PACKED; 256e5b75505Sopenharmony_ci 257e5b75505Sopenharmony_ci 258e5b75505Sopenharmony_ci/* 1/4: PMKID 259e5b75505Sopenharmony_ci * 2/4: RSN IE 260e5b75505Sopenharmony_ci * 3/4: one or two RSN IEs + GTK IE (encrypted) 261e5b75505Sopenharmony_ci * 4/4: empty 262e5b75505Sopenharmony_ci * 1/2: GTK IE (encrypted) 263e5b75505Sopenharmony_ci * 2/2: empty 264e5b75505Sopenharmony_ci */ 265e5b75505Sopenharmony_ci 266e5b75505Sopenharmony_ci/* RSN IE version 1 267e5b75505Sopenharmony_ci * 0x01 0x00 (version; little endian) 268e5b75505Sopenharmony_ci * (all following fields are optional:) 269e5b75505Sopenharmony_ci * Group Suite Selector (4 octets) (default: CCMP) 270e5b75505Sopenharmony_ci * Pairwise Suite Count (2 octets, little endian) (default: 1) 271e5b75505Sopenharmony_ci * Pairwise Suite List (4 * n octets) (default: CCMP) 272e5b75505Sopenharmony_ci * Authenticated Key Management Suite Count (2 octets, little endian) 273e5b75505Sopenharmony_ci * (default: 1) 274e5b75505Sopenharmony_ci * Authenticated Key Management Suite List (4 * n octets) 275e5b75505Sopenharmony_ci * (default: unspec 802.1X) 276e5b75505Sopenharmony_ci * RSN Capabilities (2 octets, little endian) (default: 0) 277e5b75505Sopenharmony_ci * PMKID Count (2 octets) (default: 0) 278e5b75505Sopenharmony_ci * PMKID List (16 * n octets) 279e5b75505Sopenharmony_ci * Management Group Cipher Suite (4 octets) (default: AES-128-CMAC) 280e5b75505Sopenharmony_ci */ 281e5b75505Sopenharmony_ci 282e5b75505Sopenharmony_cistruct rsn_ie_hdr { 283e5b75505Sopenharmony_ci u8 elem_id; /* WLAN_EID_RSN */ 284e5b75505Sopenharmony_ci u8 len; 285e5b75505Sopenharmony_ci u8 version[2]; /* little endian */ 286e5b75505Sopenharmony_ci} STRUCT_PACKED; 287e5b75505Sopenharmony_ci 288e5b75505Sopenharmony_ci 289e5b75505Sopenharmony_cistruct rsn_error_kde { 290e5b75505Sopenharmony_ci be16 mui; 291e5b75505Sopenharmony_ci be16 error_type; 292e5b75505Sopenharmony_ci} STRUCT_PACKED; 293e5b75505Sopenharmony_ci 294e5b75505Sopenharmony_ci#ifdef CONFIG_IEEE80211W 295e5b75505Sopenharmony_ci#define WPA_IGTK_KDE_PREFIX_LEN (2 + 6) 296e5b75505Sopenharmony_cistruct wpa_igtk_kde { 297e5b75505Sopenharmony_ci u8 keyid[2]; 298e5b75505Sopenharmony_ci u8 pn[6]; 299e5b75505Sopenharmony_ci u8 igtk[WPA_IGTK_MAX_LEN]; 300e5b75505Sopenharmony_ci} STRUCT_PACKED; 301e5b75505Sopenharmony_ci#endif /* CONFIG_IEEE80211W */ 302e5b75505Sopenharmony_ci 303e5b75505Sopenharmony_cistruct rsn_mdie { 304e5b75505Sopenharmony_ci u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN]; 305e5b75505Sopenharmony_ci u8 ft_capab; 306e5b75505Sopenharmony_ci} STRUCT_PACKED; 307e5b75505Sopenharmony_ci 308e5b75505Sopenharmony_ci#define RSN_FT_CAPAB_FT_OVER_DS BIT(0) 309e5b75505Sopenharmony_ci#define RSN_FT_CAPAB_FT_RESOURCE_REQ_SUPP BIT(1) 310e5b75505Sopenharmony_ci 311e5b75505Sopenharmony_cistruct rsn_ftie { 312e5b75505Sopenharmony_ci u8 mic_control[2]; 313e5b75505Sopenharmony_ci u8 mic[16]; 314e5b75505Sopenharmony_ci u8 anonce[WPA_NONCE_LEN]; 315e5b75505Sopenharmony_ci u8 snonce[WPA_NONCE_LEN]; 316e5b75505Sopenharmony_ci /* followed by optional parameters */ 317e5b75505Sopenharmony_ci} STRUCT_PACKED; 318e5b75505Sopenharmony_ci 319e5b75505Sopenharmony_cistruct rsn_ftie_sha384 { 320e5b75505Sopenharmony_ci u8 mic_control[2]; 321e5b75505Sopenharmony_ci u8 mic[24]; 322e5b75505Sopenharmony_ci u8 anonce[WPA_NONCE_LEN]; 323e5b75505Sopenharmony_ci u8 snonce[WPA_NONCE_LEN]; 324e5b75505Sopenharmony_ci /* followed by optional parameters */ 325e5b75505Sopenharmony_ci} STRUCT_PACKED; 326e5b75505Sopenharmony_ci 327e5b75505Sopenharmony_ci#define FTIE_SUBELEM_R1KH_ID 1 328e5b75505Sopenharmony_ci#define FTIE_SUBELEM_GTK 2 329e5b75505Sopenharmony_ci#define FTIE_SUBELEM_R0KH_ID 3 330e5b75505Sopenharmony_ci#define FTIE_SUBELEM_IGTK 4 331e5b75505Sopenharmony_ci#define FTIE_SUBELEM_OCI 5 332e5b75505Sopenharmony_ci 333e5b75505Sopenharmony_cistruct rsn_rdie { 334e5b75505Sopenharmony_ci u8 id; 335e5b75505Sopenharmony_ci u8 descr_count; 336e5b75505Sopenharmony_ci le16 status_code; 337e5b75505Sopenharmony_ci} STRUCT_PACKED; 338e5b75505Sopenharmony_ci 339e5b75505Sopenharmony_ci 340e5b75505Sopenharmony_ci#ifdef _MSC_VER 341e5b75505Sopenharmony_ci#pragma pack(pop) 342e5b75505Sopenharmony_ci#endif /* _MSC_VER */ 343e5b75505Sopenharmony_ci 344e5b75505Sopenharmony_ci 345e5b75505Sopenharmony_ciint wpa_eapol_key_mic(const u8 *key, size_t key_len, int akmp, int ver, 346e5b75505Sopenharmony_ci const u8 *buf, size_t len, u8 *mic); 347e5b75505Sopenharmony_ciint wpa_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const char *label, 348e5b75505Sopenharmony_ci const u8 *addr1, const u8 *addr2, 349e5b75505Sopenharmony_ci const u8 *nonce1, const u8 *nonce2, 350e5b75505Sopenharmony_ci struct wpa_ptk *ptk, int akmp, int cipher, 351e5b75505Sopenharmony_ci const u8 *z, size_t z_len); 352e5b75505Sopenharmony_ciint fils_rmsk_to_pmk(int akmp, const u8 *rmsk, size_t rmsk_len, 353e5b75505Sopenharmony_ci const u8 *snonce, const u8 *anonce, const u8 *dh_ss, 354e5b75505Sopenharmony_ci size_t dh_ss_len, u8 *pmk, size_t *pmk_len); 355e5b75505Sopenharmony_ciint fils_pmkid_erp(int akmp, const u8 *reauth, size_t reauth_len, 356e5b75505Sopenharmony_ci u8 *pmkid); 357e5b75505Sopenharmony_ciint fils_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const u8 *spa, const u8 *aa, 358e5b75505Sopenharmony_ci const u8 *snonce, const u8 *anonce, const u8 *dhss, 359e5b75505Sopenharmony_ci size_t dhss_len, struct wpa_ptk *ptk, 360e5b75505Sopenharmony_ci u8 *ick, size_t *ick_len, int akmp, int cipher, 361e5b75505Sopenharmony_ci u8 *fils_ft, size_t *fils_ft_len); 362e5b75505Sopenharmony_ciint fils_key_auth_sk(const u8 *ick, size_t ick_len, const u8 *snonce, 363e5b75505Sopenharmony_ci const u8 *anonce, const u8 *sta_addr, const u8 *bssid, 364e5b75505Sopenharmony_ci const u8 *g_sta, size_t g_sta_len, 365e5b75505Sopenharmony_ci const u8 *g_ap, size_t g_ap_len, 366e5b75505Sopenharmony_ci int akmp, u8 *key_auth_sta, u8 *key_auth_ap, 367e5b75505Sopenharmony_ci size_t *key_auth_len); 368e5b75505Sopenharmony_ci 369e5b75505Sopenharmony_ci#ifdef CONFIG_IEEE80211R 370e5b75505Sopenharmony_ciint wpa_ft_mic(const u8 *kck, size_t kck_len, const u8 *sta_addr, 371e5b75505Sopenharmony_ci const u8 *ap_addr, u8 transaction_seqnum, 372e5b75505Sopenharmony_ci const u8 *mdie, size_t mdie_len, 373e5b75505Sopenharmony_ci const u8 *ftie, size_t ftie_len, 374e5b75505Sopenharmony_ci const u8 *rsnie, size_t rsnie_len, 375e5b75505Sopenharmony_ci const u8 *ric, size_t ric_len, u8 *mic); 376e5b75505Sopenharmony_ciint wpa_derive_pmk_r0(const u8 *xxkey, size_t xxkey_len, 377e5b75505Sopenharmony_ci const u8 *ssid, size_t ssid_len, 378e5b75505Sopenharmony_ci const u8 *mdid, const u8 *r0kh_id, size_t r0kh_id_len, 379e5b75505Sopenharmony_ci const u8 *s0kh_id, u8 *pmk_r0, u8 *pmk_r0_name, 380e5b75505Sopenharmony_ci int use_sha384); 381e5b75505Sopenharmony_ciint wpa_derive_pmk_r1_name(const u8 *pmk_r0_name, const u8 *r1kh_id, 382e5b75505Sopenharmony_ci const u8 *s1kh_id, u8 *pmk_r1_name, int use_sha384); 383e5b75505Sopenharmony_ciint wpa_derive_pmk_r1(const u8 *pmk_r0, size_t pmk_r0_len, 384e5b75505Sopenharmony_ci const u8 *pmk_r0_name, 385e5b75505Sopenharmony_ci const u8 *r1kh_id, const u8 *s1kh_id, 386e5b75505Sopenharmony_ci u8 *pmk_r1, u8 *pmk_r1_name); 387e5b75505Sopenharmony_ciint wpa_pmk_r1_to_ptk(const u8 *pmk_r1, size_t pmk_r1_len, const u8 *snonce, 388e5b75505Sopenharmony_ci const u8 *anonce, const u8 *sta_addr, const u8 *bssid, 389e5b75505Sopenharmony_ci const u8 *pmk_r1_name, 390e5b75505Sopenharmony_ci struct wpa_ptk *ptk, u8 *ptk_name, int akmp, int cipher); 391e5b75505Sopenharmony_ci#endif /* CONFIG_IEEE80211R */ 392e5b75505Sopenharmony_ci 393e5b75505Sopenharmony_cistruct wpa_ie_data { 394e5b75505Sopenharmony_ci int proto; 395e5b75505Sopenharmony_ci int pairwise_cipher; 396e5b75505Sopenharmony_ci int has_pairwise; 397e5b75505Sopenharmony_ci int group_cipher; 398e5b75505Sopenharmony_ci int has_group; 399e5b75505Sopenharmony_ci int key_mgmt; 400e5b75505Sopenharmony_ci int capabilities; 401e5b75505Sopenharmony_ci size_t num_pmkid; 402e5b75505Sopenharmony_ci const u8 *pmkid; 403e5b75505Sopenharmony_ci int mgmt_group_cipher; 404e5b75505Sopenharmony_ci}; 405e5b75505Sopenharmony_ci 406e5b75505Sopenharmony_ci 407e5b75505Sopenharmony_ciint wpa_parse_wpa_ie_rsn(const u8 *rsn_ie, size_t rsn_ie_len, 408e5b75505Sopenharmony_ci struct wpa_ie_data *data); 409e5b75505Sopenharmony_ciint wpa_parse_wpa_ie_wpa(const u8 *wpa_ie, size_t wpa_ie_len, 410e5b75505Sopenharmony_ci struct wpa_ie_data *data); 411e5b75505Sopenharmony_ciint wpa_default_rsn_cipher(int freq); 412e5b75505Sopenharmony_ci 413e5b75505Sopenharmony_civoid rsn_pmkid(const u8 *pmk, size_t pmk_len, const u8 *aa, const u8 *spa, 414e5b75505Sopenharmony_ci u8 *pmkid, int akmp); 415e5b75505Sopenharmony_ci#ifdef CONFIG_SUITEB 416e5b75505Sopenharmony_ciint rsn_pmkid_suite_b(const u8 *kck, size_t kck_len, const u8 *aa, 417e5b75505Sopenharmony_ci const u8 *spa, u8 *pmkid); 418e5b75505Sopenharmony_ci#else /* CONFIG_SUITEB */ 419e5b75505Sopenharmony_cistatic inline int rsn_pmkid_suite_b(const u8 *kck, size_t kck_len, const u8 *aa, 420e5b75505Sopenharmony_ci const u8 *spa, u8 *pmkid) 421e5b75505Sopenharmony_ci{ 422e5b75505Sopenharmony_ci return -1; 423e5b75505Sopenharmony_ci} 424e5b75505Sopenharmony_ci#endif /* CONFIG_SUITEB */ 425e5b75505Sopenharmony_ci#ifdef CONFIG_SUITEB192 426e5b75505Sopenharmony_ciint rsn_pmkid_suite_b_192(const u8 *kck, size_t kck_len, const u8 *aa, 427e5b75505Sopenharmony_ci const u8 *spa, u8 *pmkid); 428e5b75505Sopenharmony_ci#else /* CONFIG_SUITEB192 */ 429e5b75505Sopenharmony_cistatic inline int rsn_pmkid_suite_b_192(const u8 *kck, size_t kck_len, 430e5b75505Sopenharmony_ci const u8 *aa, const u8 *spa, u8 *pmkid) 431e5b75505Sopenharmony_ci{ 432e5b75505Sopenharmony_ci return -1; 433e5b75505Sopenharmony_ci} 434e5b75505Sopenharmony_ci#endif /* CONFIG_SUITEB192 */ 435e5b75505Sopenharmony_ci 436e5b75505Sopenharmony_ciconst char * wpa_cipher_txt(int cipher); 437e5b75505Sopenharmony_ciconst char * wpa_key_mgmt_txt(int key_mgmt, int proto); 438e5b75505Sopenharmony_ciu32 wpa_akm_to_suite(int akm); 439e5b75505Sopenharmony_ciint wpa_compare_rsn_ie(int ft_initial_assoc, 440e5b75505Sopenharmony_ci const u8 *ie1, size_t ie1len, 441e5b75505Sopenharmony_ci const u8 *ie2, size_t ie2len); 442e5b75505Sopenharmony_ciint wpa_insert_pmkid(u8 *ies, size_t *ies_len, const u8 *pmkid); 443e5b75505Sopenharmony_ci 444e5b75505Sopenharmony_cistruct wpa_ft_ies { 445e5b75505Sopenharmony_ci const u8 *mdie; 446e5b75505Sopenharmony_ci size_t mdie_len; 447e5b75505Sopenharmony_ci const u8 *ftie; 448e5b75505Sopenharmony_ci size_t ftie_len; 449e5b75505Sopenharmony_ci const u8 *r1kh_id; 450e5b75505Sopenharmony_ci const u8 *gtk; 451e5b75505Sopenharmony_ci size_t gtk_len; 452e5b75505Sopenharmony_ci const u8 *r0kh_id; 453e5b75505Sopenharmony_ci size_t r0kh_id_len; 454e5b75505Sopenharmony_ci const u8 *rsn; 455e5b75505Sopenharmony_ci size_t rsn_len; 456e5b75505Sopenharmony_ci const u8 *rsn_pmkid; 457e5b75505Sopenharmony_ci const u8 *tie; 458e5b75505Sopenharmony_ci size_t tie_len; 459e5b75505Sopenharmony_ci const u8 *igtk; 460e5b75505Sopenharmony_ci size_t igtk_len; 461e5b75505Sopenharmony_ci#ifdef CONFIG_OCV 462e5b75505Sopenharmony_ci const u8 *oci; 463e5b75505Sopenharmony_ci size_t oci_len; 464e5b75505Sopenharmony_ci#endif /* CONFIG_OCV */ 465e5b75505Sopenharmony_ci const u8 *ric; 466e5b75505Sopenharmony_ci size_t ric_len; 467e5b75505Sopenharmony_ci int key_mgmt; 468e5b75505Sopenharmony_ci int pairwise_cipher; 469e5b75505Sopenharmony_ci}; 470e5b75505Sopenharmony_ci 471e5b75505Sopenharmony_ciint wpa_ft_parse_ies(const u8 *ies, size_t ies_len, struct wpa_ft_ies *parse, 472e5b75505Sopenharmony_ci int use_sha384); 473e5b75505Sopenharmony_ci 474e5b75505Sopenharmony_ciint wpa_cipher_key_len(int cipher); 475e5b75505Sopenharmony_ciint wpa_cipher_rsc_len(int cipher); 476e5b75505Sopenharmony_cienum wpa_alg wpa_cipher_to_alg(int cipher); 477e5b75505Sopenharmony_ciint wpa_cipher_valid_group(int cipher); 478e5b75505Sopenharmony_ciint wpa_cipher_valid_pairwise(int cipher); 479e5b75505Sopenharmony_ciint wpa_cipher_valid_mgmt_group(int cipher); 480e5b75505Sopenharmony_ciu32 wpa_cipher_to_suite(int proto, int cipher); 481e5b75505Sopenharmony_ciint rsn_cipher_put_suites(u8 *pos, int ciphers); 482e5b75505Sopenharmony_ciint wpa_cipher_put_suites(u8 *pos, int ciphers); 483e5b75505Sopenharmony_ciint wpa_pick_pairwise_cipher(int ciphers, int none_allowed); 484e5b75505Sopenharmony_ciint wpa_pick_group_cipher(int ciphers); 485e5b75505Sopenharmony_ciint wpa_parse_cipher(const char *value); 486e5b75505Sopenharmony_ciint wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim); 487e5b75505Sopenharmony_ciint wpa_select_ap_group_cipher(int wpa, int wpa_pairwise, int rsn_pairwise); 488e5b75505Sopenharmony_ciunsigned int wpa_mic_len(int akmp, size_t pmk_len); 489e5b75505Sopenharmony_ciint wpa_use_akm_defined(int akmp); 490e5b75505Sopenharmony_ciint wpa_use_cmac(int akmp); 491e5b75505Sopenharmony_ciint wpa_use_aes_key_wrap(int akmp); 492e5b75505Sopenharmony_ciint fils_domain_name_hash(const char *domain, u8 *hash); 493e5b75505Sopenharmony_ci 494e5b75505Sopenharmony_ci#endif /* WPA_COMMON_H */ 495