Description
In the Linux kernel, the following vulnerability has been resolved:

can: bcm: fix data race on rx_stamp/rx_ifindex in bcm_rx_handler()

For an rx op subscribed on all interfaces (ifindex == 0), the same op
is registered once in the shared per-netns wildcard filter list, so
bcm_rx_handler() can run concurrently on different CPUs for frames
arriving on different net devices.

op->rx_stamp and op->rx_ifindex were written before bcm_rx_update_lock was
taken, allowing concurrent writers to race each other - including a torn
store of the 64-bit rx_stamp on 32-bit platforms.

Beyond a torn store bcm_send_to_user() must report the timestamp/ifindex
of the very same frame whose content it is delivering. So the assignment
is placed in the same unbroken bcm_rx_update_lock section as the content
comparison.

As a side effect, the RTR-request frame feature (which never reach
bcm_send_to_user()) no longer updates rx_stamp/rx_ifindex, since only
the notification path needs them.
Published: 2026-08-15
Score: 5.5 Medium
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The Linux kernel contains a data race in the bcm_rx_handler function, where concurrent writers can update the op->rx_stamp and op->rx_ifindex fields without acquiring the bcm_rx_update_lock. On 32-bit platforms this race can produce a torn store of the 64-bit rx_stamp value and misassociate the timestamp and interface index with the CAN frame that is delivered to user space. As a result, frame metadata may be corrupted, potentially leading to misdelivery or data integrity failures in applications that rely on accurate CAN timing and source identification. This is a CWE-820 weakness.

Affected Systems

All Linux kernel releases that include the bcm_rx_handler functionality before the commit 136de17f38630307991c59aa7080012a99451783 and subsequent associated commits. The exact affected versions are not listed in the advisory, so any distribution kernel that predates the fix is potentially vulnerable. This includes kernels that support CAN bus interfaces and use wildcard filters (ifindex == 0).

Risk and Exploitability

The CVSS score is 5.5, indicating a moderate severity vulnerability. The EPSS score is below 1%, showing a low probability of exploitation, and it is not listed in CISA’s KEV catalog. The data race would normally require an attacker with the ability to trigger concurrent CAN frame handling—typically a local or privileged user with access to CAN sockets—although no evidence of remote exploitation is provided. Given the lack of public exploitation data, the risk is uncertain but could be moderate if the attack entry point exists within trusted components.

Generated by OpenCVE AI on August 18, 2026 at 03:25 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Update the Linux kernel to a version that contains the commit fixing the bcm_rx_handler data race.
  • If an immediate kernel upgrade is not possible, reconfigure CAN socket handling to avoid subscribing to all interfaces (ifindex == 0) so that each interface is processed by a single thread or handler, reducing the chance of concurrent writes.
  • Monitor Linux kernel security advisories and apply any backport patches or vendor‑specific fixes as soon as they become available.

Generated by OpenCVE AI on August 18, 2026 at 03:25 UTC.

Tracking

Sign in to view the affected projects.

Advisories
Source ID Title
Debian DLA Debian DLA DLA-4745-1 linux-6.12 security update
History

Wed, 19 Aug 2026 16:45:00 +0000


Tue, 18 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-820
References
Metrics threat_severity

None

cvssV3_1

{'score': 5.5, 'vector': 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H'}

threat_severity

Low


Sat, 15 Aug 2026 06:00:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: can: bcm: fix data race on rx_stamp/rx_ifindex in bcm_rx_handler() For an rx op subscribed on all interfaces (ifindex == 0), the same op is registered once in the shared per-netns wildcard filter list, so bcm_rx_handler() can run concurrently on different CPUs for frames arriving on different net devices. op->rx_stamp and op->rx_ifindex were written before bcm_rx_update_lock was taken, allowing concurrent writers to race each other - including a torn store of the 64-bit rx_stamp on 32-bit platforms. Beyond a torn store bcm_send_to_user() must report the timestamp/ifindex of the very same frame whose content it is delivering. So the assignment is placed in the same unbroken bcm_rx_update_lock section as the content comparison. As a side effect, the RTR-request frame feature (which never reach bcm_send_to_user()) no longer updates rx_stamp/rx_ifindex, since only the notification path needs them.
Title can: bcm: fix data race on rx_stamp/rx_ifindex in bcm_rx_handler()
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-19T16:36:08.847Z

Reserved: 2026-08-09T03:40:39.906Z

Link: CVE-2026-72117

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-15T06:21:26.123

Modified: 2026-08-19T17:20:58.287

Link: CVE-2026-72117

cve-icon Redhat

Severity : Low

Publid Date: 2026-08-15T00:00:00Z

Links: CVE-2026-72117 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-18T03:30:06Z

Weaknesses