From: David Sterba <dsterba@suse.com>
To: linux-btrfs@vger.kernel.org
Cc: David Sterba <dsterba@suse.com>
Subject: [PATCH] btrfs: convert ioctl handlers to AUTO_KFREE
Date: Tue, 14 Apr 2026 23:12:31 +0200 [thread overview]
Message-ID: <20260414211231.2890720-1-dsterba@suse.com> (raw)
Many ioctl handlers are suitable for the AUTO_KFREE conversions as the
data are temporary and short lived. The conversions are trivial or the
collateral changes are straightforward.
A kfree() preceding mnt_drop_write_file() is slightly more efficient but
in the reverse order (i.e. the automatic kfree) does not cause any
significant change as the write drop does only a few simple operations.
Signed-off-by: David Sterba <dsterba@suse.com>
---
fs/btrfs/ioctl.c | 289 +++++++++++++++++------------------------------
1 file changed, 104 insertions(+), 185 deletions(-)
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
index b2e447f5005c16..17f72b3a1c43d6 100644
--- a/fs/btrfs/ioctl.c
+++ b/fs/btrfs/ioctl.c
@@ -707,7 +707,7 @@ static int create_snapshot(struct btrfs_root *root, struct inode *dir,
{
struct btrfs_fs_info *fs_info = inode_to_fs_info(dir);
struct inode *inode;
- struct btrfs_pending_snapshot *pending_snapshot;
+ struct btrfs_pending_snapshot AUTO_KFREE(pending_snapshot);
unsigned int trans_num_items;
struct btrfs_trans_handle *trans;
struct btrfs_block_rsv *block_rsv;
@@ -816,7 +816,6 @@ static int create_snapshot(struct btrfs_root *root, struct inode *dir,
free_anon_bdev(pending_snapshot->anon_dev);
kfree(pending_snapshot->root_item);
btrfs_free_path(pending_snapshot->path);
- kfree(pending_snapshot);
return ret;
}
@@ -961,7 +960,7 @@ static noinline int btrfs_ioctl_resize(struct file *file,
u64 new_size;
u64 old_size;
u64 devid = 1;
- struct btrfs_ioctl_vol_args *vol_args;
+ struct btrfs_ioctl_vol_args AUTO_KFREE(vol_args);
struct btrfs_device *device = NULL;
char *sizestr;
char *devstr = NULL;
@@ -987,13 +986,13 @@ static noinline int btrfs_ioctl_resize(struct file *file,
}
ret = btrfs_check_ioctl_vol_args_path(vol_args);
if (ret < 0)
- goto out_free;
+ goto out_drop;
sizestr = vol_args->name;
cancel = (strcmp("cancel", sizestr) == 0);
ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_RESIZE, cancel);
if (ret)
- goto out_free;
+ goto out_drop;
/* Exclusive operation is now claimed */
devstr = strchr(sizestr, ':');
@@ -1100,8 +1099,6 @@ static noinline int btrfs_ioctl_resize(struct file *file,
old_size, new_size);
out_finish:
btrfs_exclop_finish(fs_info);
-out_free:
- kfree(vol_args);
out_drop:
mnt_drop_write_file(file);
return ret;
@@ -1179,7 +1176,7 @@ static noinline int __btrfs_ioctl_snap_create(struct file *file,
static noinline int btrfs_ioctl_snap_create(struct file *file,
void __user *arg, bool subvol)
{
- struct btrfs_ioctl_vol_args *vol_args;
+ struct btrfs_ioctl_vol_args AUTO_KFREE(vol_args);
int ret;
if (!S_ISDIR(file_inode(file)->i_mode))
@@ -1190,24 +1187,20 @@ static noinline int btrfs_ioctl_snap_create(struct file *file,
return PTR_ERR(vol_args);
ret = btrfs_check_ioctl_vol_args_path(vol_args);
if (ret < 0)
- goto out;
+ return ret;
- ret = __btrfs_ioctl_snap_create(file, file_mnt_idmap(file),
- vol_args->name, vol_args->fd, subvol,
- false, NULL);
-
-out:
- kfree(vol_args);
- return ret;
+ return __btrfs_ioctl_snap_create(file, file_mnt_idmap(file),
+ vol_args->name, vol_args->fd, subvol,
+ false, NULL);
}
static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
void __user *arg, bool subvol)
{
- struct btrfs_ioctl_vol_args_v2 *vol_args;
+ struct btrfs_ioctl_vol_args_v2 AUTO_KFREE(vol_args);
+ struct btrfs_qgroup_inherit AUTO_KFREE(inherit);
int ret;
bool readonly = false;
- struct btrfs_qgroup_inherit *inherit = NULL;
if (!S_ISDIR(file_inode(file)->i_mode))
return -ENOTDIR;
@@ -1217,44 +1210,32 @@ static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
return PTR_ERR(vol_args);
ret = btrfs_check_ioctl_vol_args2_subvol_name(vol_args);
if (ret < 0)
- goto free_args;
+ return ret;
- if (vol_args->flags & ~BTRFS_SUBVOL_CREATE_ARGS_MASK) {
- ret = -EOPNOTSUPP;
- goto free_args;
- }
+ if (vol_args->flags & ~BTRFS_SUBVOL_CREATE_ARGS_MASK)
+ return -EOPNOTSUPP;
if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
readonly = true;
if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
struct btrfs_fs_info *fs_info = inode_to_fs_info(file_inode(file));
- if (vol_args->size < sizeof(*inherit) ||
- vol_args->size > PAGE_SIZE) {
- ret = -EINVAL;
- goto free_args;
- }
+ if (vol_args->size < sizeof(*inherit) || vol_args->size > PAGE_SIZE)
+ return -EINVAL;
+
inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
if (IS_ERR(inherit)) {
- ret = PTR_ERR(inherit);
- goto free_args;
+ return PTR_ERR(inherit);
}
ret = btrfs_qgroup_check_inherit(fs_info, inherit, vol_args->size);
if (ret < 0)
- goto free_inherit;
+ return ret;
}
- ret = __btrfs_ioctl_snap_create(file, file_mnt_idmap(file),
- vol_args->name, vol_args->fd, subvol,
- readonly, inherit);
- if (ret)
- goto free_inherit;
-free_inherit:
- kfree(inherit);
-free_args:
- kfree(vol_args);
- return ret;
+ return __btrfs_ioctl_snap_create(file, file_mnt_idmap(file),
+ vol_args->name, vol_args->fd, subvol,
+ readonly, inherit);
}
static noinline int btrfs_ioctl_subvol_getflags(struct btrfs_inode *inode,
@@ -1865,7 +1846,7 @@ static int btrfs_search_path_in_tree_user(struct mnt_idmap *idmap,
static noinline int btrfs_ioctl_ino_lookup(struct btrfs_root *root,
void __user *argp)
{
- struct btrfs_ioctl_ino_lookup_args *args;
+ struct btrfs_ioctl_ino_lookup_args AUTO_KFREE(args);
int ret = 0;
args = memdup_user(argp, sizeof(*args));
@@ -1895,10 +1876,9 @@ static noinline int btrfs_ioctl_ino_lookup(struct btrfs_root *root,
out:
if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
- ret = -EFAULT;
+ return -EFAULT;
- kfree(args);
- return ret;
+ return 0;
}
/*
@@ -1915,7 +1895,7 @@ static noinline int btrfs_ioctl_ino_lookup(struct btrfs_root *root,
*/
static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
{
- struct btrfs_ioctl_ino_lookup_user_args *args;
+ struct btrfs_ioctl_ino_lookup_user_args AUTO_KFREE(args);
struct inode *inode;
int ret;
@@ -1931,7 +1911,6 @@ static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
* The subvolume does not exist under fd with which this is
* called
*/
- kfree(args);
return -EACCES;
}
@@ -1940,14 +1919,13 @@ static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
ret = -EFAULT;
- kfree(args);
return ret;
}
/* Get the subvolume information in BTRFS_ROOT_ITEM and BTRFS_ROOT_BACKREF */
static int btrfs_ioctl_get_subvol_info(struct inode *inode, void __user *argp)
{
- struct btrfs_ioctl_get_subvol_info_args *subvol_info;
+ struct btrfs_ioctl_get_subvol_info_args AUTO_KFREE(subvol_info);
struct btrfs_fs_info *fs_info;
struct btrfs_root *root;
struct btrfs_path *path;
@@ -2057,7 +2035,6 @@ static int btrfs_ioctl_get_subvol_info(struct inode *inode, void __user *argp)
btrfs_put_root(root);
out_free:
btrfs_free_path(path);
- kfree(subvol_info);
return ret;
}
@@ -2068,7 +2045,7 @@ static int btrfs_ioctl_get_subvol_info(struct inode *inode, void __user *argp)
static int btrfs_ioctl_get_subvol_rootref(struct btrfs_root *root,
void __user *argp)
{
- struct btrfs_ioctl_get_subvol_rootref_args *rootrefs;
+ struct btrfs_ioctl_get_subvol_rootref_args AUTO_KFREE(rootrefs);
struct btrfs_root_ref *rref;
struct btrfs_path *path;
struct btrfs_key key;
@@ -2151,8 +2128,6 @@ static int btrfs_ioctl_get_subvol_rootref(struct btrfs_root *root,
ret = -EFAULT;
}
- kfree(rootrefs);
-
return ret;
}
@@ -2167,8 +2142,8 @@ static noinline int btrfs_ioctl_snap_destroy(struct file *file,
struct inode *inode;
struct btrfs_root *root = BTRFS_I(dir)->root;
struct btrfs_root *dest = NULL;
- struct btrfs_ioctl_vol_args *vol_args = NULL;
- struct btrfs_ioctl_vol_args_v2 *vol_args2 = NULL;
+ struct btrfs_ioctl_vol_args AUTO_KFREE(vol_args);
+ struct btrfs_ioctl_vol_args_v2 AUTO_KFREE(vol_args2);
struct mnt_idmap *idmap = file_mnt_idmap(file);
char *subvol_name, *subvol_name_ptr = NULL;
int ret = 0;
@@ -2186,10 +2161,8 @@ static noinline int btrfs_ioctl_snap_destroy(struct file *file,
if (IS_ERR(vol_args2))
return PTR_ERR(vol_args2);
- if (vol_args2->flags & ~BTRFS_SUBVOL_DELETE_ARGS_MASK) {
- ret = -EOPNOTSUPP;
- goto out;
- }
+ if (vol_args2->flags & ~BTRFS_SUBVOL_DELETE_ARGS_MASK)
+ return -EOPNOTSUPP;
/*
* If SPEC_BY_ID is not set, we are looking for the subvolume by
@@ -2198,23 +2171,21 @@ static noinline int btrfs_ioctl_snap_destroy(struct file *file,
if (!(vol_args2->flags & BTRFS_SUBVOL_SPEC_BY_ID)) {
ret = btrfs_check_ioctl_vol_args2_subvol_name(vol_args2);
if (ret < 0)
- goto out;
+ return ret;
subvol_name = vol_args2->name;
ret = mnt_want_write_file(file);
if (ret)
- goto out;
+ return ret;
} else {
struct inode *old_dir;
- if (vol_args2->subvolid < BTRFS_FIRST_FREE_OBJECTID) {
- ret = -EINVAL;
- goto out;
- }
+ if (vol_args2->subvolid < BTRFS_FIRST_FREE_OBJECTID)
+ return -EINVAL;
ret = mnt_want_write_file(file);
if (ret)
- goto out;
+ return ret;
dentry = btrfs_get_dentry(fs_info->sb,
BTRFS_FIRST_FREE_OBJECTID,
@@ -2284,13 +2255,13 @@ static noinline int btrfs_ioctl_snap_destroy(struct file *file,
ret = btrfs_check_ioctl_vol_args_path(vol_args);
if (ret < 0)
- goto out;
+ return ret;
subvol_name = vol_args->name;
ret = mnt_want_write_file(file);
if (ret)
- goto out;
+ return ret;
}
if (strchr(subvol_name, '/') ||
@@ -2371,9 +2342,6 @@ static noinline int btrfs_ioctl_snap_destroy(struct file *file,
dput(parent);
out_drop_write:
mnt_drop_write_file(file);
-out:
- kfree(vol_args2);
- kfree(vol_args);
return ret;
}
@@ -2461,7 +2429,7 @@ static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
{
- struct btrfs_ioctl_vol_args *vol_args;
+ struct btrfs_ioctl_vol_args AUTO_KFREE(vol_args);
bool restore_op = false;
int ret;
@@ -2501,15 +2469,13 @@ static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
ret = btrfs_check_ioctl_vol_args_path(vol_args);
if (ret < 0)
- goto out_free;
+ goto out;
ret = btrfs_init_new_device(fs_info, vol_args->name);
if (!ret)
btrfs_info(fs_info, "disk added %s", vol_args->name);
-out_free:
- kfree(vol_args);
out:
if (restore_op)
btrfs_exclop_balance(fs_info, BTRFS_EXCLOP_BALANCE_PAUSED);
@@ -2523,7 +2489,7 @@ static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
BTRFS_DEV_LOOKUP_ARGS(args);
struct inode *inode = file_inode(file);
struct btrfs_fs_info *fs_info = inode_to_fs_info(inode);
- struct btrfs_ioctl_vol_args_v2 *vol_args;
+ struct btrfs_ioctl_vol_args_v2 AUTO_KFREE(vol_args);
struct file *bdev_file = NULL;
int ret;
bool cancel = false;
@@ -2582,7 +2548,6 @@ static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
bdev_fput(bdev_file);
out:
btrfs_put_dev_args_from_path(&args);
- kfree(vol_args);
return ret;
}
@@ -2591,7 +2556,7 @@ static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
BTRFS_DEV_LOOKUP_ARGS(args);
struct inode *inode = file_inode(file);
struct btrfs_fs_info *fs_info = inode_to_fs_info(inode);
- struct btrfs_ioctl_vol_args *vol_args;
+ struct btrfs_ioctl_vol_args AUTO_KFREE(vol_args);
struct file *bdev_file = NULL;
int ret;
bool cancel = false;
@@ -2605,7 +2570,7 @@ static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
ret = btrfs_check_ioctl_vol_args_path(vol_args);
if (ret < 0)
- goto out_free;
+ return ret;
if (!strcmp("cancel", vol_args->name)) {
cancel = true;
@@ -2633,19 +2598,16 @@ static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
bdev_fput(bdev_file);
out:
btrfs_put_dev_args_from_path(&args);
-out_free:
- kfree(vol_args);
return ret;
}
static long btrfs_ioctl_fs_info(const struct btrfs_fs_info *fs_info,
void __user *arg)
{
- struct btrfs_ioctl_fs_info_args *fi_args;
+ struct btrfs_ioctl_fs_info_args AUTO_KFREE(fi_args);
struct btrfs_device *device;
struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
u64 flags_in;
- int ret = 0;
fi_args = memdup_user(arg, sizeof(*fi_args));
if (IS_ERR(fi_args))
@@ -2686,17 +2648,16 @@ static long btrfs_ioctl_fs_info(const struct btrfs_fs_info *fs_info,
}
if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
- ret = -EFAULT;
+ return -EFAULT;
- kfree(fi_args);
- return ret;
+ return 0;
}
static long btrfs_ioctl_dev_info(const struct btrfs_fs_info *fs_info,
void __user *arg)
{
BTRFS_DEV_LOOKUP_ARGS(args);
- struct btrfs_ioctl_dev_info_args *di_args;
+ struct btrfs_ioctl_dev_info_args AUTO_KFREE(di_args);
struct btrfs_device *dev;
int ret = 0;
@@ -2730,7 +2691,6 @@ static long btrfs_ioctl_dev_info(const struct btrfs_fs_info *fs_info,
if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
ret = -EFAULT;
- kfree(di_args);
return ret;
}
@@ -3011,7 +2971,7 @@ static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
{
struct btrfs_fs_info *fs_info = inode_to_fs_info(file_inode(file));
- struct btrfs_ioctl_scrub_args *sa;
+ struct btrfs_ioctl_scrub_args AUTO_KFREE(sa);
int ret;
if (!capable(CAP_SYS_ADMIN))
@@ -3026,15 +2986,13 @@ static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
if (IS_ERR(sa))
return PTR_ERR(sa);
- if (sa->flags & ~BTRFS_SCRUB_SUPPORTED_FLAGS) {
- ret = -EOPNOTSUPP;
- goto out;
- }
+ if (sa->flags & ~BTRFS_SCRUB_SUPPORTED_FLAGS)
+ return -EOPNOTSUPP;
if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
ret = mnt_want_write_file(file);
if (ret)
- goto out;
+ return ret;
}
ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
@@ -3058,8 +3016,7 @@ static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
if (!(sa->flags & BTRFS_SCRUB_READONLY))
mnt_drop_write_file(file);
-out:
- kfree(sa);
+
return ret;
}
@@ -3074,7 +3031,7 @@ static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
void __user *arg)
{
- struct btrfs_ioctl_scrub_args *sa;
+ struct btrfs_ioctl_scrub_args AUTO_KFREE(sa);
int ret;
if (!capable(CAP_SYS_ADMIN))
@@ -3087,40 +3044,36 @@ static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
- ret = -EFAULT;
+ return -EFAULT;
- kfree(sa);
- return ret;
+ return 0;
}
static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
void __user *arg)
{
- struct btrfs_ioctl_get_dev_stats *sa;
+ struct btrfs_ioctl_get_dev_stats AUTO_KFREE(sa);
int ret;
sa = memdup_user(arg, sizeof(*sa));
if (IS_ERR(sa))
return PTR_ERR(sa);
- if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
- kfree(sa);
+ if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN))
return -EPERM;
- }
ret = btrfs_get_dev_stats(fs_info, sa);
if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
- ret = -EFAULT;
+ return -EFAULT;
- kfree(sa);
return ret;
}
static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
void __user *arg)
{
- struct btrfs_ioctl_dev_replace_args *p;
+ struct btrfs_ioctl_dev_replace_args AUTO_KFREE(p);
int ret;
if (!capable(CAP_SYS_ADMIN))
@@ -3137,10 +3090,8 @@ static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
switch (p->cmd) {
case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
- if (sb_rdonly(fs_info->sb)) {
- ret = -EROFS;
- goto out;
- }
+ if (sb_rdonly(fs_info->sb))
+ return -EROFS;
if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REPLACE)) {
ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
} else {
@@ -3162,9 +3113,8 @@ static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
}
if ((ret == 0 || ret == -ECANCELED) && copy_to_user(arg, p, sizeof(*p)))
- ret = -EFAULT;
-out:
- kfree(p);
+ return -EFAULT;
+
return ret;
}
@@ -3174,7 +3124,7 @@ static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
int i;
u64 rel_ptr;
int size;
- struct btrfs_ioctl_ino_path_args *ipa = NULL;
+ struct btrfs_ioctl_ino_path_args AUTO_KFREE(ipa);
struct inode_fs_paths *ipath __free(inode_fs_paths) = NULL;
struct btrfs_path *path;
@@ -3223,7 +3173,6 @@ static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
out:
btrfs_free_path(path);
- kfree(ipa);
return ret;
}
@@ -3233,8 +3182,8 @@ static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
{
int ret = 0;
int size;
- struct btrfs_ioctl_logical_ino_args *loi;
- struct btrfs_data_container *inodes = NULL;
+ struct btrfs_ioctl_logical_ino_args AUTO_KFREE(loi);
+ struct btrfs_data_container AUTO_KVFREE(inodes);
bool ignore_offset;
if (!capable(CAP_SYS_ADMIN))
@@ -3249,41 +3198,32 @@ static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
size = min_t(u32, loi->size, SZ_64K);
} else {
/* All reserved bits must be 0 for now */
- if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
- ret = -EINVAL;
- goto out_loi;
- }
+ if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved)))
+ return -EINVAL;
+
/* Only accept flags we have defined so far */
- if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
- ret = -EINVAL;
- goto out_loi;
- }
+ if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET))
+ return -EINVAL;
+
ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
size = min_t(u32, loi->size, SZ_16M);
}
inodes = init_data_container(size);
- if (IS_ERR(inodes)) {
- ret = PTR_ERR(inodes);
- goto out_loi;
- }
+ if (IS_ERR(inodes))
+ return PTR_ERR(inodes);
ret = iterate_inodes_from_logical(loi->logical, fs_info, inodes, ignore_offset);
if (ret == -EINVAL)
- ret = -ENOENT;
+ return -ENOENT;
if (ret < 0)
- goto out;
+ return ret;
ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
size);
if (ret)
ret = -EFAULT;
-out:
- kvfree(inodes);
-out_loi:
- kfree(loi);
-
return ret;
}
@@ -3380,7 +3320,7 @@ static long btrfs_ioctl_balance(struct file *file, void __user *arg)
{
struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
struct btrfs_fs_info *fs_info = root->fs_info;
- struct btrfs_ioctl_balance_args *bargs;
+ struct btrfs_ioctl_balance_args AUTO_KFREE(bargs);
struct btrfs_balance_control *bctl;
bool need_unlock = true;
int ret;
@@ -3465,7 +3405,6 @@ static long btrfs_ioctl_balance(struct file *file, void __user *arg)
btrfs_exclop_finish(fs_info);
out:
mnt_drop_write_file(file);
- kfree(bargs);
return ret;
}
@@ -3518,7 +3457,7 @@ static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
{
struct inode *inode = file_inode(file);
struct btrfs_fs_info *fs_info = inode_to_fs_info(inode);
- struct btrfs_ioctl_quota_ctl_args *sa;
+ struct btrfs_ioctl_quota_ctl_args AUTO_KFREE(sa);
int ret;
if (!capable(CAP_SYS_ADMIN))
@@ -3577,7 +3516,6 @@ static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
break;
}
- kfree(sa);
drop_write:
mnt_drop_write_file(file);
return ret;
@@ -3588,8 +3526,8 @@ static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
struct inode *inode = file_inode(file);
struct btrfs_fs_info *fs_info = inode_to_fs_info(inode);
struct btrfs_root *root = BTRFS_I(inode)->root;
- struct btrfs_ioctl_qgroup_assign_args *sa;
- struct btrfs_qgroup_list *prealloc = NULL;
+ struct btrfs_ioctl_qgroup_assign_args AUTO_KFREE(sa);
+ struct btrfs_qgroup_list AUTO_KFREE(prealloc);
struct btrfs_trans_handle *trans;
int ret;
int err;
@@ -3614,7 +3552,7 @@ static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
prealloc = kzalloc_obj(*prealloc);
if (!prealloc) {
ret = -ENOMEM;
- goto out;
+ goto drop_write;
}
}
@@ -3622,7 +3560,7 @@ static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
trans = btrfs_start_transaction(root, 2);
if (IS_ERR(trans)) {
ret = PTR_ERR(trans);
- goto out;
+ goto drop_write;
}
/*
@@ -3648,9 +3586,6 @@ static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
if (err && !ret)
ret = err;
-out:
- kfree(prealloc);
- kfree(sa);
drop_write:
mnt_drop_write_file(file);
return ret;
@@ -3660,7 +3595,7 @@ static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
{
struct inode *inode = file_inode(file);
struct btrfs_root *root = BTRFS_I(inode)->root;
- struct btrfs_ioctl_qgroup_create_args *sa;
+ struct btrfs_ioctl_qgroup_create_args AUTO_KFREE(sa);
struct btrfs_trans_handle *trans;
int ret;
int err;
@@ -3683,12 +3618,12 @@ static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
if (!sa->qgroupid) {
ret = -EINVAL;
- goto out;
+ goto drop_write;
}
if (sa->create && btrfs_is_fstree(sa->qgroupid)) {
ret = -EINVAL;
- goto out;
+ goto drop_write;
}
/*
@@ -3698,7 +3633,7 @@ static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
trans = btrfs_start_transaction(root, 2);
if (IS_ERR(trans)) {
ret = PTR_ERR(trans);
- goto out;
+ goto drop_write;
}
if (sa->create) {
@@ -3711,8 +3646,6 @@ static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
if (err && !ret)
ret = err;
-out:
- kfree(sa);
drop_write:
mnt_drop_write_file(file);
return ret;
@@ -3722,7 +3655,7 @@ static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
{
struct inode *inode = file_inode(file);
struct btrfs_root *root = BTRFS_I(inode)->root;
- struct btrfs_ioctl_qgroup_limit_args *sa;
+ struct btrfs_ioctl_qgroup_limit_args AUTO_KFREE(sa);
struct btrfs_trans_handle *trans;
int ret;
int err;
@@ -3748,7 +3681,7 @@ static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
trans = btrfs_start_transaction(root, 1);
if (IS_ERR(trans)) {
ret = PTR_ERR(trans);
- goto out;
+ goto drop_write;
}
qgroupid = sa->qgroupid;
@@ -3763,8 +3696,6 @@ static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
if (err && !ret)
ret = err;
-out:
- kfree(sa);
drop_write:
mnt_drop_write_file(file);
return ret;
@@ -3774,7 +3705,7 @@ static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
{
struct inode *inode = file_inode(file);
struct btrfs_fs_info *fs_info = inode_to_fs_info(inode);
- struct btrfs_ioctl_quota_rescan_args *qsa;
+ struct btrfs_ioctl_quota_rescan_args AUTO_KFREE(qsa);
int ret;
if (!capable(CAP_SYS_ADMIN))
@@ -3795,13 +3726,11 @@ static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
if (qsa->flags) {
ret = -EINVAL;
- goto out;
+ goto drop_write;
}
ret = btrfs_qgroup_rescan(fs_info);
-out:
- kfree(qsa);
drop_write:
mnt_drop_write_file(file);
return ret;
@@ -3946,8 +3875,8 @@ static long _btrfs_ioctl_set_received_subvol(struct file *file,
static long btrfs_ioctl_set_received_subvol_32(struct file *file,
void __user *arg)
{
- struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
- struct btrfs_ioctl_received_subvol_args *args64 = NULL;
+ struct btrfs_ioctl_received_subvol_args_32 AUTO_KFREE(args32);
+ struct btrfs_ioctl_received_subvol_args AUTO_KFREE(args64);
int ret = 0;
args32 = memdup_user(arg, sizeof(*args32));
@@ -3955,10 +3884,8 @@ static long btrfs_ioctl_set_received_subvol_32(struct file *file,
return PTR_ERR(args32);
args64 = kmalloc_obj(*args64);
- if (!args64) {
- ret = -ENOMEM;
- goto out;
- }
+ if (!args64)
+ return -ENOMEM;
memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
args64->stransid = args32->stransid;
@@ -3971,7 +3898,7 @@ static long btrfs_ioctl_set_received_subvol_32(struct file *file,
ret = _btrfs_ioctl_set_received_subvol(file, file_mnt_idmap(file), args64);
if (ret)
- goto out;
+ return ret;
memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
args32->stransid = args64->stransid;
@@ -3984,19 +3911,16 @@ static long btrfs_ioctl_set_received_subvol_32(struct file *file,
ret = copy_to_user(arg, args32, sizeof(*args32));
if (ret)
- ret = -EFAULT;
+ return -EFAULT;
-out:
- kfree(args32);
- kfree(args64);
- return ret;
+ return 0;
}
#endif
static long btrfs_ioctl_set_received_subvol(struct file *file,
void __user *arg)
{
- struct btrfs_ioctl_received_subvol_args *sa = NULL;
+ struct btrfs_ioctl_received_subvol_args AUTO_KFREE(sa);
int ret = 0;
sa = memdup_user(arg, sizeof(*sa));
@@ -4004,17 +3928,14 @@ static long btrfs_ioctl_set_received_subvol(struct file *file,
return PTR_ERR(sa);
ret = _btrfs_ioctl_set_received_subvol(file, file_mnt_idmap(file), sa);
-
if (ret)
- goto out;
+ return ret;
ret = copy_to_user(arg, sa, sizeof(*sa));
if (ret)
- ret = -EFAULT;
+ return -EFAULT;
-out:
- kfree(sa);
- return ret;
+ return 0;
}
static int btrfs_ioctl_get_fslabel(struct btrfs_fs_info *fs_info,
@@ -4254,7 +4175,7 @@ static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
static int _btrfs_ioctl_send(struct btrfs_root *root, void __user *argp, bool compat)
{
- struct btrfs_ioctl_send_args *arg;
+ struct btrfs_ioctl_send_args AUTO_KFREE(arg);
int ret;
if (compat) {
@@ -4283,9 +4204,7 @@ static int _btrfs_ioctl_send(struct btrfs_root *root, void __user *argp, bool co
if (IS_ERR(arg))
return PTR_ERR(arg);
}
- ret = btrfs_ioctl_send(root, arg);
- kfree(arg);
- return ret;
+ return btrfs_ioctl_send(root, arg);
}
static int btrfs_ioctl_encoded_read(struct file *file, void __user *argp,
--
2.53.0
next reply other threads:[~2026-04-14 21:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-14 21:12 David Sterba [this message]
2026-04-15 0:29 ` [PATCH] btrfs: convert ioctl handlers to AUTO_KFREE Qu Wenruo
2026-04-15 16:14 ` 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=20260414211231.2890720-1-dsterba@suse.com \
--to=dsterba@suse.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox