CVE-2025-40260
Gravedad:
Pendiente de análisis
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
04/12/2025
Última modificación:
04/12/2025
Descripción
*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
sched_ext: Fix scx_enable() crash on helper kthread creation failure<br />
<br />
A crash was observed when the sched_ext selftests runner was<br />
terminated with Ctrl+\ while test 15 was running:<br />
<br />
NIP [c00000000028fa58] scx_enable.constprop.0+0x358/0x12b0<br />
LR [c00000000028fa2c] scx_enable.constprop.0+0x32c/0x12b0<br />
Call Trace:<br />
scx_enable.constprop.0+0x32c/0x12b0 (unreliable)<br />
bpf_struct_ops_link_create+0x18c/0x22c<br />
__sys_bpf+0x23f8/0x3044<br />
sys_bpf+0x2c/0x6c<br />
system_call_exception+0x124/0x320<br />
system_call_vectored_common+0x15c/0x2ec<br />
<br />
kthread_run_worker() returns an ERR_PTR() on failure rather than NULL,<br />
but the current code in scx_alloc_and_add_sched() only checks for a NULL<br />
helper. Incase of failure on SIGQUIT, the error is not handled in<br />
scx_alloc_and_add_sched() and scx_enable() ends up dereferencing an<br />
error pointer.<br />
<br />
Error handling is fixed in scx_alloc_and_add_sched() to propagate<br />
PTR_ERR() into ret, so that scx_enable() jumps to the existing error<br />
path, avoiding random dereference on failure.



