Coverage Report

Created: 2026-06-15 06:18

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/hostap/src/common/wpa_common.h
Line
Count
Source
1
/*
2
 * WPA definitions shared between hostapd and wpa_supplicant
3
 * Copyright (c) 2002-2018, Jouni Malinen <j@w1.fi>
4
 *
5
 * This software may be distributed under the terms of the BSD license.
6
 * See README for more details.
7
 */
8
9
#ifndef WPA_COMMON_H
10
#define WPA_COMMON_H
11
12
#include "common/defs.h"
13
14
/* IEEE 802.11i */
15
38.4k
#define PMKID_LEN 16
16
2.11k
#define PMK_LEN 32
17
0
#define PMK_LEN_SUITE_B_192 48
18
0
#define PMK_LEN_MAX 64
19
3.05k
#define WPA_REPLAY_COUNTER_LEN 8
20
37.3k
#define RSN_PN_LEN 6
21
6.94k
#define WPA_NONCE_LEN 32
22
0
#define WPA_KEY_RSC_LEN 8
23
#define WPA_GMK_LEN 32
24
0
#define WPA_GTK_MAX_LEN 32
25
#define WPA_PASN_PMK_LEN 32
26
#define WPA_PASN_MAX_MIC_LEN 32
27
#define WPA_MAX_RSNXE_LEN 4
28
#define WPA_1X_MAX_MIC_LEN 32
29
30
#define OWE_DH_GROUP 19
31
32
enum rsn_hash_alg {
33
  RSN_HASH_NOT_SPECIFIED,
34
  RSN_HASH_SHA256,
35
  RSN_HASH_SHA384,
36
  RSN_HASH_SHA512,
37
};
38
39
#ifdef CONFIG_NO_TKIP
40
#define WPA_ALLOWED_PAIRWISE_CIPHERS \
41
(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_NONE | \
42
WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256)
43
#define WPA_ALLOWED_GROUP_CIPHERS \
44
(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | \
45
WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256 | \
46
WPA_CIPHER_GTK_NOT_USED)
47
#else /* CONFIG_NO_TKIP */
48
#define WPA_ALLOWED_PAIRWISE_CIPHERS \
49
(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_TKIP | WPA_CIPHER_NONE | \
50
WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256)
51
#define WPA_ALLOWED_GROUP_CIPHERS \
52
(WPA_CIPHER_CCMP | WPA_CIPHER_GCMP | WPA_CIPHER_TKIP | \
53
WPA_CIPHER_GCMP_256 | WPA_CIPHER_CCMP_256 | \
54
WPA_CIPHER_GTK_NOT_USED)
55
#endif /* CONFIG_NO_TKIP */
56
#define WPA_ALLOWED_GROUP_MGMT_CIPHERS \
57
(WPA_CIPHER_AES_128_CMAC | WPA_CIPHER_BIP_GMAC_128 | WPA_CIPHER_BIP_GMAC_256 | \
58
WPA_CIPHER_BIP_CMAC_256)
59
60
0
#define WPA_SELECTOR_LEN 4
61
0
#define WPA_VERSION 1
62
77.1k
#define RSN_SELECTOR_LEN 4
63
2.11k
#define RSN_VERSION 1
64
65
#define RSN_SELECTOR(a, b, c, d) \
66
169k
  ((((u32) (a)) << 24) | (((u32) (b)) << 16) | (((u32) (c)) << 8) | \
67
169k
   (u32) (d))
68
69
0
#define WPA_AUTH_KEY_MGMT_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0)
70
0
#define WPA_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 1)
71
0
#define WPA_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x50, 0xf2, 2)
72
#define WPA_AUTH_KEY_MGMT_CCKM RSN_SELECTOR(0x00, 0x40, 0x96, 0)
73
0
#define WPA_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x50, 0xf2, 0)
74
0
#define WPA_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x50, 0xf2, 2)
75
0
#define WPA_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x50, 0xf2, 4)
76
77
78
0
#define RSN_AUTH_KEY_MGMT_UNSPEC_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
79
0
#define RSN_AUTH_KEY_MGMT_PSK_OVER_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
80
0
#define RSN_AUTH_KEY_MGMT_FT_802_1X RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
81
0
#define RSN_AUTH_KEY_MGMT_FT_PSK RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
82
0
#define RSN_AUTH_KEY_MGMT_802_1X_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
83
0
#define RSN_AUTH_KEY_MGMT_PSK_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
84
#define RSN_AUTH_KEY_MGMT_TPK_HANDSHAKE RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
85
0
#define RSN_AUTH_KEY_MGMT_SAE RSN_SELECTOR(0x00, 0x0f, 0xac, 8)
86
0
#define RSN_AUTH_KEY_MGMT_FT_SAE RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
87
0
#define RSN_AUTH_KEY_MGMT_802_1X_SUITE_B RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
88
0
#define RSN_AUTH_KEY_MGMT_802_1X_SUITE_B_192 RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
89
0
#define RSN_AUTH_KEY_MGMT_FT_802_1X_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 13)
90
0
#define RSN_AUTH_KEY_MGMT_FILS_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 14)
91
0
#define RSN_AUTH_KEY_MGMT_FILS_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 15)
92
0
#define RSN_AUTH_KEY_MGMT_FT_FILS_SHA256 RSN_SELECTOR(0x00, 0x0f, 0xac, 16)
93
0
#define RSN_AUTH_KEY_MGMT_FT_FILS_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 17)
94
0
#define RSN_AUTH_KEY_MGMT_OWE RSN_SELECTOR(0x00, 0x0f, 0xac, 18)
95
#define RSN_AUTH_KEY_MGMT_FT_PSK_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 19)
96
#define RSN_AUTH_KEY_MGMT_PSK_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 20)
97
#define RSN_AUTH_KEY_MGMT_PASN RSN_SELECTOR(0x00, 0x0f, 0xac, 21)
98
#define RSN_AUTH_KEY_MGMT_FT_802_1X_SHA384_UNRESTRICTED \
99
  RSN_SELECTOR(0x00, 0x0f, 0xac, 22)
100
0
#define RSN_AUTH_KEY_MGMT_802_1X_SHA384 RSN_SELECTOR(0x00, 0x0f, 0xac, 23)
101
0
#define RSN_AUTH_KEY_MGMT_SAE_EXT_KEY RSN_SELECTOR(0x00, 0x0f, 0xac, 24)
102
0
#define RSN_AUTH_KEY_MGMT_FT_SAE_EXT_KEY RSN_SELECTOR(0x00, 0x0f, 0xac, 25)
103
0
#define RSN_AUTH_KEY_MGMT_EPPKE RSN_SELECTOR(0x00, 0x0f, 0xac, 29)
104
105
0
#define RSN_AUTH_KEY_MGMT_CCKM RSN_SELECTOR(0x00, 0x40, 0x96, 0x00)
106
0
#define RSN_AUTH_KEY_MGMT_DPP RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x02)
107
108
0
#define RSN_CIPHER_SUITE_NONE RSN_SELECTOR(0x00, 0x0f, 0xac, 0)
109
#define RSN_CIPHER_SUITE_WEP40 RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
110
0
#define RSN_CIPHER_SUITE_TKIP RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
111
#if 0
112
#define RSN_CIPHER_SUITE_WRAP RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
113
#endif
114
4.23k
#define RSN_CIPHER_SUITE_CCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
115
#define RSN_CIPHER_SUITE_WEP104 RSN_SELECTOR(0x00, 0x0f, 0xac, 5)
116
0
#define RSN_CIPHER_SUITE_AES_128_CMAC RSN_SELECTOR(0x00, 0x0f, 0xac, 6)
117
0
#define RSN_CIPHER_SUITE_NO_GROUP_ADDRESSED RSN_SELECTOR(0x00, 0x0f, 0xac, 7)
118
0
#define RSN_CIPHER_SUITE_GCMP RSN_SELECTOR(0x00, 0x0f, 0xac, 8)
119
0
#define RSN_CIPHER_SUITE_GCMP_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
120
0
#define RSN_CIPHER_SUITE_CCMP_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 10)
121
0
#define RSN_CIPHER_SUITE_BIP_GMAC_128 RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
122
0
#define RSN_CIPHER_SUITE_BIP_GMAC_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
123
0
#define RSN_CIPHER_SUITE_BIP_CMAC_256 RSN_SELECTOR(0x00, 0x0f, 0xac, 13)
124
#define RSN_CIPHER_SUITE_SMS4 RSN_SELECTOR(0x00, 0x14, 0x72, 1)
125
#define RSN_CIPHER_SUITE_CKIP RSN_SELECTOR(0x00, 0x40, 0x96, 0)
126
#define RSN_CIPHER_SUITE_CKIP_CMIC RSN_SELECTOR(0x00, 0x40, 0x96, 1)
127
#define RSN_CIPHER_SUITE_CMIC RSN_SELECTOR(0x00, 0x40, 0x96, 2)
128
/* KRK is defined for nl80211 use only */
129
#define RSN_CIPHER_SUITE_KRK RSN_SELECTOR(0x00, 0x40, 0x96, 255)
130
131
/* EAPOL-Key Key Data Encapsulation
132
 * GroupKey and PeerKey require encryption, otherwise, encryption is optional.
133
 */
134
11.1k
#define RSN_KEY_DATA_GROUPKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 1)
135
#if 0
136
#define RSN_KEY_DATA_STAKEY RSN_SELECTOR(0x00, 0x0f, 0xac, 2)
137
#endif
138
6.54k
#define RSN_KEY_DATA_MAC_ADDR RSN_SELECTOR(0x00, 0x0f, 0xac, 3)
139
1.74k
#define RSN_KEY_DATA_PMKID RSN_SELECTOR(0x00, 0x0f, 0xac, 4)
140
10.1k
#define RSN_KEY_DATA_IGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 9)
141
15.4k
#define RSN_KEY_DATA_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 10)
142
#define RSN_KEY_DATA_MULTIBAND_GTK RSN_SELECTOR(0x00, 0x0f, 0xac, 11)
143
#define RSN_KEY_DATA_MULTIBAND_KEYID RSN_SELECTOR(0x00, 0x0f, 0xac, 12)
144
7.49k
#define RSN_KEY_DATA_OCI RSN_SELECTOR(0x00, 0x0f, 0xac, 13)
145
8.49k
#define RSN_KEY_DATA_BIGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 14)
146
5.22k
#define RSN_KEY_DATA_MLO_GTK RSN_SELECTOR(0x00, 0x0f, 0xac, 16)
147
3.19k
#define RSN_KEY_DATA_MLO_IGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 17)
148
2.50k
#define RSN_KEY_DATA_MLO_BIGTK RSN_SELECTOR(0x00, 0x0f, 0xac, 18)
149
3.01k
#define RSN_KEY_DATA_MLO_LINK RSN_SELECTOR(0x00, 0x0f, 0xac, 19)
150
8.15k
#define RSN_KEY_DATA_SAE_PW_IDS RSN_SELECTOR(0x00, 0x0f, 0xac, 25)
151
152
12.7k
#define WFA_KEY_DATA_IP_ADDR_REQ RSN_SELECTOR(0x50, 0x6f, 0x9a, 4)
153
1.63k
#define WFA_KEY_DATA_IP_ADDR_ALLOC RSN_SELECTOR(0x50, 0x6f, 0x9a, 5)
154
11.7k
#define WFA_KEY_DATA_TRANSITION_DISABLE RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x20)
155
10.8k
#define WFA_KEY_DATA_DPP RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x21)
156
8.10k
#define WFA_KEY_DATA_RSN_OVERRIDE_LINK RSN_SELECTOR(0x50, 0x6f, 0x9a, 0x2d)
157
158
16.9k
#define WPA_OUI_TYPE RSN_SELECTOR(0x00, 0x50, 0xf2, 1)
159
160
6.34k
#define RSN_SELECTOR_PUT(a, val) WPA_PUT_BE32((u8 *) (a), (val))
161
19.9k
#define RSN_SELECTOR_GET(a) WPA_GET_BE32((const u8 *) (a))
162
163
#define RSN_NUM_REPLAY_COUNTERS_1 0
164
#define RSN_NUM_REPLAY_COUNTERS_2 1
165
#define RSN_NUM_REPLAY_COUNTERS_4 2
166
0
#define RSN_NUM_REPLAY_COUNTERS_16 3
167
168
169
#ifdef _MSC_VER
170
#pragma pack(push, 1)
171
#endif /* _MSC_VER */
172
173
#define WPA_IGTK_LEN 16
174
#define WPA_IGTK_MAX_LEN 32
175
#define WPA_BIGTK_LEN 16
176
#define WPA_BIGTK_MAX_LEN 32
177
178
179
/* IEEE 802.11, 7.3.2.25.3 RSN Capabilities */
180
0
#define WPA_CAPABILITY_PREAUTH BIT(0)
181
0
#define WPA_CAPABILITY_NO_PAIRWISE BIT(1)
182
/* B2-B3: PTKSA Replay Counter */
183
/* B4-B5: GTKSA Replay Counter */
184
0
#define WPA_CAPABILITY_MFPR BIT(6)
185
0
#define WPA_CAPABILITY_MFPC BIT(7)
186
/* B8: Reserved */
187
0
#define WPA_CAPABILITY_PEERKEY_ENABLED BIT(9)
188
#define WPA_CAPABILITY_SPP_A_MSDU_CAPABLE BIT(10)
189
#define WPA_CAPABILITY_SPP_A_MSDU_REQUIRED BIT(11)
190
#define WPA_CAPABILITY_PBAC BIT(12)
191
0
#define WPA_CAPABILITY_EXT_KEY_ID_FOR_UNICAST BIT(13)
192
0
#define WPA_CAPABILITY_OCVC BIT(14)
193
/* B15: Reserved */
194
195
196
/* IEEE 802.11r */
197
0
#define MOBILITY_DOMAIN_ID_LEN 2
198
0
#define FT_R0KH_ID_MAX_LEN 48
199
0
#define FT_R1KH_ID_LEN 6
200
0
#define WPA_PMK_NAME_LEN 16
201
202
/* FTE - MIC Control - RSNXE Used */
203
0
#define FTE_MIC_CTRL_RSNXE_USED BIT(0)
204
0
#define FTE_MIC_CTRL_MIC_LEN_MASK (BIT(1) | BIT(2) | BIT(3))
205
0
#define FTE_MIC_CTRL_MIC_LEN_SHIFT 1
206
207
/* FTE - MIC Length subfield values */
208
enum ft_mic_len_subfield {
209
  FTE_MIC_LEN_16 = 0,
210
  FTE_MIC_LEN_24 = 1,
211
  FTE_MIC_LEN_32 = 2,
212
};
213
214
215
/* IEEE 802.11, 8.5.2 EAPOL-Key frames */
216
1.70k
#define WPA_KEY_INFO_TYPE_MASK ((u16) (BIT(0) | BIT(1) | BIT(2)))
217
0
#define WPA_KEY_INFO_TYPE_AKM_DEFINED 0
218
3.39k
#define WPA_KEY_INFO_TYPE_HMAC_MD5_RC4 BIT(0)
219
4.71k
#define WPA_KEY_INFO_TYPE_HMAC_SHA1_AES BIT(1)
220
5.07k
#define WPA_KEY_INFO_TYPE_AES_128_CMAC 3
221
2.98k
#define WPA_KEY_INFO_KEY_TYPE BIT(3) /* 1 = Pairwise, 0 = Group key */
222
/* bit4..5 is used in WPA, but is reserved in IEEE 802.11i/RSN */
223
1.68k
#define WPA_KEY_INFO_KEY_INDEX_MASK (BIT(4) | BIT(5))
224
0
#define WPA_KEY_INFO_KEY_INDEX_SHIFT 4
225
0
#define WPA_KEY_INFO_INSTALL BIT(6) /* pairwise */
226
0
#define WPA_KEY_INFO_TXRX BIT(6) /* group */
227
1.71k
#define WPA_KEY_INFO_ACK BIT(7)
228
4.67k
#define WPA_KEY_INFO_MIC BIT(8)
229
0
#define WPA_KEY_INFO_SECURE BIT(9)
230
0
#define WPA_KEY_INFO_ERROR BIT(10)
231
1.70k
#define WPA_KEY_INFO_REQUEST BIT(11)
232
3.37k
#define WPA_KEY_INFO_ENCR_KEY_DATA BIT(12) /* IEEE 802.11i/RSN only */
233
1.71k
#define WPA_KEY_INFO_SMK_MESSAGE BIT(13)
234
235
236
struct wpa_eapol_key {
237
  u8 type;
238
  /* Note: key_info, key_length, and key_data_length are unaligned */
239
  u8 key_info[2]; /* big endian */
240
  u8 key_length[2]; /* big endian */
241
  u8 replay_counter[WPA_REPLAY_COUNTER_LEN];
242
  u8 key_nonce[WPA_NONCE_LEN];
243
  u8 key_iv[16];
244
  u8 key_rsc[WPA_KEY_RSC_LEN];
245
  u8 key_id[8]; /* Reserved in IEEE 802.11i/RSN */
246
  /* variable length Key MIC field */
247
  /* big endian 2-octet Key Data Length field */
248
  /* followed by Key Data Length bytes of Key Data */
249
} STRUCT_PACKED;
250
251
#define WPA_EAPOL_KEY_MIC_MAX_LEN 32
252
0
#define WPA_KCK_MAX_LEN 32
253
0
#define WPA_KEK_MAX_LEN 64
254
#define WPA_TK_MAX_LEN 32
255
1.29k
#define WPA_KDK_MAX_LEN 32
256
#define FILS_ICK_MAX_LEN 48
257
#define FILS_FT_MAX_LEN 48
258
#define WPA_PASN_KCK_LEN 32
259
#define WPA_LTF_KEYSEED_MAX_LEN 48
260
261
/**
262
 * struct wpa_ptk - WPA Pairwise Transient Key
263
 * IEEE Std 802.11i-2004 - 8.5.1.2 Pairwise key hierarchy
264
 */
265
struct wpa_ptk {
266
  u8 kck[WPA_KCK_MAX_LEN]; /* EAPOL-Key Key Confirmation Key (KCK) */
267
  u8 kek[WPA_KEK_MAX_LEN]; /* EAPOL-Key Key Encryption Key (KEK) */
268
  u8 tk[WPA_TK_MAX_LEN]; /* Temporal Key (TK) */
269
  u8 kck2[WPA_KCK_MAX_LEN]; /* FT reasoc Key Confirmation Key (KCK2) */
270
  u8 kek2[WPA_KEK_MAX_LEN]; /* FT reassoc Key Encryption Key (KEK2) */
271
  u8 kdk[WPA_KDK_MAX_LEN]; /* Key Derivation Key */
272
  u8 ltf_keyseed[WPA_LTF_KEYSEED_MAX_LEN]; /* LTF Key seed */
273
  size_t kck_len;
274
  size_t kek_len;
275
  size_t tk_len;
276
  size_t kck2_len;
277
  size_t kek2_len;
278
  size_t kdk_len;
279
  size_t ptk_len;
280
  size_t ltf_keyseed_len;
281
  enum rsn_hash_alg hash_alg;
282
  int installed; /* 1 if key has already been installed to driver */
283
  bool installed_rx; /* whether TK has been installed as the next TK
284
          * for temporary RX-only use in the driver */
285
};
286
287
struct wpa_gtk {
288
  u8 gtk[WPA_GTK_MAX_LEN];
289
  size_t gtk_len;
290
};
291
292
struct wpa_igtk {
293
  u8 igtk[WPA_IGTK_MAX_LEN];
294
  size_t igtk_len;
295
};
296
297
struct wpa_bigtk {
298
  u8 bigtk[WPA_BIGTK_MAX_LEN];
299
  size_t bigtk_len;
300
};
301
302
/* WPA IE version 1
303
 * 00-50-f2:1 (OUI:OUI type)
304
 * 0x01 0x00 (version; little endian)
305
 * (all following fields are optional:)
306
 * Group Suite Selector (4 octets) (default: TKIP)
307
 * Pairwise Suite Count (2 octets, little endian) (default: 1)
308
 * Pairwise Suite List (4 * n octets) (default: TKIP)
309
 * Authenticated Key Management Suite Count (2 octets, little endian)
310
 *    (default: 1)
311
 * Authenticated Key Management Suite List (4 * n octets)
312
 *    (default: unspec 802.1X)
313
 * WPA Capabilities (2 octets, little endian) (default: 0)
314
 */
315
316
struct wpa_ie_hdr {
317
  u8 elem_id;
318
  u8 len;
319
  u8 oui[4]; /* 24-bit OUI followed by 8-bit OUI type */
320
  u8 version[2]; /* little endian */
321
} STRUCT_PACKED;
322
323
324
/* 1/4: PMKID
325
 * 2/4: RSN IE
326
 * 3/4: one or two RSN IEs + GTK IE (encrypted)
327
 * 4/4: empty
328
 * 1/2: GTK IE (encrypted)
329
 * 2/2: empty
330
 */
331
332
/* RSN IE version 1
333
 * 0x01 0x00 (version; little endian)
334
 * (all following fields are optional:)
335
 * Group Suite Selector (4 octets) (default: CCMP)
336
 * Pairwise Suite Count (2 octets, little endian) (default: 1)
337
 * Pairwise Suite List (4 * n octets) (default: CCMP)
338
 * Authenticated Key Management Suite Count (2 octets, little endian)
339
 *    (default: 1)
340
 * Authenticated Key Management Suite List (4 * n octets)
341
 *    (default: unspec 802.1X)
342
 * RSN Capabilities (2 octets, little endian) (default: 0)
343
 * PMKID Count (2 octets) (default: 0)
344
 * PMKID List (16 * n octets)
345
 * Management Group Cipher Suite (4 octets) (default: AES-128-CMAC)
346
 */
347
348
struct rsn_ie_hdr {
349
  u8 elem_id; /* WLAN_EID_RSN */
350
  u8 len;
351
  u8 version[2]; /* little endian */
352
} STRUCT_PACKED;
353
354
355
#define KDE_HDR_LEN (1 + 1 + RSN_SELECTOR_LEN)
356
357
struct rsn_error_kde {
358
  be16 mui;
359
  be16 error_type;
360
} STRUCT_PACKED;
361
362
#define WPA_GTK_KDE_PREFIX_LEN 2
363
struct wpa_gtk_kde {
364
  u8 keyid;
365
  u8 reserved;
366
  u8 gtk[WPA_GTK_MAX_LEN];
367
} STRUCT_PACKED;
368
369
0
#define WPA_IGTK_KDE_PREFIX_LEN (2 + RSN_PN_LEN)
370
struct wpa_igtk_kde {
371
  u8 keyid[2];
372
  u8 pn[RSN_PN_LEN];
373
  u8 igtk[WPA_IGTK_MAX_LEN];
374
} STRUCT_PACKED;
375
376
0
#define WPA_BIGTK_KDE_PREFIX_LEN (2 + RSN_PN_LEN)
377
struct wpa_bigtk_kde {
378
  u8 keyid[2];
379
  u8 pn[RSN_PN_LEN];
380
  u8 bigtk[WPA_BIGTK_MAX_LEN];
381
} STRUCT_PACKED;
382
383
26.0k
#define RSN_MLO_GTK_KDE_PREFIX_LENGTH   (1 + RSN_PN_LEN)
384
#define RSN_MLO_GTK_KDE_PREFIX0_KEY_ID_MASK 0x03
385
#define RSN_MLO_GTK_KDE_PREFIX0_TX    0x04
386
563
#define RSN_MLO_GTK_KDE_PREFIX0_LINK_ID_SHIFT 4
387
563
#define RSN_MLO_GTK_KDE_PREFIX0_LINK_ID_MASK  0xF0
388
389
24.9k
#define RSN_MLO_IGTK_KDE_PREFIX_LENGTH    (2 + RSN_PN_LEN + 1)
390
687
#define RSN_MLO_IGTK_KDE_PREFIX8_LINK_ID_SHIFT  4
391
687
#define RSN_MLO_IGTK_KDE_PREFIX8_LINK_ID_MASK 0xF0
392
struct rsn_mlo_igtk_kde {
393
  u8 keyid[2];
394
  u8 pn[RSN_PN_LEN];
395
  u8 prefix8;
396
  u8 igtk[WPA_IGTK_MAX_LEN];
397
} STRUCT_PACKED;
398
399
23.5k
#define RSN_MLO_BIGTK_KDE_PREFIX_LENGTH   (2 + RSN_PN_LEN + 1)
400
958
#define RSN_MLO_BIGTK_KDE_PREFIX8_LINK_ID_SHIFT 4
401
958
#define RSN_MLO_BIGTK_KDE_PREFIX8_LINK_ID_MASK  0xF0
402
struct rsn_mlo_bigtk_kde {
403
  u8 keyid[2];
404
  u8 pn[RSN_PN_LEN];
405
  u8 prefix8;
406
  u8 bigtk[WPA_BIGTK_MAX_LEN];
407
} STRUCT_PACKED;
408
409
21.6k
#define RSN_MLO_LINK_KDE_FIXED_LENGTH   (1 + ETH_ALEN)
410
#define RSN_MLO_LINK_KDE_LINK_INFO_INDEX  0
411
592
#define RSN_MLO_LINK_KDE_LI_LINK_ID_SHIFT 0
412
592
#define RSN_MLO_LINK_KDE_LI_LINK_ID_MASK  0x0F
413
0
#define RSN_MLO_LINK_KDE_LI_RSNE_INFO   0x10
414
0
#define RSN_MLO_LINK_KDE_LI_RSNXE_INFO    0x20
415
0
#define RSN_MLO_LINK_KDE_LINK_MAC_INDEX   1
416
417
struct rsn_mdie {
418
  u8 mobility_domain[MOBILITY_DOMAIN_ID_LEN];
419
  u8 ft_capab;
420
} STRUCT_PACKED;
421
422
#define RSN_FT_CAPAB_FT_OVER_DS BIT(0)
423
#define RSN_FT_CAPAB_FT_RESOURCE_REQ_SUPP BIT(1)
424
425
struct rsn_ftie {
426
  u8 mic_control[2];
427
  u8 mic[16];
428
  u8 anonce[WPA_NONCE_LEN];
429
  u8 snonce[WPA_NONCE_LEN];
430
  /* followed by optional parameters */
431
} STRUCT_PACKED;
432
433
struct rsn_ftie_sha384 {
434
  u8 mic_control[2];
435
  u8 mic[24];
436
  u8 anonce[WPA_NONCE_LEN];
437
  u8 snonce[WPA_NONCE_LEN];
438
  /* followed by optional parameters */
439
} STRUCT_PACKED;
440
441
struct rsn_ftie_sha512 {
442
  u8 mic_control[2];
443
  u8 mic[32];
444
  u8 anonce[WPA_NONCE_LEN];
445
  u8 snonce[WPA_NONCE_LEN];
446
  /* followed by optional parameters */
447
} STRUCT_PACKED;
448
449
0
#define FTIE_SUBELEM_R1KH_ID 1
450
0
#define FTIE_SUBELEM_GTK 2
451
0
#define FTIE_SUBELEM_R0KH_ID 3
452
0
#define FTIE_SUBELEM_IGTK 4
453
#define FTIE_SUBELEM_OCI 5
454
0
#define FTIE_SUBELEM_BIGTK 6
455
0
#define FTIE_SUBELEM_MLO_GTK 8
456
0
#define FTIE_SUBELEM_MLO_IGTK 9
457
0
#define FTIE_SUBELEM_MLO_BIGTK 10
458
459
struct rsn_rdie {
460
  u8 id;
461
  u8 descr_count;
462
  le16 status_code;
463
} STRUCT_PACKED;
464
465
/* WFA Transition Disable KDE (using OUI_WFA) */
466
/* Transition Disable Bitmap bits */
467
#define TRANSITION_DISABLE_WPA3_PERSONAL BIT(0)
468
#define TRANSITION_DISABLE_SAE_PK BIT(1)
469
#define TRANSITION_DISABLE_WPA3_ENTERPRISE BIT(2)
470
#define TRANSITION_DISABLE_ENHANCED_OPEN BIT(3)
471
472
/* DPP KDE Flags */
473
#define DPP_KDE_PFS_ALLOWED BIT(0)
474
#define DPP_KDE_PFS_REQUIRED BIT(1)
475
476
#ifdef _MSC_VER
477
#pragma pack(pop)
478
#endif /* _MSC_VER */
479
480
481
int wpa_eapol_key_mic(const u8 *key, size_t key_len, int akmp,
482
          enum rsn_hash_alg hash, int ver,
483
          const u8 *buf, size_t len, u8 *mic);
484
int wpa_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const char *label,
485
       const u8 *addr1, const u8 *addr2,
486
       const u8 *nonce1, const u8 *nonce2,
487
       struct wpa_ptk *ptk, int akmp, int cipher,
488
       const u8 *z, size_t z_len, size_t kdk_len);
489
int fils_rmsk_to_pmk(int akmp, const u8 *rmsk, size_t rmsk_len,
490
         const u8 *snonce, const u8 *anonce, const u8 *dh_ss,
491
         size_t dh_ss_len, u8 *pmk, size_t *pmk_len);
492
int fils_pmkid_erp(int akmp, const u8 *reauth, size_t reauth_len,
493
       u8 *pmkid);
494
int fils_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const u8 *spa, const u8 *aa,
495
        const u8 *snonce, const u8 *anonce, const u8 *dhss,
496
        size_t dhss_len, struct wpa_ptk *ptk,
497
        u8 *ick, size_t *ick_len, int akmp, int cipher,
498
        u8 *fils_ft, size_t *fils_ft_len, size_t kdk_len);
499
int fils_key_auth_sk(const u8 *ick, size_t ick_len, const u8 *snonce,
500
         const u8 *anonce, const u8 *sta_addr, const u8 *bssid,
501
         const u8 *g_sta, size_t g_sta_len,
502
         const u8 *g_ap, size_t g_ap_len,
503
         int akmp, u8 *key_auth_sta, u8 *key_auth_ap,
504
         size_t *key_auth_len);
505
506
#ifdef CONFIG_IEEE80211R
507
int wpa_ft_mic(int key_mgmt, const u8 *kck, size_t kck_len, const u8 *sta_addr,
508
         const u8 *ap_addr, u8 transaction_seqnum,
509
         const u8 *mdie, size_t mdie_len,
510
         const u8 *ftie, size_t ftie_len,
511
         const u8 *rsnie, size_t rsnie_len,
512
         const u8 *ric, size_t ric_len,
513
         const u8 *rsnxe, size_t rsnxe_len,
514
         const struct wpabuf *extra,
515
         u8 *mic);
516
int wpa_derive_pmk_r0(const u8 *xxkey, size_t xxkey_len,
517
          const u8 *ssid, size_t ssid_len,
518
          const u8 *mdid, const u8 *r0kh_id, size_t r0kh_id_len,
519
          const u8 *s0kh_id, u8 *pmk_r0, u8 *pmk_r0_name,
520
          int key_mgmt);
521
int wpa_derive_pmk_r1_name(const u8 *pmk_r0_name, const u8 *r1kh_id,
522
         const u8 *s1kh_id, u8 *pmk_r1_name,
523
         size_t pmk_r1_len);
524
int wpa_derive_pmk_r1(const u8 *pmk_r0, size_t pmk_r0_len,
525
          const u8 *pmk_r0_name,
526
          const u8 *r1kh_id, const u8 *s1kh_id,
527
          u8 *pmk_r1, u8 *pmk_r1_name);
528
int wpa_pmk_r1_to_ptk(const u8 *pmk_r1, size_t pmk_r1_len, const u8 *snonce,
529
          const u8 *anonce, const u8 *sta_addr, const u8 *bssid,
530
          const u8 *pmk_r1_name,
531
          struct wpa_ptk *ptk, u8 *ptk_name, int akmp, int cipher,
532
          size_t kdk_len);
533
#endif /* CONFIG_IEEE80211R */
534
535
struct wpa_ie_data {
536
  int proto;
537
  int pairwise_cipher;
538
  int has_pairwise;
539
  int group_cipher;
540
  int has_group;
541
  int key_mgmt;
542
  int capabilities;
543
  size_t num_pmkid;
544
  const u8 *pmkid;
545
  int mgmt_group_cipher;
546
};
547
548
549
int wpa_parse_wpa_ie_rsn(const u8 *rsn_ie, size_t rsn_ie_len,
550
       struct wpa_ie_data *data);
551
int wpa_parse_wpa_ie_wpa(const u8 *wpa_ie, size_t wpa_ie_len,
552
       struct wpa_ie_data *data);
553
int wpa_default_rsn_cipher(int freq);
554
555
void rsn_pmkid(const u8 *pmk, size_t pmk_len, const u8 *aa, const u8 *spa,
556
         u8 *pmkid, int akmp);
557
#ifdef CONFIG_SUITEB
558
int rsn_pmkid_suite_b(const u8 *kck, size_t kck_len, const u8 *aa,
559
           const u8 *spa, u8 *pmkid);
560
#else /* CONFIG_SUITEB */
561
static inline int rsn_pmkid_suite_b(const u8 *kck, size_t kck_len, const u8 *aa,
562
            const u8 *spa, u8 *pmkid)
563
0
{
564
0
  return -1;
565
0
}
Unexecuted instantiation: eapol-supp.c:rsn_pmkid_suite_b
Unexecuted instantiation: wpa.c:rsn_pmkid_suite_b
Unexecuted instantiation: wpa_ie.c:rsn_pmkid_suite_b
Unexecuted instantiation: pmksa_cache.c:rsn_pmkid_suite_b
Unexecuted instantiation: wpa_ft.c:rsn_pmkid_suite_b
Unexecuted instantiation: tdls.c:rsn_pmkid_suite_b
Unexecuted instantiation: preauth.c:rsn_pmkid_suite_b
566
#endif /* CONFIG_SUITEB */
567
#ifdef CONFIG_SUITEB192
568
int rsn_pmkid_suite_b_192(const u8 *kck, size_t kck_len, const u8 *aa,
569
        const u8 *spa, u8 *pmkid);
570
#else /* CONFIG_SUITEB192 */
571
static inline int rsn_pmkid_suite_b_192(const u8 *kck, size_t kck_len,
572
          const u8 *aa, const u8 *spa, u8 *pmkid)
573
0
{
574
0
  return -1;
575
0
}
Unexecuted instantiation: eapol-supp.c:rsn_pmkid_suite_b_192
Unexecuted instantiation: wpa.c:rsn_pmkid_suite_b_192
Unexecuted instantiation: wpa_ie.c:rsn_pmkid_suite_b_192
Unexecuted instantiation: pmksa_cache.c:rsn_pmkid_suite_b_192
Unexecuted instantiation: wpa_ft.c:rsn_pmkid_suite_b_192
Unexecuted instantiation: tdls.c:rsn_pmkid_suite_b_192
Unexecuted instantiation: preauth.c:rsn_pmkid_suite_b_192
Unexecuted instantiation: ieee802_11_common.c:rsn_pmkid_suite_b_192
Unexecuted instantiation: wpa_common.c:rsn_pmkid_suite_b_192
576
#endif /* CONFIG_SUITEB192 */
577
int rsn_pmkid_privacy(const u8 *pmkid_anonce, const u8 *pmkid_snonce,
578
          int akmp, size_t pmk_len, u8 *pmkid);
579
580
const char * wpa_cipher_txt(int cipher);
581
const char * wpa_key_mgmt_txt(int key_mgmt, int proto);
582
u32 wpa_akm_to_suite(int akm);
583
int wpa_compare_rsn_ie(int ft_initial_assoc,
584
           const u8 *ie1, size_t ie1len,
585
           const u8 *ie2, size_t ie2len);
586
int wpa_compare_rsne_params(const u8 *rsne1, size_t rsne1_len,
587
          const u8 *rsne2, size_t rsne2_len);
588
int wpa_insert_pmkid(u8 *ies, size_t *ies_len, const u8 *pmkid, bool replace);
589
590
struct wpa_ft_ies {
591
  const u8 *mdie;
592
  size_t mdie_len;
593
  const u8 *ftie;
594
  size_t ftie_len;
595
  const u8 *r1kh_id;
596
  const u8 *gtk;
597
  size_t gtk_len;
598
  const u8 *r0kh_id;
599
  size_t r0kh_id_len;
600
  const u8 *fte_anonce;
601
  const u8 *fte_snonce;
602
  bool fte_rsnxe_used;
603
  unsigned int fte_elem_count;
604
  const u8 *fte_mic;
605
  size_t fte_mic_len;
606
  const u8 *rsn;
607
  size_t rsn_len;
608
  u16 rsn_capab;
609
  const u8 *rsn_pmkid;
610
  const u8 *tie;
611
  size_t tie_len;
612
  const u8 *igtk;
613
  size_t igtk_len;
614
  const u8 *bigtk;
615
  size_t bigtk_len;
616
#ifdef CONFIG_OCV
617
  const u8 *oci;
618
  size_t oci_len;
619
#endif /* CONFIG_OCV */
620
  const u8 *ric;
621
  size_t ric_len;
622
  int key_mgmt;
623
  int pairwise_cipher;
624
  const u8 *rsnxe;
625
  size_t rsnxe_len;
626
  u16 valid_mlo_gtks; /* bitmap of valid link GTK subelements */
627
  const u8 *mlo_gtk[MAX_NUM_MLD_LINKS];
628
  size_t mlo_gtk_len[MAX_NUM_MLD_LINKS];
629
  u16 valid_mlo_igtks; /* bitmap of valid link IGTK subelements */
630
  const u8 *mlo_igtk[MAX_NUM_MLD_LINKS];
631
  size_t mlo_igtk_len[MAX_NUM_MLD_LINKS];
632
  u16 valid_mlo_bigtks; /* bitmap of valid link BIGTK subelements */
633
  const u8 *mlo_bigtk[MAX_NUM_MLD_LINKS];
634
  size_t mlo_bigtk_len[MAX_NUM_MLD_LINKS];
635
636
  struct wpabuf *fte_buf;
637
};
638
639
/* IEEE Std 802.11-2024 - 9.4.2.305 PASN Parameters element */
640
#define WPA_PASN_CTRL_COMEBACK_INFO_PRESENT BIT(0)
641
#define WPA_PASN_CTRL_GROUP_AND_KEY_PRESENT BIT(1)
642
643
#define WPA_PASN_WRAPPED_DATA_NO      0
644
#define WPA_PASN_WRAPPED_DATA_FT      1
645
#define WPA_PASN_WRAPPED_DATA_FILS_SK 2
646
#define WPA_PASN_WRAPPED_DATA_SAE     3
647
648
struct pasn_parameter_ie {
649
  u8 id;
650
  u8 len;
651
  u8 id_ext;
652
  u8 control; /* WPA_PASN_CTRL_* */
653
  u8 wrapped_data_format; /* WPA_PASN_WRAPPED_DATA_* */
654
} STRUCT_PACKED;
655
656
struct wpa_pasn_params_data {
657
  u8 wrapped_data_format;
658
  u16 after;
659
  u8 comeback_len;
660
  const u8 *comeback;
661
  u16 group;
662
  u8 pubkey_len;
663
  const u8 *pubkey;
664
};
665
666
/* See RFC 5480 section 2.2 */
667
#define WPA_PASN_PUBKEY_COMPRESSED_0 0x02
668
#define WPA_PASN_PUBKEY_COMPRESSED_1 0x03
669
#define WPA_PASN_PUBKEY_UNCOMPRESSED 0x04
670
671
/* WPA3 specification - RSN Selection element */
672
enum rsn_selection_variant {
673
  RSN_SELECTION_RSNE = 0,
674
  RSN_SELECTION_RSNE_OVERRIDE = 1,
675
  RSN_SELECTION_RSNE_OVERRIDE_2 = 2,
676
};
677
678
679
int wpa_ft_parse_ies(const u8 *ies, size_t ies_len, struct wpa_ft_ies *parse,
680
         int key_mgmt, bool reassoc_resp);
681
void wpa_ft_parse_ies_free(struct wpa_ft_ies *parse);
682
683
struct wpa_eapol_ie_parse {
684
  const u8 *wpa_ie;
685
  size_t wpa_ie_len;
686
  const u8 *rsn_ie;
687
  size_t rsn_ie_len;
688
  const u8 *pmkid;
689
  const u8 *key_id;
690
  const u8 *gtk;
691
  size_t gtk_len;
692
  const u8 *mac_addr;
693
  const u8 *igtk;
694
  size_t igtk_len;
695
  const u8 *bigtk;
696
  size_t bigtk_len;
697
  const u8 *sae_pw_ids;
698
  size_t sae_pw_ids_len;
699
  const u8 *mdie;
700
  size_t mdie_len;
701
  const u8 *ftie;
702
  size_t ftie_len;
703
  const u8 *ip_addr_req;
704
  const u8 *ip_addr_alloc;
705
  const u8 *transition_disable;
706
  size_t transition_disable_len;
707
  const u8 *dpp_kde;
708
  size_t dpp_kde_len;
709
  const u8 *oci;
710
  size_t oci_len;
711
  const u8 *osen;
712
  size_t osen_len;
713
  const u8 *rsnxe;
714
  size_t rsnxe_len;
715
  const u8 *reassoc_deadline;
716
  const u8 *key_lifetime;
717
  const u8 *lnkid;
718
  size_t lnkid_len;
719
  const u8 *ext_capab;
720
  size_t ext_capab_len;
721
  const u8 *supp_rates;
722
  size_t supp_rates_len;
723
  const u8 *ext_supp_rates;
724
  size_t ext_supp_rates_len;
725
  const u8 *ht_capabilities;
726
  const u8 *vht_capabilities;
727
  const u8 *he_capabilities;
728
  size_t he_capab_len;
729
  const u8 *he_6ghz_capabilities;
730
  const u8 *eht_capabilities;
731
  size_t eht_capab_len;
732
  const u8 *supp_channels;
733
  size_t supp_channels_len;
734
  const u8 *supp_oper_classes;
735
  size_t supp_oper_classes_len;
736
  const u8 *ssid;
737
  size_t ssid_len;
738
  u8 qosinfo;
739
  u16 aid;
740
  const u8 *wmm;
741
  size_t wmm_len;
742
  const u8 *rsn_selection;
743
  size_t rsn_selection_len;
744
  const u8 *rsne_override;
745
  size_t rsne_override_len;
746
  const u8 *rsne_override_2;
747
  size_t rsne_override_2_len;
748
  const u8 *rsnxe_override;
749
  size_t rsnxe_override_len;
750
  const u8 *nan_nik;
751
  size_t nan_nik_len;
752
  const u8 *nan_key_lifetime;
753
  size_t nan_key_lifetime_len;
754
  u16 valid_mlo_gtks; /* bitmap of valid link GTK KDEs */
755
  const u8 *mlo_gtk[MAX_NUM_MLD_LINKS];
756
  size_t mlo_gtk_len[MAX_NUM_MLD_LINKS];
757
  u16 valid_mlo_igtks; /* bitmap of valid link IGTK KDEs */
758
  const u8 *mlo_igtk[MAX_NUM_MLD_LINKS];
759
  size_t mlo_igtk_len[MAX_NUM_MLD_LINKS];
760
  u16 valid_mlo_bigtks; /* bitmap of valid link BIGTK KDEs */
761
  const u8 *mlo_bigtk[MAX_NUM_MLD_LINKS];
762
  size_t mlo_bigtk_len[MAX_NUM_MLD_LINKS];
763
  u16 valid_mlo_links; /* bitmap of valid MLO link KDEs */
764
  const u8 *mlo_link[MAX_NUM_MLD_LINKS];
765
  size_t mlo_link_len[MAX_NUM_MLD_LINKS];
766
  const u8 *rsn_override_link[MAX_NUM_MLD_LINKS];
767
  size_t rsn_override_link_len[MAX_NUM_MLD_LINKS];
768
};
769
770
int wpa_parse_kde_ies(const u8 *buf, size_t len, struct wpa_eapol_ie_parse *ie);
771
static inline int wpa_supplicant_parse_ies(const u8 *buf, size_t len,
772
             struct wpa_eapol_ie_parse *ie)
773
1.68k
{
774
1.68k
  return wpa_parse_kde_ies(buf, len, ie);
775
1.68k
}
Unexecuted instantiation: eapol-supp.c:wpa_supplicant_parse_ies
wpa.c:wpa_supplicant_parse_ies
Line
Count
Source
773
1.68k
{
774
1.68k
  return wpa_parse_kde_ies(buf, len, ie);
775
1.68k
}
Unexecuted instantiation: wpa_ie.c:wpa_supplicant_parse_ies
Unexecuted instantiation: pmksa_cache.c:wpa_supplicant_parse_ies
Unexecuted instantiation: wpa_ft.c:wpa_supplicant_parse_ies
Unexecuted instantiation: tdls.c:wpa_supplicant_parse_ies
Unexecuted instantiation: preauth.c:wpa_supplicant_parse_ies
Unexecuted instantiation: ieee802_11_common.c:wpa_supplicant_parse_ies
Unexecuted instantiation: wpa_common.c:wpa_supplicant_parse_ies
776
777
778
int wpa_cipher_key_len(int cipher);
779
int wpa_cipher_rsc_len(int cipher);
780
enum wpa_alg wpa_cipher_to_alg(int cipher);
781
int wpa_cipher_valid_group(int cipher);
782
int wpa_cipher_valid_pairwise(int cipher);
783
int wpa_cipher_valid_mgmt_group(int cipher);
784
u32 wpa_cipher_to_suite(int proto, int cipher);
785
int rsn_cipher_put_suites(u8 *pos, int ciphers);
786
int wpa_cipher_put_suites(u8 *pos, int ciphers);
787
int wpa_pick_pairwise_cipher(int ciphers, int none_allowed);
788
int wpa_pick_group_cipher(int ciphers);
789
int wpa_parse_cipher(const char *value);
790
int wpa_write_ciphers(char *start, char *end, int ciphers, const char *delim);
791
int wpa_select_ap_group_cipher(int wpa, int wpa_pairwise, int rsn_pairwise);
792
unsigned int wpa_mic_len(int akmp, size_t pmk_len, enum rsn_hash_alg hash);
793
unsigned int wpa_kek_len(int akmp, size_t pmk_len);
794
int wpa_use_akm_defined(int akmp);
795
int wpa_use_cmac(int akmp);
796
int wpa_use_aes_key_wrap(int akmp);
797
int fils_domain_name_hash(const char *domain, u8 *hash);
798
799
int pasn_pmk_to_ptk(const u8 *pmk, size_t pmk_len,
800
        const u8 *spa, const u8 *bssid,
801
        const u8 *dhss, size_t dhss_len,
802
        struct wpa_ptk *ptk, int akmp, int cipher,
803
        size_t kdk_len, size_t kek_len, enum rsn_hash_alg *alg,
804
        bool is_eppke);
805
806
size_t pasn_mic_len(enum rsn_hash_alg alg);
807
808
int wpa_auth_8021x_mic(int akmp, const u8 *kck, size_t kck_len, const u8 *addr1,
809
           const u8 *addr2, const u8 *data, size_t data_len,
810
           const u8 *frame, size_t frame_len, u8 *mic);
811
812
int pasn_mic(enum rsn_hash_alg alg, const u8 *kck, size_t kck_len,
813
       const u8 *addr1, const u8 *addr2,
814
       const u8 *data, size_t data_len,
815
       const u8 *frame, size_t frame_len, u8 *mic);
816
817
int wpa_ltf_keyseed(struct wpa_ptk *ptk, int akmp, int cipher);
818
819
int pasn_auth_frame_hash(enum rsn_hash_alg alg, const u8 *data, size_t len,
820
       u8 *hash);
821
822
void wpa_pasn_build_auth_header(struct wpabuf *buf, const u8 *bssid,
823
        const u8 *src, const u8 *dst,
824
        u8 trans_seq, u16 status, bool is_eppke);
825
826
int wpa_pasn_add_rsne(struct wpabuf *buf, const u8 *pmkid,
827
          int akmp, int cipher);
828
829
void wpa_pasn_add_parameter_ie(struct wpabuf *buf, u16 pasn_group,
830
             u8 wrapped_data_format,
831
             const struct wpabuf *pubkey, bool compressed,
832
             const struct wpabuf *comeback, int after);
833
834
int wpa_pasn_add_wrapped_data(struct wpabuf *buf,
835
            struct wpabuf *wrapped_data_buf);
836
837
int wpa_pasn_validate_rsne(const struct wpa_ie_data *data, bool is_eppke);
838
int wpa_pasn_parse_parameter_ie(const u8 *data, u8 len, bool from_ap,
839
        struct wpa_pasn_params_data *pasn_params);
840
841
void wpa_pasn_add_rsnxe(struct wpabuf *buf, u64 capab);
842
int wpa_pasn_add_extra_ies(struct wpabuf *buf, const u8 *extra_ies, size_t len);
843
844
void rsn_set_snonce_cookie(u8 *snonce);
845
bool rsn_is_snonce_cookie(const u8 *snonce);
846
847
int rsn_cipher_suite_to_wpa_cipher(u32 cipher);
848
int rsn_key_mgmt_to_wpa_akm(u32 akm_suite);
849
850
int wpa_auth_802_1x_pmk_to_ptk(const u8 *pmk, size_t pmk_len, const u8 *spa,
851
             const u8 *aa, const u8 *snonce, const u8 *anonce,
852
             int akmp, int cipher, const u8 *dhss,
853
             size_t dhss_len, struct wpa_ptk *ptk,
854
             size_t kdk_len);
855
void wpa_add_supported_groups(struct wpabuf *buf, const int *groups);
856
857
#endif /* WPA_COMMON_H */