Skip to content

Commit

Permalink
net: rtnetlink: rtnl_fill_statsinfo(): Permit non-EMSGSIZE error returns
Browse files Browse the repository at this point in the history
Obtaining stats for the IFLA_STATS_LINK_OFFLOAD_XSTATS nest involves a HW
access, and can fail for more reasons than just netlink message size
exhaustion. Therefore do not always return -EMSGSIZE on the failure path,
but respect the error code provided by the callee. Set the error explicitly
where it is reasonable to assume -EMSGSIZE as the failure reason.

Signed-off-by: Petr Machata <petrm@nvidia.com>
Signed-off-by: Ido Schimmel <idosch@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Petr Machata authored and David S. Miller committed Mar 3, 2022
1 parent 05415bc commit 216e690
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions net/core/rtnetlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -5177,8 +5177,10 @@ static int rtnl_fill_statsinfo(struct sk_buff *skb, struct net_device *dev,
attr = nla_reserve_64bit(skb, IFLA_STATS_LINK_64,
sizeof(struct rtnl_link_stats64),
IFLA_STATS_UNSPEC);
if (!attr)
if (!attr) {
err = -EMSGSIZE;
goto nla_put_failure;
}

sp = nla_data(attr);
dev_get_stats(dev, sp);
Expand All @@ -5191,8 +5193,10 @@ static int rtnl_fill_statsinfo(struct sk_buff *skb, struct net_device *dev,
*idxattr = IFLA_STATS_LINK_XSTATS;
attr = nla_nest_start_noflag(skb,
IFLA_STATS_LINK_XSTATS);
if (!attr)
if (!attr) {
err = -EMSGSIZE;
goto nla_put_failure;
}

err = ops->fill_linkxstats(skb, dev, prividx, *idxattr);
nla_nest_end(skb, attr);
Expand All @@ -5214,8 +5218,10 @@ static int rtnl_fill_statsinfo(struct sk_buff *skb, struct net_device *dev,
*idxattr = IFLA_STATS_LINK_XSTATS_SLAVE;
attr = nla_nest_start_noflag(skb,
IFLA_STATS_LINK_XSTATS_SLAVE);
if (!attr)
if (!attr) {
err = -EMSGSIZE;
goto nla_put_failure;
}

err = ops->fill_linkxstats(skb, dev, prividx, *idxattr);
nla_nest_end(skb, attr);
Expand All @@ -5233,8 +5239,10 @@ static int rtnl_fill_statsinfo(struct sk_buff *skb, struct net_device *dev,
*idxattr = IFLA_STATS_LINK_OFFLOAD_XSTATS;
attr = nla_nest_start_noflag(skb,
IFLA_STATS_LINK_OFFLOAD_XSTATS);
if (!attr)
if (!attr) {
err = -EMSGSIZE;
goto nla_put_failure;
}

err = rtnl_offload_xstats_fill(skb, dev, prividx,
off_filter_mask, extack);
Expand All @@ -5253,8 +5261,10 @@ static int rtnl_fill_statsinfo(struct sk_buff *skb, struct net_device *dev,

*idxattr = IFLA_STATS_AF_SPEC;
attr = nla_nest_start_noflag(skb, IFLA_STATS_AF_SPEC);
if (!attr)
if (!attr) {
err = -EMSGSIZE;
goto nla_put_failure;
}

rcu_read_lock();
list_for_each_entry_rcu(af_ops, &rtnl_af_ops, list) {
Expand Down Expand Up @@ -5298,7 +5308,7 @@ static int rtnl_fill_statsinfo(struct sk_buff *skb, struct net_device *dev,
else
nlmsg_end(skb, nlh);

return -EMSGSIZE;
return err;
}

static size_t if_nlmsg_stats_size(const struct net_device *dev,
Expand Down

0 comments on commit 216e690

Please sign in to comment.