]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
spi: Ensure that sg_table won't be used after being freed
authorMarek Szyprowski <m.szyprowski@samsung.com>
Fri, 30 Sep 2022 11:34:08 +0000 (13:34 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 24 Oct 2022 07:57:15 +0000 (09:57 +0200)
[ Upstream commit 8e9204cddcc3fea9affcfa411715ba4f66e97587 ]

SPI code checks for non-zero sgt->orig_nents to determine if the buffer
has been DMA-mapped. Ensure that sg_table is really zeroed after free to
avoid potential NULL pointer dereference if the given SPI xfer object is
reused again without being DMA-mapped.

Fixes: 0c17ba73c08f ("spi: Fix cache corruption due to DMA/PIO overlap")
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Link: https://lore.kernel.org/r/20220930113408.19720-1-m.szyprowski@samsung.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/spi/spi.c

index 2c616024f7c02c5d1d701a8365a1462a10955562..f595e516058c2c1dff8d67ddcdec2ba6ccd2b2dd 100644 (file)
@@ -1047,6 +1047,8 @@ void spi_unmap_buf(struct spi_controller *ctlr, struct device *dev,
        if (sgt->orig_nents) {
                dma_unmap_sg(dev, sgt->sgl, sgt->orig_nents, dir);
                sg_free_table(sgt);
+               sgt->orig_nents = 0;
+               sgt->nents = 0;
        }
 }