From: Hangbin Liu <liuhangbin@gmail.com>
To: Tariq Toukan <tariqt@nvidia.com>
Cc: "David S. Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>, Paolo Abeni <pabeni@redhat.com>,
Eric Dumazet <edumazet@google.com>,
Jay Vosburgh <jv@jvosburgh.net>,
Andy Gospodarek <andy@greyhouse.net>,
netdev@vger.kernel.org, Saeed Mahameed <saeedm@nvidia.com>,
Gal Pressman <gal@nvidia.com>,
Leon Romanovsky <leonro@nvidia.com>,
Jianbo Liu <jianbol@nvidia.com>
Subject: Re: [PATCH net V3 3/3] bonding: change ipsec_lock from spin lock to mutex
Date: Thu, 8 Aug 2024 17:34:33 +0800 [thread overview]
Message-ID: <ZrSRKR-KK5l56XUd@Laptop-X1> (raw)
In-Reply-To: <20240805050357.2004888-4-tariqt@nvidia.com>
On Mon, Aug 05, 2024 at 08:03:57AM +0300, Tariq Toukan wrote:
> From: Jianbo Liu <jianbol@nvidia.com>
>
> In the cited commit, bond->ipsec_lock is added to protect ipsec_list,
> hence xdo_dev_state_add and xdo_dev_state_delete are called inside
> this lock. As ipsec_lock is a spin lock and such xfrmdev ops may sleep,
> "scheduling while atomic" will be triggered when changing bond's
> active slave.
>
> [ 101.055189] BUG: scheduling while atomic: bash/902/0x00000200
> [ 101.055726] Modules linked in:
> [ 101.058211] CPU: 3 PID: 902 Comm: bash Not tainted 6.9.0-rc4+ #1
> [ 101.058760] Hardware name:
> [ 101.059434] Call Trace:
> [ 101.059436] <TASK>
> [ 101.060873] dump_stack_lvl+0x51/0x60
> [ 101.061275] __schedule_bug+0x4e/0x60
> [ 101.061682] __schedule+0x612/0x7c0
> [ 101.062078] ? __mod_timer+0x25c/0x370
> [ 101.062486] schedule+0x25/0xd0
> [ 101.062845] schedule_timeout+0x77/0xf0
> [ 101.063265] ? asm_common_interrupt+0x22/0x40
> [ 101.063724] ? __bpf_trace_itimer_state+0x10/0x10
> [ 101.064215] __wait_for_common+0x87/0x190
> [ 101.064648] ? usleep_range_state+0x90/0x90
> [ 101.065091] cmd_exec+0x437/0xb20 [mlx5_core]
> [ 101.065569] mlx5_cmd_do+0x1e/0x40 [mlx5_core]
> [ 101.066051] mlx5_cmd_exec+0x18/0x30 [mlx5_core]
> [ 101.066552] mlx5_crypto_create_dek_key+0xea/0x120 [mlx5_core]
> [ 101.067163] ? bonding_sysfs_store_option+0x4d/0x80 [bonding]
> [ 101.067738] ? kmalloc_trace+0x4d/0x350
> [ 101.068156] mlx5_ipsec_create_sa_ctx+0x33/0x100 [mlx5_core]
> [ 101.068747] mlx5e_xfrm_add_state+0x47b/0xaa0 [mlx5_core]
> [ 101.069312] bond_change_active_slave+0x392/0x900 [bonding]
> [ 101.069868] bond_option_active_slave_set+0x1c2/0x240 [bonding]
> [ 101.070454] __bond_opt_set+0xa6/0x430 [bonding]
> [ 101.070935] __bond_opt_set_notify+0x2f/0x90 [bonding]
> [ 101.071453] bond_opt_tryset_rtnl+0x72/0xb0 [bonding]
> [ 101.071965] bonding_sysfs_store_option+0x4d/0x80 [bonding]
> [ 101.072567] kernfs_fop_write_iter+0x10c/0x1a0
> [ 101.073033] vfs_write+0x2d8/0x400
> [ 101.073416] ? alloc_fd+0x48/0x180
> [ 101.073798] ksys_write+0x5f/0xe0
> [ 101.074175] do_syscall_64+0x52/0x110
> [ 101.074576] entry_SYSCALL_64_after_hwframe+0x4b/0x53
>
> As bond_ipsec_add_sa_all and bond_ipsec_del_sa_all are only called
> from bond_change_active_slave, which requires holding the RTNL lock.
> And bond_ipsec_add_sa and bond_ipsec_del_sa are xfrm state
> xdo_dev_state_add and xdo_dev_state_delete APIs, which are in user
> context. So ipsec_lock doesn't have to be spin lock, change it to
> mutex, and thus the above issue can be resolved.
>
> Fixes: 9a5605505d9c ("bonding: Add struct bond_ipesc to manage SA")
> Signed-off-by: Jianbo Liu <jianbol@nvidia.com>
> Signed-off-by: Tariq Toukan <tariqt@nvidia.com>
> ---
> drivers/net/bonding/bond_main.c | 75 +++++++++++++++++----------------
> include/net/bonding.h | 2 +-
> 2 files changed, 40 insertions(+), 37 deletions(-)
>
> diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
> index e550b1c08fdb..56764f1c39b8 100644
> --- a/drivers/net/bonding/bond_main.c
> +++ b/drivers/net/bonding/bond_main.c
> @@ -481,35 +476,43 @@ static void bond_ipsec_add_sa_all(struct bonding *bond)
> struct bond_ipsec *ipsec;
> struct slave *slave;
>
> - rcu_read_lock();
> - slave = rcu_dereference(bond->curr_active_slave);
> - if (!slave)
> - goto out;
> + slave = rtnl_dereference(bond->curr_active_slave);
> + real_dev = slave ? slave->dev : NULL;
> + if (!real_dev)
> + return;
>
> - real_dev = slave->dev;
> + mutex_lock(&bond->ipsec_lock);
> if (!real_dev->xfrmdev_ops ||
> !real_dev->xfrmdev_ops->xdo_dev_state_add ||
> netif_is_bond_master(real_dev)) {
> - spin_lock_bh(&bond->ipsec_lock);
> if (!list_empty(&bond->ipsec_list))
> slave_warn(bond_dev, real_dev,
> "%s: no slave xdo_dev_state_add\n",
> __func__);
> - spin_unlock_bh(&bond->ipsec_lock);
> goto out;
> }
>
> - spin_lock_bh(&bond->ipsec_lock);
> list_for_each_entry(ipsec, &bond->ipsec_list, list) {
> + struct net_device *dev = ipsec->xs->xso.real_dev;
> +
> + /* If new state is added before ipsec_lock acquired */
> + if (dev) {
> + if (dev == real_dev)
> + continue;
Hi Jianbo,
Why we skip the deleting here if dev == real_dev? What if the state
is added again on the same slave? From the previous logic it looks we
don't check and do over write for the same device.
Thanks
Hangbin
> + dev->xfrmdev_ops->xdo_dev_state_delete(ipsec->xs);
> + if (dev->xfrmdev_ops->xdo_dev_state_free)
> + dev->xfrmdev_ops->xdo_dev_state_free(ipsec->xs);
> + }
> +
> ipsec->xs->xso.real_dev = real_dev;
> if (real_dev->xfrmdev_ops->xdo_dev_state_add(ipsec->xs, NULL)) {
> slave_warn(bond_dev, real_dev, "%s: failed to add SA\n", __func__);
> ipsec->xs->xso.real_dev = NULL;
> }
> }
> - spin_unlock_bh(&bond->ipsec_lock);
> out:
> - rcu_read_unlock();
> + mutex_unlock(&bond->ipsec_lock);
> }
next prev parent reply other threads:[~2024-08-08 9:34 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-05 5:03 [PATCH net V3 0/3] Fixes for IPsec over bonding Tariq Toukan
2024-08-05 5:03 ` [PATCH net V3 1/3] bonding: implement xdo_dev_state_free and call it after deletion Tariq Toukan
2024-08-06 8:45 ` Hangbin Liu
2024-08-06 9:09 ` Jianbo Liu
2024-08-07 10:11 ` Hangbin Liu
2024-08-13 0:48 ` Jakub Kicinski
2024-08-13 2:58 ` Jianbo Liu
2024-08-13 14:14 ` Jakub Kicinski
2024-08-14 2:03 ` Jianbo Liu
2024-08-14 3:11 ` Hangbin Liu
2024-08-15 1:23 ` Jianbo Liu
2024-08-15 3:34 ` Hangbin Liu
2024-08-15 3:57 ` Jianbo Liu
2024-08-05 5:03 ` [PATCH net V3 2/3] bonding: extract the use of real_device into local variable Tariq Toukan
2024-08-07 10:13 ` Hangbin Liu
2024-08-05 5:03 ` [PATCH net V3 3/3] bonding: change ipsec_lock from spin lock to mutex Tariq Toukan
2024-08-08 9:34 ` Hangbin Liu [this message]
2024-08-08 10:05 ` Jianbo Liu
2024-08-09 2:31 ` Hangbin Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZrSRKR-KK5l56XUd@Laptop-X1 \
--to=liuhangbin@gmail.com \
--cc=andy@greyhouse.net \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=gal@nvidia.com \
--cc=jianbol@nvidia.com \
--cc=jv@jvosburgh.net \
--cc=kuba@kernel.org \
--cc=leonro@nvidia.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=saeedm@nvidia.com \
--cc=tariqt@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.