The bond_close() calls cancel_delayed_work() to cancel delayed works.
It, however, cannot cancel works that were already queued in workqueue.
The bond_open() initializes work->data, and proccess_one_work() refers
get_work_cwq(work)->wq->flags. The get_work_cwq() returns NULL when
work->data has been initialized. Thus, a panic occurs.
This patch uses flush_delayed_work_sync() instead of cancel_delayed_work()
in bond_close(). It cancels delayed timer and waits for work to finish
execution. So, it can avoid the null pointer dereference due to the
parallel executions of proccess_one_work() and initializing proccess
of bond_open().
Signed-off-by: Mitsuo Hayasaka <redacted>
Reviewed-by: WANG Cong <redacted>
Cc: Jay Vosburgh <redacted>
Cc: Andy Gospodarek <andy@greyhouse.net>
Cc: WANG Cong <redacted>
---
drivers/net/bonding/bond_main.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
@@ -3504,27 +3504,27 @@ static int bond_close(struct net_device *bond_dev)write_unlock_bh(&bond->lock);if(bond->params.miimon){/* link check interval, in milliseconds. */-cancel_delayed_work(&bond->mii_work);+flush_delayed_work_sync(&bond->mii_work);}if(bond->params.arp_interval){/* arp interval, in milliseconds. */-cancel_delayed_work(&bond->arp_work);+flush_delayed_work_sync(&bond->arp_work);}switch(bond->params.mode){caseBOND_MODE_8023AD:-cancel_delayed_work(&bond->ad_work);+flush_delayed_work_sync(&bond->ad_work);break;caseBOND_MODE_TLB:caseBOND_MODE_ALB:-cancel_delayed_work(&bond->alb_work);+flush_delayed_work_sync(&bond->alb_work);break;default:break;}if(delayed_work_pending(&bond->mcast_work))-cancel_delayed_work(&bond->mcast_work);+flush_delayed_work_sync(&bond->mcast_work);if(bond_is_lb(bond)){/* Must be called only after all
From: Jay Vosburgh <hidden> Date: 2011-10-19 18:10:57
Mitsuo Hayasaka [off-list ref] wrote:
The bond_close() calls cancel_delayed_work() to cancel delayed works.
It, however, cannot cancel works that were already queued in workqueue.
The bond_open() initializes work->data, and proccess_one_work() refers
get_work_cwq(work)->wq->flags. The get_work_cwq() returns NULL when
work->data has been initialized. Thus, a panic occurs.
This patch uses flush_delayed_work_sync() instead of cancel_delayed_work()
in bond_close(). It cancels delayed timer and waits for work to finish
execution. So, it can avoid the null pointer dereference due to the
parallel executions of proccess_one_work() and initializing proccess
of bond_open().
I'm setting up to test this. I have a dim recollection that we
tried this some years ago, and there was a different deadlock that
manifested through the flush path. Perhaps changes since then have
removed that problem.
-J
quoted hunk
Signed-off-by: Mitsuo Hayasaka <redacted>
Reviewed-by: WANG Cong <redacted>
Cc: Jay Vosburgh <redacted>
Cc: Andy Gospodarek <andy@greyhouse.net>
Cc: WANG Cong <redacted>
---
drivers/net/bonding/bond_main.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
@@ -3504,27 +3504,27 @@ static int bond_close(struct net_device *bond_dev)
write_unlock_bh(&bond->lock);
if (bond->params.miimon) { /* link check interval, in milliseconds. */
- cancel_delayed_work(&bond->mii_work);
+ flush_delayed_work_sync(&bond->mii_work);
}
if (bond->params.arp_interval) { /* arp interval, in milliseconds. */
- cancel_delayed_work(&bond->arp_work);
+ flush_delayed_work_sync(&bond->arp_work);
}
switch (bond->params.mode) {
case BOND_MODE_8023AD:
- cancel_delayed_work(&bond->ad_work);
+ flush_delayed_work_sync(&bond->ad_work);
break;
case BOND_MODE_TLB:
case BOND_MODE_ALB:
- cancel_delayed_work(&bond->alb_work);
+ flush_delayed_work_sync(&bond->alb_work);
break;
default:
break;
}
if (delayed_work_pending(&bond->mcast_work))
- cancel_delayed_work(&bond->mcast_work);
+ flush_delayed_work_sync(&bond->mcast_work);
if (bond_is_lb(bond)) {
/* Must be called only after all
---
-Jay Vosburgh, IBM Linux Technology Center, fubar@us.ibm.com
From: Stephen Hemminger <hidden> Date: 2011-10-19 18:41:35
On Wed, 19 Oct 2011 11:01:02 -0700
Jay Vosburgh [off-list ref] wrote:
Mitsuo Hayasaka [off-list ref] wrote:
quoted
The bond_close() calls cancel_delayed_work() to cancel delayed works.
It, however, cannot cancel works that were already queued in workqueue.
The bond_open() initializes work->data, and proccess_one_work() refers
get_work_cwq(work)->wq->flags. The get_work_cwq() returns NULL when
work->data has been initialized. Thus, a panic occurs.
This patch uses flush_delayed_work_sync() instead of cancel_delayed_work()
in bond_close(). It cancels delayed timer and waits for work to finish
execution. So, it can avoid the null pointer dereference due to the
parallel executions of proccess_one_work() and initializing proccess
of bond_open().
I'm setting up to test this. I have a dim recollection that we
tried this some years ago, and there was a different deadlock that
manifested through the flush path. Perhaps changes since then have
removed that problem.
-J
Won't this deadlock on RTNL. The problem is that:
CPU0 CPU1
rtnl_lock
bond_close
delayed_work
mii_work
read_lock(bond->lock);
read_unlock(bond->lock);
rtnl_lock... waiting for CPU0
flush_delayed_work_sync
waiting for delayed_work to finish...
From: Jay Vosburgh <hidden> Date: 2011-10-19 19:24:05
Stephen Hemminger [off-list ref] wrote:
On Wed, 19 Oct 2011 11:01:02 -0700
Jay Vosburgh [off-list ref] wrote:
quoted
Mitsuo Hayasaka [off-list ref] wrote:
quoted
The bond_close() calls cancel_delayed_work() to cancel delayed works.
It, however, cannot cancel works that were already queued in workqueue.
The bond_open() initializes work->data, and proccess_one_work() refers
get_work_cwq(work)->wq->flags. The get_work_cwq() returns NULL when
work->data has been initialized. Thus, a panic occurs.
This patch uses flush_delayed_work_sync() instead of cancel_delayed_work()
in bond_close(). It cancels delayed timer and waits for work to finish
execution. So, it can avoid the null pointer dereference due to the
parallel executions of proccess_one_work() and initializing proccess
of bond_open().
I'm setting up to test this. I have a dim recollection that we
tried this some years ago, and there was a different deadlock that
manifested through the flush path. Perhaps changes since then have
removed that problem.
-J
Won't this deadlock on RTNL. The problem is that:
CPU0 CPU1
rtnl_lock
bond_close
delayed_work
mii_work
read_lock(bond->lock);
read_unlock(bond->lock);
rtnl_lock... waiting for CPU0
flush_delayed_work_sync
waiting for delayed_work to finish...
Yah, that was it. We discussed this a couple of years ago in
regards to a similar patch:
http://lists.openwall.net/netdev/2009/12/17/3
The short version is that we could rework the rtnl_lock inside
the montiors to be conditional and retry on failure (where "retry" means
"reschedule the work and try again later," not "spin retrying on rtnl").
That should permit the use of flush or cancel to terminate the work
items.
I'll fiddle with it some later today and see if that seems
viable.
-J
---
-Jay Vosburgh, IBM Linux Technology Center, fubar@us.ibm.com
From: Américo Wang <hidden> Date: 2011-10-21 05:45:35
On Thu, Oct 20, 2011 at 3:09 AM, Jay Vosburgh [off-list ref] wrote:
Stephen Hemminger [off-list ref] wrote:
quoted
On Wed, 19 Oct 2011 11:01:02 -0700
Jay Vosburgh [off-list ref] wrote:
quoted
Mitsuo Hayasaka [off-list ref] wrote:
quoted
The bond_close() calls cancel_delayed_work() to cancel delayed works.
It, however, cannot cancel works that were already queued in workqueue.
The bond_open() initializes work->data, and proccess_one_work() refers
get_work_cwq(work)->wq->flags. The get_work_cwq() returns NULL when
work->data has been initialized. Thus, a panic occurs.
This patch uses flush_delayed_work_sync() instead of cancel_delayed_work()
in bond_close(). It cancels delayed timer and waits for work to finish
execution. So, it can avoid the null pointer dereference due to the
parallel executions of proccess_one_work() and initializing proccess
of bond_open().
I'm setting up to test this. I have a dim recollection that we
tried this some years ago, and there was a different deadlock that
manifested through the flush path. Perhaps changes since then have
removed that problem.
-J
Won't this deadlock on RTNL. The problem is that:
CPU0 CPU1
rtnl_lock
bond_close
delayed_work
mii_work
read_lock(bond->lock);
read_unlock(bond->lock);
rtnl_lock... waiting for CPU0
flush_delayed_work_sync
waiting for delayed_work to finish...
Yah, that was it. We discussed this a couple of years ago in
regards to a similar patch:
http://lists.openwall.net/netdev/2009/12/17/3
The short version is that we could rework the rtnl_lock inside
the montiors to be conditional and retry on failure (where "retry" means
"reschedule the work and try again later," not "spin retrying on rtnl").
That should permit the use of flush or cancel to terminate the work
items.
Yes? Even if we use rtnl_trylock(), doesn't flush_delayed_work_sync()
still queue the pending delayed work and wait for it to be finished?
Maybe I am too blind, why do we need rtnl_lock for cancel_delayed_work()
inside bond_close()?
Thanks.
From: Jay Vosburgh <hidden> Date: 2011-10-21 06:26:49
Américo Wang [off-list ref] wrote:
On Thu, Oct 20, 2011 at 3:09 AM, Jay Vosburgh [off-list ref] wrote:
quoted
Stephen Hemminger [off-list ref] wrote:
quoted
On Wed, 19 Oct 2011 11:01:02 -0700
Jay Vosburgh [off-list ref] wrote:
quoted
Mitsuo Hayasaka [off-list ref] wrote:
quoted
The bond_close() calls cancel_delayed_work() to cancel delayed works.
It, however, cannot cancel works that were already queued in workqueue.
The bond_open() initializes work->data, and proccess_one_work() refers
get_work_cwq(work)->wq->flags. The get_work_cwq() returns NULL when
work->data has been initialized. Thus, a panic occurs.
This patch uses flush_delayed_work_sync() instead of cancel_delayed_work()
in bond_close(). It cancels delayed timer and waits for work to finish
execution. So, it can avoid the null pointer dereference due to the
parallel executions of proccess_one_work() and initializing proccess
of bond_open().
I'm setting up to test this. I have a dim recollection that we
tried this some years ago, and there was a different deadlock that
manifested through the flush path. Perhaps changes since then have
removed that problem.
-J
Won't this deadlock on RTNL. The problem is that:
CPU0 CPU1
rtnl_lock
bond_close
delayed_work
mii_work
read_lock(bond->lock);
read_unlock(bond->lock);
rtnl_lock... waiting for CPU0
flush_delayed_work_sync
waiting for delayed_work to finish...
Yah, that was it. We discussed this a couple of years ago in
regards to a similar patch:
http://lists.openwall.net/netdev/2009/12/17/3
The short version is that we could rework the rtnl_lock inside
the montiors to be conditional and retry on failure (where "retry" means
"reschedule the work and try again later," not "spin retrying on rtnl").
That should permit the use of flush or cancel to terminate the work
items.
Yes? Even if we use rtnl_trylock(), doesn't flush_delayed_work_sync()
still queue the pending delayed work and wait for it to be finished?
Yes, it does. The original patch wants to use flush instead of
cancel to wait for the work to finish, because there's evidently a
possibility of getting back into bond_open before the work item
executes, and bond_open would reinitialize the work queue and corrupt
the queued work item.
The original patch series, and recipe for destruction, is here:
http://www.spinics.net/lists/netdev/msg176382.html
I've been unable to reproduce the work queue panic locally,
although it sounds plausible.
Mitsuo: can you provide the precise bonding configuration you're
using to induce the problem? Driver options, number and type of slaves,
etc.
Maybe I am too blind, why do we need rtnl_lock for cancel_delayed_work()
inside bond_close()?
We don't need RTNL for cancel/flush. However, bond_close is an
ndo_stop operation, and is called in the dev_close path, which always
occurs under RTNL. The mii / arp monitor work functions separately
acquire RTNL if they need to perform various failover related
operations.
I'm working on a patch that should resolve the mii / arp monitor
RTNL problem as I described above (if rtnl_trylock fails, punt and
reschedule the work). I need to rearrange the netdev_bonding_change
stuff a bit as well, since it acquires RTNL separately.
Once these changes are made to mii / arp monitor, then
bond_close can call flush instead of cancel, which should eliminate the
original problem described at the top.
-J
---
-Jay Vosburgh, IBM Linux Technology Center, fubar@us.ibm.com
From: Jay Vosburgh <hidden> Date: 2011-10-22 00:59:16
Jay Vosburgh [off-list ref] wrote:
Américo Wang [off-list ref] wrote:
quoted
On Thu, Oct 20, 2011 at 3:09 AM, Jay Vosburgh [off-list ref] wrote:
quoted
Stephen Hemminger [off-list ref] wrote:
quoted
On Wed, 19 Oct 2011 11:01:02 -0700
Jay Vosburgh [off-list ref] wrote:
quoted
Mitsuo Hayasaka [off-list ref] wrote:
quoted
The bond_close() calls cancel_delayed_work() to cancel delayed works.
It, however, cannot cancel works that were already queued in workqueue.
The bond_open() initializes work->data, and proccess_one_work() refers
get_work_cwq(work)->wq->flags. The get_work_cwq() returns NULL when
work->data has been initialized. Thus, a panic occurs.
This patch uses flush_delayed_work_sync() instead of cancel_delayed_work()
in bond_close(). It cancels delayed timer and waits for work to finish
execution. So, it can avoid the null pointer dereference due to the
parallel executions of proccess_one_work() and initializing proccess
of bond_open().
I'm setting up to test this. I have a dim recollection that we
tried this some years ago, and there was a different deadlock that
manifested through the flush path. Perhaps changes since then have
removed that problem.
-J
Won't this deadlock on RTNL. The problem is that:
CPU0 CPU1
rtnl_lock
bond_close
delayed_work
mii_work
read_lock(bond->lock);
read_unlock(bond->lock);
rtnl_lock... waiting for CPU0
flush_delayed_work_sync
waiting for delayed_work to finish...
Yah, that was it. We discussed this a couple of years ago in
regards to a similar patch:
http://lists.openwall.net/netdev/2009/12/17/3
The short version is that we could rework the rtnl_lock inside
the montiors to be conditional and retry on failure (where "retry" means
"reschedule the work and try again later," not "spin retrying on rtnl").
That should permit the use of flush or cancel to terminate the work
items.
Yes? Even if we use rtnl_trylock(), doesn't flush_delayed_work_sync()
still queue the pending delayed work and wait for it to be finished?
Yes, it does. The original patch wants to use flush instead of
cancel to wait for the work to finish, because there's evidently a
possibility of getting back into bond_open before the work item
executes, and bond_open would reinitialize the work queue and corrupt
the queued work item.
The original patch series, and recipe for destruction, is here:
http://www.spinics.net/lists/netdev/msg176382.html
I've been unable to reproduce the work queue panic locally,
although it sounds plausible.
Mitsuo: can you provide the precise bonding configuration you're
using to induce the problem? Driver options, number and type of slaves,
etc.
quoted
Maybe I am too blind, why do we need rtnl_lock for cancel_delayed_work()
inside bond_close()?
We don't need RTNL for cancel/flush. However, bond_close is an
ndo_stop operation, and is called in the dev_close path, which always
occurs under RTNL. The mii / arp monitor work functions separately
acquire RTNL if they need to perform various failover related
operations.
I'm working on a patch that should resolve the mii / arp monitor
RTNL problem as I described above (if rtnl_trylock fails, punt and
reschedule the work). I need to rearrange the netdev_bonding_change
stuff a bit as well, since it acquires RTNL separately.
Once these changes are made to mii / arp monitor, then
bond_close can call flush instead of cancel, which should eliminate the
original problem described at the top.
Just an update: there are three functions that may deadlock if
the cancel work calls are changed to flush_sync. There are two
rtnl_lock calls in each of the bond_mii_monitor and
bond_activebackup_arp_mon functions, and one more in the
bond_alb_monitor.
Still testing to make sure I haven't missed anything, and I
still haven't been able to reproduce Mitsuo's original failure.
-J
---
-Jay Vosburgh, IBM Linux Technology Center, fubar@us.ibm.com
On Thu, Oct 20, 2011 at 3:09 AM, Jay Vosburgh [off-list ref] wrote:
quoted
Stephen Hemminger [off-list ref] wrote:
quoted
On Wed, 19 Oct 2011 11:01:02 -0700
Jay Vosburgh [off-list ref] wrote:
quoted
Mitsuo Hayasaka [off-list ref] wrote:
quoted
The bond_close() calls cancel_delayed_work() to cancel delayed works.
It, however, cannot cancel works that were already queued in workqueue.
The bond_open() initializes work->data, and proccess_one_work() refers
get_work_cwq(work)->wq->flags. The get_work_cwq() returns NULL when
work->data has been initialized. Thus, a panic occurs.
This patch uses flush_delayed_work_sync() instead of cancel_delayed_work()
in bond_close(). It cancels delayed timer and waits for work to finish
execution. So, it can avoid the null pointer dereference due to the
parallel executions of proccess_one_work() and initializing proccess
of bond_open().
I'm setting up to test this. I have a dim recollection that we
tried this some years ago, and there was a different deadlock that
manifested through the flush path. Perhaps changes since then have
removed that problem.
-J
Won't this deadlock on RTNL. The problem is that:
CPU0 CPU1
rtnl_lock
bond_close
delayed_work
mii_work
read_lock(bond->lock);
read_unlock(bond->lock);
rtnl_lock... waiting for CPU0
flush_delayed_work_sync
waiting for delayed_work to finish...
Yah, that was it. We discussed this a couple of years ago in
regards to a similar patch:
http://lists.openwall.net/netdev/2009/12/17/3
The short version is that we could rework the rtnl_lock inside
the montiors to be conditional and retry on failure (where "retry" means
"reschedule the work and try again later," not "spin retrying on rtnl").
That should permit the use of flush or cancel to terminate the work
items.
Yes? Even if we use rtnl_trylock(), doesn't flush_delayed_work_sync()
still queue the pending delayed work and wait for it to be finished?
Yes, it does. The original patch wants to use flush instead of
cancel to wait for the work to finish, because there's evidently a
possibility of getting back into bond_open before the work item
executes, and bond_open would reinitialize the work queue and corrupt
the queued work item.
The original patch series, and recipe for destruction, is here:
http://www.spinics.net/lists/netdev/msg176382.html
I've been unable to reproduce the work queue panic locally,
although it sounds plausible.
Mitsuo: can you provide the precise bonding configuration you're
using to induce the problem? Driver options, number and type of slaves,
etc.
quoted
Maybe I am too blind, why do we need rtnl_lock for cancel_delayed_work()
inside bond_close()?
We don't need RTNL for cancel/flush. However, bond_close is an
ndo_stop operation, and is called in the dev_close path, which always
occurs under RTNL. The mii / arp monitor work functions separately
acquire RTNL if they need to perform various failover related
operations.
I'm working on a patch that should resolve the mii / arp monitor
RTNL problem as I described above (if rtnl_trylock fails, punt and
reschedule the work). I need to rearrange the netdev_bonding_change
stuff a bit as well, since it acquires RTNL separately.
Once these changes are made to mii / arp monitor, then
bond_close can call flush instead of cancel, which should eliminate the
original problem described at the top.
Just an update: there are three functions that may deadlock if
the cancel work calls are changed to flush_sync. There are two
rtnl_lock calls in each of the bond_mii_monitor and
bond_activebackup_arp_mon functions, and one more in the
bond_alb_monitor.
Still testing to make sure I haven't missed anything, and I
still haven't been able to reproduce Mitsuo's original failure.
The interval of mii_mon was set to 1 to reproduce this bug easily and
the 802.3ad mode was used. Then, I executed the following command.
# while true; do ifconfig bond0 down; done &
# while true; do ifconfig bond0 up; done &
This bug rarely occurs since it is the severe timing problem.
I found that it is more easily to reproduce this bug when using guest OS.
For example, it took one to three days for me to reproduce it on host OS,
but some hours on guest OS.
Thanks.
-J
---
-Jay Vosburgh, IBM Linux Technology Center, fubar@us.ibm.com
From: Jay Vosburgh <hidden> Date: 2011-10-26 17:44:22
HAYASAKA Mitsuo [off-list ref] wrote:
[...]
The interval of mii_mon was set to 1 to reproduce this bug easily and
the 802.3ad mode was used. Then, I executed the following command.
# while true; do ifconfig bond0 down; done &
# while true; do ifconfig bond0 up; done &
This bug rarely occurs since it is the severe timing problem.
I found that it is more easily to reproduce this bug when using guest OS.
For example, it took one to three days for me to reproduce it on host OS,
but some hours on guest OS.
Could you test this patch and see if it resolves the problem?
This patch does a few things:
All of the monitor functions that run on work queues are
modified to never unconditionally acquire RTNL; all will reschedule the
work and return if rtnl_trylock fails. This covers bond_mii_monitor,
bond_activebackup_arp_mon, and bond_alb_monitor.
The "clear out the work queues" calls in bond_close and
bond_uninit now call cancel_delayed_work_sync, which should either
delete a pending work item, or wait for an executing item to complete.
I chose cancel_ over the original patch's flush_ because we just want
the work queue stopped. We don't need to have any pending items execute
if they're not already running.
Also in reference to the previous, I'm not sure if we still need
to check for delayed_work_pending, but I've left those checks in place.
Remove the "kill_timers" field and all references to it. If
cancel_delayed_work_sync is safe to use, we do not need an extra
sentinel.
Lastly, for testing purposes only, the bond_alb_monitor in this
patch includes an unconditional call to rtnl_trylock(); this is an
artifical way to make the race in that function easier to test for,
because the real race is very difficult to hit.
This patch is against net-next as of yesterday.
Comments?
-J
@@ -2110,9 +2110,6 @@ void bond_3ad_state_machine_handler(struct work_struct *work)read_lock(&bond->lock);-if(bond->kill_timers)-gotoout;-//check if there are any slavesif(bond->slave_cnt==0)gotore_arm;
@@ -774,9 +774,6 @@ static void bond_resend_igmp_join_requests(struct bonding *bond)read_lock(&bond->lock);-if(bond->kill_timers)-gotoout;-/* rejoin all groups on bond device */__bond_resend_igmp_join_requests(bond->dev);
@@ -3425,8 +3442,6 @@ static int bond_open(struct net_device *bond_dev)structslave*slave;inti;-bond->kill_timers=0;-/* reset slave->backup and slave->inactive */read_lock(&bond->lock);if(bond->slave_cnt>0){
@@ -3495,33 +3510,30 @@ static int bond_close(struct net_device *bond_dev)bond->send_peer_notif=0;-/* signal timers not to re-arm */-bond->kill_timers=1;-write_unlock_bh(&bond->lock);if(bond->params.miimon){/* link check interval, in milliseconds. */-cancel_delayed_work(&bond->mii_work);+cancel_delayed_work_sync(&bond->mii_work);}if(bond->params.arp_interval){/* arp interval, in milliseconds. */-cancel_delayed_work(&bond->arp_work);+cancel_delayed_work_sync(&bond->arp_work);}switch(bond->params.mode){caseBOND_MODE_8023AD:-cancel_delayed_work(&bond->ad_work);+cancel_delayed_work_sync(&bond->ad_work);break;caseBOND_MODE_TLB:caseBOND_MODE_ALB:-cancel_delayed_work(&bond->alb_work);+cancel_delayed_work_sync(&bond->alb_work);break;default:break;}if(delayed_work_pending(&bond->mcast_work))-cancel_delayed_work(&bond->mcast_work);+cancel_delayed_work_sync(&bond->mcast_work);if(bond_is_lb(bond)){/* Must be called only after all
Hi Joy,
I checked your patch, and any problems have not been observed for
almost one day although I could reproduce the BUG in the latest net-next
without it.
I think this patch works well.
Tested-by: Mitsuo Hayasaka <redacted>
(2011/10/27 2:31), Jay Vosburgh wrote:
quoted hunk
HAYASAKA Mitsuo [off-list ref] wrote:
[...]
quoted
The interval of mii_mon was set to 1 to reproduce this bug easily and
the 802.3ad mode was used. Then, I executed the following command.
# while true; do ifconfig bond0 down; done &
# while true; do ifconfig bond0 up; done &
This bug rarely occurs since it is the severe timing problem.
I found that it is more easily to reproduce this bug when using guest OS.
For example, it took one to three days for me to reproduce it on host OS,
but some hours on guest OS.
Could you test this patch and see if it resolves the problem?
This patch does a few things:
All of the monitor functions that run on work queues are
modified to never unconditionally acquire RTNL; all will reschedule the
work and return if rtnl_trylock fails. This covers bond_mii_monitor,
bond_activebackup_arp_mon, and bond_alb_monitor.
The "clear out the work queues" calls in bond_close and
bond_uninit now call cancel_delayed_work_sync, which should either
delete a pending work item, or wait for an executing item to complete.
I chose cancel_ over the original patch's flush_ because we just want
the work queue stopped. We don't need to have any pending items execute
if they're not already running.
Also in reference to the previous, I'm not sure if we still need
to check for delayed_work_pending, but I've left those checks in place.
Remove the "kill_timers" field and all references to it. If
cancel_delayed_work_sync is safe to use, we do not need an extra
sentinel.
Lastly, for testing purposes only, the bond_alb_monitor in this
patch includes an unconditional call to rtnl_trylock(); this is an
artifical way to make the race in that function easier to test for,
because the real race is very difficult to hit.
This patch is against net-next as of yesterday.
Comments?
-J
@@ -2110,9 +2110,6 @@ void bond_3ad_state_machine_handler(struct work_struct *work)read_lock(&bond->lock);-if(bond->kill_timers)-gotoout;-//check if there are any slavesif(bond->slave_cnt==0)gotore_arm;
@@ -774,9 +774,6 @@ static void bond_resend_igmp_join_requests(struct bonding *bond)read_lock(&bond->lock);-if(bond->kill_timers)-gotoout;-/* rejoin all groups on bond device */__bond_resend_igmp_join_requests(bond->dev);
@@ -3425,8 +3442,6 @@ static int bond_open(struct net_device *bond_dev)structslave*slave;inti;-bond->kill_timers=0;-/* reset slave->backup and slave->inactive */read_lock(&bond->lock);if(bond->slave_cnt>0){
@@ -3495,33 +3510,30 @@ static int bond_close(struct net_device *bond_dev)bond->send_peer_notif=0;-/* signal timers not to re-arm */-bond->kill_timers=1;-write_unlock_bh(&bond->lock);if(bond->params.miimon){/* link check interval, in milliseconds. */-cancel_delayed_work(&bond->mii_work);+cancel_delayed_work_sync(&bond->mii_work);}if(bond->params.arp_interval){/* arp interval, in milliseconds. */-cancel_delayed_work(&bond->arp_work);+cancel_delayed_work_sync(&bond->arp_work);}switch(bond->params.mode){caseBOND_MODE_8023AD:-cancel_delayed_work(&bond->ad_work);+cancel_delayed_work_sync(&bond->ad_work);break;caseBOND_MODE_TLB:caseBOND_MODE_ALB:-cancel_delayed_work(&bond->alb_work);+cancel_delayed_work_sync(&bond->alb_work);break;default:break;}if(delayed_work_pending(&bond->mcast_work))-cancel_delayed_work(&bond->mcast_work);+cancel_delayed_work_sync(&bond->mcast_work);if(bond_is_lb(bond)){/* Must be called only after all
I checked your patch, and any problems have not been observed for
almost one day although I could reproduce the BUG in the latest net-next
without it.
I think this patch works well.
Tested-by: Mitsuo Hayasaka <redacted>
Jay, please formally submit this patch with proper signoffs etc.
Thanks!
From: Jay Vosburgh <hidden> Date: 2011-10-29 01:43:44
This patch resolves two sets of race conditions.
Mitsuo Hayasaka [off-list ref] reported the
first, as follows:
The bond_close() calls cancel_delayed_work() to cancel delayed works.
It, however, cannot cancel works that were already queued in workqueue.
The bond_open() initializes work->data, and proccess_one_work() refers
get_work_cwq(work)->wq->flags. The get_work_cwq() returns NULL when
work->data has been initialized. Thus, a panic occurs.
He included a patch that converted the cancel_delayed_work calls
in bond_close to flush_delayed_work_sync, which eliminated the above
problem.
His patch is incorporated, at least in principle, into this
patch. In this patch, we use cancel_delayed_work_sync in place of
flush_delayed_work_sync, and also convert bond_uninit in addition to
bond_close.
This conversion to _sync, however, opens new races between
bond_close and three periodically executing workqueue functions:
bond_mii_monitor, bond_alb_monitor and bond_activebackup_arp_mon.
The race occurs because bond_close and bond_uninit are always
called with RTNL held, and these workqueue functions may acquire RTNL to
perform failover-related activities. If bond_close or bond_uninit is
waiting in cancel_delayed_work_sync, deadlock occurs.
These deadlocks are resolved by having the workqueue functions
acquire RTNL conditionally. If the rtnl_trylock() fails, the functions
reschedule and return immediately. For the cases that are attempting to
perform link failover, a delay of 1 is used; for the other cases, the
normal interval is used (as those activities are not as time critical).
Additionally, the bond_mii_monitor function now stores the delay
in a variable (mimicing the structure of activebackup_arp_mon).
Lastly, all of the above renders the kill_timers sentinel moot,
and therefore it has been removed.
Tested-by: Mitsuo Hayasaka <redacted>
Signed-off-by: Jay Vosburgh <redacted>
---
drivers/net/bonding/bond_3ad.c | 8 +---
drivers/net/bonding/bond_alb.c | 16 +++----
drivers/net/bonding/bond_main.c | 96 +++++++++++++++++++++------------------
drivers/net/bonding/bonding.h | 1 -
4 files changed, 61 insertions(+), 60 deletions(-)
@@ -2110,9 +2110,6 @@ void bond_3ad_state_machine_handler(struct work_struct *work)read_lock(&bond->lock);-if(bond->kill_timers)-gotoout;-//check if there are any slavesif(bond->slave_cnt==0)gotore_arm;
@@ -774,9 +774,6 @@ static void bond_resend_igmp_join_requests(struct bonding *bond)read_lock(&bond->lock);-if(bond->kill_timers)-gotoout;-/* rejoin all groups on bond device */__bond_resend_igmp_join_requests(bond->dev);
@@ -3425,8 +3442,6 @@ static int bond_open(struct net_device *bond_dev)structslave*slave;inti;-bond->kill_timers=0;-/* reset slave->backup and slave->inactive */read_lock(&bond->lock);if(bond->slave_cnt>0){
@@ -3495,33 +3510,30 @@ static int bond_close(struct net_device *bond_dev)bond->send_peer_notif=0;-/* signal timers not to re-arm */-bond->kill_timers=1;-write_unlock_bh(&bond->lock);if(bond->params.miimon){/* link check interval, in milliseconds. */-cancel_delayed_work(&bond->mii_work);+cancel_delayed_work_sync(&bond->mii_work);}if(bond->params.arp_interval){/* arp interval, in milliseconds. */-cancel_delayed_work(&bond->arp_work);+cancel_delayed_work_sync(&bond->arp_work);}switch(bond->params.mode){caseBOND_MODE_8023AD:-cancel_delayed_work(&bond->ad_work);+cancel_delayed_work_sync(&bond->ad_work);break;caseBOND_MODE_TLB:caseBOND_MODE_ALB:-cancel_delayed_work(&bond->alb_work);+cancel_delayed_work_sync(&bond->alb_work);break;default:break;}if(delayed_work_pending(&bond->mcast_work))-cancel_delayed_work(&bond->mcast_work);+cancel_delayed_work_sync(&bond->mcast_work);if(bond_is_lb(bond)){/* Must be called only after all