Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

rocky логотип

RLSA-2026:49870

Опубликовано: 06 авг. 2026
Источник: rocky
Оценка: Low

Описание

Low: kernel security, bug fix, and enhancement update

The kernel packages contain the Linux kernel, the core of any Linux operating system.

Security Fix(es):

  • kernel: Linux kernel: Denial of Service due to NULL function pointer race in timer shutdown (CVE-2025-68214)

Bug Fix(es) and Enhancement(s):

  • Possible regression with FM350GL [rhel-9.8.z] (JIRA:Rocky Linux-184273)

  • Rocky Linux9: Fix downstream-only regression from 532af53c [rhel-9.8.z] (JIRA:Rocky Linux-192430)

  • gfs2: xfstests generic/363 failure [rhel-9.8.z] (JIRA:Rocky Linux-214021)

  • Rocky Linux 9: Backport b95e0e792822 [rhel-9.8.z] (JIRA:Rocky Linux-216471)

For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.

Затронутые продукты

  • Rocky Linux 9

НаименованиеАрхитектураРелизRPM
kernelaarch64687.34.1.el9_8kernel-5.14.0-687.34.1.el9_8.aarch64.rpm
kernel-64kaarch64687.34.1.el9_8kernel-64k-5.14.0-687.34.1.el9_8.aarch64.rpm
kernel-64k-coreaarch64687.34.1.el9_8kernel-64k-core-5.14.0-687.34.1.el9_8.aarch64.rpm
kernel-64k-debugaarch64687.34.1.el9_8kernel-64k-debug-5.14.0-687.34.1.el9_8.aarch64.rpm
kernel-64k-debug-coreaarch64687.34.1.el9_8kernel-64k-debug-core-5.14.0-687.34.1.el9_8.aarch64.rpm
kernel-64k-debug-modulesaarch64687.34.1.el9_8kernel-64k-debug-modules-5.14.0-687.34.1.el9_8.aarch64.rpm
kernel-64k-debug-modules-coreaarch64687.34.1.el9_8kernel-64k-debug-modules-core-5.14.0-687.34.1.el9_8.aarch64.rpm
kernel-64k-debug-modules-extraaarch64687.34.1.el9_8kernel-64k-debug-modules-extra-5.14.0-687.34.1.el9_8.aarch64.rpm
kernel-64k-modulesaarch64687.34.1.el9_8kernel-64k-modules-5.14.0-687.34.1.el9_8.aarch64.rpm
kernel-64k-modules-coreaarch64687.34.1.el9_8kernel-64k-modules-core-5.14.0-687.34.1.el9_8.aarch64.rpm

Показывать по

Связанные CVE

Исправления

Связанные уязвимости

CVSS3: 4.7
ubuntu
8 месяцев назад

In the Linux kernel, the following vulnerability has been resolved: timers: Fix NULL function pointer race in timer_shutdown_sync() There is a race condition between timer_shutdown_sync() and timer expiration that can lead to hitting a WARN_ON in expire_timers(). The issue occurs when timer_shutdown_sync() clears the timer function to NULL while the timer is still running on another CPU. The race scenario looks like this: CPU0 CPU1 <SOFTIRQ> lock_timer_base() expire_timers() base->running_timer = timer; unlock_timer_base() [call_timer_fn enter] mod_timer() ... timer_shutdown_sync() lock_timer_base() // For now, will not detach the timer but only clear its function to NULL if (base->running_timer != timer) ret = detach_if_pending(timer, base, true); if (shutdown) timer->function = NULL; unlock_timer_base() [call_timer_fn exit] lock_timer_base() base->running_timer = NULL; unlock_timer_base() ... // Now timer is pending while its function set to NULL. // next timer trigger <SOFTIR...

CVSS3: 5.5
redhat
8 месяцев назад

In the Linux kernel, the following vulnerability has been resolved: timers: Fix NULL function pointer race in timer_shutdown_sync() There is a race condition between timer_shutdown_sync() and timer expiration that can lead to hitting a WARN_ON in expire_timers(). The issue occurs when timer_shutdown_sync() clears the timer function to NULL while the timer is still running on another CPU. The race scenario looks like this: CPU0CPU1 <SOFTIRQ> lock_timer_base() expire_timers() base->running_timer = timer; unlock_timer_base() [call_timer_fn enter] mod_timer() ... timer_shutdown_sync() lock_timer_base() // For now, will not detach the timer but only clear its function to NULL if (base->running_timer != timer) ret = detach_if_pending(timer, base, true); if (shutdown) timer->function = NULL; unlock_timer_base() [call_timer_fn exit] lock_timer_base() base->running_timer = NULL; unlock_timer_base() ... // Now timer is pending while its function set to NULL. // next timer trigger <SOFTIRQ> ex...

CVSS3: 4.7
nvd
8 месяцев назад

In the Linux kernel, the following vulnerability has been resolved: timers: Fix NULL function pointer race in timer_shutdown_sync() There is a race condition between timer_shutdown_sync() and timer expiration that can lead to hitting a WARN_ON in expire_timers(). The issue occurs when timer_shutdown_sync() clears the timer function to NULL while the timer is still running on another CPU. The race scenario looks like this: CPU0 CPU1 <SOFTIRQ> lock_timer_base() expire_timers() base->running_timer = timer; unlock_timer_base() [call_timer_fn enter] mod_timer() ... timer_shutdown_sync() lock_timer_base() // For now, will not detach the timer but only clear its function to NULL if (base->running_timer != timer) ret = detach_if_pending(timer, base, true); if (shutdown) timer->function = NULL; unlock_timer_base() [call_timer_fn exit] lock_timer_base() base->running_timer = NULL; unlock_timer_base() ... // Now timer

CVSS3: 4.7
msrc
8 месяцев назад

timers: Fix NULL function pointer race in timer_shutdown_sync()

CVSS3: 4.7
debian
8 месяцев назад

In the Linux kernel, the following vulnerability has been resolved: t ...