CVE-2024-49985

In the Linux kernel, the following vulnerability has been resolved: i2c: stm32f7: Do not prepare/unprepare clock during runtime suspend/resume In case there is any sort of clock controller attached to this I2C bus controller, for example Versaclock or even an AIC32x4 I2C codec, then an I2C transfer triggered from the clock controller clk_ops .prepare callback may trigger a deadlock on drivers/clk/clk.c prepare_lock mutex. This is because the clock controller first grabs the prepare_lock mutex and then performs the prepare operation, including its I2C access. The I2C access resumes this I2C bus controller via .runtime_resume callback, which calls clk_prepare_enable(), which attempts to grab the prepare_lock mutex again and deadlocks. Since the clock are already prepared since probe() and unprepared in remove(), use simple clk_enable()/clk_disable() calls to enable and disable the clock on runtime suspend and resume, to avoid hitting the prepare_lock mutex.
Configurations

Configuration 1 (hide)

OR cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.12:rc1:*:*:*:*:*:*

History

08 Nov 2024, 16:15

Type Values Removed Values Added
References
  • () https://git.kernel.org/stable/c/d6f1250a4d5773f447740b9fe37b8692105796d4 -

28 Oct 2024, 16:22

Type Values Removed Values Added
First Time Linux linux Kernel
Linux
CWE CWE-667
CVSS v2 : unknown
v3 : unknown
v2 : unknown
v3 : 5.5
CPE cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:6.12:rc1:*:*:*:*:*:*
References () https://git.kernel.org/stable/c/048bbbdbf85e5e00258dfb12f5e368f908801d7b - () https://git.kernel.org/stable/c/048bbbdbf85e5e00258dfb12f5e368f908801d7b - Patch
References () https://git.kernel.org/stable/c/1883cad2cc629ded4a3556c0bbb8b42533ad8764 - () https://git.kernel.org/stable/c/1883cad2cc629ded4a3556c0bbb8b42533ad8764 - Patch
References () https://git.kernel.org/stable/c/22a1f8a5b56ba93d3e8b7a1dafa24e01c8bb48ba - () https://git.kernel.org/stable/c/22a1f8a5b56ba93d3e8b7a1dafa24e01c8bb48ba - Patch
References () https://git.kernel.org/stable/c/894cd5f5fd9061983445bbd1fa3d81be43095344 - () https://git.kernel.org/stable/c/894cd5f5fd9061983445bbd1fa3d81be43095344 - Patch
References () https://git.kernel.org/stable/c/9b8bc33ad64192f54142396470cc34ce539a8940 - () https://git.kernel.org/stable/c/9b8bc33ad64192f54142396470cc34ce539a8940 - Patch
References () https://git.kernel.org/stable/c/c2024b1a583ab9176c797ea1e5f57baf8d5e2682 - () https://git.kernel.org/stable/c/c2024b1a583ab9176c797ea1e5f57baf8d5e2682 - Patch
References () https://git.kernel.org/stable/c/fac3c9f7784e8184c0338e9f0877b81e55d3ef1c - () https://git.kernel.org/stable/c/fac3c9f7784e8184c0338e9f0877b81e55d3ef1c - Patch

23 Oct 2024, 15:13

Type Values Removed Values Added
Summary
  • (es) En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: i2c: stm32f7: No preparar/despreparar el reloj durante la suspensión/reanudación en tiempo de ejecución En caso de que haya algún tipo de controlador de reloj conectado a este controlador de bus I2C, por ejemplo Versaclock o incluso un códec I2C AIC32x4, entonces una transferencia I2C activada desde la devolución de llamada clk_ops .prepare del controlador de reloj puede activar un bloqueo en el mutex prepare_lock de drivers/clk/clk.c. Esto se debe a que el controlador de reloj primero toma el mutex prepare_lock y luego realiza la operación de preparación, incluido su acceso I2C. El acceso I2C reanuda este controlador de bus I2C a través de la devolución de llamada .runtime_resume, que llama a clk_prepare_enable(), que intenta tomar el mutex prepare_lock nuevamente y se bloquea. Dado que el reloj ya está preparado desde probe() y no preparado en remove(), use llamadas clk_enable()/clk_disable() simples para habilitar y deshabilitar el reloj en la suspensión y reanudación del tiempo de ejecución, para evitar alcanzar el mutex prepare_lock.

21 Oct 2024, 18:15

Type Values Removed Values Added
New CVE

Information

Published : 2024-10-21 18:15

Updated : 2024-11-08 16:15


NVD link : CVE-2024-49985

Mitre link : CVE-2024-49985

CVE.ORG link : CVE-2024-49985


JSON object : View

Products Affected

linux

  • linux_kernel
CWE
CWE-667

Improper Locking