From: John Brandt <brandtwjohn@gmail.com>
To: iwd@lists.linux.dev
Cc: John Brandt <brandtwjohn@gmail.com>
Subject: [PATCH 11/11] eapol: encrypt key data for AKM-defined ciphers
Date: Sun, 21 Apr 2024 05:50:41 -0700 [thread overview]
Message-ID: <20240421125050.6649-12-brandtwjohn@gmail.com> (raw)
In-Reply-To: <20240421125050.6649-1-brandtwjohn@gmail.com>
Support encrypting key data when the cipher is AKM-defined. This is
needed to support SAE in AP mode.
---
src/eapol.c | 51 ++++++++++++++++++++++++++++++++++++---------------
1 file changed, 36 insertions(+), 15 deletions(-)
diff --git a/src/eapol.c b/src/eapol.c
index a9b4f3ba..524a26c9 100644
--- a/src/eapol.c
+++ b/src/eapol.c
@@ -387,6 +387,23 @@ error:
return NULL;
}
+static int padded_aes_wrap(const uint8_t *kek, uint8_t *key_data,
+ size_t *key_data_len,
+ struct eapol_key *out_frame, size_t mic_len)
+{
+ if (*key_data_len < 16 || *key_data_len % 8)
+ key_data[(*key_data_len)++] = 0xdd;
+ while (*key_data_len < 16 || *key_data_len % 8)
+ key_data[(*key_data_len)++] = 0x00;
+
+ if (!aes_wrap(kek, key_data, *key_data_len,
+ EAPOL_KEY_DATA(out_frame, mic_len)))
+ return -ENOPROTOOPT;
+
+ *key_data_len += 8;
+ return 0;
+}
+
/*
* Pad and encrypt the plaintext Key Data contents in @key_data using
* the encryption scheme required by @out_frame->key_descriptor_version,
@@ -395,12 +412,12 @@ error:
* Note that for efficiency @key_data is being modified, including in
* case of failure, so it must be sufficiently larger than @key_data_len.
*/
-static int eapol_encrypt_key_data(const uint8_t *kek, uint8_t *key_data,
- size_t key_data_len,
+static int eapol_encrypt_key_data(enum ie_rsn_akm_suite akm, const uint8_t *kek,
+ uint8_t *key_data, size_t key_data_len,
struct eapol_key *out_frame, size_t mic_len)
{
uint8_t key[32];
- bool ret;
+ int ret;
switch (out_frame->key_descriptor_version) {
case EAPOL_KEY_DESCRIPTOR_VERSION_HMAC_MD5_ARC4:
@@ -426,18 +443,21 @@ static int eapol_encrypt_key_data(const uint8_t *kek, uint8_t *key_data,
break;
case EAPOL_KEY_DESCRIPTOR_VERSION_HMAC_SHA1_AES:
case EAPOL_KEY_DESCRIPTOR_VERSION_AES_128_CMAC_AES:
- if (key_data_len < 16 || key_data_len % 8)
- key_data[key_data_len++] = 0xdd;
- while (key_data_len < 16 || key_data_len % 8)
- key_data[key_data_len++] = 0x00;
-
- if (!aes_wrap(kek, key_data, key_data_len,
- EAPOL_KEY_DATA(out_frame, mic_len)))
- return -ENOPROTOOPT;
-
- key_data_len += 8;
+ ret = padded_aes_wrap(kek, key_data, &key_data_len, out_frame, mic_len);
+ if (ret < 0)
+ return ret;
break;
+ case EAPOL_KEY_DESCRIPTOR_VERSION_AKM_DEFINED:
+ switch (akm) {
+ case IE_RSN_AKM_SUITE_SAE_SHA256:
+ ret = padded_aes_wrap(kek, key_data, &key_data_len, out_frame, mic_len);
+ if (ret < 0)
+ return ret;
+ break;
+ default:
+ return -ENOTSUP;
+ }
}
l_put_be16(key_data_len, EAPOL_KEY_DATA(out_frame, mic_len) - 2);
@@ -1467,8 +1487,9 @@ static void eapol_send_ptk_3_of_4(struct eapol_sm *sm)
}
kek = handshake_state_get_kek(sm->handshake);
- key_data_len = eapol_encrypt_key_data(kek, key_data_buf,
- key_data_len, ek, sm->mic_len);
+ key_data_len = eapol_encrypt_key_data(sm->handshake->akm_suite, kek,
+ key_data_buf, key_data_len, ek,
+ sm->mic_len);
explicit_bzero(key_data_buf, sizeof(key_data_buf));
if (key_data_len < 0)
--
2.44.0
next prev parent reply other threads:[~2024-04-21 12:54 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-21 12:50 [PATCH 00/11] Basic SAE support for AP mode John Brandt
2024-04-21 12:50 ` [PATCH 01/11] ap: ability to advertise PSK and SAE John Brandt
2024-04-21 12:50 ` [PATCH 02/11] ap: accept PSK/SAE in auth depending on config John Brandt
2024-04-24 12:05 ` James Prestwood
2024-04-21 12:50 ` [PATCH 03/11] sae: add function sae_set_group John Brandt
2024-04-24 12:05 ` James Prestwood
2024-04-21 12:50 ` [PATCH 04/11] sae: refactor and add function sae_calculate_keys John Brandt
2024-04-24 12:06 ` James Prestwood
2024-04-21 12:50 ` [PATCH 05/11] sae: make sae_process_commit callable in AP mode John Brandt
2024-04-24 12:08 ` James Prestwood
2024-04-21 12:50 ` [PATCH 06/11] sae: verify offered group " John Brandt
2024-04-21 12:50 ` [PATCH 07/11] sae: support reception of Confirm frame by AP John Brandt
2024-04-24 12:08 ` James Prestwood
2024-04-21 12:50 ` [PATCH 08/11] ap: add support to handle SAE authentication John Brandt
2024-04-24 12:06 ` James Prestwood
2024-04-21 12:50 ` [PATCH 09/11] ap: enable start of 4-way HS after SAE John Brandt
2024-04-21 12:50 ` [PATCH 10/11] eapol: support PTK derivation with SHA256 John Brandt
2024-04-21 12:50 ` John Brandt [this message]
2024-04-22 13:52 ` [PATCH 00/11] Basic SAE support for AP mode James Prestwood
2024-04-24 12:07 ` James Prestwood
2024-04-29 0:04 ` John Brandt
2024-04-29 12:00 ` James Prestwood
2024-04-30 23:27 ` KeithG
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240421125050.6649-12-brandtwjohn@gmail.com \
--to=brandtwjohn@gmail.com \
--cc=iwd@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox