CVE-2024-35809

In the Linux kernel, the following vulnerability has been resolved: PCI/PM: Drain runtime-idle callbacks before driver removal A race condition between the .runtime_idle() callback and the .remove() callback in the rtsx_pcr PCI driver leads to a kernel crash due to an unhandled page fault [1]. The problem is that rtsx_pci_runtime_idle() is not expected to be running after pm_runtime_get_sync() has been called, but the latter doesn't really guarantee that. It only guarantees that the suspend and resume callbacks will not be running when it returns. However, if a .runtime_idle() callback is already running when pm_runtime_get_sync() is called, the latter will notice that the runtime PM status of the device is RPM_ACTIVE and it will return right away without waiting for the former to complete. In fact, it cannot wait for .runtime_idle() to complete because it may be called from that callback (it arguably does not make much sense to do that, but it is not strictly prohibited). Thus in general, whoever is providing a .runtime_idle() callback needs to protect it from running in parallel with whatever code runs after pm_runtime_get_sync(). [Note that .runtime_idle() will not start after pm_runtime_get_sync() has returned, but it may continue running then if it has started earlier.] One way to address that race condition is to call pm_runtime_barrier() after pm_runtime_get_sync() (not before it, because a nonzero value of the runtime PM usage counter is necessary to prevent runtime PM callbacks from being invoked) to wait for the .runtime_idle() callback to complete should it be running at that point. A suitable place for doing that is in pci_device_remove() which calls pm_runtime_get_sync() before removing the driver, so it may as well call pm_runtime_barrier() subsequently, which will prevent the race in question from occurring, not just in the rtsx_pcr driver, but in any PCI drivers providing .runtime_idle() callbacks.
References
Link Resource
https://git.kernel.org/stable/c/47d8aafcfe313511a98f165a54d0adceb34e54b1 Patch
https://git.kernel.org/stable/c/6347348c6aba52dda0b33296684cbb627bdc6970 Patch
https://git.kernel.org/stable/c/7cc94dd36e48879e76ae7a8daea4ff322b7d9674 Patch
https://git.kernel.org/stable/c/900b81caf00c89417172afe0e7e49ac4eb110f4b Patch
https://git.kernel.org/stable/c/9a87375bb586515c0af63d5dcdcd58ec4acf20a6 Patch
https://git.kernel.org/stable/c/9d5286d4e7f68beab450deddbb6a32edd5ecf4bf Patch
https://git.kernel.org/stable/c/bbe068b24409ef740657215605284fc7cdddd491 Patch
https://git.kernel.org/stable/c/d534198311c345e4b062c4b88bb609efb8bd91d5 Patch
https://git.kernel.org/stable/c/d86ad8c3e152349454b82f37007ff6ba45f26989 Patch
https://git.kernel.org/stable/c/47d8aafcfe313511a98f165a54d0adceb34e54b1 Patch
https://git.kernel.org/stable/c/6347348c6aba52dda0b33296684cbb627bdc6970 Patch
https://git.kernel.org/stable/c/7cc94dd36e48879e76ae7a8daea4ff322b7d9674 Patch
https://git.kernel.org/stable/c/900b81caf00c89417172afe0e7e49ac4eb110f4b Patch
https://git.kernel.org/stable/c/9a87375bb586515c0af63d5dcdcd58ec4acf20a6 Patch
https://git.kernel.org/stable/c/9d5286d4e7f68beab450deddbb6a32edd5ecf4bf Patch
https://git.kernel.org/stable/c/bbe068b24409ef740657215605284fc7cdddd491 Patch
https://git.kernel.org/stable/c/d534198311c345e4b062c4b88bb609efb8bd91d5 Patch
https://git.kernel.org/stable/c/d86ad8c3e152349454b82f37007ff6ba45f26989 Patch
https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html Third Party Advisory
https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html Third Party Advisory
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:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*

Configuration 2 (hide)

cpe:2.3:o:debian:debian_linux:10.0:*:*:*:*:*:*:*

History

23 Dec 2025, 18:29

Type Values Removed Values Added
CPE cpe:2.3:o:debian:debian_linux:10.0:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
CVSS v2 : unknown
v3 : 5.5
v2 : unknown
v3 : 4.7
References () https://git.kernel.org/stable/c/47d8aafcfe313511a98f165a54d0adceb34e54b1 - () https://git.kernel.org/stable/c/47d8aafcfe313511a98f165a54d0adceb34e54b1 - Patch
References () https://git.kernel.org/stable/c/6347348c6aba52dda0b33296684cbb627bdc6970 - () https://git.kernel.org/stable/c/6347348c6aba52dda0b33296684cbb627bdc6970 - Patch
References () https://git.kernel.org/stable/c/7cc94dd36e48879e76ae7a8daea4ff322b7d9674 - () https://git.kernel.org/stable/c/7cc94dd36e48879e76ae7a8daea4ff322b7d9674 - Patch
References () https://git.kernel.org/stable/c/900b81caf00c89417172afe0e7e49ac4eb110f4b - () https://git.kernel.org/stable/c/900b81caf00c89417172afe0e7e49ac4eb110f4b - Patch
References () https://git.kernel.org/stable/c/9a87375bb586515c0af63d5dcdcd58ec4acf20a6 - () https://git.kernel.org/stable/c/9a87375bb586515c0af63d5dcdcd58ec4acf20a6 - Patch
References () https://git.kernel.org/stable/c/9d5286d4e7f68beab450deddbb6a32edd5ecf4bf - () https://git.kernel.org/stable/c/9d5286d4e7f68beab450deddbb6a32edd5ecf4bf - Patch
References () https://git.kernel.org/stable/c/bbe068b24409ef740657215605284fc7cdddd491 - () https://git.kernel.org/stable/c/bbe068b24409ef740657215605284fc7cdddd491 - Patch
References () https://git.kernel.org/stable/c/d534198311c345e4b062c4b88bb609efb8bd91d5 - () https://git.kernel.org/stable/c/d534198311c345e4b062c4b88bb609efb8bd91d5 - Patch
References () https://git.kernel.org/stable/c/d86ad8c3e152349454b82f37007ff6ba45f26989 - () https://git.kernel.org/stable/c/d86ad8c3e152349454b82f37007ff6ba45f26989 - Patch
References () https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html - () https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html - Third Party Advisory
References () https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html - () https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html - Third Party Advisory
CWE CWE-362
First Time Linux
Debian
Debian debian Linux
Linux linux Kernel

21 Nov 2024, 09:20

Type Values Removed Values Added
References
  • () https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html -
  • () https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html -
References () https://git.kernel.org/stable/c/47d8aafcfe313511a98f165a54d0adceb34e54b1 - () https://git.kernel.org/stable/c/47d8aafcfe313511a98f165a54d0adceb34e54b1 -
References () https://git.kernel.org/stable/c/6347348c6aba52dda0b33296684cbb627bdc6970 - () https://git.kernel.org/stable/c/6347348c6aba52dda0b33296684cbb627bdc6970 -
References () https://git.kernel.org/stable/c/7cc94dd36e48879e76ae7a8daea4ff322b7d9674 - () https://git.kernel.org/stable/c/7cc94dd36e48879e76ae7a8daea4ff322b7d9674 -
References () https://git.kernel.org/stable/c/900b81caf00c89417172afe0e7e49ac4eb110f4b - () https://git.kernel.org/stable/c/900b81caf00c89417172afe0e7e49ac4eb110f4b -
References () https://git.kernel.org/stable/c/9a87375bb586515c0af63d5dcdcd58ec4acf20a6 - () https://git.kernel.org/stable/c/9a87375bb586515c0af63d5dcdcd58ec4acf20a6 -
References () https://git.kernel.org/stable/c/9d5286d4e7f68beab450deddbb6a32edd5ecf4bf - () https://git.kernel.org/stable/c/9d5286d4e7f68beab450deddbb6a32edd5ecf4bf -
References () https://git.kernel.org/stable/c/bbe068b24409ef740657215605284fc7cdddd491 - () https://git.kernel.org/stable/c/bbe068b24409ef740657215605284fc7cdddd491 -
References () https://git.kernel.org/stable/c/d534198311c345e4b062c4b88bb609efb8bd91d5 - () https://git.kernel.org/stable/c/d534198311c345e4b062c4b88bb609efb8bd91d5 -
References () https://git.kernel.org/stable/c/d86ad8c3e152349454b82f37007ff6ba45f26989 - () https://git.kernel.org/stable/c/d86ad8c3e152349454b82f37007ff6ba45f26989 -

05 Nov 2024, 10:16

Type Values Removed Values Added
References
  • {'url': 'https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html', 'source': '416baaa9-dc9f-4396-8d5f-8c081fb06d67'}
  • {'url': 'https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html', 'source': '416baaa9-dc9f-4396-8d5f-8c081fb06d67'}

29 Oct 2024, 20:35

Type Values Removed Values Added
CVSS v2 : unknown
v3 : unknown
v2 : unknown
v3 : 5.5

27 Jun 2024, 13:15

Type Values Removed Values Added
References
  • () https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html -

25 Jun 2024, 23:15

Type Values Removed Values Added
Summary
  • (es) En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: PCI/PM: drena las devoluciones de llamada inactivas en tiempo de ejecución antes de eliminar el controlador. Una condición de ejecución entre la devolución de llamada .runtime_idle() y la devolución de llamada .remove() en el controlador PCI rtsx_pcr conduce a un crash de kernel debido a un error de página no controlado [1]. El problema es que no se espera que rtsx_pci_runtime_idle() se ejecute después de llamar a pm_runtime_get_sync(), pero esto último realmente no garantiza eso. Solo garantiza que las devoluciones de llamada de suspensión y reanudación no se ejecutarán cuando regrese. Sin embargo, si ya se está ejecutando una devolución de llamada .runtime_idle() cuando se llama a pm_runtime_get_sync(), este último notará que el estado de PM en tiempo de ejecución del dispositivo es RPM_ACTIVE y regresará de inmediato sin esperar a que se complete el primero. De hecho, no puede esperar a que se complete .runtime_idle() porque puede ser llamado desde esa devolución de llamada (podría decirse que no tiene mucho sentido hacerlo, pero no está estrictamente prohibido). Por lo tanto, en general, quien proporciona una devolución de llamada .runtime_idle() debe protegerla para que no se ejecute en paralelo con cualquier código que se ejecute después de pm_runtime_get_sync(). [Tenga en cuenta que .runtime_idle() no se iniciará después de que pm_runtime_get_sync() haya regresado, pero puede continuar ejecutándose si comenzó antes.] Una forma de abordar esa condición de ejecución es llamar a pm_runtime_barrier() después de pm_runtime_get_sync() (no antes porque es necesario un valor distinto de cero del contador de uso de PM en tiempo de ejecución para evitar que se invoquen devoluciones de llamada de PM en tiempo de ejecución) para esperar a que se complete la devolución de llamada .runtime_idle() en caso de que se esté ejecutando en ese punto. Un lugar adecuado para hacerlo es pci_device_remove() que llama a pm_runtime_get_sync() antes de eliminar el controlador, por lo que también puede llamar a pm_runtime_barrier() posteriormente, lo que evitará que se produzca la ejecución en cuestión, no sólo en el controlador rtsx_pcr, sino en cualquier controlador PCI que proporcione devoluciones de llamada .runtime_idle().
References
  • () https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html -

17 May 2024, 14:15

Type Values Removed Values Added
New CVE

Information

Published : 2024-05-17 14:15

Updated : 2025-12-23 18:29


NVD link : CVE-2024-35809

Mitre link : CVE-2024-35809

CVE.ORG link : CVE-2024-35809


JSON object : View

Products Affected

debian

  • debian_linux

linux

  • linux_kernel
CWE
CWE-362

Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')