drm/amd/pm/smu11: Prevent division by zero
authorDenis Arefev <arefev@swemel.ru>
Thu, 20 Mar 2025 09:35:02 +0000 (12:35 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Apr 2025 08:45:52 +0000 (10:45 +0200)
commit 7ba88b5cccc1a99c1afb96e31e7eedac9907704c upstream.

The user can set any speed value.
If speed is greater than UINT_MAX/8, division by zero is possible.

Found by Linux Verification Center (linuxtesting.org) with SVACE.

Fixes: 1e866f1fe528 ("drm/amd/pm: Prevent divide by zero")
Signed-off-by: Denis Arefev <arefev@swemel.ru>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit da7dc714a8f8e1c9fc33c57cd63583779a3bef71)
Cc: stable@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c

index 123c19bb622808ce52394b5a00c2fc6a2bb8e146..1b726489d86a0fe13e44ac4f98db647d4b40f3fa 100644 (file)
@@ -1202,7 +1202,7 @@ int smu_v11_0_set_fan_speed_rpm(struct smu_context *smu,
        uint32_t crystal_clock_freq = 2500;
        uint32_t tach_period;
 
-       if (speed == 0)
+       if (!speed || speed > UINT_MAX/8)
                return -EINVAL;
        /*
         * To prevent from possible overheat, some ASICs may have requirement