All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] vfs: read file_handle only once in handle_to_path
@ 2015-01-28 20:30 Sasha Levin
  2015-04-30 15:04 ` Sasha Levin
  0 siblings, 1 reply; 4+ messages in thread
From: Sasha Levin @ 2015-01-28 20:30 UTC (permalink / raw)
  To: linux-kernel; +Cc: Sasha Levin, Alexander Viro, linux-fsdevel

We used to read file_handle twice. Once to get the amount of extra bytes, and
once to fetch the entire structure.

This may be problematic since we do size verifications only after the first
read, so if the number of extra bytes changes in userspace between the first
and second calls, we'll have an incoherent view of file_handle.

Instead, read the constant size once, and copy that over to the final
structure without having to re-read it again.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
---
Change in v2:
 - Use the f_handle pointer rather than size of struct

 fs/fhandle.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/fs/fhandle.c b/fs/fhandle.c
index 999ff5c..d59712d 100644
--- a/fs/fhandle.c
+++ b/fs/fhandle.c
@@ -195,8 +195,9 @@ static int handle_to_path(int mountdirfd, struct file_handle __user *ufh,
 		goto out_err;
 	}
 	/* copy the full handle */
-	if (copy_from_user(handle, ufh,
-			   sizeof(struct file_handle) +
+	*handle = f_handle;
+	if (copy_from_user(&handle->f_handle,
+			   &ufh->f_handle,
 			   f_handle.handle_bytes)) {
 		retval = -EFAULT;
 		goto out_handle;
-- 
1.7.10.4


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

* Re: [PATCH v2] vfs: read file_handle only once in handle_to_path
  2015-01-28 20:30 [PATCH v2] vfs: read file_handle only once in handle_to_path Sasha Levin
@ 2015-04-30 15:04 ` Sasha Levin
  2015-06-02 15:23   ` Sasha Levin
  0 siblings, 1 reply; 4+ messages in thread
From: Sasha Levin @ 2015-04-30 15:04 UTC (permalink / raw)
  To: linux-kernel; +Cc: Alexander Viro, linux-fsdevel

ping?

On 01/28/2015 03:30 PM, Sasha Levin wrote:
> We used to read file_handle twice. Once to get the amount of extra bytes, and
> once to fetch the entire structure.
> 
> This may be problematic since we do size verifications only after the first
> read, so if the number of extra bytes changes in userspace between the first
> and second calls, we'll have an incoherent view of file_handle.
> 
> Instead, read the constant size once, and copy that over to the final
> structure without having to re-read it again.
> 
> Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
> ---
> Change in v2:
>  - Use the f_handle pointer rather than size of struct
> 
>  fs/fhandle.c |    5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/fhandle.c b/fs/fhandle.c
> index 999ff5c..d59712d 100644
> --- a/fs/fhandle.c
> +++ b/fs/fhandle.c
> @@ -195,8 +195,9 @@ static int handle_to_path(int mountdirfd, struct file_handle __user *ufh,
>  		goto out_err;
>  	}
>  	/* copy the full handle */
> -	if (copy_from_user(handle, ufh,
> -			   sizeof(struct file_handle) +
> +	*handle = f_handle;
> +	if (copy_from_user(&handle->f_handle,
> +			   &ufh->f_handle,
>  			   f_handle.handle_bytes)) {
>  		retval = -EFAULT;
>  		goto out_handle;
> 


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

* Re: [PATCH v2] vfs: read file_handle only once in handle_to_path
  2015-04-30 15:04 ` Sasha Levin
@ 2015-06-02 15:23   ` Sasha Levin
  2015-06-02 17:23     ` Linus Torvalds
  0 siblings, 1 reply; 4+ messages in thread
From: Sasha Levin @ 2015-06-02 15:23 UTC (permalink / raw)
  To: linux-kernel, Linus Torvalds; +Cc: Alexander Viro, linux-fsdevel, security

Hi,

This commit fixes a race condition an unprivileged user can exploit to corrupt
kernel memory. I can't seem to get anyone to grab it for the past 4+ months.

Help please?


Thanks,
Sasha

On 04/30/2015 11:04 AM, Sasha Levin wrote:
> ping?
> 
> On 01/28/2015 03:30 PM, Sasha Levin wrote:
>> We used to read file_handle twice. Once to get the amount of extra bytes, and
>> once to fetch the entire structure.
>>
>> This may be problematic since we do size verifications only after the first
>> read, so if the number of extra bytes changes in userspace between the first
>> and second calls, we'll have an incoherent view of file_handle.
>>
>> Instead, read the constant size once, and copy that over to the final
>> structure without having to re-read it again.
>>
>> Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
>> ---
>> Change in v2:
>>  - Use the f_handle pointer rather than size of struct
>>
>>  fs/fhandle.c |    5 +++--
>>  1 file changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/fs/fhandle.c b/fs/fhandle.c
>> index 999ff5c..d59712d 100644
>> --- a/fs/fhandle.c
>> +++ b/fs/fhandle.c
>> @@ -195,8 +195,9 @@ static int handle_to_path(int mountdirfd, struct file_handle __user *ufh,
>>  		goto out_err;
>>  	}
>>  	/* copy the full handle */
>> -	if (copy_from_user(handle, ufh,
>> -			   sizeof(struct file_handle) +
>> +	*handle = f_handle;
>> +	if (copy_from_user(&handle->f_handle,
>> +			   &ufh->f_handle,
>>  			   f_handle.handle_bytes)) {
>>  		retval = -EFAULT;
>>  		goto out_handle;
>>
> 


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

* Re: [PATCH v2] vfs: read file_handle only once in handle_to_path
  2015-06-02 15:23   ` Sasha Levin
@ 2015-06-02 17:23     ` Linus Torvalds
  0 siblings, 0 replies; 4+ messages in thread
From: Linus Torvalds @ 2015-06-02 17:23 UTC (permalink / raw)
  To: Sasha Levin
  Cc: Linux Kernel Mailing List, Alexander Viro, linux-fsdevel, security

On Tue, Jun 2, 2015 at 8:23 AM, Sasha Levin <sasha.levin@oracle.com> wrote:
>
> This commit fixes a race condition an unprivileged user can exploit to corrupt
> kernel memory. I can't seem to get anyone to grab it for the past 4+ months.

Will take it directly. Feel free to just cc me directly earlier if
things take this long.

Thanks,
              Linus

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

end of thread, other threads:[~2015-06-02 17:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-28 20:30 [PATCH v2] vfs: read file_handle only once in handle_to_path Sasha Levin
2015-04-30 15:04 ` Sasha Levin
2015-06-02 15:23   ` Sasha Levin
2015-06-02 17:23     ` Linus Torvalds

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.