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