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

exploitDog

rocky логотип

RLSA-2026:39179

Опубликовано: 15 июл. 2026
Источник: rocky
Оценка: Important

Описание

Important: kernel security update

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

Security Fix(es):

  • kernel: net: bridge: use a stable FDB dst snapshot in RCU readers (CVE-2026-46086)

  • kernel: xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete (CVE-2026-46116)

  • kernel: XFS data corruption using reflink ()

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 8

НаименованиеАрхитектураРелизRPM
bpftoolx86_64553.144.1.el8_10bpftool-4.18.0-553.144.1.el8_10.x86_64.rpm
kernelx86_64553.144.1.el8_10kernel-4.18.0-553.144.1.el8_10.x86_64.rpm
kernel-abi-stablelistsnoarch553.144.1.el8_10kernel-abi-stablelists-4.18.0-553.144.1.el8_10.noarch.rpm
kernel-corex86_64553.144.1.el8_10kernel-core-4.18.0-553.144.1.el8_10.x86_64.rpm
kernel-debugx86_64553.144.1.el8_10kernel-debug-4.18.0-553.144.1.el8_10.x86_64.rpm
kernel-debug-corex86_64553.144.1.el8_10kernel-debug-core-4.18.0-553.144.1.el8_10.x86_64.rpm
kernel-debug-develx86_64553.144.1.el8_10kernel-debug-devel-4.18.0-553.144.1.el8_10.x86_64.rpm
kernel-debug-modulesx86_64553.144.1.el8_10kernel-debug-modules-4.18.0-553.144.1.el8_10.x86_64.rpm
kernel-debug-modules-extrax86_64553.144.1.el8_10kernel-debug-modules-extra-4.18.0-553.144.1.el8_10.x86_64.rpm
kernel-develx86_64553.144.1.el8_10kernel-devel-4.18.0-553.144.1.el8_10.x86_64.rpm

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

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

oracle-oval
13 дней назад

ELSA-2026-39179: kernel security update (IMPORTANT)

CVSS3: 5.5
ubuntu
2 месяца назад

In the Linux kernel, the following vulnerability has been resolved: net: bridge: use a stable FDB dst snapshot in RCU readers Local FDB entries can be rewritten in place by `fdb_delete_local()`, which updates `f->dst` to another port or to `NULL` while keeping the entry alive. Several bridge RCU readers inspect `f->dst`, including `br_fdb_fillbuf()` through the `brforward_read()` sysfs path. These readers currently load `f->dst` multiple times and can therefore observe inconsistent values across the check and later dereference. In `br_fdb_fillbuf()`, this means a concurrent local-FDB update can change `f->dst` after the NULL check and before the `port_no` dereference, leading to a NULL-ptr-deref. Fix this by taking a single `READ_ONCE()` snapshot of `f->dst` in each affected RCU reader and using that snapshot for the rest of the access sequence. Also publish the in-place `f->dst` updates in `fdb_delete_local()` with `WRITE_ONCE()` so the readers and writer use matching access patter...

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

In the Linux kernel, the following vulnerability has been resolved: net: bridge: use a stable FDB dst snapshot in RCU readers Local FDB entries can be rewritten in place by `fdb_delete_local()`, which updates `f->dst` to another port or to `NULL` while keeping the entry alive. Several bridge RCU readers inspect `f->dst`, including `br_fdb_fillbuf()` through the `brforward_read()` sysfs path. These readers currently load `f->dst` multiple times and can therefore observe inconsistent values across the check and later dereference. In `br_fdb_fillbuf()`, this means a concurrent local-FDB update can change `f->dst` after the NULL check and before the `port_no` dereference, leading to a NULL-ptr-deref. Fix this by taking a single `READ_ONCE()` snapshot of `f->dst` in each affected RCU reader and using that snapshot for the rest of the access sequence. Also publish the in-place `f->dst` updates in `fdb_delete_local()` with `WRITE_ONCE()` so the readers and writer use matching access patter...

CVSS3: 5.5
nvd
2 месяца назад

In the Linux kernel, the following vulnerability has been resolved: net: bridge: use a stable FDB dst snapshot in RCU readers Local FDB entries can be rewritten in place by `fdb_delete_local()`, which updates `f->dst` to another port or to `NULL` while keeping the entry alive. Several bridge RCU readers inspect `f->dst`, including `br_fdb_fillbuf()` through the `brforward_read()` sysfs path. These readers currently load `f->dst` multiple times and can therefore observe inconsistent values across the check and later dereference. In `br_fdb_fillbuf()`, this means a concurrent local-FDB update can change `f->dst` after the NULL check and before the `port_no` dereference, leading to a NULL-ptr-deref. Fix this by taking a single `READ_ONCE()` snapshot of `f->dst` in each affected RCU reader and using that snapshot for the rest of the access sequence. Also publish the in-place `f->dst` updates in `fdb_delete_local()` with `WRITE_ONCE()` so the readers and writer use matching access patte

CVSS3: 7
msrc
2 месяца назад

net: bridge: use a stable FDB dst snapshot in RCU readers