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 4049A3F482E; Thu, 16 Jul 2026 13:39:13 +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=1784209154; cv=none; b=ApN1RrKXLjaeuxtO+Ykrn0Rki+BmYm6mWSr97s/RcrOTvxE2MbvbAIkVmavYXMHZCbCmpNJ1avBc4wiA3S5+Lp/Wda1MQk8UFmeOifA3B8UViv0UkDnL8uT25DzP9109es0N7Fp86SAFIMUkexjCimSiPPRnjMPFsQEKjgzGTIs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784209154; c=relaxed/simple; bh=3LVsogxfgjV/bMChULP0oWw03Rnx0EEcE6aYf0FICCk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=SAUEOVcOUPt/B1Ji3oOrUId9+FsRAaFosXEoV4KW3HvmMj7p8FnqdHO+NX4srkikkJOzIpKGCa7ARPQLTSSxNCI3sFYqNMsI8lJuB8m6e0s/5a7GKrJFhlJXiKN5bfU+BMBPk8XUouafKPVG1GNM6+tSCNBJEDS5aN4p9qn6hAQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Pw9eVLOs; 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="Pw9eVLOs" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6473E1F000E9; Thu, 16 Jul 2026 13:39:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784209152; bh=CXCguVTxfbPryh09EUtZ3WtGAgyM4Gr1epL1px757UM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Pw9eVLOs3NmsKY2tCkVfBQKSTXg5guZEA3G6kXvkdnHw6ZAcwT2rdq+WP2aAzZytD AStU55jMYWVhOgrgtdmxOhgJYFwra/xC2wg4rIA7w597JdCAqc8L3FEoR2dsuQ8US4 xlcQj6BIceIS0ID7ZTs5+LbMBtvDI/Uh8g9DI8Vk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Bryam Vargas , Jonathan Cameron Subject: [PATCH 7.1 033/518] iio: accel: bmc150: clamp the device-reported FIFO frame count Date: Thu, 16 Jul 2026 15:25:01 +0200 Message-ID: <20260716133048.502365066@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260716133047.772246337@linuxfoundation.org> References: <20260716133047.772246337@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 7.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Bryam Vargas commit ce0e1cae26096fe959a0da5563a6d6d5a801d5fb upstream. __bmc150_accel_fifo_flush() copies the number of samples the device reports in its hardware FIFO into an on-stack buffer u16 buffer[BMC150_ACCEL_FIFO_LENGTH * 3]; which is sized for at most BMC150_ACCEL_FIFO_LENGTH (32) samples. The frame count is read from the FIFO_STATUS register and only masked to its 7 valid bits: count = val & 0x7F; so it can be 0..127. The only other limit applied to it is the optional caller-supplied sample budget: if (samples && count > samples) count = samples; which does not constrain count on the flush-all path (samples == 0), and leaves it well above 32 whenever samples is larger. count samples are then transferred into buffer[]: bmc150_accel_fifo_transfer(data, (u8 *)buffer, count); bmc150_accel_fifo_transfer() reads count * 6 bytes through regmap, so a malfunctioning, malicious or counterfeit accelerometer (or an attacker tampering with the I2C/SPI bus) that reports up to 127 frames writes up to 762 bytes into the 192-byte buffer: a stack out-of-bounds write of up to 570 bytes that clobbers the stack canary, saved registers and the return address. Clamp count to BMC150_ACCEL_FIFO_LENGTH, the number of samples buffer[] is sized for, before the transfer, mirroring the watermark clamp already done in bmc150_accel_set_watermark(). A well-formed flush reports at most BMC150_ACCEL_FIFO_LENGTH frames, so legitimate devices are unaffected. Fixes: 3bbec9773389 ("iio: bmc150_accel: add support for hardware fifo") Cc: stable@vger.kernel.org Signed-off-by: Bryam Vargas Signed-off-by: Jonathan Cameron Signed-off-by: Greg Kroah-Hartman --- drivers/iio/accel/bmc150-accel-core.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/iio/accel/bmc150-accel-core.c +++ b/drivers/iio/accel/bmc150-accel-core.c @@ -991,6 +991,8 @@ static int __bmc150_accel_fifo_flush(str if (samples && count > samples) count = samples; + count = min_t(u8, count, BMC150_ACCEL_FIFO_LENGTH); + ret = bmc150_accel_fifo_transfer(data, (u8 *)buffer, count); if (ret) return ret;