blob: 71b423cbf39881a59d6c91f0bf601f9a02de44e6 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA definitions shared between hostapd and wpa_supplicant
Roshan Pius3a1667e2018-07-03 15:17:14 -07003 * Copyright (c) 2002-2018, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#ifndef WPA_COMMON_H
10#define WPA_COMMON_H
11
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070012/* IEEE 802.11i */
13#define PMKID_LEN 16
14#define PMK_LEN 32
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080015#define PMK_LEN_SUITE_B_192 48
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070016#define PMK_LEN_MAX 64
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070017#define WPA_REPLAY_COUNTER_LEN 8
18#define WPA_NONCE_LEN 32
19#define WPA_KEY_RSC_LEN 8
20#define WPA_GMK_LEN 32
21#define WPA_GTK_MAX_LEN 32
Hai Shalom60840252021-02-19 19:02:11 -080022#define WPA_PASN_PMK_LEN 32
23#define WPA_PASN_MAX_MIC_LEN 24
24#define WPA_MAX_RSNXE_LEN 4
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070025
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070026#define OWE_DH_GROUP 19
27
Hai Shalomb755a2a2020-04-23 21:49:02 -070028#ifdef CONFIG_NO_TKIP
29#define WPA_ALLOWED_PAIRWISE_CIPHERS \
30(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_NONE | \
31WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256)
32#define WPA_ALLOWED_GROUP_CIPHERS \
33(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | \
34WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256 | \
35WPA_CIPHER_GTK_NOT_USED)
36#else /* CONFIG_NO_TKIP */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080037#define WPA_ALLOWED_PAIRWISE_CIPHERS \
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080038(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_TKIP | WPA_CIPHER_NONE | \
39WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256)
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080040#define WPA_ALLOWED_GROUP_CIPHERS \
Dmitry Shmidt41712582015-06-29 11:02:15 -070041(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_TKIP | \
42WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256 | \
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080043WPA_CIPHER_GTK_NOT_USED)
Hai Shalomb755a2a2020-04-23 21:49:02 -070044#endif /* CONFIG_NO_TKIP */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070045#define WPA_ALLOWED_GROUP_MGMT_CIPHERS \
46(WPA_CIPHER_AES_128_CMAC | WPA_CIPHER_BIP_GMAC_128 | WPA_CIPHER_BIP_GMAC_256 | \
47WPA_CIPHER_BIP_CMAC_256)
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080048
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070049#define WPA_SELECTOR_LEN 4
50#define WPA_VERSION 1
51#define RSN_SELECTOR_LEN 4
52#define RSN_VERSION 1
53
54#define RSN_SELECTOR(a, b, c, d) \
55 ((((u32) (a)) << 24) | (((u32) (b)) << 16) | (((u32) (c)) << 8) | \
56 (u32) (d))
57
58#define WPA_AUTH_KEY_MGMT_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0)
59#define WPA_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 1)
60#define WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 2)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080061#define WPA_AUTH_KEY_MGMT_CCKM RSN_SELECTOR(0x00, 0x40, 0x96, 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070062#define WPA_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070063#define WPA_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x50, 0xf2, 2)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070064#define WPA_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x50, 0xf2, 4)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070065
66
67#define RSN_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
68#define RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070069#define RSN_AUTH_KEY_MGMT_FT_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
70#define RSN_AUTH_KEY_MGMT_FT_PSK RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070071#define RSN_AUTH_KEY_MGMT_802_1X_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
72#define RSN_AUTH_KEY_MGMT_PSK_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
73#define RSN_AUTH_KEY_MGMT_TPK_HANDSHAKE RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080074#define RSN_AUTH_KEY_MGMT_SAE RSN_SELECTOR(0x00, 0x0f, 0xac, 8)
75#define RSN_AUTH_KEY_MGMT_FT_SAE RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -080076#define RSN_AUTH_KEY_MGMT_802_1X_SUITE_B RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
Dmitry Shmidt807291d2015-01-27 13:40:23 -080077#define RSN_AUTH_KEY_MGMT_802_1X_SUITE_B_192 RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
Roshan Pius3a1667e2018-07-03 15:17:14 -070078#define RSN_AUTH_KEY_MGMT_FT_802_1X_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 13)
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -080079#define RSN_AUTH_KEY_MGMT_FILS_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 14)
80#define RSN_AUTH_KEY_MGMT_FILS_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 15)
81#define RSN_AUTH_KEY_MGMT_FT_FILS_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 16)
82#define RSN_AUTH_KEY_MGMT_FT_FILS_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 17)
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070083#define RSN_AUTH_KEY_MGMT_OWE RSN_SELECTOR(0x00, 0x0f, 0xac, 18)
Sunil Ravi89eba102022-09-13 21:04:37 -070084#define RSN_AUTH_KEY_MGMT_FT_PSK_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 19)
85#define RSN_AUTH_KEY_MGMT_PSK_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 20)
Hai Shalom60840252021-02-19 19:02:11 -080086#define RSN_AUTH_KEY_MGMT_PASN RSN_SELECTOR(0x00, 0x0f, 0xac, 21)
Sunil Ravi89eba102022-09-13 21:04:37 -070087#define RSN_AUTH_KEY_MGMT_FT_802_1X_SHA384_UNRESTRICTED \
88 RSN_SELECTOR(0x00, 0x0f, 0xac, 22)
89#define RSN_AUTH_KEY_MGMT_802_1X_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 23)
90#define RSN_AUTH_KEY_MGMT_SAE_EXT_KEY RSN_SELECTOR(0x00, 0x0f, 0xac, 24)
91#define RSN_AUTH_KEY_MGMT_FT_SAE_EXT_KEY RSN_SELECTOR(0x00, 0x0f, 0xac, 25)
Hai Shalom60840252021-02-19 19:02:11 -080092
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080093#define RSN_AUTH_KEY_MGMT_CCKM RSN_SELECTOR(0x00, 0x40, 0x96, 0x00)
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080094#define RSN_AUTH_KEY_MGMT_OSEN RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x01)
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070095#define RSN_AUTH_KEY_MGMT_DPP RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x02)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070096
97#define RSN_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x0f, 0xac, 0)
Paul Stewart092955c2017-02-06 09:13:09 -080098#define RSN_CIPHER_SUITE_WEP40 RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070099#define RSN_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
100#if 0
101#define RSN_CIPHER_SUITE_WRAP RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
102#endif
103#define RSN_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
Paul Stewart092955c2017-02-06 09:13:09 -0800104#define RSN_CIPHER_SUITE_WEP104 RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700105#define RSN_CIPHER_SUITE_AES_128_CMAC RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700106#define RSN_CIPHER_SUITE_NO_GROUP_ADDRESSED RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700107#define RSN_CIPHER_SUITE_GCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 8)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800108#define RSN_CIPHER_SUITE_GCMP_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
109#define RSN_CIPHER_SUITE_CCMP_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 10)
110#define RSN_CIPHER_SUITE_BIP_GMAC_128 RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
111#define RSN_CIPHER_SUITE_BIP_GMAC_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
112#define RSN_CIPHER_SUITE_BIP_CMAC_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 13)
Paul Stewart092955c2017-02-06 09:13:09 -0800113#define RSN_CIPHER_SUITE_SMS4 RSN_SELECTOR(0x00, 0x14, 0x72, 1)
114#define RSN_CIPHER_SUITE_CKIP RSN_SELECTOR(0x00, 0x40, 0x96, 0)
115#define RSN_CIPHER_SUITE_CKIP_CMIC RSN_SELECTOR(0x00, 0x40, 0x96, 1)
116#define RSN_CIPHER_SUITE_CMIC RSN_SELECTOR(0x00, 0x40, 0x96, 2)
117/* KRK is defined for nl80211 use only */
118#define RSN_CIPHER_SUITE_KRK RSN_SELECTOR(0x00, 0x40, 0x96, 255)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700119
120/* EAPOL-Key Key Data Encapsulation
121 * GroupKey and PeerKey require encryption, otherwise, encryption is optional.
122 */
123#define RSN_KEY_DATA_GROUPKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
124#if 0
125#define RSN_KEY_DATA_STAKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
126#endif
127#define RSN_KEY_DATA_MAC_ADDR RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
128#define RSN_KEY_DATA_PMKID RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700129#define RSN_KEY_DATA_IGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700130#define RSN_KEY_DATA_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 10)
131#define RSN_KEY_DATA_MULTIBAND_GTK RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
132#define RSN_KEY_DATA_MULTIBAND_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
Hai Shalom74f70d42019-02-11 14:42:39 -0800133#define RSN_KEY_DATA_OCI RSN_SELECTOR(0x00, 0x0f, 0xac, 13)
Hai Shalomfdcde762020-04-02 11:19:20 -0700134#define RSN_KEY_DATA_BIGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 14)
Sunil Ravi89eba102022-09-13 21:04:37 -0700135#define RSN_KEY_DATA_MLO_GTK RSN_SELECTOR(0x00, 0x0f, 0xac, 16)
136#define RSN_KEY_DATA_MLO_IGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 17)
137#define RSN_KEY_DATA_MLO_BIGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 18)
138#define RSN_KEY_DATA_MLO_LINK RSN_SELECTOR(0x00, 0x0f, 0xac, 19)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700139
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800140#define WFA_KEY_DATA_IP_ADDR_REQ RSN_SELECTOR(0x50, 0x6f, 0x9a, 4)
141#define WFA_KEY_DATA_IP_ADDR_ALLOC RSN_SELECTOR(0x50, 0x6f, 0x9a, 5)
Hai Shalomfdcde762020-04-02 11:19:20 -0700142#define WFA_KEY_DATA_TRANSITION_DISABLE RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x20)
Hai Shalom4fbc08f2020-05-18 12:37:00 -0700143#define WFA_KEY_DATA_DPP RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x21)
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800144
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700145#define WPA_OUI_TYPE RSN_SELECTOR(0x00, 0x50, 0xf2, 1)
146
147#define RSN_SELECTOR_PUT(a, val) WPA_PUT_BE32((u8 *) (a), (val))
148#define RSN_SELECTOR_GET(a) WPA_GET_BE32((const u8 *) (a))
149
150#define RSN_NUM_REPLAY_COUNTERS_1 0
151#define RSN_NUM_REPLAY_COUNTERS_2 1
152#define RSN_NUM_REPLAY_COUNTERS_4 2
153#define RSN_NUM_REPLAY_COUNTERS_16 3
154
155
156#ifdef _MSC_VER
157#pragma pack(push, 1)
158#endif /* _MSC_VER */
159
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700160#define WPA_IGTK_LEN 16
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700161#define WPA_IGTK_MAX_LEN 32
Hai Shalomfdcde762020-04-02 11:19:20 -0700162#define WPA_BIGTK_LEN 16
163#define WPA_BIGTK_MAX_LEN 32
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700164
165
166/* IEEE 802.11, 7.3.2.25.3 RSN Capabilities */
167#define WPA_CAPABILITY_PREAUTH BIT(0)
168#define WPA_CAPABILITY_NO_PAIRWISE BIT(1)
169/* B2-B3: PTKSA Replay Counter */
170/* B4-B5: GTKSA Replay Counter */
171#define WPA_CAPABILITY_MFPR BIT(6)
172#define WPA_CAPABILITY_MFPC BIT(7)
173/* B8: Reserved */
174#define WPA_CAPABILITY_PEERKEY_ENABLED BIT(9)
175#define WPA_CAPABILITY_SPP_A_MSDU_CAPABLE BIT(10)
176#define WPA_CAPABILITY_SPP_A_MSDU_REQUIRED BIT(11)
177#define WPA_CAPABILITY_PBAC BIT(12)
178#define WPA_CAPABILITY_EXT_KEY_ID_FOR_UNICAST BIT(13)
Hai Shalom74f70d42019-02-11 14:42:39 -0800179#define WPA_CAPABILITY_OCVC BIT(14)
180/* B15: Reserved */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700181
182
183/* IEEE 802.11r */
184#define MOBILITY_DOMAIN_ID_LEN 2
185#define FT_R0KH_ID_MAX_LEN 48
186#define FT_R1KH_ID_LEN 6
187#define WPA_PMK_NAME_LEN 16
188
189
190/* IEEE 802.11, 8.5.2 EAPOL-Key frames */
191#define WPA_KEY_INFO_TYPE_MASK ((u16) (BIT(0) | BIT(1) | BIT(2)))
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800192#define WPA_KEY_INFO_TYPE_AKM_DEFINED 0
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700193#define WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 BIT(0)
194#define WPA_KEY_INFO_TYPE_HMAC_SHA1_AES BIT(1)
195#define WPA_KEY_INFO_TYPE_AES_128_CMAC 3
196#define WPA_KEY_INFO_KEY_TYPE BIT(3) /* 1 = Pairwise, 0 = Group key */
197/* bit4..5 is used in WPA, but is reserved in IEEE 802.11i/RSN */
198#define WPA_KEY_INFO_KEY_INDEX_MASK (BIT(4) | BIT(5))
199#define WPA_KEY_INFO_KEY_INDEX_SHIFT 4
200#define WPA_KEY_INFO_INSTALL BIT(6) /* pairwise */
201#define WPA_KEY_INFO_TXRX BIT(6) /* group */
202#define WPA_KEY_INFO_ACK BIT(7)
203#define WPA_KEY_INFO_MIC BIT(8)
204#define WPA_KEY_INFO_SECURE BIT(9)
205#define WPA_KEY_INFO_ERROR BIT(10)
206#define WPA_KEY_INFO_REQUEST BIT(11)
207#define WPA_KEY_INFO_ENCR_KEY_DATA BIT(12) /* IEEE 802.11i/RSN only */
208#define WPA_KEY_INFO_SMK_MESSAGE BIT(13)
209
210
211struct wpa_eapol_key {
212 u8 type;
213 /* Note: key_info, key_length, and key_data_length are unaligned */
214 u8 key_info[2]; /* big endian */
215 u8 key_length[2]; /* big endian */
216 u8 replay_counter[WPA_REPLAY_COUNTER_LEN];
217 u8 key_nonce[WPA_NONCE_LEN];
218 u8 key_iv[16];
219 u8 key_rsc[WPA_KEY_RSC_LEN];
220 u8 key_id[8]; /* Reserved in IEEE 802.11i/RSN */
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800221 /* variable length Key MIC field */
222 /* big endian 2-octet Key Data Length field */
223 /* followed by Key Data Length bytes of Key Data */
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800224} STRUCT_PACKED;
225
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700226#define WPA_EAPOL_KEY_MIC_MAX_LEN 32
227#define WPA_KCK_MAX_LEN 32
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800228#define WPA_KEK_MAX_LEN 64
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800229#define WPA_TK_MAX_LEN 32
Hai Shalom60840252021-02-19 19:02:11 -0800230#define WPA_KDK_MAX_LEN 32
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800231#define FILS_ICK_MAX_LEN 48
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700232#define FILS_FT_MAX_LEN 48
Hai Shalom60840252021-02-19 19:02:11 -0800233#define WPA_PASN_KCK_LEN 32
234#define WPA_PASN_MIC_MAX_LEN 24
Sunil Ravi89eba102022-09-13 21:04:37 -0700235#define WPA_LTF_KEYSEED_MAX_LEN 48
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800236
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700237/**
238 * struct wpa_ptk - WPA Pairwise Transient Key
239 * IEEE Std 802.11i-2004 - 8.5.1.2 Pairwise key hierarchy
240 */
241struct wpa_ptk {
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800242 u8 kck[WPA_KCK_MAX_LEN]; /* EAPOL-Key Key Confirmation Key (KCK) */
243 u8 kek[WPA_KEK_MAX_LEN]; /* EAPOL-Key Key Encryption Key (KEK) */
244 u8 tk[WPA_TK_MAX_LEN]; /* Temporal Key (TK) */
Roshan Pius3a1667e2018-07-03 15:17:14 -0700245 u8 kck2[WPA_KCK_MAX_LEN]; /* FT reasoc Key Confirmation Key (KCK2) */
246 u8 kek2[WPA_KEK_MAX_LEN]; /* FT reassoc Key Encryption Key (KEK2) */
Hai Shalom60840252021-02-19 19:02:11 -0800247 u8 kdk[WPA_KDK_MAX_LEN]; /* Key Derivation Key */
Sunil Ravi89eba102022-09-13 21:04:37 -0700248 u8 ltf_keyseed[WPA_LTF_KEYSEED_MAX_LEN]; /* LTF Key seed */
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800249 size_t kck_len;
250 size_t kek_len;
251 size_t tk_len;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700252 size_t kck2_len;
253 size_t kek2_len;
Hai Shalom60840252021-02-19 19:02:11 -0800254 size_t kdk_len;
Sunil Ravi89eba102022-09-13 21:04:37 -0700255 size_t ltf_keyseed_len;
Mathy Vanhoefc66556c2017-09-29 04:22:51 +0200256 int installed; /* 1 if key has already been installed to driver */
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800257};
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700258
Mathy Vanhoef10bfd642017-07-12 16:03:24 +0200259struct wpa_gtk {
260 u8 gtk[WPA_GTK_MAX_LEN];
261 size_t gtk_len;
262};
263
Mathy Vanhoef10bfd642017-07-12 16:03:24 +0200264struct wpa_igtk {
265 u8 igtk[WPA_IGTK_MAX_LEN];
266 size_t igtk_len;
267};
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700268
Hai Shalomfdcde762020-04-02 11:19:20 -0700269struct wpa_bigtk {
270 u8 bigtk[WPA_BIGTK_MAX_LEN];
271 size_t bigtk_len;
272};
273
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700274/* WPA IE version 1
275 * 00-50-f2:1 (OUI:OUI type)
276 * 0x01 0x00 (version; little endian)
277 * (all following fields are optional:)
278 * Group Suite Selector (4 octets) (default: TKIP)
279 * Pairwise Suite Count (2 octets, little endian) (default: 1)
280 * Pairwise Suite List (4 * n octets) (default: TKIP)
281 * Authenticated Key Management Suite Count (2 octets, little endian)
282 * (default: 1)
283 * Authenticated Key Management Suite List (4 * n octets)
284 * (default: unspec 802.1X)
285 * WPA Capabilities (2 octets, little endian) (default: 0)
286 */
287
288struct wpa_ie_hdr {
289 u8 elem_id;
290 u8 len;
291 u8 oui[4]; /* 24-bit OUI followed by 8-bit OUI type */
292 u8 version[2]; /* little endian */
293} STRUCT_PACKED;
294
295
296/* 1/4: PMKID
297 * 2/4: RSN IE
298 * 3/4: one or two RSN IEs + GTK IE (encrypted)
299 * 4/4: empty
300 * 1/2: GTK IE (encrypted)
301 * 2/2: empty
302 */
303
304/* RSN IE version 1
305 * 0x01 0x00 (version; little endian)
306 * (all following fields are optional:)
307 * Group Suite Selector (4 octets) (default: CCMP)
308 * Pairwise Suite Count (2 octets, little endian) (default: 1)
309 * Pairwise Suite List (4 * n octets) (default: CCMP)
310 * Authenticated Key Management Suite Count (2 octets, little endian)
311 * (default: 1)
312 * Authenticated Key Management Suite List (4 * n octets)
313 * (default: unspec 802.1X)
314 * RSN Capabilities (2 octets, little endian) (default: 0)
315 * PMKID Count (2 octets) (default: 0)
316 * PMKID List (16 * n octets)
317 * Management Group Cipher Suite (4 octets) (default: AES-128-CMAC)
318 */
319
320struct rsn_ie_hdr {
321 u8 elem_id; /* WLAN_EID_RSN */
322 u8 len;
323 u8 version[2]; /* little endian */
324} STRUCT_PACKED;
325
326
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700327struct rsn_error_kde {
328 be16 mui;
329 be16 error_type;
330} STRUCT_PACKED;
331
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700332#define WPA_IGTK_KDE_PREFIX_LEN (2 + 6)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700333struct wpa_igtk_kde {
334 u8 keyid[2];
335 u8 pn[6];
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700336 u8 igtk[WPA_IGTK_MAX_LEN];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700337} STRUCT_PACKED;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700338
Hai Shalomfdcde762020-04-02 11:19:20 -0700339#define WPA_BIGTK_KDE_PREFIX_LEN (2 + 6)
340struct wpa_bigtk_kde {
341 u8 keyid[2];
342 u8 pn[6];
343 u8 bigtk[WPA_BIGTK_MAX_LEN];
344} STRUCT_PACKED;
345
Sunil Ravi89eba102022-09-13 21:04:37 -0700346#define RSN_MLO_GTK_KDE_PREFIX_LENGTH (1 + 6)
347#define RSN_MLO_GTK_KDE_PREFIX0_KEY_ID_MASK 0x03
348#define RSN_MLO_GTK_KDE_PREFIX0_TX 0x04
349#define RSN_MLO_GTK_KDE_PREFIX0_LINK_ID_SHIFT 4
350#define RSN_MLO_GTK_KDE_PREFIX0_LINK_ID_MASK 0xF0
351
352#define RSN_MLO_IGTK_KDE_PREFIX_LENGTH (2 + 6 + 1)
353#define RSN_MLO_IGTK_KDE_PREFIX8_LINK_ID_SHIFT 4
354#define RSN_MLO_IGTK_KDE_PREFIX8_LINK_ID_MASK 0xF0
355struct rsn_mlo_igtk_kde {
356 u8 keyid[2];
357 u8 pn[6];
358 u8 prefix8;
359 u8 igtk[WPA_IGTK_MAX_LEN];
360} STRUCT_PACKED;
361
362#define RSN_MLO_BIGTK_KDE_PREFIX_LENGTH (2 + 6 + 1)
363#define RSN_MLO_BIGTK_KDE_PREFIX8_LINK_ID_SHIFT 4
364#define RSN_MLO_BIGTK_KDE_PREFIX8_LINK_ID_MASK 0xF0
365struct rsn_mlo_bigtk_kde {
366 u8 keyid[2];
367 u8 pn[6];
368 u8 prefix8;
369 u8 bigtk[WPA_BIGTK_MAX_LEN];
370} STRUCT_PACKED;
371
372#define RSN_MLO_LINK_KDE_FIXED_LENGTH (1 + 6)
373#define RSN_MLO_LINK_KDE_LINK_INFO_INDEX 0
374#define RSN_MLO_LINK_KDE_LI_LINK_ID_SHIFT 0
375#define RSN_MLO_LINK_KDE_LI_LINK_ID_MASK 0x0F
376#define RSN_MLO_LINK_KDE_LI_RSNE_INFO 0x10
377#define RSN_MLO_LINK_KDE_LI_RSNXE_INFO 0x20
378#define RSN_MLO_LINK_KDE_LINK_MAC_INDEX 1
379
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700380struct rsn_mdie {
381 u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
382 u8 ft_capab;
383} STRUCT_PACKED;
384
385#define RSN_FT_CAPAB_FT_OVER_DS BIT(0)
386#define RSN_FT_CAPAB_FT_RESOURCE_REQ_SUPP BIT(1)
387
388struct rsn_ftie {
389 u8 mic_control[2];
390 u8 mic[16];
391 u8 anonce[WPA_NONCE_LEN];
392 u8 snonce[WPA_NONCE_LEN];
393 /* followed by optional parameters */
394} STRUCT_PACKED;
395
Roshan Pius3a1667e2018-07-03 15:17:14 -0700396struct rsn_ftie_sha384 {
397 u8 mic_control[2];
398 u8 mic[24];
399 u8 anonce[WPA_NONCE_LEN];
400 u8 snonce[WPA_NONCE_LEN];
401 /* followed by optional parameters */
402} STRUCT_PACKED;
403
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700404#define FTIE_SUBELEM_R1KH_ID 1
405#define FTIE_SUBELEM_GTK 2
406#define FTIE_SUBELEM_R0KH_ID 3
407#define FTIE_SUBELEM_IGTK 4
Hai Shalom74f70d42019-02-11 14:42:39 -0800408#define FTIE_SUBELEM_OCI 5
Hai Shalomfdcde762020-04-02 11:19:20 -0700409#define FTIE_SUBELEM_BIGTK 6
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700410
411struct rsn_rdie {
412 u8 id;
413 u8 descr_count;
414 le16 status_code;
415} STRUCT_PACKED;
416
Hai Shalomfdcde762020-04-02 11:19:20 -0700417/* WFA Transition Disable KDE (using OUI_WFA) */
418/* Transition Disable Bitmap bits */
419#define TRANSITION_DISABLE_WPA3_PERSONAL BIT(0)
420#define TRANSITION_DISABLE_SAE_PK BIT(1)
421#define TRANSITION_DISABLE_WPA3_ENTERPRISE BIT(2)
422#define TRANSITION_DISABLE_ENHANCED_OPEN BIT(3)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700423
Hai Shalom4fbc08f2020-05-18 12:37:00 -0700424/* DPP KDE Flags */
425#define DPP_KDE_PFS_ALLOWED BIT(0)
426#define DPP_KDE_PFS_REQUIRED BIT(1)
427
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700428#ifdef _MSC_VER
429#pragma pack(pop)
430#endif /* _MSC_VER */
431
432
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800433int wpa_eapol_key_mic(const u8 *key, size_t key_len, int akmp, int ver,
434 const u8 *buf, size_t len, u8 *mic);
435int wpa_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const char *label,
436 const u8 *addr1, const u8 *addr2,
437 const u8 *nonce1, const u8 *nonce2,
Hai Shalom021b0b52019-04-10 11:17:58 -0700438 struct wpa_ptk *ptk, int akmp, int cipher,
Hai Shalom60840252021-02-19 19:02:11 -0800439 const u8 *z, size_t z_len, size_t kdk_len);
Paul Stewart092955c2017-02-06 09:13:09 -0800440int fils_rmsk_to_pmk(int akmp, const u8 *rmsk, size_t rmsk_len,
441 const u8 *snonce, const u8 *anonce, const u8 *dh_ss,
442 size_t dh_ss_len, u8 *pmk, size_t *pmk_len);
443int fils_pmkid_erp(int akmp, const u8 *reauth, size_t reauth_len,
444 u8 *pmkid);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800445int fils_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const u8 *spa, const u8 *aa,
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700446 const u8 *snonce, const u8 *anonce, const u8 *dhss,
447 size_t dhss_len, struct wpa_ptk *ptk,
448 u8 *ick, size_t *ick_len, int akmp, int cipher,
Hai Shalom60840252021-02-19 19:02:11 -0800449 u8 *fils_ft, size_t *fils_ft_len, size_t kdk_len);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800450int fils_key_auth_sk(const u8 *ick, size_t ick_len, const u8 *snonce,
451 const u8 *anonce, const u8 *sta_addr, const u8 *bssid,
452 const u8 *g_sta, size_t g_sta_len,
453 const u8 *g_ap, size_t g_ap_len,
454 int akmp, u8 *key_auth_sta, u8 *key_auth_ap,
455 size_t *key_auth_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700456
457#ifdef CONFIG_IEEE80211R
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800458int wpa_ft_mic(const u8 *kck, size_t kck_len, const u8 *sta_addr,
459 const u8 *ap_addr, u8 transaction_seqnum,
460 const u8 *mdie, size_t mdie_len,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700461 const u8 *ftie, size_t ftie_len,
462 const u8 *rsnie, size_t rsnie_len,
Hai Shalomc3565922019-10-28 11:58:20 -0700463 const u8 *ric, size_t ric_len,
464 const u8 *rsnxe, size_t rsnxe_len,
465 u8 *mic);
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800466int wpa_derive_pmk_r0(const u8 *xxkey, size_t xxkey_len,
467 const u8 *ssid, size_t ssid_len,
468 const u8 *mdid, const u8 *r0kh_id, size_t r0kh_id_len,
Roshan Pius3a1667e2018-07-03 15:17:14 -0700469 const u8 *s0kh_id, u8 *pmk_r0, u8 *pmk_r0_name,
470 int use_sha384);
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800471int wpa_derive_pmk_r1_name(const u8 *pmk_r0_name, const u8 *r1kh_id,
Roshan Pius3a1667e2018-07-03 15:17:14 -0700472 const u8 *s1kh_id, u8 *pmk_r1_name, int use_sha384);
473int wpa_derive_pmk_r1(const u8 *pmk_r0, size_t pmk_r0_len,
474 const u8 *pmk_r0_name,
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800475 const u8 *r1kh_id, const u8 *s1kh_id,
476 u8 *pmk_r1, u8 *pmk_r1_name);
Roshan Pius3a1667e2018-07-03 15:17:14 -0700477int wpa_pmk_r1_to_ptk(const u8 *pmk_r1, size_t pmk_r1_len, const u8 *snonce,
478 const u8 *anonce, const u8 *sta_addr, const u8 *bssid,
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800479 const u8 *pmk_r1_name,
Hai Shalom60840252021-02-19 19:02:11 -0800480 struct wpa_ptk *ptk, u8 *ptk_name, int akmp, int cipher,
481 size_t kdk_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700482#endif /* CONFIG_IEEE80211R */
483
484struct wpa_ie_data {
485 int proto;
486 int pairwise_cipher;
Hai Shalom021b0b52019-04-10 11:17:58 -0700487 int has_pairwise;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700488 int group_cipher;
Hai Shalom021b0b52019-04-10 11:17:58 -0700489 int has_group;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700490 int key_mgmt;
491 int capabilities;
492 size_t num_pmkid;
493 const u8 *pmkid;
494 int mgmt_group_cipher;
495};
496
497
498int wpa_parse_wpa_ie_rsn(const u8 *rsn_ie, size_t rsn_ie_len,
499 struct wpa_ie_data *data);
500int wpa_parse_wpa_ie_wpa(const u8 *wpa_ie, size_t wpa_ie_len,
501 struct wpa_ie_data *data);
Hai Shalom021b0b52019-04-10 11:17:58 -0700502int wpa_default_rsn_cipher(int freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700503
504void rsn_pmkid(const u8 *pmk, size_t pmk_len, const u8 *aa, const u8 *spa,
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700505 u8 *pmkid, int akmp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800506#ifdef CONFIG_SUITEB
507int rsn_pmkid_suite_b(const u8 *kck, size_t kck_len, const u8 *aa,
508 const u8 *spa, u8 *pmkid);
509#else /* CONFIG_SUITEB */
510static inline int rsn_pmkid_suite_b(const u8 *kck, size_t kck_len, const u8 *aa,
511 const u8 *spa, u8 *pmkid)
512{
513 return -1;
514}
515#endif /* CONFIG_SUITEB */
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800516#ifdef CONFIG_SUITEB192
517int rsn_pmkid_suite_b_192(const u8 *kck, size_t kck_len, const u8 *aa,
518 const u8 *spa, u8 *pmkid);
519#else /* CONFIG_SUITEB192 */
520static inline int rsn_pmkid_suite_b_192(const u8 *kck, size_t kck_len,
521 const u8 *aa, const u8 *spa, u8 *pmkid)
522{
523 return -1;
524}
525#endif /* CONFIG_SUITEB192 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700526
527const char * wpa_cipher_txt(int cipher);
528const char * wpa_key_mgmt_txt(int key_mgmt, int proto);
Dmitry Shmidt03658832014-08-13 11:03:49 -0700529u32 wpa_akm_to_suite(int akm);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700530int wpa_compare_rsn_ie(int ft_initial_assoc,
531 const u8 *ie1, size_t ie1len,
532 const u8 *ie2, size_t ie2len);
Dmitry Shmidt1b467752015-12-14 12:45:46 -0800533int wpa_insert_pmkid(u8 *ies, size_t *ies_len, const u8 *pmkid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700534
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800535struct wpa_ft_ies {
536 const u8 *mdie;
537 size_t mdie_len;
538 const u8 *ftie;
539 size_t ftie_len;
540 const u8 *r1kh_id;
541 const u8 *gtk;
542 size_t gtk_len;
543 const u8 *r0kh_id;
544 size_t r0kh_id_len;
Hai Shalomc3565922019-10-28 11:58:20 -0700545 const u8 *fte_anonce;
546 const u8 *fte_snonce;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800547 const u8 *rsn;
548 size_t rsn_len;
Hai Shalomc3565922019-10-28 11:58:20 -0700549 u16 rsn_capab;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800550 const u8 *rsn_pmkid;
551 const u8 *tie;
552 size_t tie_len;
553 const u8 *igtk;
554 size_t igtk_len;
Hai Shalomfdcde762020-04-02 11:19:20 -0700555 const u8 *bigtk;
556 size_t bigtk_len;
Hai Shalom74f70d42019-02-11 14:42:39 -0800557#ifdef CONFIG_OCV
558 const u8 *oci;
559 size_t oci_len;
560#endif /* CONFIG_OCV */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800561 const u8 *ric;
562 size_t ric_len;
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800563 int key_mgmt;
564 int pairwise_cipher;
Hai Shalomc3565922019-10-28 11:58:20 -0700565 const u8 *rsnxe;
566 size_t rsnxe_len;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800567};
568
Hai Shalom60840252021-02-19 19:02:11 -0800569/* IEEE P802.11az/D2.6 - 9.4.2.303 PASN Parameters element */
570#define WPA_PASN_CTRL_COMEBACK_INFO_PRESENT BIT(0)
571#define WPA_PASN_CTRL_GROUP_AND_KEY_PRESENT BIT(1)
572
573#define WPA_PASN_WRAPPED_DATA_NO 0
574#define WPA_PASN_WRAPPED_DATA_FT 1
575#define WPA_PASN_WRAPPED_DATA_FILS_SK 2
576#define WPA_PASN_WRAPPED_DATA_SAE 3
577
578struct pasn_parameter_ie {
579 u8 id;
580 u8 len;
581 u8 id_ext;
582 u8 control; /* WPA_PASN_CTRL_* */
583 u8 wrapped_data_format; /* WPA_PASN_WRAPPED_DATA_* */
584} STRUCT_PACKED;
585
586struct wpa_pasn_params_data {
587 u8 wrapped_data_format;
588 u16 after;
589 u8 comeback_len;
590 const u8 *comeback;
591 u16 group;
592 u8 pubkey_len;
593 const u8 *pubkey;
594};
595
Hai Shaloma20dcd72022-02-04 13:43:00 -0800596/* See RFC 5480 section 2.2 */
597#define WPA_PASN_PUBKEY_COMPRESSED_0 0x02
598#define WPA_PASN_PUBKEY_COMPRESSED_1 0x03
599#define WPA_PASN_PUBKEY_UNCOMPRESSED 0x04
600
Roshan Pius3a1667e2018-07-03 15:17:14 -0700601int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, struct wpa_ft_ies *parse,
602 int use_sha384);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800603
Hai Shalomc3565922019-10-28 11:58:20 -0700604struct wpa_eapol_ie_parse {
605 const u8 *wpa_ie;
606 size_t wpa_ie_len;
607 const u8 *rsn_ie;
608 size_t rsn_ie_len;
609 const u8 *pmkid;
Hai Shalomfdcde762020-04-02 11:19:20 -0700610 const u8 *key_id;
Hai Shalomc3565922019-10-28 11:58:20 -0700611 const u8 *gtk;
612 size_t gtk_len;
613 const u8 *mac_addr;
Hai Shalomc3565922019-10-28 11:58:20 -0700614 const u8 *igtk;
615 size_t igtk_len;
Hai Shalomfdcde762020-04-02 11:19:20 -0700616 const u8 *bigtk;
617 size_t bigtk_len;
Hai Shalomc3565922019-10-28 11:58:20 -0700618 const u8 *mdie;
619 size_t mdie_len;
620 const u8 *ftie;
621 size_t ftie_len;
622 const u8 *ip_addr_req;
623 const u8 *ip_addr_alloc;
Hai Shalomfdcde762020-04-02 11:19:20 -0700624 const u8 *transition_disable;
625 size_t transition_disable_len;
Hai Shalom4fbc08f2020-05-18 12:37:00 -0700626 const u8 *dpp_kde;
627 size_t dpp_kde_len;
Hai Shalomc3565922019-10-28 11:58:20 -0700628 const u8 *oci;
629 size_t oci_len;
630 const u8 *osen;
631 size_t osen_len;
632 const u8 *rsnxe;
633 size_t rsnxe_len;
634 const u8 *reassoc_deadline;
635 const u8 *key_lifetime;
636 const u8 *lnkid;
637 size_t lnkid_len;
638 const u8 *ext_capab;
639 size_t ext_capab_len;
640 const u8 *supp_rates;
641 size_t supp_rates_len;
642 const u8 *ext_supp_rates;
643 size_t ext_supp_rates_len;
644 const u8 *ht_capabilities;
645 const u8 *vht_capabilities;
Hai Shaloma20dcd72022-02-04 13:43:00 -0800646 const u8 *he_capabilities;
647 size_t he_capab_len;
648 const u8 *he_6ghz_capabilities;
Hai Shalomc3565922019-10-28 11:58:20 -0700649 const u8 *supp_channels;
650 size_t supp_channels_len;
651 const u8 *supp_oper_classes;
652 size_t supp_oper_classes_len;
653 u8 qosinfo;
654 u16 aid;
655 const u8 *wmm;
656 size_t wmm_len;
Sunil Ravi89eba102022-09-13 21:04:37 -0700657#define MAX_NUM_MLO_LINKS 15
658 u16 valid_mlo_gtks; /* bitmap of valid link GTK KDEs */
659 const u8 *mlo_gtk[MAX_NUM_MLO_LINKS];
660 size_t mlo_gtk_len[MAX_NUM_MLO_LINKS];
661 u16 valid_mlo_igtks; /* bitmap of valid link IGTK KDEs */
662 const u8 *mlo_igtk[MAX_NUM_MLO_LINKS];
663 size_t mlo_igtk_len[MAX_NUM_MLO_LINKS];
664 u16 valid_mlo_bigtks; /* bitmap of valid link BIGTK KDEs */
665 const u8 *mlo_bigtk[MAX_NUM_MLO_LINKS];
666 size_t mlo_bigtk_len[MAX_NUM_MLO_LINKS];
667 u16 valid_mlo_links; /* bitmap of valid MLO link KDEs */
668 const u8 *mlo_link[MAX_NUM_MLO_LINKS];
669 size_t mlo_link_len[MAX_NUM_MLO_LINKS];
Hai Shalomc3565922019-10-28 11:58:20 -0700670};
671
672int wpa_parse_kde_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie);
673static inline int wpa_supplicant_parse_ies(const u8 *buf, size_t len,
674 struct wpa_eapol_ie_parse *ie)
675{
676 return wpa_parse_kde_ies(buf, len, ie);
677}
678
679
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700680int wpa_cipher_key_len(int cipher);
681int wpa_cipher_rsc_len(int cipher);
Dmitry Shmidt29333592017-01-09 12:27:11 -0800682enum wpa_alg wpa_cipher_to_alg(int cipher);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800683int wpa_cipher_valid_group(int cipher);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700684int wpa_cipher_valid_pairwise(int cipher);
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -0700685int wpa_cipher_valid_mgmt_group(int cipher);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700686u32 wpa_cipher_to_suite(int proto, int cipher);
687int rsn_cipher_put_suites(u8 *pos, int ciphers);
688int wpa_cipher_put_suites(u8 *pos, int ciphers);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800689int wpa_pick_pairwise_cipher(int ciphers, int none_allowed);
690int wpa_pick_group_cipher(int ciphers);
691int wpa_parse_cipher(const char *value);
692int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim);
693int wpa_select_ap_group_cipher(int wpa, int wpa_pairwise, int rsn_pairwise);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700694unsigned int wpa_mic_len(int akmp, size_t pmk_len);
Roshan Pius3a1667e2018-07-03 15:17:14 -0700695int wpa_use_akm_defined(int akmp);
696int wpa_use_cmac(int akmp);
697int wpa_use_aes_key_wrap(int akmp);
Dmitry Shmidt29333592017-01-09 12:27:11 -0800698int fils_domain_name_hash(const char *domain, u8 *hash);
Dmitry Shmidt4530cfd2012-09-09 15:20:40 -0700699
Hai Shalom60840252021-02-19 19:02:11 -0800700int pasn_pmk_to_ptk(const u8 *pmk, size_t pmk_len,
701 const u8 *spa, const u8 *bssid,
702 const u8 *dhss, size_t dhss_len,
703 struct wpa_ptk *ptk, int akmp, int cipher,
704 size_t kdk_len);
705
706u8 pasn_mic_len(int akmp, int cipher);
707
708int pasn_mic(const u8 *kck, int akmp, int cipher,
709 const u8 *addr1, const u8 *addr2,
710 const u8 *data, size_t data_len,
711 const u8 *frame, size_t frame_len, u8 *mic);
712
Sunil Ravi89eba102022-09-13 21:04:37 -0700713int wpa_ltf_keyseed(struct wpa_ptk *ptk, int akmp, int cipher);
714
Hai Shalom60840252021-02-19 19:02:11 -0800715int pasn_auth_frame_hash(int akmp, int cipher, const u8 *data, size_t len,
716 u8 *hash);
717
718void wpa_pasn_build_auth_header(struct wpabuf *buf, const u8 *bssid,
719 const u8 *src, const u8 *dst,
720 u8 trans_seq, u16 status);
721
722int wpa_pasn_add_rsne(struct wpabuf *buf, const u8 *pmkid,
723 int akmp, int cipher);
724
725void wpa_pasn_add_parameter_ie(struct wpabuf *buf, u16 pasn_group,
726 u8 wrapped_data_format,
Hai Shaloma20dcd72022-02-04 13:43:00 -0800727 const struct wpabuf *pubkey, bool compressed,
728 const struct wpabuf *comeback, int after);
Hai Shalom60840252021-02-19 19:02:11 -0800729
730int wpa_pasn_add_wrapped_data(struct wpabuf *buf,
731 struct wpabuf *wrapped_data_buf);
732
733int wpa_pasn_validate_rsne(const struct wpa_ie_data *data);
734int wpa_pasn_parse_parameter_ie(const u8 *data, u8 len, bool from_ap,
735 struct wpa_pasn_params_data *pasn_params);
736
737void wpa_pasn_add_rsnxe(struct wpabuf *buf, u16 capab);
738
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700739#endif /* WPA_COMMON_H */