bonding: fix length of actor system
The attribute IFLA_BOND_AD_ACTOR_SYSTEM is sent to user space having the
length of sizeof(bond->params.ad_actor_system) which is 8 byte. This
patch aligns the length to ETH_ALEN to have the same MAC address exposed
as using sysfs.
Fixes: f87fda00b6
("bonding: prevent out of bound accesses")
Signed-off-by: Tobias Jungel <tobias.jungel@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
966c37f2d7
commit
414dd6fb9a
|
@ -638,8 +638,7 @@ static int bond_fill_info(struct sk_buff *skb,
|
||||||
goto nla_put_failure;
|
goto nla_put_failure;
|
||||||
|
|
||||||
if (nla_put(skb, IFLA_BOND_AD_ACTOR_SYSTEM,
|
if (nla_put(skb, IFLA_BOND_AD_ACTOR_SYSTEM,
|
||||||
sizeof(bond->params.ad_actor_system),
|
ETH_ALEN, &bond->params.ad_actor_system))
|
||||||
&bond->params.ad_actor_system))
|
|
||||||
goto nla_put_failure;
|
goto nla_put_failure;
|
||||||
}
|
}
|
||||||
if (!bond_3ad_get_active_agg_info(bond, &info)) {
|
if (!bond_3ad_get_active_agg_info(bond, &info)) {
|
||||||
|
|
Loading…
Reference in New Issue