* [PATCH net v3] RDMA/core: Reject unregistering netdevs in ib_get_eth_speed
@ 2026-08-10 13:31 Krystian Kaniewski
2026-08-10 13:42 ` Jason Gunthorpe
2026-08-10 18:33 ` Jakub Kicinski
0 siblings, 2 replies; 4+ messages in thread
From: Krystian Kaniewski @ 2026-08-10 13:31 UTC (permalink / raw)
To: Jason Gunthorpe, Leon Romanovsky, linux-rdma
Cc: Andrew Lunn, David S . Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, netdev, linux-kernel, syzkaller-bugs,
syzbot+5fe14f2ff4ccbace9a26
ib_device_get_netdev() intentionally returns a referenced net_device even
when it is unregistering, so matching and cleanup callers can still find
the association. The reference keeps struct net_device allocated, but does
not guarantee that the device remains operational.
ib_get_eth_speed() uses the returned device operationally by invoking its
ethtool callback. Although that call is made under RTNL, the function does
not verify the registration state first. An asynchronous RDMA port query
can therefore call into a netdev after NETDEV_UNREGISTER and ndo_uninit
have completed.
Check for NETREG_REGISTERED while holding RTNL and return -ENODEV for a
device which is being unregistered. Keeping RTNL across the check and the
ethtool operation prevents unregister from starting between them.
Also copy the device name before dropping the reference, since the warning
path currently dereferences netdev after dev_put().
Fixes: d41861942fc5 ("IB/core: Add generic function to extract IB speed from netdev")
Reported-by: syzbot+5fe14f2ff4ccbace9a26@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=5fe14f2ff4ccbace9a26
Signed-off-by: Krystian Kaniewski <krystianmkaniewski@gmail.com>
---
v3:
- Reworked the fix following Jakub Kicinski's review: a netdev
reference protects the allocation, not the operational lifetime.
- Moved the fix from ipvlan to the operational RDMA caller.
- Check NETREG_REGISTERED under RTNL before invoking ethtool.
- Avoid dereferencing netdev after dev_put() in the warning path.
- Added the RDMA maintainers and mailing list.
v2: https://lore.kernel.org/all/20260803121140.261329-1-krystianmkaniewski@gmail.com/
drivers/infiniband/core/verbs.c | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/drivers/infiniband/core/verbs.c b/drivers/infiniband/core/verbs.c
index 86811d31092c..d50e761be4c8 100644
--- a/drivers/infiniband/core/verbs.c
+++ b/drivers/infiniband/core/verbs.c
@@ -2040,6 +2040,7 @@ int ib_get_eth_speed(struct ib_device *dev, u32 port_num, u16 *speed, u8 *width)
u32 netdev_speed;
struct net_device *netdev;
struct ethtool_link_ksettings lksettings = {};
+ char name[IFNAMSIZ];
if (rdma_port_get_link_layer(dev, port_num) != IB_LINK_LAYER_ETHERNET)
return -EINVAL;
@@ -2049,7 +2050,15 @@ int ib_get_eth_speed(struct ib_device *dev, u32 port_num, u16 *speed, u8 *width)
return -ENODEV;
rtnl_lock();
+ if (READ_ONCE(netdev->reg_state) != NETREG_REGISTERED) {
+ dev_put(netdev);
+ rtnl_unlock();
+ return -ENODEV;
+ }
+
rc = __ethtool_get_link_ksettings(netdev, &lksettings);
+ if (rc)
+ strscpy(name, netdev->name, sizeof(name));
rtnl_unlock();
dev_put(netdev);
@@ -2060,7 +2069,7 @@ int ib_get_eth_speed(struct ib_device *dev, u32 port_num, u16 *speed, u8 *width)
netdev_speed = SPEED_1000;
if (rc)
pr_warn("%s speed is unknown, defaulting to %u\n",
- netdev->name, netdev_speed);
+ name, netdev_speed);
}
ib_get_width_and_speed(netdev_speed, lksettings.lanes,
--
2.53.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net v3] RDMA/core: Reject unregistering netdevs in ib_get_eth_speed
2026-08-10 13:31 [PATCH net v3] RDMA/core: Reject unregistering netdevs in ib_get_eth_speed Krystian Kaniewski
@ 2026-08-10 13:42 ` Jason Gunthorpe
2026-08-10 18:33 ` Jakub Kicinski
1 sibling, 0 replies; 4+ messages in thread
From: Jason Gunthorpe @ 2026-08-10 13:42 UTC (permalink / raw)
To: Krystian Kaniewski
Cc: Leon Romanovsky, linux-rdma, Andrew Lunn, David S . Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, netdev, linux-kernel,
syzkaller-bugs, syzbot+5fe14f2ff4ccbace9a26
On Mon, Aug 10, 2026 at 03:31:20PM +0200, Krystian Kaniewski wrote:
> @@ -2049,7 +2050,15 @@ int ib_get_eth_speed(struct ib_device *dev, u32 port_num, u16 *speed, u8 *width)
> return -ENODEV;
>
> rtnl_lock();
> + if (READ_ONCE(netdev->reg_state) != NETREG_REGISTERED) {
> + dev_put(netdev);
> + rtnl_unlock();
> + return -ENODEV;
> + }
> +
> rc = __ethtool_get_link_ksettings(netdev, &lksettings);
> + if (rc)
> + strscpy(name, netdev->name, sizeof(name));
> rtnl_unlock();
>
> dev_put(netdev);
> @@ -2060,7 +2069,7 @@ int ib_get_eth_speed(struct ib_device *dev, u32 port_num, u16 *speed, u8 *width)
> netdev_speed = SPEED_1000;
> if (rc)
> pr_warn("%s speed is unknown, defaulting to %u\n",
> - netdev->name, netdev_speed);
> + name, netdev_speed);
> }
I would probably just put this block inside the rtnl lock and not copy
the netdev->name
Jason
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net v3] RDMA/core: Reject unregistering netdevs in ib_get_eth_speed
2026-08-10 13:31 [PATCH net v3] RDMA/core: Reject unregistering netdevs in ib_get_eth_speed Krystian Kaniewski
2026-08-10 13:42 ` Jason Gunthorpe
@ 2026-08-10 18:33 ` Jakub Kicinski
2026-08-10 18:39 ` Jason Gunthorpe
1 sibling, 1 reply; 4+ messages in thread
From: Jakub Kicinski @ 2026-08-10 18:33 UTC (permalink / raw)
To: Krystian Kaniewski
Cc: Jason Gunthorpe, Leon Romanovsky, linux-rdma, Andrew Lunn,
David S . Miller, Eric Dumazet, Paolo Abeni, netdev, linux-kernel,
syzkaller-bugs, syzbot+5fe14f2ff4ccbace9a26
On Mon, 10 Aug 2026 15:31:20 +0200 Krystian Kaniewski wrote:
> Subject: [PATCH net v3] RDMA/core: Reject unregistering netdevs in ib_get_eth_speed
nit: Please don't tag as [PATCH net], networking maintainers don't
normally touch RDMA patches.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net v3] RDMA/core: Reject unregistering netdevs in ib_get_eth_speed
2026-08-10 18:33 ` Jakub Kicinski
@ 2026-08-10 18:39 ` Jason Gunthorpe
0 siblings, 0 replies; 4+ messages in thread
From: Jason Gunthorpe @ 2026-08-10 18:39 UTC (permalink / raw)
To: Jakub Kicinski
Cc: Krystian Kaniewski, Leon Romanovsky, linux-rdma, Andrew Lunn,
David S . Miller, Eric Dumazet, Paolo Abeni, netdev, linux-kernel,
syzkaller-bugs, syzbot+5fe14f2ff4ccbace9a26
On Mon, Aug 10, 2026 at 11:33:08AM -0700, Jakub Kicinski wrote:
> On Mon, 10 Aug 2026 15:31:20 +0200 Krystian Kaniewski wrote:
> > Subject: [PATCH net v3] RDMA/core: Reject unregistering netdevs in ib_get_eth_speed
>
> nit: Please don't tag as [PATCH net], networking maintainers don't
> normally touch RDMA patches.
I also drop all patches tagged like this from the patchworks sight
unseen.
Jason
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-08-10 18:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-10 13:31 [PATCH net v3] RDMA/core: Reject unregistering netdevs in ib_get_eth_speed Krystian Kaniewski
2026-08-10 13:42 ` Jason Gunthorpe
2026-08-10 18:33 ` Jakub Kicinski
2026-08-10 18:39 ` Jason Gunthorpe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox