All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH for v4.3-rc] scsi_dh: fix use-after-free when removing scsi device
@ 2015-10-06  4:32 Junichi Nomura
  2015-10-21  0:36 ` Junichi Nomura
  0 siblings, 1 reply; 2+ messages in thread
From: Junichi Nomura @ 2015-10-06  4:32 UTC (permalink / raw)
  To: linux-scsi; +Cc: Christoph Hellwig, Hannes Reinecke

The commit 1bab0de0274f ("dm-mpath, scsi_dh: don't let dm detach device
handlers") removed reference counting of attached scsi device handler.
As a result, handler data is freed immediately via scsi_dh->detach()
in the context of scsi_remove_device() where activation request can be
still in flight.

This patch moves scsi_dh_handler_detach() to sdev releasing function,
scsi_device_dev_release_usercontext(), at that point the device
is already in quiesced state.

Fixes: 1bab0de0274f ("dm-mpath, scsi_dh: don't let dm detach device handlers")
Signed-off-by: Jun'ichi Nomura <j-nomura@ce.jp.nec.com>
Acked-by: Christoph Hellwig <hch@lst.de>
---
 drivers/scsi/scsi_dh.c    | 6 +++++-
 drivers/scsi/scsi_priv.h  | 2 ++
 drivers/scsi/scsi_sysfs.c | 2 ++
 3 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/drivers/scsi/scsi_dh.c b/drivers/scsi/scsi_dh.c
index edb044a..19bf9db 100644
--- a/drivers/scsi/scsi_dh.c
+++ b/drivers/scsi/scsi_dh.c
@@ -232,10 +232,14 @@ int scsi_dh_add_device(struct scsi_device *sdev)
 	return err;
 }
 
-void scsi_dh_remove_device(struct scsi_device *sdev)
+void scsi_dh_release_device(struct scsi_device *sdev)
 {
 	if (sdev->handler)
 		scsi_dh_handler_detach(sdev);
+}
+
+void scsi_dh_remove_device(struct scsi_device *sdev)
+{
 	device_remove_file(&sdev->sdev_gendev, &scsi_dh_state_attr);
 }
 
diff --git a/drivers/scsi/scsi_priv.h b/drivers/scsi/scsi_priv.h
index 644bb73..4d01cdb 100644
--- a/drivers/scsi/scsi_priv.h
+++ b/drivers/scsi/scsi_priv.h
@@ -173,9 +173,11 @@ extern struct async_domain scsi_sd_probe_domain;
 /* scsi_dh.c */
 #ifdef CONFIG_SCSI_DH
 int scsi_dh_add_device(struct scsi_device *sdev);
+void scsi_dh_release_device(struct scsi_device *sdev);
 void scsi_dh_remove_device(struct scsi_device *sdev);
 #else
 static inline int scsi_dh_add_device(struct scsi_device *sdev) { return 0; }
+static inline void scsi_dh_release_device(struct scsi_device *sdev) { }
 static inline void scsi_dh_remove_device(struct scsi_device *sdev) { }
 #endif
 
diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c
index b333389..dff8faf 100644
--- a/drivers/scsi/scsi_sysfs.c
+++ b/drivers/scsi/scsi_sysfs.c
@@ -399,6 +399,8 @@ static void scsi_device_dev_release_usercontext(struct work_struct *work)
 
 	sdev = container_of(work, struct scsi_device, ew.work);
 
+	scsi_dh_release_device(sdev);
+
 	parent = sdev->sdev_gendev.parent;
 
 	spin_lock_irqsave(sdev->host->host_lock, flags);
-- 
2.1.0

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

* Re: [PATCH for v4.3-rc] scsi_dh: fix use-after-free when removing scsi device
  2015-10-06  4:32 [PATCH for v4.3-rc] scsi_dh: fix use-after-free when removing scsi device Junichi Nomura
@ 2015-10-21  0:36 ` Junichi Nomura
  0 siblings, 0 replies; 2+ messages in thread
From: Junichi Nomura @ 2015-10-21  0:36 UTC (permalink / raw)
  To: linux-scsi, James.Bottomley; +Cc: Christoph Hellwig, Hannes Reinecke

On 10/06/15 13:32, Junichi Nomura wrote:
> The commit 1bab0de0274f ("dm-mpath, scsi_dh: don't let dm detach device
> handlers") removed reference counting of attached scsi device handler.
> As a result, handler data is freed immediately via scsi_dh->detach()
> in the context of scsi_remove_device() where activation request can be
> still in flight.
> 
> This patch moves scsi_dh_handler_detach() to sdev releasing function,
> scsi_device_dev_release_usercontext(), at that point the device
> is already in quiesced state.
> 
> Fixes: 1bab0de0274f ("dm-mpath, scsi_dh: don't let dm detach device handlers")
> Signed-off-by: Jun'ichi Nomura <j-nomura@ce.jp.nec.com>
> Acked-by: Christoph Hellwig <hch@lst.de>

Hello James,

could we get this regression fix before 4.3 is released?

Problem happens like this:

  dm-multipath                   sysadmin
  ------------------------------------------------------------------
  scsi_dh_activate()
    [start using handler data]
                                 echo 1 > /sys/block/sdX/device/delete
                                   scsi_remove_device()
                                     scsi_dh_remove_device()
                                       scsi_dh->detach()
                                         kfree(handler data)
    [still using freed handler data]
    [finish using handler data]

and can result in crash or data corruption.

> ---
>  drivers/scsi/scsi_dh.c    | 6 +++++-
>  drivers/scsi/scsi_priv.h  | 2 ++
>  drivers/scsi/scsi_sysfs.c | 2 ++
>  3 files changed, 9 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/scsi/scsi_dh.c b/drivers/scsi/scsi_dh.c
> index edb044a..19bf9db 100644
> --- a/drivers/scsi/scsi_dh.c
> +++ b/drivers/scsi/scsi_dh.c
> @@ -232,10 +232,14 @@ int scsi_dh_add_device(struct scsi_device *sdev)
>  	return err;
>  }
>  
> -void scsi_dh_remove_device(struct scsi_device *sdev)
> +void scsi_dh_release_device(struct scsi_device *sdev)
>  {
>  	if (sdev->handler)
>  		scsi_dh_handler_detach(sdev);
> +}
> +
> +void scsi_dh_remove_device(struct scsi_device *sdev)
> +{
>  	device_remove_file(&sdev->sdev_gendev, &scsi_dh_state_attr);
>  }
>  
> diff --git a/drivers/scsi/scsi_priv.h b/drivers/scsi/scsi_priv.h
> index 644bb73..4d01cdb 100644
> --- a/drivers/scsi/scsi_priv.h
> +++ b/drivers/scsi/scsi_priv.h
> @@ -173,9 +173,11 @@ extern struct async_domain scsi_sd_probe_domain;
>  /* scsi_dh.c */
>  #ifdef CONFIG_SCSI_DH
>  int scsi_dh_add_device(struct scsi_device *sdev);
> +void scsi_dh_release_device(struct scsi_device *sdev);
>  void scsi_dh_remove_device(struct scsi_device *sdev);
>  #else
>  static inline int scsi_dh_add_device(struct scsi_device *sdev) { return 0; }
> +static inline void scsi_dh_release_device(struct scsi_device *sdev) { }
>  static inline void scsi_dh_remove_device(struct scsi_device *sdev) { }
>  #endif
>  
> diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c
> index b333389..dff8faf 100644
> --- a/drivers/scsi/scsi_sysfs.c
> +++ b/drivers/scsi/scsi_sysfs.c
> @@ -399,6 +399,8 @@ static void scsi_device_dev_release_usercontext(struct work_struct *work)
>  
>  	sdev = container_of(work, struct scsi_device, ew.work);
>  
> +	scsi_dh_release_device(sdev);
> +
>  	parent = sdev->sdev_gendev.parent;
>  
>  	spin_lock_irqsave(sdev->host->host_lock, flags);


-- 
Jun'ichi Nomura, NEC Corporation

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

end of thread, other threads:[~2015-10-21  0:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-06  4:32 [PATCH for v4.3-rc] scsi_dh: fix use-after-free when removing scsi device Junichi Nomura
2015-10-21  0:36 ` Junichi Nomura

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.