arm64: dma-mapping: always clear allocated buffers
authorMarek Szyprowski <m.szyprowski@samsung.com>
Thu, 23 Apr 2015 11:46:16 +0000 (12:46 +0100)
committerSasha Levin <sasha.levin@oracle.com>
Sun, 17 May 2015 23:12:38 +0000 (19:12 -0400)
commita142e9641dcbead2c8845c949ad518acac96ed28
tree2dd29c37eca70c6623bac65adf40856ddc4f6994
parent57c6da407a51a0f1bbfa38192456b9dffd4cf794
arm64: dma-mapping: always clear allocated buffers

[ Upstream commit 6829e274a623187c24f7cfc0e3d35f25d087fcc5 ]

Buffers allocated by dma_alloc_coherent() are always zeroed on Alpha,
ARM (32bit), MIPS, PowerPC, x86/x86_64 and probably other architectures.
It turned out that some drivers rely on this 'feature'. Allocated buffer
might be also exposed to userspace with dma_mmap() call, so clearing it
is desired from security point of view to avoid exposing random memory
to userspace. This patch unifies dma_alloc_coherent() behavior on ARM64
architecture with other implementations by unconditionally zeroing
allocated buffer.

Cc: <stable@vger.kernel.org> # v3.14+
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
arch/arm64/mm/dma-mapping.c