Skip to content

Commit

Permalink
RDMA/core: fix UAF with ib_device_get_netdev()
Browse files Browse the repository at this point in the history
A call to ib_device_get_netdev may lead to a race condition
while accessing a netdevice instance since we don't hold
the rtnl lock while checking
the registration state:
	if (res && res->reg_state != NETREG_REGISTERED) {

v2: unlock rtnl on error path
v3: update remaining callers of ib_device_get_netdev
v4: don't call a cb with rtnl lock in ib_enum_roce_netdev

Reported-by: [email protected]
Fixes: d418619 ("IB/core: Add generic function to extract IB speed from netdev")
Signed-off-by: Denis Kirjanov <[email protected]>
Signed-off-by: NipaLocal <nipa@local>
  • Loading branch information
kda88 authored and NipaLocal committed Apr 2, 2024
1 parent 0dbb094 commit ec02cb2
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
2 changes: 2 additions & 0 deletions drivers/infiniband/core/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,9 @@ static int config_non_roce_gid_cache(struct ib_device *device,
if (rdma_protocol_iwarp(device, port)) {
struct net_device *ndev;

rtnl_lock();
ndev = ib_device_get_netdev(device, port);
rtnl_unlock();
if (!ndev)
continue;
RCU_INIT_POINTER(gid_attr.ndev, ndev);
Expand Down
15 changes: 12 additions & 3 deletions drivers/infiniband/core/device.c
Original file line number Diff line number Diff line change
Expand Up @@ -2026,9 +2026,12 @@ static int iw_query_port(struct ib_device *device,

memset(port_attr, 0, sizeof(*port_attr));

rtnl_lock();
netdev = ib_device_get_netdev(device, port_num);
if (!netdev)
if (!netdev) {
rtnl_unlock();
return -ENODEV;
}

port_attr->max_mtu = IB_MTU_4096;
port_attr->active_mtu = ib_mtu_int_to_enum(netdev->mtu);
Expand All @@ -2052,6 +2055,7 @@ static int iw_query_port(struct ib_device *device,
rcu_read_unlock();
}

rtnl_unlock();
dev_put(netdev);
return device->ops.query_port(device, port_num, port_attr);
}
Expand Down Expand Up @@ -2220,6 +2224,8 @@ struct net_device *ib_device_get_netdev(struct ib_device *ib_dev,
struct ib_port_data *pdata;
struct net_device *res;

ASSERT_RTNL();

if (!rdma_is_port_valid(ib_dev, port))
return NULL;

Expand Down Expand Up @@ -2306,8 +2312,11 @@ void ib_enum_roce_netdev(struct ib_device *ib_dev,

rdma_for_each_port (ib_dev, port)
if (rdma_protocol_roce(ib_dev, port)) {
struct net_device *idev =
ib_device_get_netdev(ib_dev, port);
struct net_device *idev;

rtnl_lock();
idev = ib_device_get_netdev(ib_dev, port);
rtnl_unlock();

if (filter(ib_dev, port, idev, filter_cookie))
cb(ib_dev, port, idev, cookie);
Expand Down
3 changes: 3 additions & 0 deletions drivers/infiniband/core/nldev.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,9 @@ static int fill_port_info(struct sk_buff *msg,
if (nla_put_u8(msg, RDMA_NLDEV_ATTR_PORT_PHYS_STATE, attr.phys_state))
return -EMSGSIZE;

rtnl_lock();
netdev = ib_device_get_netdev(device, port);

if (netdev && net_eq(dev_net(netdev), net)) {
ret = nla_put_u32(msg,
RDMA_NLDEV_ATTR_NDEV_INDEX, netdev->ifindex);
Expand All @@ -371,6 +373,7 @@ static int fill_port_info(struct sk_buff *msg,
}

out:
rtnl_unlock();
dev_put(netdev);
return ret;
}
Expand Down
6 changes: 4 additions & 2 deletions drivers/infiniband/core/verbs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1976,11 +1976,13 @@ int ib_get_eth_speed(struct ib_device *dev, u32 port_num, u16 *speed, u8 *width)
if (rdma_port_get_link_layer(dev, port_num) != IB_LINK_LAYER_ETHERNET)
return -EINVAL;

rtnl_lock();
netdev = ib_device_get_netdev(dev, port_num);
if (!netdev)
if (!netdev) {
rtnl_unlock();
return -ENODEV;
}

rtnl_lock();
rc = __ethtool_get_link_ksettings(netdev, &lksettings);
rtnl_unlock();

Expand Down

0 comments on commit ec02cb2

Please sign in to comment.