* [PATCH net] bonding: fix slave_cnt leak on XDP error paths
@ 2026-09-02 5:21 Hangbin Liu
2026-09-02 7:31 ` Nikolay Aleksandrov
0 siblings, 1 reply; 3+ messages in thread
From: Hangbin Liu @ 2026-09-02 5:21 UTC (permalink / raw)
To: Jay Vosburgh, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Daniel Borkmann, Jussi Maki
Cc: Hangbin Liu, netdev, linux-kernel, Hangbin Liu
From: Hangbin Liu <liuhangbin@kylinos.cn>
When bond_enslave() succeeds up to the XDP setup stage, slave_cnt is
already incremented. If XDP setup subsequently fails, the error paths
jump directly to err_sysfs_del, bypassing the slave_cnt decrement.
This causes slave_cnt to drift upward on each failed enslaving attempt,
which would lead to unbalanced traffic distribution with round-robin and
balance-xor mode.
Fixes: 9e2ee5c7e7c3 ("net, bonding: Add XDP support to the bonding driver")
Signed-off-by: Hangbin Liu <liuhangbin@kylinos.cn>
---
drivers/net/bonding/bond_main.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 947d92a669b6..0305a017e327 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -2305,7 +2305,7 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
SLAVE_NL_ERR(bond_dev, slave_dev, extack,
"Slave does not support XDP");
res = -EOPNOTSUPP;
- goto err_sysfs_del;
+ goto err_slave_cnt;
}
} else if (bond->xdp_prog) {
struct netdev_bpf xdp = {
@@ -2319,14 +2319,14 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
SLAVE_NL_ERR(bond_dev, slave_dev, extack,
"Slave has XDP program loaded, please unload before enslaving");
res = -EOPNOTSUPP;
- goto err_sysfs_del;
+ goto err_slave_cnt;
}
res = dev_xdp_propagate(slave_dev, &xdp);
if (res < 0) {
/* ndo_bpf() sets extack error message */
slave_dbg(bond_dev, slave_dev, "Error %d calling ndo_bpf\n", res);
- goto err_sysfs_del;
+ goto err_slave_cnt;
}
if (bond->xdp_prog)
bpf_prog_inc(bond->xdp_prog);
@@ -2348,6 +2348,9 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
return 0;
/* Undo stages on error */
+err_slave_cnt:
+ WRITE_ONCE(bond->slave_cnt, bond->slave_cnt - 1);
+
err_sysfs_del:
bond_sysfs_slave_del(new_slave);
---
base-commit: 70f3995830d3f1e79faa14eb0605914f778feca9
change-id: 20260807-bond_slave_cnt-88e78c5f0ab9
Best regards,
--
Hangbin Liu <liuhangbin@kylinos.cn>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net] bonding: fix slave_cnt leak on XDP error paths
2026-09-02 5:21 [PATCH net] bonding: fix slave_cnt leak on XDP error paths Hangbin Liu
@ 2026-09-02 7:31 ` Nikolay Aleksandrov
2026-09-02 8:25 ` Hangbin Liu
0 siblings, 1 reply; 3+ messages in thread
From: Nikolay Aleksandrov @ 2026-09-02 7:31 UTC (permalink / raw)
To: Hangbin Liu, Jay Vosburgh, Andrew Lunn, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Daniel Borkmann,
Jussi Maki
Cc: netdev, linux-kernel, Hangbin Liu
On 02/09/2026 08:21, Hangbin Liu wrote:
> From: Hangbin Liu <liuhangbin@kylinos.cn>
>
> When bond_enslave() succeeds up to the XDP setup stage, slave_cnt is
> already incremented. If XDP setup subsequently fails, the error paths
> jump directly to err_sysfs_del, bypassing the slave_cnt decrement.
>
> This causes slave_cnt to drift upward on each failed enslaving attempt,
> which would lead to unbalanced traffic distribution with round-robin and
> balance-xor mode.
I don't think it affects balance-xor, it's using usable_slaves->count which is
incremented only for actual usable slaves
>
> Fixes: 9e2ee5c7e7c3 ("net, bonding: Add XDP support to the bonding driver")
> Signed-off-by: Hangbin Liu <liuhangbin@kylinos.cn>
> ---
> drivers/net/bonding/bond_main.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
> index 947d92a669b6..0305a017e327 100644
> --- a/drivers/net/bonding/bond_main.c
> +++ b/drivers/net/bonding/bond_main.c
> @@ -2305,7 +2305,7 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
> SLAVE_NL_ERR(bond_dev, slave_dev, extack,
> "Slave does not support XDP");
> res = -EOPNOTSUPP;
> - goto err_sysfs_del;
> + goto err_slave_cnt;
> }
> } else if (bond->xdp_prog) {
> struct netdev_bpf xdp = {
> @@ -2319,14 +2319,14 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
> SLAVE_NL_ERR(bond_dev, slave_dev, extack,
> "Slave has XDP program loaded, please unload before enslaving");
> res = -EOPNOTSUPP;
> - goto err_sysfs_del;
> + goto err_slave_cnt;
> }
>
> res = dev_xdp_propagate(slave_dev, &xdp);
> if (res < 0) {
> /* ndo_bpf() sets extack error message */
> slave_dbg(bond_dev, slave_dev, "Error %d calling ndo_bpf\n", res);
> - goto err_sysfs_del;
> + goto err_slave_cnt;
> }
> if (bond->xdp_prog)
> bpf_prog_inc(bond->xdp_prog);
> @@ -2348,6 +2348,9 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
> return 0;
>
> /* Undo stages on error */
> +err_slave_cnt:
> + WRITE_ONCE(bond->slave_cnt, bond->slave_cnt - 1);
> +
> err_sysfs_del:
> bond_sysfs_slave_del(new_slave);
>
>
> ---
> base-commit: 70f3995830d3f1e79faa14eb0605914f778feca9
> change-id: 20260807-bond_slave_cnt-88e78c5f0ab9
>
> Best regards,
I think we can just move the slave count inc after XDP setup when we can't fail anymore?
I don't see anything using it before the slave array update.
Cheers,
Nik
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net] bonding: fix slave_cnt leak on XDP error paths
2026-09-02 7:31 ` Nikolay Aleksandrov
@ 2026-09-02 8:25 ` Hangbin Liu
0 siblings, 0 replies; 3+ messages in thread
From: Hangbin Liu @ 2026-09-02 8:25 UTC (permalink / raw)
To: Nikolay Aleksandrov
Cc: Jay Vosburgh, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Daniel Borkmann, Jussi Maki, netdev,
linux-kernel, Hangbin Liu
On Wed, Sep 02, 2026 at 10:31:41AM +0300, Nikolay Aleksandrov wrote:
> On 02/09/2026 08:21, Hangbin Liu wrote:
> > From: Hangbin Liu <liuhangbin@kylinos.cn>
> >
> > When bond_enslave() succeeds up to the XDP setup stage, slave_cnt is
> > already incremented. If XDP setup subsequently fails, the error paths
> > jump directly to err_sysfs_del, bypassing the slave_cnt decrement.
> >
> > This causes slave_cnt to drift upward on each failed enslaving attempt,
> > which would lead to unbalanced traffic distribution with round-robin and
> > balance-xor mode.
>
> I don't think it affects balance-xor, it's using usable_slaves->count which is
> incremented only for actual usable slaves
Ah, yes. I missed this.
>
> I think we can just move the slave count inc after XDP setup when we can't fail anymore?
> I don't see anything using it before the slave array update.
Makes sense to me. I will update the patch.
Thanks
Hangbin
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-02 8:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-02 5:21 [PATCH net] bonding: fix slave_cnt leak on XDP error paths Hangbin Liu
2026-09-02 7:31 ` Nikolay Aleksandrov
2026-09-02 8:25 ` Hangbin Liu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox