mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [Patch v3] btrfs: use file_remove_suid() after i_mutex is held
@ 2009-07-06  9:15 Amerigo Wang
  2009-07-06 11:45 ` Josef Bacik
  0 siblings, 1 reply; 2+ messages in thread
From: Amerigo Wang @ 2009-07-06  9:15 UTC (permalink / raw)
  To: linux-kernel
  Cc: Jeff Mahoney, Yan Zheng, Josef Bacik, Arjan, Chris Mason, tao.ma,
	Amerigo Wang, akpm, linux-btrfs, Sven Wegener


V2 -> V3:
set 'err' to -ENOMEM when kmalloc() fails. Thanks to Tao.

V1 -> V2:
Move kmalloc() before mutex_lock(), suggested by Arjan.

file_remove_suid() should be called with i_mutex held,
file_update_time() too. So move them after mutex_lock().

Plus, check the return value of kmalloc().

Signed-off-by: WANG Cong <amwang@redhat.com>
Cc: Arjan <arjan@infradead.org>
Cc: Chris Mason <chris.mason@oracle.com>
Cc: Yan Zheng <zheng.yan@oracle.com>
Cc: Sven Wegener <sven.wegener@stealer.net>
Cc: Josef Bacik <jbacik@redhat.com>
Cc: Jeff Mahoney <jeffm@suse.com>
Cc: Tao Ma <tao.ma@oracle.com>

---
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index 7c3cd24..e7b0d81 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -944,14 +944,19 @@ static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
 	if (count == 0)
 		goto out_nolock;
 
+	pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
+	if (!pages) {
+		err = -ENOMEM;
+		goto out_nolock;
+	}
+
+	mutex_lock(&inode->i_mutex);
+
 	err = file_remove_suid(file);
 	if (err)
-		goto out_nolock;
+		goto out;
 	file_update_time(file);
 
-	pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
-
-	mutex_lock(&inode->i_mutex);
 	BTRFS_I(inode)->sequence++;
 	first_index = pos >> PAGE_CACHE_SHIFT;
 	last_index = (pos + count) >> PAGE_CACHE_SHIFT;

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

* Re: [Patch v3] btrfs: use file_remove_suid() after i_mutex is held
  2009-07-06  9:15 [Patch v3] btrfs: use file_remove_suid() after i_mutex is held Amerigo Wang
@ 2009-07-06 11:45 ` Josef Bacik
  0 siblings, 0 replies; 2+ messages in thread
From: Josef Bacik @ 2009-07-06 11:45 UTC (permalink / raw)
  To: Amerigo Wang
  Cc: linux-kernel, Jeff Mahoney, Yan Zheng, Josef Bacik, Arjan,
	Chris Mason, tao.ma, akpm, linux-btrfs, Sven Wegener

On Mon, Jul 06, 2009 at 05:15:33AM -0400, Amerigo Wang wrote:
> 
> V2 -> V3:
> set 'err' to -ENOMEM when kmalloc() fails. Thanks to Tao.
> 
> V1 -> V2:
> Move kmalloc() before mutex_lock(), suggested by Arjan.
> 
> file_remove_suid() should be called with i_mutex held,
> file_update_time() too. So move them after mutex_lock().
> 
> Plus, check the return value of kmalloc().
> 
> Signed-off-by: WANG Cong <amwang@redhat.com>
> Cc: Arjan <arjan@infradead.org>
> Cc: Chris Mason <chris.mason@oracle.com>
> Cc: Yan Zheng <zheng.yan@oracle.com>
> Cc: Sven Wegener <sven.wegener@stealer.net>
> Cc: Josef Bacik <jbacik@redhat.com>
> Cc: Jeff Mahoney <jeffm@suse.com>
> Cc: Tao Ma <tao.ma@oracle.com>
> 
> ---
> diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
> index 7c3cd24..e7b0d81 100644
> --- a/fs/btrfs/file.c
> +++ b/fs/btrfs/file.c
> @@ -944,14 +944,19 @@ static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
>  	if (count == 0)
>  		goto out_nolock;
>  
> +	pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
> +	if (!pages) {
> +		err = -ENOMEM;
> +		goto out_nolock;
> +	}
> +
> +	mutex_lock(&inode->i_mutex);
> +
>  	err = file_remove_suid(file);
>  	if (err)
> -		goto out_nolock;
> +		goto out;
>  	file_update_time(file);
>  
> -	pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
> -
> -	mutex_lock(&inode->i_mutex);
>  	BTRFS_I(inode)->sequence++;
>  	first_index = pos >> PAGE_CACHE_SHIFT;
>  	last_index = (pos + count) >> PAGE_CACHE_SHIFT;

Acked-by: Josef Bacik <jbacik@redhat.com>

Thanks,

Josef

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

end of thread, other threads:[~2009-07-06 11:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-06  9:15 [Patch v3] btrfs: use file_remove_suid() after i_mutex is held Amerigo Wang
2009-07-06 11:45 ` Josef Bacik

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

all inboxes | Powered by JetHome®