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 19D0D37473A; Tue, 21 Jul 2026 21:55:11 +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=1784670912; cv=none; b=C1pLNSAn3zLAxW/OR2CDcukShzTDovrCz8GWhV93EZSETQ1bCEQiVUEEnG4AAuz+Do3vjAy+z+EdJpZnb7zB7fWi3qGDjaKLnO2kW8OSWhierEVouCLI4geg2P/yHTMvivzfgFRX1XD9UcicEL1HZPdsbCO1gYOkJVXSbh0g5GQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784670912; c=relaxed/simple; bh=d9zFFToCOTPkZiEnxOwN2oGt+p/puLSmpcB+xqG8mgg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=bcmzPTMgSPMrnTw/aWRdd3riuFjycL4mG8uGePlDljk31OmNvJLfYry4/5KULvE8vcivIepTO5oDYhkaoArH9M1kDm53oQafNxjhS+S7wS37jRZOLTE+yCEgAnAljVm2Xy2EW0BFLlV4qVrM3RSGLmq15J3HNbvrL2GWX8iK6Qg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=XWot5DNT; 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="XWot5DNT" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 800091F000E9; Tue, 21 Jul 2026 21:55:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784670911; bh=FH6lcDpVE6pdqXrlWWdinxIvvFLCIRW8Fd5aoNk3lWY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=XWot5DNTGVWuxFngCF3Qxerq4WLTE314N0DeQNDoNHxcuDOCpoqARUiMK5Juodon3 0EByXny9fjg2urXfEf6sDJ0kp4O0Q9sJtMyFvfoWOmE/v+rT8kZ8waimg3triCASRz 84j1PwVuEmaCwPA498v1wGsgylUUyB81ak2MM0/4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Bryam Vargas , Jonathan Cameron Subject: [PATCH 5.15 048/843] iio: accel: bmc150: clamp the device-reported FIFO frame count Date: Tue, 21 Jul 2026 17:14:43 +0200 Message-ID: <20260721152407.064166280@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152405.946368001@linuxfoundation.org> References: <20260721152405.946368001@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: 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 @@ -1037,6 +1037,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;