The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] wifi: mac80211: Fix cryptographic MAC comparison to be constant-time
@ 2026-07-09  2:44 Eric Biggers
  2026-07-09  6:45 ` Johannes Berg
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Biggers @ 2026-07-09  2:44 UTC (permalink / raw)
  To: linux-wireless, Johannes Berg, Jouni Malinen
  Cc: linux-crypto, linux-kernel, Eric Biggers, stable

To prevent timing attacks, the comparison of cryptographic message
authentication codes (MACs) needs to have data-independent timing.
Replace the memcmp() with the correct function, crypto_memneq().

Fixes: 39404feee691 ("mac80211: FILS AEAD protection for station mode association frames")
Cc: stable@vger.kernel.org
Signed-off-by: Eric Biggers <ebiggers@kernel.org>
---
 net/mac80211/fils_aead.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/mac80211/fils_aead.c b/net/mac80211/fils_aead.c
index d2f4a17eab99..00b91e6ed994 100644
--- a/net/mac80211/fils_aead.c
+++ b/net/mac80211/fils_aead.c
@@ -195,7 +195,7 @@ static int aes_siv_decrypt(const u8 *key, size_t key_len,
 	res = aes_s2v(key /* K1 */, key_len, num_elem, addr, len, check);
 	if (res)
 		return res;
-	if (memcmp(check, frame_iv, AES_BLOCK_SIZE) != 0)
+	if (crypto_memneq(check, frame_iv, AES_BLOCK_SIZE))
 		return -EINVAL;
 	return 0;
 }

base-commit: 8cdeaa50eae8dad34885515f62559ee83e7e8dda
-- 
2.55.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-07-09 15:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-09  2:44 [PATCH] wifi: mac80211: Fix cryptographic MAC comparison to be constant-time Eric Biggers
2026-07-09  6:45 ` Johannes Berg
2026-07-09 15:20   ` Eric Biggers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox