* [PATCH net] bonding: fix panic on non-ARPHRD_ETHER enslave failure
@ 2015-11-07 1:23 Jay Vosburgh
2015-11-07 1:31 ` Nikolay Aleksandrov
2015-11-07 18:19 ` David Miller
0 siblings, 2 replies; 3+ messages in thread
From: Jay Vosburgh @ 2015-11-07 1:23 UTC (permalink / raw)
To: netdev; +Cc: Veaceslav Falico, Andy Gospodarek, David Miller,
Nikolay Aleksandrov
Since commit 7d5cd2ce529b, when bond_enslave fails on devices that
are not ARPHRD_ETHER, if needed, it resets the bonding device back to
ARPHRD_ETHER by calling ether_setup.
Unfortunately, ether_setup clobbers dev->flags, clearing IFF_UP
if the bond device is up, leaving it in a quasi-down state without
having actually gone through dev_close. For bonding, if any periodic
work queue items are active (miimon, arp_interval, etc), those will
remain running, as they are stopped by bond_close. At this point, if
the bonding module is unloaded or the bond is deleted, the system will
panic when the work function is called.
This panic is resolved by calling dev_close on the bond itself
prior to calling ether_setup.
Cc: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: Jay Vosburgh <jay.vosburgh@canonical.com>
Fixes: 7d5cd2ce5292 ("bonding: correctly handle bonding type change on enslave failure")
---
drivers/net/bonding/bond_main.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index b4351ca..9e0f8a7 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -1749,6 +1749,7 @@ err_undo_flags:
slave_dev->dev_addr))
eth_hw_addr_random(bond_dev);
if (bond_dev->type != ARPHRD_ETHER) {
+ dev_close(bond_dev);
ether_setup(bond_dev);
bond_dev->flags |= IFF_MASTER;
bond_dev->priv_flags &= ~IFF_TX_SKB_SHARING;
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH net] bonding: fix panic on non-ARPHRD_ETHER enslave failure
2015-11-07 1:23 [PATCH net] bonding: fix panic on non-ARPHRD_ETHER enslave failure Jay Vosburgh
@ 2015-11-07 1:31 ` Nikolay Aleksandrov
2015-11-07 18:19 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: Nikolay Aleksandrov @ 2015-11-07 1:31 UTC (permalink / raw)
To: Jay Vosburgh, netdev; +Cc: Veaceslav Falico, Andy Gospodarek, David Miller
On 11/07/2015 02:23 AM, Jay Vosburgh wrote:
> Since commit 7d5cd2ce529b, when bond_enslave fails on devices that
> are not ARPHRD_ETHER, if needed, it resets the bonding device back to
> ARPHRD_ETHER by calling ether_setup.
>
> Unfortunately, ether_setup clobbers dev->flags, clearing IFF_UP
> if the bond device is up, leaving it in a quasi-down state without
> having actually gone through dev_close. For bonding, if any periodic
> work queue items are active (miimon, arp_interval, etc), those will
> remain running, as they are stopped by bond_close. At this point, if
> the bonding module is unloaded or the bond is deleted, the system will
> panic when the work function is called.
>
> This panic is resolved by calling dev_close on the bond itself
> prior to calling ether_setup.
>
> Cc: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
> Signed-off-by: Jay Vosburgh <jay.vosburgh@canonical.com>
> Fixes: 7d5cd2ce5292 ("bonding: correctly handle bonding type change on enslave failure")
>
> ---
> drivers/net/bonding/bond_main.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
> index b4351ca..9e0f8a7 100644
> --- a/drivers/net/bonding/bond_main.c
> +++ b/drivers/net/bonding/bond_main.c
> @@ -1749,6 +1749,7 @@ err_undo_flags:
> slave_dev->dev_addr))
> eth_hw_addr_random(bond_dev);
> if (bond_dev->type != ARPHRD_ETHER) {
> + dev_close(bond_dev);
> ether_setup(bond_dev);
> bond_dev->flags |= IFF_MASTER;
> bond_dev->priv_flags &= ~IFF_TX_SKB_SHARING;
>
Oh, I've missed it. Very good catch!
Acked-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Thanks,
Nik
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net] bonding: fix panic on non-ARPHRD_ETHER enslave failure
2015-11-07 1:23 [PATCH net] bonding: fix panic on non-ARPHRD_ETHER enslave failure Jay Vosburgh
2015-11-07 1:31 ` Nikolay Aleksandrov
@ 2015-11-07 18:19 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2015-11-07 18:19 UTC (permalink / raw)
To: jay.vosburgh; +Cc: netdev, vfalico, gospo, nikolay
From: Jay Vosburgh <jay.vosburgh@canonical.com>
Date: Fri, 06 Nov 2015 17:23:23 -0800
>
> Since commit 7d5cd2ce529b, when bond_enslave fails on devices that
> are not ARPHRD_ETHER, if needed, it resets the bonding device back to
> ARPHRD_ETHER by calling ether_setup.
>
> Unfortunately, ether_setup clobbers dev->flags, clearing IFF_UP
> if the bond device is up, leaving it in a quasi-down state without
> having actually gone through dev_close. For bonding, if any periodic
> work queue items are active (miimon, arp_interval, etc), those will
> remain running, as they are stopped by bond_close. At this point, if
> the bonding module is unloaded or the bond is deleted, the system will
> panic when the work function is called.
>
> This panic is resolved by calling dev_close on the bond itself
> prior to calling ether_setup.
>
> Cc: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
> Signed-off-by: Jay Vosburgh <jay.vosburgh@canonical.com>
> Fixes: 7d5cd2ce5292 ("bonding: correctly handle bonding type change on enslave failure")
Applied and queued up for -stable, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-11-07 18:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-07 1:23 [PATCH net] bonding: fix panic on non-ARPHRD_ETHER enslave failure Jay Vosburgh
2015-11-07 1:31 ` Nikolay Aleksandrov
2015-11-07 18:19 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).