From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B95F936607D; Thu, 30 Jul 2026 15:49:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785426585; cv=none; b=MWeVEDqhXnHXD9SFJChTmiyJVatpwpOy8PGnhfWJCJBfj8c8OBWRd+0ltXUjUrQJGj2yN9xtPXnLTramm78CUGAdW9smzhlNdr+fsJuxUAdnJ0xiLlI8l7i3hvV6BUmS2Dv2kWwzx+3K2x+eskER9nHj/xGV5wmroPinZ4O0Wmg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785426585; c=relaxed/simple; bh=2gS6WMYJBu9Yz7TsGzP1x+Qesv45AruV7yeWCy0X5Go=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=dW/4kqKKQP+vvZ0C3qoooWFWaYtKAlAqNIKJa6tKLM6UNZz7UozTBMD9QGlr1FXUeh51H7vzhBOxVHaGzIo24BrY7JAtXEQaNvDVFkV4t0Z/MoW641AZQSHtiXnhZXBimYhoSfPWvy2MHmyl6NKuKaI1cPGYx4WRUHqG67ibb9g= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=aFABEG7A; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="aFABEG7A" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C41EE1F000E9; Thu, 30 Jul 2026 15:49:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785426584; bh=yq0vKgm995ngDBv2CYPmnR8WyjXpYa49dWn729QpAKI=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=aFABEG7AVL/T5RkAP09zmdR5+/Ajn3yYQbjlubffSI8SpK4LDCmDZKW8w+Ffc0M2+ JFX9l1F1JAzCl8EU3rcd0A3F/G5dupg7xyeuR6jaKeZeCGXjFgCaHiFc7Wg0QyocTd +8NL6ByXt4tlb59N1A0kjSNxgPG4Is9mwMxOZsmM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Simon Horman , Doruk Tan Ozturk , Jakub Kicinski Subject: [PATCH 6.12 426/602] mac802154: llsec: reject frames shorter than the authentication tag Date: Thu, 30 Jul 2026 16:13:38 +0200 Message-ID: <20260730141444.917253072@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141435.976815864@linuxfoundation.org> References: <20260730141435.976815864@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Doruk Tan Ozturk commit fd3a3f28ed60c6af4b2a39933b151d6b27842c3b upstream. llsec_do_decrypt_auth() computes the associated-data length for the AEAD request as assoclen += datalen - authlen; where datalen is the number of bytes after the MAC header and authlen (4, 8 or 16) is the length of the authentication tag. Nothing verifies that the frame actually carries at least authlen payload bytes. A secured frame whose payload is shorter than the tag makes datalen - authlen negative; assoclen is then passed to aead_request_set_ad() as an unsigned value close to 4 GiB, so crypto_aead_decrypt() walks far off the end of the scatterlist that only spans the real frame. The frame is fully attacker-controlled and reaches this path from any IEEE 802.15.4 peer in radio range. Reject frames whose payload is shorter than the authentication tag before the subtraction. Dynamically reproduced on a KASAN kernel as a general-protection-fault in the AEAD scatterwalk, and the fix confirmed. Fixes: 4c14a2fb5d14 ("mac802154: add llsec decryption method") Cc: stable@vger.kernel.org Reviewed-by: Simon Horman Signed-off-by: Doruk Tan Ozturk Link: https://patch.msgid.link/20260716193423.32498-1-doruk@0sec.ai Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- net/mac802154/llsec.c | 5 +++++ 1 file changed, 5 insertions(+) --- a/net/mac802154/llsec.c +++ b/net/mac802154/llsec.c @@ -891,6 +891,11 @@ llsec_do_decrypt_auth(struct sk_buff *sk data = skb_mac_header(skb) + skb->mac_len; datalen = skb_tail_pointer(skb) - data; + if (datalen < authlen) { + kfree_sensitive(req); + return -EBADMSG; + } + sg_init_one(&sg, skb_mac_header(skb), assoclen + datalen); if (!(hdr->sec.level & IEEE802154_SCF_SECLEVEL_ENC)) {