public inbox for linux-btrfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Btrfs: do not overwrite error return value in scrub progress ioctl
@ 2018-12-14 19:45 fdmanana
  2018-12-17  7:33 ` Nikolay Borisov
  2018-12-17  9:02 ` Anand Jain
  0 siblings, 2 replies; 4+ messages in thread
From: fdmanana @ 2018-12-14 19:45 UTC (permalink / raw)
  To: linux-btrfs

From: Filipe Manana <fdmanana@suse.com>

If the call to btrfs_scrub_progress() failed we would overwrite the error
returned to user space with -EFAULT if the call to copy_to_user() failed
as well. Fix that by calling copy_to_user() only if btrfs_scrub_progress()
returned success.

Signed-off-by: Filipe Manana <fdmanana@suse.com>
---
 fs/btrfs/ioctl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
index 01d18e1a393e..76848214a39f 100644
--- a/fs/btrfs/ioctl.c
+++ b/fs/btrfs/ioctl.c
@@ -4331,7 +4331,7 @@ static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
 
 	ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
 
-	if (copy_to_user(arg, sa, sizeof(*sa)))
+	if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
 		ret = -EFAULT;
 
 	kfree(sa);
-- 
2.11.0


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

* Re: [PATCH] Btrfs: do not overwrite error return value in scrub progress ioctl
  2018-12-14 19:45 [PATCH] Btrfs: do not overwrite error return value in scrub progress ioctl fdmanana
@ 2018-12-17  7:33 ` Nikolay Borisov
  2019-01-02 17:43   ` David Sterba
  2018-12-17  9:02 ` Anand Jain
  1 sibling, 1 reply; 4+ messages in thread
From: Nikolay Borisov @ 2018-12-17  7:33 UTC (permalink / raw)
  To: fdmanana, linux-btrfs



On 14.12.18 г. 21:45 ч., fdmanana@kernel.org wrote:
> From: Filipe Manana <fdmanana@suse.com>
> 
> If the call to btrfs_scrub_progress() failed we would overwrite the error
> returned to user space with -EFAULT if the call to copy_to_user() failed
> as well. Fix that by calling copy_to_user() only if btrfs_scrub_progress()
> returned success.
> 
> Signed-off-by: Filipe Manana <fdmanana@suse.com>
> ---
>  fs/btrfs/ioctl.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
> index 01d18e1a393e..76848214a39f 100644
> --- a/fs/btrfs/ioctl.c
> +++ b/fs/btrfs/ioctl.c
> @@ -4331,7 +4331,7 @@ static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
>  
>  	ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
>  
> -	if (copy_to_user(arg, sa, sizeof(*sa)))
> +	if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))

While this is ok it's a bit counter intuitive considering the code
convention. Because you predicate the execution of copy_to_user on the
ret value of btrfs_scrub_progress in the same if. Perhaps,

if (ret)
  return ret;

if (copy_to_user)
  return -EFAULT


Same feedback applies to your other patches, but I'm fine if you leave
it as is so:

Reviewed-by: Nikolay Borisov <nborisov@suse.com>

>  		ret = -EFAULT;
>  
>  	kfree(sa);
> 

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

* Re: [PATCH] Btrfs: do not overwrite error return value in scrub progress ioctl
  2018-12-14 19:45 [PATCH] Btrfs: do not overwrite error return value in scrub progress ioctl fdmanana
  2018-12-17  7:33 ` Nikolay Borisov
@ 2018-12-17  9:02 ` Anand Jain
  1 sibling, 0 replies; 4+ messages in thread
From: Anand Jain @ 2018-12-17  9:02 UTC (permalink / raw)
  To: fdmanana; +Cc: linux-btrfs



On 12/15/2018 03:45 AM, fdmanana@kernel.org wrote:
> From: Filipe Manana <fdmanana@suse.com>
> 
> If the call to btrfs_scrub_progress() failed we would overwrite the error
> returned to user space with -EFAULT if the call to copy_to_user() failed
> as well. Fix that by calling copy_to_user() only if btrfs_scrub_progress()
> returned success.
> 
> Signed-off-by: Filipe Manana <fdmanana@suse.com>

Reviewed-by: Anand Jain <anand.jain@oracle.com>

> ---
>   fs/btrfs/ioctl.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
> index 01d18e1a393e..76848214a39f 100644
> --- a/fs/btrfs/ioctl.c
> +++ b/fs/btrfs/ioctl.c
> @@ -4331,7 +4331,7 @@ static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
>   
>   	ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
>   
> -	if (copy_to_user(arg, sa, sizeof(*sa)))
> +	if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
>   		ret = -EFAULT;
>   
>   	kfree(sa);
> 

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

* Re: [PATCH] Btrfs: do not overwrite error return value in scrub progress ioctl
  2018-12-17  7:33 ` Nikolay Borisov
@ 2019-01-02 17:43   ` David Sterba
  0 siblings, 0 replies; 4+ messages in thread
From: David Sterba @ 2019-01-02 17:43 UTC (permalink / raw)
  To: Nikolay Borisov; +Cc: fdmanana, linux-btrfs

On Mon, Dec 17, 2018 at 09:33:43AM +0200, Nikolay Borisov wrote:
> 
> 
> On 14.12.18 г. 21:45 ч., fdmanana@kernel.org wrote:
> > From: Filipe Manana <fdmanana@suse.com>
> > 
> > If the call to btrfs_scrub_progress() failed we would overwrite the error
> > returned to user space with -EFAULT if the call to copy_to_user() failed
> > as well. Fix that by calling copy_to_user() only if btrfs_scrub_progress()
> > returned success.
> > 
> > Signed-off-by: Filipe Manana <fdmanana@suse.com>
> > ---
> >  fs/btrfs/ioctl.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
> > index 01d18e1a393e..76848214a39f 100644
> > --- a/fs/btrfs/ioctl.c
> > +++ b/fs/btrfs/ioctl.c
> > @@ -4331,7 +4331,7 @@ static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
> >  
> >  	ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
> >  
> > -	if (copy_to_user(arg, sa, sizeof(*sa)))
> > +	if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
> 
> While this is ok it's a bit counter intuitive considering the code
> convention. Because you predicate the execution of copy_to_user on the
> ret value of btrfs_scrub_progress in the same if. Perhaps,
> 
> if (ret)
>   return ret;
> 
> if (copy_to_user)
>   return -EFAULT
> 
> 
> Same feedback applies to your other patches, but I'm fine if you leave
> it as is so:

I've checked how common is "if (ret == 0 && copy_to_user...)" and there
are several instances. The additional condition is quite short so the
copy_to_user call is not lost in the noise, so I'm ok with the proposed
style. I would not even mind to unify other calls that do not follow
some common pattern eg. in btrfs_ioctl_set_received_subvol or
btrfs_ioctl_get_fslabel.

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

end of thread, other threads:[~2019-01-02 17:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-14 19:45 [PATCH] Btrfs: do not overwrite error return value in scrub progress ioctl fdmanana
2018-12-17  7:33 ` Nikolay Borisov
2019-01-02 17:43   ` David Sterba
2018-12-17  9:02 ` Anand Jain

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