Patch "clk: bcm: rpi: Prevent out-of-bounds access" has been added to the 5.15-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    clk: bcm: rpi: Prevent out-of-bounds access

to the 5.15-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     clk-bcm-rpi-prevent-out-of-bounds-access.patch
and it can be found in the queue-5.15 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit becf98317d9fca63a5aed95ca978fa4a2d9cbeb3
Author: Stefan Wahren <stefan.wahren@xxxxxxxx>
Date:   Wed Jul 13 17:49:51 2022 +0200

    clk: bcm: rpi: Prevent out-of-bounds access
    
    [ Upstream commit bc163555603e4ae9c817675ad80d618a4cdbfa2d ]
    
    The while loop in raspberrypi_discover_clocks() relies on the assumption
    that the id of the last clock element is zero. Because this data comes
    from the Videocore firmware and it doesn't guarantuee such a behavior
    this could lead to out-of-bounds access. So fix this by providing
    a sentinel element.
    
    Fixes: 93d2725affd6 ("clk: bcm: rpi: Discover the firmware clocks")
    Link: https://github.com/raspberrypi/firmware/issues/1688
    Suggested-by: Phil Elwell <phil@xxxxxxxxxxxxxxx>
    Signed-off-by: Stefan Wahren <stefan.wahren@xxxxxxxx>
    Link: https://lore.kernel.org/r/20220713154953.3336-2-stefan.wahren@xxxxxxxx
    Acked-by: Florian Fainelli <f.fainelli@xxxxxxxxx>
    Reviewed-by: Ivan T. Ivanov <iivanov@xxxxxxx>
    Signed-off-by: Stephen Boyd <sboyd@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/clk/bcm/clk-raspberrypi.c b/drivers/clk/bcm/clk-raspberrypi.c
index 97612860ce0e1..834bcc256e921 100644
--- a/drivers/clk/bcm/clk-raspberrypi.c
+++ b/drivers/clk/bcm/clk-raspberrypi.c
@@ -251,8 +251,13 @@ static int raspberrypi_discover_clocks(struct raspberrypi_clk *rpi,
 	struct rpi_firmware_get_clocks_response *clks;
 	int ret;
 
+	/*
+	 * The firmware doesn't guarantee that the last element of
+	 * RPI_FIRMWARE_GET_CLOCKS is zeroed. So allocate an additional
+	 * zero element as sentinel.
+	 */
 	clks = devm_kcalloc(rpi->dev,
-			    RPI_FIRMWARE_NUM_CLK_ID, sizeof(*clks),
+			    RPI_FIRMWARE_NUM_CLK_ID + 1, sizeof(*clks),
 			    GFP_KERNEL);
 	if (!clks)
 		return -ENOMEM;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux