All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in netif_device_detach
@ 2016-11-15 16:54 Todd Fujinaka
  2016-11-15 17:55 ` Duyck, Alexander H
  2016-11-30 20:25 ` Brown, Aaron F
  0 siblings, 2 replies; 5+ messages in thread
From: Todd Fujinaka @ 2016-11-15 16:54 UTC (permalink / raw)
  To: intel-wired-lan

Similar to ixgbe, when an interface is part of a namespace it is
possible that igb_close() may be called while __igb_shutdown() is
running which ends up in a double free WARN and/or a BUG in
free_msi_irqs().

Extend the rtnl_lock() to protect the call to netif_device_detach() and
igb_clear_interrupt_scheme() in __igb_shutdown() and check for
netif_device_present() to avoid calling igb_clear_interrupt_scheme() a
second time in igb_close().

Also extend the rtnl lock in igb_resume() to netif_device_attach().

Signed-off-by: Todd Fujinaka <todd.fujinaka@intel.com>
---
 drivers/net/ethernet/intel/igb/igb_main.c | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
index 4feca69..8b1b4dd 100644
--- a/drivers/net/ethernet/intel/igb/igb_main.c
+++ b/drivers/net/ethernet/intel/igb/igb_main.c
@@ -3275,7 +3275,9 @@ static int __igb_close(struct net_device *netdev, bool suspending)
 
 int igb_close(struct net_device *netdev)
 {
-	return __igb_close(netdev, false);
+	if (netif_device_present(netdev))
+		return __igb_close(netdev, false);
+	return 0;
 }
 
 /**
@@ -7537,6 +7539,7 @@ static int __igb_shutdown(struct pci_dev *pdev, bool *enable_wake,
 	int retval = 0;
 #endif
 
+	rtnl_lock();
 	netif_device_detach(netdev);
 
 	if (netif_running(netdev))
@@ -7545,6 +7548,7 @@ static int __igb_shutdown(struct pci_dev *pdev, bool *enable_wake,
 	igb_ptp_suspend(adapter);
 
 	igb_clear_interrupt_scheme(adapter);
+	rtnl_unlock();
 
 #ifdef CONFIG_PM
 	retval = pci_save_state(pdev);
@@ -7663,16 +7667,15 @@ static int igb_resume(struct device *dev)
 
 	wr32(E1000_WUS, ~0);
 
-	if (netdev->flags & IFF_UP) {
-		rtnl_lock();
+	rtnl_lock();
+	if (!err && netif_running(netdev))
 		err = __igb_open(netdev, true);
-		rtnl_unlock();
-		if (err)
-			return err;
-	}
 
-	netif_device_attach(netdev);
-	return 0;
+	if (!err)
+		netif_device_attach(netdev);
+	rtnl_unlock();
+
+	return err;
 }
 
 static int igb_runtime_idle(struct device *dev)
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in netif_device_detach
  2016-11-15 16:54 [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in netif_device_detach Todd Fujinaka
@ 2016-11-15 17:55 ` Duyck, Alexander H
  2016-11-30 20:25 ` Brown, Aaron F
  1 sibling, 0 replies; 5+ messages in thread
From: Duyck, Alexander H @ 2016-11-15 17:55 UTC (permalink / raw)
  To: intel-wired-lan

On Tue, 2016-11-15 at 08:54 -0800, Todd Fujinaka wrote:
> Similar to ixgbe, when an interface is part of a namespace it is
> possible that igb_close() may be called while __igb_shutdown() is
> running which ends up in a double free WARN and/or a BUG in
> free_msi_irqs().
> 
> Extend the rtnl_lock() to protect the call to netif_device_detach() and
> igb_clear_interrupt_scheme() in __igb_shutdown() and check for
> netif_device_present() to avoid calling igb_clear_interrupt_scheme() a
> second time in igb_close().
> 
> Also extend the rtnl lock in igb_resume() to netif_device_attach().
> 
> Signed-off-by: Todd Fujinaka <todd.fujinaka@intel.com>

Looks good.

Acked-by: Alexander Duyck <alexander.h.duyck@intel.com>

> ---
>  drivers/net/ethernet/intel/igb/igb_main.c | 21 ++++++++++++---------
>  1 file changed, 12 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
> index 4feca69..8b1b4dd 100644
> --- a/drivers/net/ethernet/intel/igb/igb_main.c
> +++ b/drivers/net/ethernet/intel/igb/igb_main.c
> @@ -3275,7 +3275,9 @@ static int __igb_close(struct net_device *netdev, bool suspending)
>  
>  int igb_close(struct net_device *netdev)
>  {
> -	return __igb_close(netdev, false);
> +	if (netif_device_present(netdev))
> +		return __igb_close(netdev, false);
> +	return 0;
>  }
>  
>  /**
> @@ -7537,6 +7539,7 @@ static int __igb_shutdown(struct pci_dev *pdev, bool *enable_wake,
>  	int retval = 0;
>  #endif
>  
> +	rtnl_lock();
>  	netif_device_detach(netdev);
>  
>  	if (netif_running(netdev))
> @@ -7545,6 +7548,7 @@ static int __igb_shutdown(struct pci_dev *pdev, bool *enable_wake,
>  	igb_ptp_suspend(adapter);
>  
>  	igb_clear_interrupt_scheme(adapter);
> +	rtnl_unlock();
>  
>  #ifdef CONFIG_PM
>  	retval = pci_save_state(pdev);
> @@ -7663,16 +7667,15 @@ static int igb_resume(struct device *dev)
>  
>  	wr32(E1000_WUS, ~0);
>  
> -	if (netdev->flags & IFF_UP) {
> -		rtnl_lock();
> +	rtnl_lock();
> +	if (!err && netif_running(netdev))
>  		err = __igb_open(netdev, true);
> -		rtnl_unlock();
> -		if (err)
> -			return err;
> -	}
>  
> -	netif_device_attach(netdev);
> -	return 0;
> +	if (!err)
> +		netif_device_attach(netdev);
> +	rtnl_unlock();
> +
> +	return err;
>  }
>  
>  static int igb_runtime_idle(struct device *dev)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in netif_device_detach
  2016-11-15 16:54 [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in netif_device_detach Todd Fujinaka
  2016-11-15 17:55 ` Duyck, Alexander H
@ 2016-11-30 20:25 ` Brown, Aaron F
  2016-12-06 22:13   ` Brown, Aaron F
  1 sibling, 1 reply; 5+ messages in thread
From: Brown, Aaron F @ 2016-11-30 20:25 UTC (permalink / raw)
  To: intel-wired-lan

> From: Intel-wired-lan [mailto:intel-wired-lan-bounces at lists.osuosl.org] On
> Behalf Of Todd Fujinaka
> Sent: Tuesday, November 15, 2016 8:54 AM
> To: intel-wired-lan at lists.osuosl.org
> Subject: [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in
> netif_device_detach
> 
> Similar to ixgbe, when an interface is part of a namespace it is
> possible that igb_close() may be called while __igb_shutdown() is
> running which ends up in a double free WARN and/or a BUG in
> free_msi_irqs().
> 
> Extend the rtnl_lock() to protect the call to netif_device_detach() and
> igb_clear_interrupt_scheme() in __igb_shutdown() and check for
> netif_device_present() to avoid calling igb_clear_interrupt_scheme() a
> second time in igb_close().
> 
> Also extend the rtnl lock in igb_resume() to netif_device_attach().
> 
> Signed-off-by: Todd Fujinaka <todd.fujinaka@intel.com>
> ---
>  drivers/net/ethernet/intel/igb/igb_main.c | 21 ++++++++++++---------
>  1 file changed, 12 insertions(+), 9 deletions(-)

Tested-by Aaron Brown <aaron.f.brown@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in netif_device_detach
  2016-11-30 20:25 ` Brown, Aaron F
@ 2016-12-06 22:13   ` Brown, Aaron F
  2016-12-06 22:51     ` Brown, Aaron F
  0 siblings, 1 reply; 5+ messages in thread
From: Brown, Aaron F @ 2016-12-06 22:13 UTC (permalink / raw)
  To: intel-wired-lan

> From: Intel-wired-lan [mailto:intel-wired-lan-bounces at lists.osuosl.org] On
> Behalf Of Brown, Aaron F
> Sent: Wednesday, November 30, 2016 12:26 PM
> To: Fujinaka, Todd <todd.fujinaka@intel.com>; intel-wired-
> lan at lists.osuosl.org
> Subject: Re: [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in
> netif_device_detach
> 
> > From: Intel-wired-lan [mailto:intel-wired-lan-bounces at lists.osuosl.org] On
> > Behalf Of Todd Fujinaka
> > Sent: Tuesday, November 15, 2016 8:54 AM
> > To: intel-wired-lan at lists.osuosl.org
> > Subject: [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in
> > netif_device_detach
> >
> > Similar to ixgbe, when an interface is part of a namespace it is
> > possible that igb_close() may be called while __igb_shutdown() is
> > running which ends up in a double free WARN and/or a BUG in
> > free_msi_irqs().
> >
> > Extend the rtnl_lock() to protect the call to netif_device_detach() and
> > igb_clear_interrupt_scheme() in __igb_shutdown() and check for
> > netif_device_present() to avoid calling igb_clear_interrupt_scheme() a
> > second time in igb_close().
> >
> > Also extend the rtnl lock in igb_resume() to netif_device_attach().
> >
> > Signed-off-by: Todd Fujinaka <todd.fujinaka@intel.com>
> > ---
> >  drivers/net/ethernet/intel/igb/igb_main.c | 21 ++++++++++++---------
> >  1 file changed, 12 insertions(+), 9 deletions(-)
> 
> Tested-by Aaron Brown <aaron.f.brown@intel.com>

Patchwork did not pick this Tested-by, probably because I left out the colon.  Try again...
Tested-by: Aaron Brown <aaron.f.brown@intel.com<

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in netif_device_detach
  2016-12-06 22:13   ` Brown, Aaron F
@ 2016-12-06 22:51     ` Brown, Aaron F
  0 siblings, 0 replies; 5+ messages in thread
From: Brown, Aaron F @ 2016-12-06 22:51 UTC (permalink / raw)
  To: intel-wired-lan

> From: Intel-wired-lan [mailto:intel-wired-lan-bounces at lists.osuosl.org] On
> Behalf Of Brown, Aaron F
> Sent: Tuesday, December 6, 2016 2:14 PM
> To: Fujinaka, Todd <todd.fujinaka@intel.com>; intel-wired-
> lan at lists.osuosl.org
> Subject: Re: [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in
> netif_device_detach
> 
> > From: Intel-wired-lan [mailto:intel-wired-lan-bounces at lists.osuosl.org] On
> > Behalf Of Brown, Aaron F
> > Sent: Wednesday, November 30, 2016 12:26 PM
> > To: Fujinaka, Todd <todd.fujinaka@intel.com>; intel-wired-
> > lan at lists.osuosl.org
> > Subject: Re: [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in
> > netif_device_detach
> >
> > > From: Intel-wired-lan [mailto:intel-wired-lan-bounces at lists.osuosl.org]
> On
> > > Behalf Of Todd Fujinaka
> > > Sent: Tuesday, November 15, 2016 8:54 AM
> > > To: intel-wired-lan at lists.osuosl.org
> > > Subject: [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in
> > > netif_device_detach
> > >
> > > Similar to ixgbe, when an interface is part of a namespace it is
> > > possible that igb_close() may be called while __igb_shutdown() is
> > > running which ends up in a double free WARN and/or a BUG in
> > > free_msi_irqs().
> > >
> > > Extend the rtnl_lock() to protect the call to netif_device_detach() and
> > > igb_clear_interrupt_scheme() in __igb_shutdown() and check for
> > > netif_device_present() to avoid calling igb_clear_interrupt_scheme() a
> > > second time in igb_close().
> > >
> > > Also extend the rtnl lock in igb_resume() to netif_device_attach().
> > >
> > > Signed-off-by: Todd Fujinaka <todd.fujinaka@intel.com>
> > > ---
> > >  drivers/net/ethernet/intel/igb/igb_main.c | 21 ++++++++++++---------
> > >  1 file changed, 12 insertions(+), 9 deletions(-)
> >
> > Tested-by Aaron Brown <aaron.f.brown@intel.com>
> 
> Patchwork did not pick this Tested-by, probably because I left out the colon.
> Try again...
> Tested-by: Aaron Brown <aaron.f.brown at intel.com<
D'OH!

Tested-by: Aaron Brown <aaron.f.brown@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-12-06 22:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-15 16:54 [Intel-wired-lan] [PATCH] [PATCH v2] igb: close/suspend race in netif_device_detach Todd Fujinaka
2016-11-15 17:55 ` Duyck, Alexander H
2016-11-30 20:25 ` Brown, Aaron F
2016-12-06 22:13   ` Brown, Aaron F
2016-12-06 22:51     ` Brown, Aaron F

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.