CVE-2026-45840: openvswitch: cap upcall PID array size and pre-size vport replies
In the Linux kernel, the following vulnerability has been resolved:
openvswitch: cap upcall PID array size and pre-size vport replies
The vport netlink reply helpers allocate a fixed-size skb with nlmsgnew(NLMSGDEFAULTSIZE, ...) but serialize the full upcall PID array via ovsvportgetupcallportids(). Since ovsvportsetupcallportids() accepts any non-zero multiple of sizeof(u32) with no upper bound, a CAPNETADMIN user can install a PID array large enough to overflow the reply buffer, causing nlaput() to fail with -EMSGSIZE and hitting BUGON(err < 0). On systems with unprivileged user namespaces enabled (e.g., Ubuntu default), this is reachable via unshare -Urn since OVS vport mutation operations use GENLUNSADMINPERM.
kernel BUG at net/openvswitch/datapath.c:2414! Oops: invalid opcode: 0000 [#1] SMP KASAN NOPTI CPU: 1 UID: 0 PID: 65 Comm: poc Not tainted 7.0.0-rc7-00195-geb216e422044 #1 RIP: 0010:ovsvportcmdset+0x34c/0x400 Call Trace: <TASK> genlfamilyrcvmsgdoit (net/netlink/genetlink.c:1116) genlrcvmsg (net/netlink/genetlink.c:1194) netlinkrcvskb (net/netlink/afnetlink.c:2550) genlrcv (net/netlink/genetlink.c:1219) netlinkunicast (net/netlink/afnetlink.c:1344) netlinksendmsg (net/netlink/afnetlink.c:1894) syssendto (net/socket.c:2206) x64syssendto (net/socket.c:2209) dosyscall64 (arch/x86/entry/syscall64.c:63) entrySYSCALL64afterhwframe (arch/x86/entry/entry64.S:130) </TASK> Kernel panic - not syncing: Fatal exception
Reject attempts to set more PIDs than nrcpuids in ovsvportsetupcallportids(), and pre-compute the worst-case reply size in ovsvportcmdmsgsize() based on that bound, similar to the existing ovsdpcmdmsgsize(). nrcpuids matches the cap already used by the per-CPU dispatch configuration on the datapath side (ovsdpcmdfillinfo() serialises at most nrcpuids PIDs), so the two sides stay consistent.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 6.6.141.1-1 - Upgrade
Upgrade
openvswitchto a version that resolves this vulnerability.Fixed in 7.0.0-rc7-00195-geb216e422044 - Compensating control
Since the panic is triggered by attempts to set more upcall PIDs than nr_cpu_ids and via vport mutation operations, restrict who can use the OVS vport netlink interface that accepts upcall PID arrays so only trusted administrators can issue ovs_vport_set_upcall_portids()-related commands (e.g., enforce authorization for CAP_NET_ADMIN access).
- Compensating control
If unprivileged user namespaces are enabled (as in Ubuntu default) and are used via 'unshare -Urn' to reach the vport mutation code paths, disable unprivileged user namespaces to prevent this attack path.
Event History
Frequently Asked Questions
What is the severity of CVE-2026-45840?
The severity of CVE-2026-45840 is rated at 54.
How do I fix CVE-2026-45840?
Fixing CVE-2026-45840 involves updating Open vSwitch to the latest patched version that resolves this vulnerability.
What systems are affected by CVE-2026-45840?
CVE-2026-45840 affects systems running the Open vSwitch component in the Linux kernel.
What impact does CVE-2026-45840 have on security?
CVE-2026-45840 can potentially lead to improper handling of upcall PID arrays, posing a risk to system stability and security.
Is CVE-2026-45840 related to any other vulnerabilities?
CVE-2026-45840 may have contextual similarities with other vulnerabilities in Open vSwitch but should be addressed separately.