From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 D613526CE32; Mon, 13 Apr 2026 16:28:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776097725; cv=none; b=licmRu70kO6kQZWIV5V/wxsS47RIg+zJOKNjPMQSSeKDqKA2kmsiCNV8qqhGb1I+8FbMEehoPbyxZDhSmTb2eniiKo4VzkHYTTPAvzB1+fthqi2qcMmsdHHiyrDk0O61dPFZ/L53Pi5+XNnnBiQm5yGVNbkTVYV892n2R3uZZPw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776097725; c=relaxed/simple; bh=EsY2ZFFHSlII4bsGGHY4m16q+bIVqXr0qgWGQuM50yM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=HK8eNXrS6GgLzVV2qeGLSmAAqkXZaTQh9AzyUwgJNGqT2sjFTP16Hj7rxkUKPVjZ4IJ6a7wxZkBZkJE6mCeqxf7y61V0miF0paeUVzVQWfD4o9s2Xiutcvw0IIx81693QUi/gcN+HRHnaY71k0okdCAZmcQO/aGYnsbeNblzUEc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=d0Hfm4pq; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="d0Hfm4pq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6BE5CC2BCAF; Mon, 13 Apr 2026 16:28:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776097725; bh=EsY2ZFFHSlII4bsGGHY4m16q+bIVqXr0qgWGQuM50yM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=d0Hfm4pqHtBNExsgHYsn6lAlRbQjtVEPpU2LOnbu3Basj7ogSKvLBpookv7HM1qwg EYkxUBNQv+3WI8zmRBWL20cwy6WyeL6djXoTuw5pC8jDtpqqxIC+57p/63h0Ii3ifv G1O1BN5vQoiWg/ZmsQh5S74f7l/uYydv4ZnSocRA= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Christian Eggers , Luiz Augusto von Dentz , Sasha Levin Subject: [PATCH 5.15 248/570] Bluetooth: LE L2CAP: Disconnect if received packets SDU exceeds IMTU Date: Mon, 13 Apr 2026 17:56:19 +0200 Message-ID: <20260413155839.757292176@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260413155830.386096114@linuxfoundation.org> References: <20260413155830.386096114@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 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Christian Eggers [ Upstream commit e1d9a66889867c232657a9b6f25d451d7c3ab96f ] Core 6.0, Vol 3, Part A, 3.4.3: "If the SDU length field value exceeds the receiver's MTU, the receiver shall disconnect the channel..." This fixes L2CAP/LE/CFC/BV-26-C (running together with 'l2test -r -P 0x0027 -V le_public -I 100'). Fixes: aac23bf63659 ("Bluetooth: Implement LE L2CAP reassembly") Signed-off-by: Christian Eggers Signed-off-by: Luiz Augusto von Dentz Signed-off-by: Sasha Levin --- net/bluetooth/l2cap_core.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 740b5468f6dc8..601a4d9e4cdde 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -7629,8 +7629,10 @@ static int l2cap_ecred_data_rcv(struct l2cap_chan *chan, struct sk_buff *skb) return -ENOBUFS; } - if (chan->imtu < skb->len) { - BT_ERR("Too big LE L2CAP PDU"); + if (skb->len > chan->imtu) { + BT_ERR("Too big LE L2CAP PDU: len %u > %u", skb->len, + chan->imtu); + l2cap_send_disconn_req(chan, ECONNRESET); return -ENOBUFS; } @@ -7655,7 +7657,9 @@ static int l2cap_ecred_data_rcv(struct l2cap_chan *chan, struct sk_buff *skb) sdu_len, skb->len, chan->imtu); if (sdu_len > chan->imtu) { - BT_ERR("Too big LE L2CAP SDU length received"); + BT_ERR("Too big LE L2CAP SDU length: len %u > %u", + skb->len, sdu_len); + l2cap_send_disconn_req(chan, ECONNRESET); err = -EMSGSIZE; goto failed; } -- 2.51.0