public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] zram: don't call idr_remove() from zram_remove()
@ 2016-01-14 13:03 Jerome Marchand
  2016-01-15  0:43 ` Sergey Senozhatsky
  2016-01-15  2:59 ` Minchan Kim
  0 siblings, 2 replies; 4+ messages in thread
From: Jerome Marchand @ 2016-01-14 13:03 UTC (permalink / raw)
  To: Minchan Kim, Nitin Gupta; +Cc: Sergey Senozhatsky, linux-kernel

The use of idr_remove() is forbidden in the callback functions of
idr_for_each(). It is therefore unsafe to call idr_remove in
zram_remove().
This patch moves the call to idr_remove() from zram_remove() to
hot_remove_store(). In the detroy_devices() path, idrs are removed by
idr_destroy().
This solves an use-after-free detected by KASan.

Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
---
 drivers/block/zram/zram_drv.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
index 47915d7..5e86e1d 100644
--- a/drivers/block/zram/zram_drv.c
+++ b/drivers/block/zram/zram_drv.c
@@ -1325,7 +1325,6 @@ static int zram_remove(struct zram *zram)
 
 	pr_info("Removed device: %s\n", zram->disk->disk_name);
 
-	idr_remove(&zram_index_idr, zram->disk->first_minor);
 	blk_cleanup_queue(zram->disk->queue);
 	del_gendisk(zram->disk);
 	put_disk(zram->disk);
@@ -1367,9 +1366,10 @@ static ssize_t hot_remove_store(struct class *class,
 	mutex_lock(&zram_index_mutex);
 
 	zram = idr_find(&zram_index_idr, dev_id);
-	if (zram)
+	if (zram) {
 		ret = zram_remove(zram);
-	else
+		idr_remove(&zram_index_idr, dev_id);
+	} else
 		ret = -ENODEV;
 
 	mutex_unlock(&zram_index_mutex);
-- 
2.5.0

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

* Re: [PATCH] zram: don't call idr_remove() from zram_remove()
  2016-01-14 13:03 [PATCH] zram: don't call idr_remove() from zram_remove() Jerome Marchand
@ 2016-01-15  0:43 ` Sergey Senozhatsky
  2016-01-15  1:25   ` Sergey Senozhatsky
  2016-01-15  2:59 ` Minchan Kim
  1 sibling, 1 reply; 4+ messages in thread
From: Sergey Senozhatsky @ 2016-01-15  0:43 UTC (permalink / raw)
  To: Jerome Marchand
  Cc: Minchan Kim, Andrew Morton, Sergey Senozhatsky,
	Sergey Senozhatsky, linux-kernel

Cc Andrew

On (01/14/16 14:03), Jerome Marchand wrote:
> The use of idr_remove() is forbidden in the callback functions of
> idr_for_each(). It is therefore unsafe to call idr_remove in
> zram_remove().
> This patch moves the call to idr_remove() from zram_remove() to
> hot_remove_store(). In the detroy_devices() path, idrs are removed by
> idr_destroy().
> This solves an use-after-free detected by KASan.

thanks, good catch! wow, I must be blind or stupid, or both.


Acked-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>

a nano nitpick to add curly braces in the else clause.
but, what is more important, may I please ask you to add -stable [4.2+]

> Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
+ Cc: <stable@vger.kernel.org>

and to resend the patch?



idr added in 4.2
https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/tree/drivers/block/zram/zram_drv.c?id=refs/tags/v4.2

	-ss

> ---
>  drivers/block/zram/zram_drv.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
> index 47915d7..5e86e1d 100644
> --- a/drivers/block/zram/zram_drv.c
> +++ b/drivers/block/zram/zram_drv.c
> @@ -1325,7 +1325,6 @@ static int zram_remove(struct zram *zram)
>  
>  	pr_info("Removed device: %s\n", zram->disk->disk_name);
>  
> -	idr_remove(&zram_index_idr, zram->disk->first_minor);
>  	blk_cleanup_queue(zram->disk->queue);
>  	del_gendisk(zram->disk);
>  	put_disk(zram->disk);
> @@ -1367,9 +1366,10 @@ static ssize_t hot_remove_store(struct class *class,
>  	mutex_lock(&zram_index_mutex);
>  
>  	zram = idr_find(&zram_index_idr, dev_id);
> -	if (zram)
> +	if (zram) {
>  		ret = zram_remove(zram);
> -	else
> +		idr_remove(&zram_index_idr, dev_id);

+	} else {
>  		ret = -ENODEV;
+	}


>  	mutex_unlock(&zram_index_mutex);
> -- 
> 2.5.0
> 

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

* Re: [PATCH] zram: don't call idr_remove() from zram_remove()
  2016-01-15  0:43 ` Sergey Senozhatsky
@ 2016-01-15  1:25   ` Sergey Senozhatsky
  0 siblings, 0 replies; 4+ messages in thread
From: Sergey Senozhatsky @ 2016-01-15  1:25 UTC (permalink / raw)
  To: Jerome Marchand, Andrew Morton
  Cc: Minchan Kim, Sergey Senozhatsky, Sergey Senozhatsky, linux-kernel

On (01/15/16 09:43), Sergey Senozhatsky wrote:
[..]
> a nano nitpick to add curly braces in the else clause.
> but, what is more important, may I please ask you to add -stable [4.2+]
> 
> > Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
> + Cc: <stable@vger.kernel.org>
> 
> and to resend the patch?
> 

Jerome, please disregard my requests. Andrew has handled it. Thanks to both of you!

	-ss

> idr added in 4.2
> https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/tree/drivers/block/zram/zram_drv.c?id=refs/tags/v4.2
> 
> 	-ss
> 
> > ---
> >  drivers/block/zram/zram_drv.c | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/block/zram/zram_drv.c b/drivers/block/zram/zram_drv.c
> > index 47915d7..5e86e1d 100644
> > --- a/drivers/block/zram/zram_drv.c
> > +++ b/drivers/block/zram/zram_drv.c
> > @@ -1325,7 +1325,6 @@ static int zram_remove(struct zram *zram)
> >  
> >  	pr_info("Removed device: %s\n", zram->disk->disk_name);
> >  
> > -	idr_remove(&zram_index_idr, zram->disk->first_minor);
> >  	blk_cleanup_queue(zram->disk->queue);
> >  	del_gendisk(zram->disk);
> >  	put_disk(zram->disk);
> > @@ -1367,9 +1366,10 @@ static ssize_t hot_remove_store(struct class *class,
> >  	mutex_lock(&zram_index_mutex);
> >  
> >  	zram = idr_find(&zram_index_idr, dev_id);
> > -	if (zram)
> > +	if (zram) {
> >  		ret = zram_remove(zram);
> > -	else
> > +		idr_remove(&zram_index_idr, dev_id);
> 
> +	} else {
> >  		ret = -ENODEV;
> +	}
> 
> 
> >  	mutex_unlock(&zram_index_mutex);
> > -- 
> > 2.5.0
> > 
> 

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

* Re: [PATCH] zram: don't call idr_remove() from zram_remove()
  2016-01-14 13:03 [PATCH] zram: don't call idr_remove() from zram_remove() Jerome Marchand
  2016-01-15  0:43 ` Sergey Senozhatsky
@ 2016-01-15  2:59 ` Minchan Kim
  1 sibling, 0 replies; 4+ messages in thread
From: Minchan Kim @ 2016-01-15  2:59 UTC (permalink / raw)
  To: Jerome Marchand; +Cc: Nitin Gupta, Sergey Senozhatsky, linux-kernel

On Thu, Jan 14, 2016 at 02:03:47PM +0100, Jerome Marchand wrote:
> The use of idr_remove() is forbidden in the callback functions of
> idr_for_each(). It is therefore unsafe to call idr_remove in
> zram_remove().
> This patch moves the call to idr_remove() from zram_remove() to
> hot_remove_store(). In the detroy_devices() path, idrs are removed by
> idr_destroy().
> This solves an use-after-free detected by KASan.
> 
> Signed-off-by: Jerome Marchand <jmarchan@redhat.com>

Acked-by: Minchan Kim <minchan@kernel.org> with Sergey's nitpick

Thanks!
 

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

end of thread, other threads:[~2016-01-15  2:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-14 13:03 [PATCH] zram: don't call idr_remove() from zram_remove() Jerome Marchand
2016-01-15  0:43 ` Sergey Senozhatsky
2016-01-15  1:25   ` Sergey Senozhatsky
2016-01-15  2:59 ` Minchan Kim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox