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 D3D3E472F9C; Tue, 21 Jul 2026 20:14:16 +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=1784664858; cv=none; b=IblsEvCTUsDfCnXRJLJbnwSEcE9QU6ey97TKbPgK2M6amOV6QWT+PhBEKdEeTxQ0H4qMoVAdgC8fi7xRs/dSza7hqpci878rDiroOQZA3R88z30Xrou7MGtxhg1GxUTPumonHEpB9QYjAlL8bwt8tSCyXTGOb2JFBaG/ksjUddU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784664858; c=relaxed/simple; bh=Oo4wriDSaXw2Cu0uahKmVwICKSlGuqheyf/F8HVp+uQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iv4YyPlBZQ/w0nwo61rdoWhqhzPpKzL3fQmz0sdr+WIgbZ4CHsGTqxLK9rhGkWPM9k6Rz1INfcapTq9BTNiZKJuCxNZ3TzN6CWSDAkscdftL/zCvHstBjc6IX48rcisQpI61w0NyrufxArhe4tNeRAnWCUWFafQlLX7NwKdMjm4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=vuTGhE9C; 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="vuTGhE9C" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 444211F000E9; Tue, 21 Jul 2026 20:14:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784664856; bh=0pGDYaCwm8Hlkt4t3GcZo+UqIlzgh2HQLION6UuAreY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=vuTGhE9C+OlpSb4rX9fjiow71hLutvrJa0ktFS22kDzjPhUSrCTSeE+vjZG0RStli 909dR9IMbofHOQz27KKgFwYWoOVJ1W5i5jKOVhkbt4LZe7JsRJULCq450pVP3BBPDj vX2id0xfHCdajl9Brk0bPM4iaUt3B2Zie7CvFV1c= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Bryam Vargas , Jonathan Cameron Subject: [PATCH 6.6 0083/1266] iio: accel: bmc150: clamp the device-reported FIFO frame count Date: Tue, 21 Jul 2026 17:08:40 +0200 Message-ID: <20260721152443.657840087@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152441.786066624@linuxfoundation.org> References: <20260721152441.786066624@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.6-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;