CVE-2026-64190

Source
https://cve.org/CVERecord?id=CVE-2026-64190
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-64190.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-64190
Downstream
Published
2026-07-20T16:27:48.314Z
Modified
2026-07-21T03:46:03.584683076Z
Summary
net: team: fix NULL pointer dereference in team_xmit during mode change
Details

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

net: team: fix NULL pointer dereference in team_xmit during mode change

_teamchangemode() clears team->ops with memset() before restoring safe dummy handlers via teamadjustops(). A concurrent teamxmit() running under RCU on another CPU can read team->ops.transmit during this window and call a NULL function pointer, crashing the kernel.

The race requires a mode change (CAPNETADMIN) concurrent with transmit on the team device.

BUG: kernel NULL pointer dereference, address: 0000000000000000 Oops: 0010 [#1] SMP KASAN NOPTI RIP: 0010:0x0 Call Trace: teamxmit (drivers/net/team/teamcore.c:1853) devhardstart_xmit (net/core/dev.c:3904) __devqueuexmit (net/core/dev.c:4871) packetsendmsg (net/packet/afpacket.c:3109) _syssendto (net/socket.c:2265)

The original code assumed that no ports means no traffic, so mode changes could freely memset()/memcpy() the ops. AF_PACKET with forced carrier breaks that assumption.

Prevent the race instead of making it safe: replace memset()/memcpy() with per-field updates that never touch transmit or receive. Those two handlers are managed solely by teamadjustops(), which already installs dummies when txenportcount == 0 (always true during mode change since no ports are present). WRITEONCE/READ_ONCE prevent store/load tearing on the handler pointers.

synchronizenet() before exitop() drains in-flight readers that may still reference old mode state from before port removal switched the handlers to dummies.

Database specific
{
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/64xxx/CVE-2026-64190.json",
    "cna_assigner": "Linux"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
3d249d4ca7d0ed6629a135ea1ea21c72286c0d80
Fixed
03e9405c518c4d61f28079492f252d6d4e2bac5c
Fixed
25fe708bbc59289d3d1ea4b126fbc1b460a072a5

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-64190.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
3.3.0
Fixed
6.18.35

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-64190.json"