Back to overview

CVE-2026-53337

Description
In the Linux kernel, the following vulnerability has been resolved: net: bonding: fix NULL pointer dereference in bond_do_ioctl() In bond_do_ioctl(), slave_dev is obtained via __dev_get_by_name() which can return NULL if the requested interface name does not exist. However, the subsequent slave_dbg() call is placed before the NULL check: slave_dev = __dev_get_by_name(net, ifr->ifr_slave); slave_dbg(bond_dev, slave_dev, "slave_dev=%p:\n", slave_dev); //here if (!slave_dev) return -ENODEV; The slave_dbg() macro expands to netdev_dbg(bond_dev, "(slave %s): " fmt, (slave_dev)->name, ...) which unconditionally dereferences slave_dev->name before the NULL check is performed. This results in a NULL pointer dereference kernel oops when a user calls bonding ioctl (e.g. SIOCBONDENSLAVE, SIOCBONDRELEASE, etc.) with a non-existent slave interface name. This is reachable from userspace via the bonding ioctl interface with CAP_NET_ADMIN capability, making it a potential local denial-of-service vector. Fix by moving the slave_dbg() call after the NULL check.

Metadata

CVE ID
CVE-2026-53337
State
PUBLISHED
Assigner
Linux
Reserved
2026-06-09 07:44 UTC
Published
2026-07-01 13:32 UTC
Last updated
2026-07-01 13:32 UTC
Vendor / Product
Linux / Linux
Sources
cve.org  ·  NVD

Severity & Metrics

No CVSS data available.

Affected products (2)
VendorProductPlatformVersions
Linux Linux e2a7420df2e01370b40e4cf7b85ab9a885c6d755 < 1b7558c85493467b2ea20738866b822db6442034, e2a7420df2e01370b40e4cf7b85ab9a885c6d755 < b02b2e3e876c18733b868a29064abd11cdbf8feb, e2a7420df2e01370b40e4cf7b85ab9a885c6d755 < 66693957bacd1c9dae6188a7312d6be69a221f2d, e2a7420df2e01370b40e4cf7b85ab9a885c6d755 < a629418d463fb50d132a1aa063b0105857311e5f …
Linux Linux 5.3, 0 < 5.3, 5.10.259 ≤ 5.10.*, 5.15.210 ≤ 5.15.* …
Back to overview