linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Patch] btrfs: use file_remove_suid() after i_mutex is held
@ 2009-07-06  5:29 Amerigo Wang
  2009-07-06  5:48 ` Arjan van de Ven
  0 siblings, 1 reply; 3+ messages in thread
From: Amerigo Wang @ 2009-07-06  5:29 UTC (permalink / raw)
  To: linux-kernel
  Cc: Jeff Mahoney, Yan Zheng, Josef Bacik, Chris Mason, Amerigo Wang,
	akpm, linux-btrfs, Sven Wegener


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>

---
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index 7c3cd24..cd36301 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -944,14 +944,17 @@ static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
 	if (count == 0)
 		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);
+	if (!pages)
+		goto out;
 
-	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 related	[flat|nested] 3+ messages in thread

* Re: [Patch] btrfs: use file_remove_suid() after i_mutex is held
  2009-07-06  5:29 [Patch] btrfs: use file_remove_suid() after i_mutex is held Amerigo Wang
@ 2009-07-06  5:48 ` Arjan van de Ven
  2009-07-06  6:24   ` Amerigo Wang
  0 siblings, 1 reply; 3+ messages in thread
From: Arjan van de Ven @ 2009-07-06  5:48 UTC (permalink / raw)
  To: Amerigo Wang
  Cc: linux-kernel, Jeff Mahoney, Yan Zheng, Josef Bacik, Chris Mason,
	Amerigo Wang, akpm, linux-btrfs, Sven Wegener

On Mon, 6 Jul 2009 01:29:14 -0400
Amerigo Wang <amwang@redhat.com> wrote:

> 
> 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>
> 
> ---
> diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
> index 7c3cd24..cd36301 100644
> --- a/fs/btrfs/file.c
> +++ b/fs/btrfs/file.c
> @@ -944,14 +944,17 @@ static ssize_t btrfs_file_write(struct file
> *file, const char __user *buf, if (count == 0)
>  		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);
> +	if (!pages)
> +		goto out;
>  
Hi,

I don't think you can keep this at GFP_KERNEL once you hold i_mutex....
very likely this needs to now turn into GFP_NOFS!



-- 
Arjan van de Ven 	Intel Open Source Technology Centre
For development, discussion and tips for power savings, 
visit http://www.lesswatts.org

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

* Re: [Patch] btrfs: use file_remove_suid() after i_mutex is held
  2009-07-06  5:48 ` Arjan van de Ven
@ 2009-07-06  6:24   ` Amerigo Wang
  0 siblings, 0 replies; 3+ messages in thread
From: Amerigo Wang @ 2009-07-06  6:24 UTC (permalink / raw)
  To: Arjan van de Ven
  Cc: linux-kernel, Jeff Mahoney, Yan Zheng, Josef Bacik, Chris Mason,
	akpm, linux-btrfs, Sven Wegener

Arjan van de Ven wrote:
> On Mon, 6 Jul 2009 01:29:14 -0400
> Amerigo Wang <amwang@redhat.com> wrote:
>
>   
>> 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>
>>
>> ---
>> diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
>> index 7c3cd24..cd36301 100644
>> --- a/fs/btrfs/file.c
>> +++ b/fs/btrfs/file.c
>> @@ -944,14 +944,17 @@ static ssize_t btrfs_file_write(struct file
>> *file, const char __user *buf, if (count == 0)
>>  		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);
>> +	if (!pages)
>> +		goto out;
>>  
>>     
> Hi,
>
> I don't think you can keep this at GFP_KERNEL once you hold i_mutex....
> very likely this needs to now turn into GFP_NOFS!
>   

Good point!
Hmm,  GFP_KERNEL adds __GFP_FS while GFP_NOFS not...
Just moving that kmalloc() up, before mutex_lock(), I think, can solve
this.

I will update this patch now...

Thanks!


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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-06  5:29 [Patch] btrfs: use file_remove_suid() after i_mutex is held Amerigo Wang
2009-07-06  5:48 ` Arjan van de Ven
2009-07-06  6:24   ` Amerigo Wang

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).