CVE-2026-52948
Gravedad CVSS v3.1:
MEDIA
Tipo:
CWE-190
Desbordamiento o ajuste de enteros
Fecha de publicación:
24/06/2026
Última modificación:
14/07/2026
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
i2c: dev: prevent integer overflow in I2C_TIMEOUT ioctl<br />
<br />
While fuzzing with Syzkaller, a persistent `schedule_timeout: wrong<br />
timeout value` warning was observed, accompanied by SMBus controller<br />
state machine corruption.<br />
<br />
The I2C_TIMEOUT ioctl accepts a user-provided timeout in multiples of<br />
10 ms. The user argument is checked against INT_MAX, but it is<br />
subsequently multiplied by 10 before being passed to msecs_to_jiffies().<br />
<br />
A malicious user can pass a large value (e.g., 429496729) that passes<br />
the `arg > INT_MAX` check but overflows when multiplied by 10. This<br />
results in a truncated 32-bit unsigned value that bypasses the<br />
internal `(int)m adapter->timeout`<br />
(a signed 32-bit int), which is reinterpreted as a negative number.<br />
When passed to wait_for_completion_timeout(), this negative value<br />
undergoes sign extension to a 64-bit unsigned long, triggering the<br />
`schedule_timeout` warning and causing premature returns. This leaves<br />
the SMBus state machine in an unrecoverable state, constituting a<br />
local Denial of Service (DoS).<br />
<br />
Fix this by bounding the user argument to `INT_MAX / 10`.<br />
<br />
[wsa: move the comment as well]
Impacto
Puntuación base 3.x
5.50
Gravedad 3.x
MEDIA
Productos y versiones vulnerables
| CPE | Desde | Hasta |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 2.6.29.1 (incluyendo) | 5.10.259 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.11 (incluyendo) | 5.15.210 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 5.16 (incluyendo) | 6.1.176 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.2 (incluyendo) | 6.6.143 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.7 (incluyendo) | 6.12.94 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.13 (incluyendo) | 6.18.36 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | 6.19 (incluyendo) | 7.0.13 (excluyendo) |
| cpe:2.3:o:linux:linux_kernel:2.6.29:-:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:2.6.29:rc7:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:2.6.29:rc8:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:7.1:rc1:*:*:*:*:*:* | ||
| cpe:2.3:o:linux:linux_kernel:7.1:rc2:*:*:*:*:*:* |
Para consultar la lista completa de nombres de CPE con productos y versiones, ver esta página
Referencias a soluciones, herramientas e información
- https://git.kernel.org/stable/c/0b88ecfbc9dc33b4db8836c37b50cf174e6c0691
- https://git.kernel.org/stable/c/4576621dc6577f21a032acfd16c3ad61907a5ea7
- https://git.kernel.org/stable/c/617eb7c0961a8dfcfc811844a6396e406b2923ea
- https://git.kernel.org/stable/c/943e318eedbeaeea08ece3f5dd44c982f4ed2ef5
- https://git.kernel.org/stable/c/aa6ef734016912653a909477fb30aeb66c98b3a2
- https://git.kernel.org/stable/c/e9ffd5f5050fbb199d270a85614cd27ebed6fbac
- https://git.kernel.org/stable/c/ff02add34ffd03449b8115904ebe2ec4fed022d4
- https://git.kernel.org/stable/c/ffbcf31f032eb454ebfd29309f51366fe57f4ac4



