diff options
author | David Sterba <dsterba@suse.com> | 2015-10-12 17:55:54 +0300 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2015-10-27 05:38:26 +0300 |
commit | 849ef9286f30c88113906dc35f44a499c0cb385d (patch) | |
tree | 583d82b294a3825459c960a0315186ec5cd703b5 /fs/btrfs/ioctl.c | |
parent | b06c4bf5c874a57254b197f53ddf588e7a24a2bf (diff) | |
download | linux-849ef9286f30c88113906dc35f44a499c0cb385d.tar.xz |
btrfs: check unsupported filters in balance arguments
We don't verify that all the balance filter arguments supplemented by
the flags are actually known to the kernel. Thus we let it silently pass
and do nothing.
At the moment this means only the 'limit' filter, but we're going to add
a few more soon so it's better to have that fixed. Also in older stable
kernels so that it works with newer userspace tools.
Cc: stable@vger.kernel.org # 3.16+
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/ioctl.c')
-rw-r--r-- | fs/btrfs/ioctl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 4df0f2bd9af7..7375cf2e6bbf 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -4691,6 +4691,11 @@ locked: bctl->flags |= BTRFS_BALANCE_TYPE_MASK; } + if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) { + ret = -EINVAL; + goto out_bargs; + } + do_balance: /* * Ownership of bctl and mutually_exclusive_operation_running |