Re: [PATCH 0/2] ARM: preserve DMA_FROM_DEVICE buffer contents
From: Will Deacon <will@kernel.org>
Date: 2026-09-10 10:56:05
Also in:
linux-arm-kernel, lkml
On Thu, Sep 10, 2026 at 11:14:28AM +0200, Arnd Bergmann wrote:
On Thu, Sep 10, 2026, at 08:36, Karl Mehltretter wrote:quoted
This series prevents a DMA_FROM_DEVICE map from discarding CPU-written buffer contents on non-coherent 32-bit ARM. It is based on v7.3-rc1-324-g986c24e0fe44. ARM currently invalidates these buffers before the device writes them. If the device writes only part of a buffer, discarded dirty cache lines can expose older memory contents in the untouched bytes. A stock USB webcam demonstrated this through usbfs. Short isochronous packets left gaps, and usbfs returned non-zero data to userspace from bytes it had cleared. arm64 changed this handoff from invalidate to clean in 2022 with commit c50f11c6196f ("arm64: mm: Don't invalidate FROM_DEVICE buffers at start of DMA transfer"). Arnd Bergmann's 2023 ARM32 cache-maintenance series left DMA_FROM_DEVICE preservation unresolved [1]. This series keeps the existing ownership hooks.I think the main problem here is that we remain inconsistent about the rules across CPU architectures, and changing Arm on its own does not mean we have a solution if another architecture decides to change it in the opposite direction at some point. I see this as a tradeoff that can go either way: - the current 32-bit Arm approach (also arc, hexagon, microblaze, mips, nios2, openrisc, powerpc32, sh) is obviously faster as it avoids the writeback, but it relies on device drivers to ensure no stale data can leak back into userspace. - Will's patch changed arm64 (later copied into riscv) to avoid that risk by adding the overhead out of caution, and avoid having to audit and fix all drivers.
How would you envisage fixing a driver for this? There were two issues I tried to address by moving from invalidate to clean on arm64: 1. If the DMA transfer didn't write every cacheline in the buffer, then we could expose stale data in the gaps. 2. If the buffer has a pre-existing userspace mapping, then we expose stale data during the window between the DMA map() call and the DMA itself. Fixing (1) in the driver would presumably require it to walk through the buffer after the transfer and zero all the gaps, with an appreciation for the cache writeback granule (!= cacheline size) and then (somehow) clean those parts back to the PoC. Is that something any drivers attempt today? Fixing (2) in the driver would presumably require ruling out the possibility of a user alias, which sounds hard and possibly ABI breaking for some drivers (depending on how they manage their buffers).
If we decide to align with arm64/riscv and take your series, I think we need two more parts: - actually measure the performance overhead: you already did the work to test this on three separate arm implementations but did not share performance numbers. Can you quantify how much this costs us on the hardware you used?
It's worth noting that many Arm CPUs upgrade invalidate to clean+invalidate (either due to the micro-architecture, errata or because of virtualisation). Will