All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gerhard Heift <gerhard@heift.name>
To: David Sterba <dsterba@suse.cz>
Cc: linux-btrfs@vger.kernel.org
Subject: Re: [PATCH] btrfs: call permission checks earlier in ioctls and return EPERM
Date: Wed, 15 Jan 2014 21:20:45 +0100	[thread overview]
Message-ID: <CACeaM88nDat+soEwxwww1UsYf=he_3dwz7K22zbnio_6k3HMhw@mail.gmail.com> (raw)
In-Reply-To: <1389806820-15250-1-git-send-email-dsterba@suse.cz>

2014/1/15 David Sterba <dsterba@suse.cz>:
> The owner and capability checks in IOC_SUBVOL_SETFLAGS and
> SET_RECEIVED_SUBVOL should be called before any other checks are done.
>
> Also unify the error code to EPERM.
>
> Signed-off-by: David Sterba <dsterba@suse.cz>
> ---
>  fs/btrfs/ioctl.c | 22 +++++++++-------------
>  1 file changed, 9 insertions(+), 13 deletions(-)
>
> diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
> index 21da5762b0b1..f21facd84947 100644
> --- a/fs/btrfs/ioctl.c
> +++ b/fs/btrfs/ioctl.c
> @@ -190,6 +190,9 @@ static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
>         unsigned int i_oldflags;
>         umode_t mode;
>
> +       if (!inode_owner_or_capable(inode))
> +               return -PERM;

You forgot an "E".

  reply	other threads:[~2014-01-15 20:20 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-15 17:27 [PATCH] btrfs: call permission checks earlier in ioctls and return EPERM David Sterba
2014-01-15 20:20 ` Gerhard Heift [this message]
2014-01-16 14:50 ` [PATCH v2] " David Sterba

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CACeaM88nDat+soEwxwww1UsYf=he_3dwz7K22zbnio_6k3HMhw@mail.gmail.com' \
    --to=gerhard@heift.name \
    --cc=dsterba@suse.cz \
    --cc=linux-btrfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.