1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2007 Oracle. All rights reserved.
6 #include <linux/kernel.h>
8 #include <linux/file.h>
10 #include <linux/fsnotify.h>
11 #include <linux/pagemap.h>
12 #include <linux/highmem.h>
13 #include <linux/time.h>
14 #include <linux/string.h>
15 #include <linux/backing-dev.h>
16 #include <linux/mount.h>
17 #include <linux/namei.h>
18 #include <linux/writeback.h>
19 #include <linux/compat.h>
20 #include <linux/security.h>
21 #include <linux/xattr.h>
23 #include <linux/slab.h>
24 #include <linux/blkdev.h>
25 #include <linux/uuid.h>
26 #include <linux/btrfs.h>
27 #include <linux/uaccess.h>
28 #include <linux/iversion.h>
32 #include "transaction.h"
33 #include "btrfs_inode.h"
34 #include "print-tree.h"
38 #include "rcu-string.h"
40 #include "dev-replace.h"
45 #include "compression.h"
46 #include "space-info.h"
47 #include "delalloc-space.h"
48 #include "block-group.h"
51 /* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
52 * structures are incorrect, as the timespec structure from userspace
53 * is 4 bytes too small. We define these alternatives here to teach
54 * the kernel about the 32-bit struct packing.
56 struct btrfs_ioctl_timespec_32 {
59 } __attribute__ ((__packed__));
61 struct btrfs_ioctl_received_subvol_args_32 {
62 char uuid[BTRFS_UUID_SIZE]; /* in */
63 __u64 stransid; /* in */
64 __u64 rtransid; /* out */
65 struct btrfs_ioctl_timespec_32 stime; /* in */
66 struct btrfs_ioctl_timespec_32 rtime; /* out */
68 __u64 reserved[16]; /* in */
69 } __attribute__ ((__packed__));
71 #define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
72 struct btrfs_ioctl_received_subvol_args_32)
75 #if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
76 struct btrfs_ioctl_send_args_32 {
77 __s64 send_fd; /* in */
78 __u64 clone_sources_count; /* in */
79 compat_uptr_t clone_sources; /* in */
80 __u64 parent_root; /* in */
82 __u64 reserved[4]; /* in */
83 } __attribute__ ((__packed__));
85 #define BTRFS_IOC_SEND_32 _IOW(BTRFS_IOCTL_MAGIC, 38, \
86 struct btrfs_ioctl_send_args_32)
89 /* Mask out flags that are inappropriate for the given type of inode. */
90 static unsigned int btrfs_mask_fsflags_for_type(struct inode *inode,
93 if (S_ISDIR(inode->i_mode))
95 else if (S_ISREG(inode->i_mode))
96 return flags & ~FS_DIRSYNC_FL;
98 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
102 * Export internal inode flags to the format expected by the FS_IOC_GETFLAGS
105 static unsigned int btrfs_inode_flags_to_fsflags(unsigned int flags)
107 unsigned int iflags = 0;
109 if (flags & BTRFS_INODE_SYNC)
110 iflags |= FS_SYNC_FL;
111 if (flags & BTRFS_INODE_IMMUTABLE)
112 iflags |= FS_IMMUTABLE_FL;
113 if (flags & BTRFS_INODE_APPEND)
114 iflags |= FS_APPEND_FL;
115 if (flags & BTRFS_INODE_NODUMP)
116 iflags |= FS_NODUMP_FL;
117 if (flags & BTRFS_INODE_NOATIME)
118 iflags |= FS_NOATIME_FL;
119 if (flags & BTRFS_INODE_DIRSYNC)
120 iflags |= FS_DIRSYNC_FL;
121 if (flags & BTRFS_INODE_NODATACOW)
122 iflags |= FS_NOCOW_FL;
124 if (flags & BTRFS_INODE_NOCOMPRESS)
125 iflags |= FS_NOCOMP_FL;
126 else if (flags & BTRFS_INODE_COMPRESS)
127 iflags |= FS_COMPR_FL;
133 * Update inode->i_flags based on the btrfs internal flags.
135 void btrfs_sync_inode_flags_to_i_flags(struct inode *inode)
137 struct btrfs_inode *binode = BTRFS_I(inode);
138 unsigned int new_fl = 0;
140 if (binode->flags & BTRFS_INODE_SYNC)
142 if (binode->flags & BTRFS_INODE_IMMUTABLE)
143 new_fl |= S_IMMUTABLE;
144 if (binode->flags & BTRFS_INODE_APPEND)
146 if (binode->flags & BTRFS_INODE_NOATIME)
148 if (binode->flags & BTRFS_INODE_DIRSYNC)
151 set_mask_bits(&inode->i_flags,
152 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
156 static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
158 struct btrfs_inode *binode = BTRFS_I(file_inode(file));
159 unsigned int flags = btrfs_inode_flags_to_fsflags(binode->flags);
161 if (copy_to_user(arg, &flags, sizeof(flags)))
167 * Check if @flags are a supported and valid set of FS_*_FL flags and that
168 * the old and new flags are not conflicting
170 static int check_fsflags(unsigned int old_flags, unsigned int flags)
172 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
173 FS_NOATIME_FL | FS_NODUMP_FL | \
174 FS_SYNC_FL | FS_DIRSYNC_FL | \
175 FS_NOCOMP_FL | FS_COMPR_FL |
179 /* COMPR and NOCOMP on new/old are valid */
180 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
183 if ((flags & FS_COMPR_FL) && (flags & FS_NOCOW_FL))
186 /* NOCOW and compression options are mutually exclusive */
187 if ((old_flags & FS_NOCOW_FL) && (flags & (FS_COMPR_FL | FS_NOCOMP_FL)))
189 if ((flags & FS_NOCOW_FL) && (old_flags & (FS_COMPR_FL | FS_NOCOMP_FL)))
195 static int check_fsflags_compatible(struct btrfs_fs_info *fs_info,
198 if (btrfs_is_zoned(fs_info) && (flags & FS_NOCOW_FL))
204 static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
206 struct inode *inode = file_inode(file);
207 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
208 struct btrfs_inode *binode = BTRFS_I(inode);
209 struct btrfs_root *root = binode->root;
210 struct btrfs_trans_handle *trans;
211 unsigned int fsflags, old_fsflags;
213 const char *comp = NULL;
216 if (!inode_owner_or_capable(inode))
219 if (btrfs_root_readonly(root))
222 if (copy_from_user(&fsflags, arg, sizeof(fsflags)))
225 ret = mnt_want_write_file(file);
230 fsflags = btrfs_mask_fsflags_for_type(inode, fsflags);
231 old_fsflags = btrfs_inode_flags_to_fsflags(binode->flags);
233 ret = vfs_ioc_setflags_prepare(inode, old_fsflags, fsflags);
237 ret = check_fsflags(old_fsflags, fsflags);
241 ret = check_fsflags_compatible(fs_info, fsflags);
245 binode_flags = binode->flags;
246 if (fsflags & FS_SYNC_FL)
247 binode_flags |= BTRFS_INODE_SYNC;
249 binode_flags &= ~BTRFS_INODE_SYNC;
250 if (fsflags & FS_IMMUTABLE_FL)
251 binode_flags |= BTRFS_INODE_IMMUTABLE;
253 binode_flags &= ~BTRFS_INODE_IMMUTABLE;
254 if (fsflags & FS_APPEND_FL)
255 binode_flags |= BTRFS_INODE_APPEND;
257 binode_flags &= ~BTRFS_INODE_APPEND;
258 if (fsflags & FS_NODUMP_FL)
259 binode_flags |= BTRFS_INODE_NODUMP;
261 binode_flags &= ~BTRFS_INODE_NODUMP;
262 if (fsflags & FS_NOATIME_FL)
263 binode_flags |= BTRFS_INODE_NOATIME;
265 binode_flags &= ~BTRFS_INODE_NOATIME;
266 if (fsflags & FS_DIRSYNC_FL)
267 binode_flags |= BTRFS_INODE_DIRSYNC;
269 binode_flags &= ~BTRFS_INODE_DIRSYNC;
270 if (fsflags & FS_NOCOW_FL) {
271 if (S_ISREG(inode->i_mode)) {
273 * It's safe to turn csums off here, no extents exist.
274 * Otherwise we want the flag to reflect the real COW
275 * status of the file and will not set it.
277 if (inode->i_size == 0)
278 binode_flags |= BTRFS_INODE_NODATACOW |
279 BTRFS_INODE_NODATASUM;
281 binode_flags |= BTRFS_INODE_NODATACOW;
285 * Revert back under same assumptions as above
287 if (S_ISREG(inode->i_mode)) {
288 if (inode->i_size == 0)
289 binode_flags &= ~(BTRFS_INODE_NODATACOW |
290 BTRFS_INODE_NODATASUM);
292 binode_flags &= ~BTRFS_INODE_NODATACOW;
297 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
298 * flag may be changed automatically if compression code won't make
301 if (fsflags & FS_NOCOMP_FL) {
302 binode_flags &= ~BTRFS_INODE_COMPRESS;
303 binode_flags |= BTRFS_INODE_NOCOMPRESS;
304 } else if (fsflags & FS_COMPR_FL) {
306 if (IS_SWAPFILE(inode)) {
311 binode_flags |= BTRFS_INODE_COMPRESS;
312 binode_flags &= ~BTRFS_INODE_NOCOMPRESS;
314 comp = btrfs_compress_type2str(fs_info->compress_type);
315 if (!comp || comp[0] == 0)
316 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
318 binode_flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
325 trans = btrfs_start_transaction(root, 3);
327 ret = PTR_ERR(trans);
332 ret = btrfs_set_prop(trans, inode, "btrfs.compression", comp,
335 btrfs_abort_transaction(trans, ret);
339 ret = btrfs_set_prop(trans, inode, "btrfs.compression", NULL,
341 if (ret && ret != -ENODATA) {
342 btrfs_abort_transaction(trans, ret);
347 binode->flags = binode_flags;
348 btrfs_sync_inode_flags_to_i_flags(inode);
349 inode_inc_iversion(inode);
350 inode->i_ctime = current_time(inode);
351 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
354 btrfs_end_transaction(trans);
357 mnt_drop_write_file(file);
362 * Translate btrfs internal inode flags to xflags as expected by the
363 * FS_IOC_FSGETXATT ioctl. Filter only the supported ones, unknown flags are
366 static unsigned int btrfs_inode_flags_to_xflags(unsigned int flags)
368 unsigned int xflags = 0;
370 if (flags & BTRFS_INODE_APPEND)
371 xflags |= FS_XFLAG_APPEND;
372 if (flags & BTRFS_INODE_IMMUTABLE)
373 xflags |= FS_XFLAG_IMMUTABLE;
374 if (flags & BTRFS_INODE_NOATIME)
375 xflags |= FS_XFLAG_NOATIME;
376 if (flags & BTRFS_INODE_NODUMP)
377 xflags |= FS_XFLAG_NODUMP;
378 if (flags & BTRFS_INODE_SYNC)
379 xflags |= FS_XFLAG_SYNC;
384 /* Check if @flags are a supported and valid set of FS_XFLAGS_* flags */
385 static int check_xflags(unsigned int flags)
387 if (flags & ~(FS_XFLAG_APPEND | FS_XFLAG_IMMUTABLE | FS_XFLAG_NOATIME |
388 FS_XFLAG_NODUMP | FS_XFLAG_SYNC))
393 bool btrfs_exclop_start(struct btrfs_fs_info *fs_info,
394 enum btrfs_exclusive_operation type)
396 return !cmpxchg(&fs_info->exclusive_operation, BTRFS_EXCLOP_NONE, type);
399 void btrfs_exclop_finish(struct btrfs_fs_info *fs_info)
401 WRITE_ONCE(fs_info->exclusive_operation, BTRFS_EXCLOP_NONE);
402 sysfs_notify(&fs_info->fs_devices->fsid_kobj, NULL, "exclusive_operation");
406 * Set the xflags from the internal inode flags. The remaining items of fsxattr
409 static int btrfs_ioctl_fsgetxattr(struct file *file, void __user *arg)
411 struct btrfs_inode *binode = BTRFS_I(file_inode(file));
414 simple_fill_fsxattr(&fa, btrfs_inode_flags_to_xflags(binode->flags));
415 if (copy_to_user(arg, &fa, sizeof(fa)))
421 static int btrfs_ioctl_fssetxattr(struct file *file, void __user *arg)
423 struct inode *inode = file_inode(file);
424 struct btrfs_inode *binode = BTRFS_I(inode);
425 struct btrfs_root *root = binode->root;
426 struct btrfs_trans_handle *trans;
427 struct fsxattr fa, old_fa;
429 unsigned old_i_flags;
432 if (!inode_owner_or_capable(inode))
435 if (btrfs_root_readonly(root))
438 if (copy_from_user(&fa, arg, sizeof(fa)))
441 ret = check_xflags(fa.fsx_xflags);
445 if (fa.fsx_extsize != 0 || fa.fsx_projid != 0 || fa.fsx_cowextsize != 0)
448 ret = mnt_want_write_file(file);
454 old_flags = binode->flags;
455 old_i_flags = inode->i_flags;
457 simple_fill_fsxattr(&old_fa,
458 btrfs_inode_flags_to_xflags(binode->flags));
459 ret = vfs_ioc_fssetxattr_check(inode, &old_fa, &fa);
463 if (fa.fsx_xflags & FS_XFLAG_SYNC)
464 binode->flags |= BTRFS_INODE_SYNC;
466 binode->flags &= ~BTRFS_INODE_SYNC;
467 if (fa.fsx_xflags & FS_XFLAG_IMMUTABLE)
468 binode->flags |= BTRFS_INODE_IMMUTABLE;
470 binode->flags &= ~BTRFS_INODE_IMMUTABLE;
471 if (fa.fsx_xflags & FS_XFLAG_APPEND)
472 binode->flags |= BTRFS_INODE_APPEND;
474 binode->flags &= ~BTRFS_INODE_APPEND;
475 if (fa.fsx_xflags & FS_XFLAG_NODUMP)
476 binode->flags |= BTRFS_INODE_NODUMP;
478 binode->flags &= ~BTRFS_INODE_NODUMP;
479 if (fa.fsx_xflags & FS_XFLAG_NOATIME)
480 binode->flags |= BTRFS_INODE_NOATIME;
482 binode->flags &= ~BTRFS_INODE_NOATIME;
484 /* 1 item for the inode */
485 trans = btrfs_start_transaction(root, 1);
487 ret = PTR_ERR(trans);
491 btrfs_sync_inode_flags_to_i_flags(inode);
492 inode_inc_iversion(inode);
493 inode->i_ctime = current_time(inode);
494 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
496 btrfs_end_transaction(trans);
500 binode->flags = old_flags;
501 inode->i_flags = old_i_flags;
505 mnt_drop_write_file(file);
510 static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
512 struct inode *inode = file_inode(file);
514 return put_user(inode->i_generation, arg);
517 static noinline int btrfs_ioctl_fitrim(struct btrfs_fs_info *fs_info,
520 struct btrfs_device *device;
521 struct request_queue *q;
522 struct fstrim_range range;
523 u64 minlen = ULLONG_MAX;
527 if (!capable(CAP_SYS_ADMIN))
531 * btrfs_trim_block_group() depends on space cache, which is not
532 * available in zoned filesystem. So, disallow fitrim on a zoned
533 * filesystem for now.
535 if (btrfs_is_zoned(fs_info))
539 * If the fs is mounted with nologreplay, which requires it to be
540 * mounted in RO mode as well, we can not allow discard on free space
541 * inside block groups, because log trees refer to extents that are not
542 * pinned in a block group's free space cache (pinning the extents is
543 * precisely the first phase of replaying a log tree).
545 if (btrfs_test_opt(fs_info, NOLOGREPLAY))
549 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
553 q = bdev_get_queue(device->bdev);
554 if (blk_queue_discard(q)) {
556 minlen = min_t(u64, q->limits.discard_granularity,
564 if (copy_from_user(&range, arg, sizeof(range)))
568 * NOTE: Don't truncate the range using super->total_bytes. Bytenr of
569 * block group is in the logical address space, which can be any
570 * sectorsize aligned bytenr in the range [0, U64_MAX].
572 if (range.len < fs_info->sb->s_blocksize)
575 range.minlen = max(range.minlen, minlen);
576 ret = btrfs_trim_fs(fs_info, &range);
580 if (copy_to_user(arg, &range, sizeof(range)))
586 int __pure btrfs_is_empty_uuid(u8 *uuid)
590 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
597 static noinline int create_subvol(struct inode *dir,
598 struct dentry *dentry,
599 const char *name, int namelen,
600 struct btrfs_qgroup_inherit *inherit)
602 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
603 struct btrfs_trans_handle *trans;
604 struct btrfs_key key;
605 struct btrfs_root_item *root_item;
606 struct btrfs_inode_item *inode_item;
607 struct extent_buffer *leaf;
608 struct btrfs_root *root = BTRFS_I(dir)->root;
609 struct btrfs_root *new_root;
610 struct btrfs_block_rsv block_rsv;
611 struct timespec64 cur_time = current_time(dir);
619 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
623 ret = btrfs_get_free_objectid(fs_info->tree_root, &objectid);
627 ret = get_anon_bdev(&anon_dev);
632 * Don't create subvolume whose level is not zero. Or qgroup will be
633 * screwed up since it assumes subvolume qgroup's level to be 0.
635 if (btrfs_qgroup_level(objectid)) {
640 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
642 * The same as the snapshot creation, please see the comment
643 * of create_snapshot().
645 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 8, false);
649 trans = btrfs_start_transaction(root, 0);
651 ret = PTR_ERR(trans);
652 btrfs_subvolume_release_metadata(root, &block_rsv);
655 trans->block_rsv = &block_rsv;
656 trans->bytes_reserved = block_rsv.size;
658 ret = btrfs_qgroup_inherit(trans, 0, objectid, inherit);
662 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0,
663 BTRFS_NESTING_NORMAL);
669 btrfs_mark_buffer_dirty(leaf);
671 inode_item = &root_item->inode;
672 btrfs_set_stack_inode_generation(inode_item, 1);
673 btrfs_set_stack_inode_size(inode_item, 3);
674 btrfs_set_stack_inode_nlink(inode_item, 1);
675 btrfs_set_stack_inode_nbytes(inode_item,
677 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
679 btrfs_set_root_flags(root_item, 0);
680 btrfs_set_root_limit(root_item, 0);
681 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
683 btrfs_set_root_bytenr(root_item, leaf->start);
684 btrfs_set_root_generation(root_item, trans->transid);
685 btrfs_set_root_level(root_item, 0);
686 btrfs_set_root_refs(root_item, 1);
687 btrfs_set_root_used(root_item, leaf->len);
688 btrfs_set_root_last_snapshot(root_item, 0);
690 btrfs_set_root_generation_v2(root_item,
691 btrfs_root_generation(root_item));
692 generate_random_guid(root_item->uuid);
693 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
694 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
695 root_item->ctime = root_item->otime;
696 btrfs_set_root_ctransid(root_item, trans->transid);
697 btrfs_set_root_otransid(root_item, trans->transid);
699 btrfs_tree_unlock(leaf);
700 free_extent_buffer(leaf);
703 btrfs_set_root_dirid(root_item, BTRFS_FIRST_FREE_OBJECTID);
705 key.objectid = objectid;
707 key.type = BTRFS_ROOT_ITEM_KEY;
708 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
713 key.offset = (u64)-1;
714 new_root = btrfs_get_new_fs_root(fs_info, objectid, anon_dev);
715 if (IS_ERR(new_root)) {
716 free_anon_bdev(anon_dev);
717 ret = PTR_ERR(new_root);
718 btrfs_abort_transaction(trans, ret);
721 /* Freeing will be done in btrfs_put_root() of new_root */
724 btrfs_record_root_in_trans(trans, new_root);
726 ret = btrfs_create_subvol_root(trans, new_root, root);
727 btrfs_put_root(new_root);
729 /* We potentially lose an unused inode item here */
730 btrfs_abort_transaction(trans, ret);
735 * insert the directory item
737 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
739 btrfs_abort_transaction(trans, ret);
743 ret = btrfs_insert_dir_item(trans, name, namelen, BTRFS_I(dir), &key,
744 BTRFS_FT_DIR, index);
746 btrfs_abort_transaction(trans, ret);
750 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
751 ret = btrfs_update_inode(trans, root, BTRFS_I(dir));
753 btrfs_abort_transaction(trans, ret);
757 ret = btrfs_add_root_ref(trans, objectid, root->root_key.objectid,
758 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
760 btrfs_abort_transaction(trans, ret);
764 ret = btrfs_uuid_tree_add(trans, root_item->uuid,
765 BTRFS_UUID_KEY_SUBVOL, objectid);
767 btrfs_abort_transaction(trans, ret);
771 trans->block_rsv = NULL;
772 trans->bytes_reserved = 0;
773 btrfs_subvolume_release_metadata(root, &block_rsv);
775 err = btrfs_commit_transaction(trans);
780 inode = btrfs_lookup_dentry(dir, dentry);
782 return PTR_ERR(inode);
783 d_instantiate(dentry, inode);
789 free_anon_bdev(anon_dev);
794 static int create_snapshot(struct btrfs_root *root, struct inode *dir,
795 struct dentry *dentry, bool readonly,
796 struct btrfs_qgroup_inherit *inherit)
798 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
800 struct btrfs_pending_snapshot *pending_snapshot;
801 struct btrfs_trans_handle *trans;
804 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
807 if (atomic_read(&root->nr_swapfiles)) {
809 "cannot snapshot subvolume with active swapfile");
813 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
814 if (!pending_snapshot)
817 ret = get_anon_bdev(&pending_snapshot->anon_dev);
820 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
822 pending_snapshot->path = btrfs_alloc_path();
823 if (!pending_snapshot->root_item || !pending_snapshot->path) {
828 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
829 BTRFS_BLOCK_RSV_TEMP);
831 * 1 - parent dir inode
834 * 2 - root ref/backref
835 * 1 - root of snapshot
838 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
839 &pending_snapshot->block_rsv, 8,
844 pending_snapshot->dentry = dentry;
845 pending_snapshot->root = root;
846 pending_snapshot->readonly = readonly;
847 pending_snapshot->dir = dir;
848 pending_snapshot->inherit = inherit;
850 trans = btrfs_start_transaction(root, 0);
852 ret = PTR_ERR(trans);
856 spin_lock(&fs_info->trans_lock);
857 list_add(&pending_snapshot->list,
858 &trans->transaction->pending_snapshots);
859 spin_unlock(&fs_info->trans_lock);
861 ret = btrfs_commit_transaction(trans);
865 ret = pending_snapshot->error;
869 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
873 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
875 ret = PTR_ERR(inode);
879 d_instantiate(dentry, inode);
881 pending_snapshot->anon_dev = 0;
883 /* Prevent double freeing of anon_dev */
884 if (ret && pending_snapshot->snap)
885 pending_snapshot->snap->anon_dev = 0;
886 btrfs_put_root(pending_snapshot->snap);
887 btrfs_subvolume_release_metadata(root, &pending_snapshot->block_rsv);
889 if (pending_snapshot->anon_dev)
890 free_anon_bdev(pending_snapshot->anon_dev);
891 kfree(pending_snapshot->root_item);
892 btrfs_free_path(pending_snapshot->path);
893 kfree(pending_snapshot);
898 /* copy of may_delete in fs/namei.c()
899 * Check whether we can remove a link victim from directory dir, check
900 * whether the type of victim is right.
901 * 1. We can't do it if dir is read-only (done in permission())
902 * 2. We should have write and exec permissions on dir
903 * 3. We can't remove anything from append-only dir
904 * 4. We can't do anything with immutable dir (done in permission())
905 * 5. If the sticky bit on dir is set we should either
906 * a. be owner of dir, or
907 * b. be owner of victim, or
908 * c. have CAP_FOWNER capability
909 * 6. If the victim is append-only or immutable we can't do anything with
910 * links pointing to it.
911 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
912 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
913 * 9. We can't remove a root or mountpoint.
914 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
915 * nfs_async_unlink().
918 static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
922 if (d_really_is_negative(victim))
925 BUG_ON(d_inode(victim->d_parent) != dir);
926 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
928 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
933 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
934 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
937 if (!d_is_dir(victim))
941 } else if (d_is_dir(victim))
945 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
950 /* copy of may_create in fs/namei.c() */
951 static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
953 if (d_really_is_positive(child))
957 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
961 * Create a new subvolume below @parent. This is largely modeled after
962 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
963 * inside this filesystem so it's quite a bit simpler.
965 static noinline int btrfs_mksubvol(const struct path *parent,
966 const char *name, int namelen,
967 struct btrfs_root *snap_src,
969 struct btrfs_qgroup_inherit *inherit)
971 struct inode *dir = d_inode(parent->dentry);
972 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
973 struct dentry *dentry;
976 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
980 dentry = lookup_one_len(name, parent->dentry, namelen);
981 error = PTR_ERR(dentry);
985 error = btrfs_may_create(dir, dentry);
990 * even if this name doesn't exist, we may get hash collisions.
991 * check for them now when we can safely fail
993 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
999 down_read(&fs_info->subvol_sem);
1001 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
1005 error = create_snapshot(snap_src, dir, dentry, readonly, inherit);
1007 error = create_subvol(dir, dentry, name, namelen, inherit);
1010 fsnotify_mkdir(dir, dentry);
1012 up_read(&fs_info->subvol_sem);
1020 static noinline int btrfs_mksnapshot(const struct path *parent,
1021 const char *name, int namelen,
1022 struct btrfs_root *root,
1024 struct btrfs_qgroup_inherit *inherit)
1027 bool snapshot_force_cow = false;
1030 * Force new buffered writes to reserve space even when NOCOW is
1031 * possible. This is to avoid later writeback (running dealloc) to
1032 * fallback to COW mode and unexpectedly fail with ENOSPC.
1034 btrfs_drew_read_lock(&root->snapshot_lock);
1036 ret = btrfs_start_delalloc_snapshot(root);
1041 * All previous writes have started writeback in NOCOW mode, so now
1042 * we force future writes to fallback to COW mode during snapshot
1045 atomic_inc(&root->snapshot_force_cow);
1046 snapshot_force_cow = true;
1048 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
1050 ret = btrfs_mksubvol(parent, name, namelen,
1051 root, readonly, inherit);
1053 if (snapshot_force_cow)
1054 atomic_dec(&root->snapshot_force_cow);
1055 btrfs_drew_read_unlock(&root->snapshot_lock);
1060 * When we're defragging a range, we don't want to kick it off again
1061 * if it is really just waiting for delalloc to send it down.
1062 * If we find a nice big extent or delalloc range for the bytes in the
1063 * file you want to defrag, we return 0 to let you know to skip this
1066 static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
1068 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1069 struct extent_map *em = NULL;
1070 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1073 read_lock(&em_tree->lock);
1074 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
1075 read_unlock(&em_tree->lock);
1078 end = extent_map_end(em);
1079 free_extent_map(em);
1080 if (end - offset > thresh)
1083 /* if we already have a nice delalloc here, just stop */
1085 end = count_range_bits(io_tree, &offset, offset + thresh,
1086 thresh, EXTENT_DELALLOC, 1);
1093 * helper function to walk through a file and find extents
1094 * newer than a specific transid, and smaller than thresh.
1096 * This is used by the defragging code to find new and small
1099 static int find_new_extents(struct btrfs_root *root,
1100 struct inode *inode, u64 newer_than,
1101 u64 *off, u32 thresh)
1103 struct btrfs_path *path;
1104 struct btrfs_key min_key;
1105 struct extent_buffer *leaf;
1106 struct btrfs_file_extent_item *extent;
1109 u64 ino = btrfs_ino(BTRFS_I(inode));
1111 path = btrfs_alloc_path();
1115 min_key.objectid = ino;
1116 min_key.type = BTRFS_EXTENT_DATA_KEY;
1117 min_key.offset = *off;
1120 ret = btrfs_search_forward(root, &min_key, path, newer_than);
1124 if (min_key.objectid != ino)
1126 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
1129 leaf = path->nodes[0];
1130 extent = btrfs_item_ptr(leaf, path->slots[0],
1131 struct btrfs_file_extent_item);
1133 type = btrfs_file_extent_type(leaf, extent);
1134 if (type == BTRFS_FILE_EXTENT_REG &&
1135 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
1136 check_defrag_in_cache(inode, min_key.offset, thresh)) {
1137 *off = min_key.offset;
1138 btrfs_free_path(path);
1143 if (path->slots[0] < btrfs_header_nritems(leaf)) {
1144 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
1148 if (min_key.offset == (u64)-1)
1152 btrfs_release_path(path);
1155 btrfs_free_path(path);
1159 static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
1161 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1162 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1163 struct extent_map *em;
1164 u64 len = PAGE_SIZE;
1167 * hopefully we have this extent in the tree already, try without
1168 * the full extent lock
1170 read_lock(&em_tree->lock);
1171 em = lookup_extent_mapping(em_tree, start, len);
1172 read_unlock(&em_tree->lock);
1175 struct extent_state *cached = NULL;
1176 u64 end = start + len - 1;
1178 /* get the big lock and read metadata off disk */
1179 lock_extent_bits(io_tree, start, end, &cached);
1180 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
1181 unlock_extent_cached(io_tree, start, end, &cached);
1190 static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1192 struct extent_map *next;
1195 /* this is the last extent */
1196 if (em->start + em->len >= i_size_read(inode))
1199 next = defrag_lookup_extent(inode, em->start + em->len);
1200 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1202 else if ((em->block_start + em->block_len == next->block_start) &&
1203 (em->block_len > SZ_128K && next->block_len > SZ_128K))
1206 free_extent_map(next);
1210 static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
1211 u64 *last_len, u64 *skip, u64 *defrag_end,
1214 struct extent_map *em;
1216 bool next_mergeable = true;
1217 bool prev_mergeable = true;
1220 * make sure that once we start defragging an extent, we keep on
1223 if (start < *defrag_end)
1228 em = defrag_lookup_extent(inode, start);
1232 /* this will cover holes, and inline extents */
1233 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1239 prev_mergeable = false;
1241 next_mergeable = defrag_check_next_extent(inode, em);
1243 * we hit a real extent, if it is big or the next extent is not a
1244 * real extent, don't bother defragging it
1246 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
1247 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
1251 * last_len ends up being a counter of how many bytes we've defragged.
1252 * every time we choose not to defrag an extent, we reset *last_len
1253 * so that the next tiny extent will force a defrag.
1255 * The end result of this is that tiny extents before a single big
1256 * extent will force at least part of that big extent to be defragged.
1259 *defrag_end = extent_map_end(em);
1262 *skip = extent_map_end(em);
1266 free_extent_map(em);
1271 * it doesn't do much good to defrag one or two pages
1272 * at a time. This pulls in a nice chunk of pages
1273 * to COW and defrag.
1275 * It also makes sure the delalloc code has enough
1276 * dirty data to avoid making new small extents as part
1279 * It's a good idea to start RA on this range
1280 * before calling this.
1282 static int cluster_pages_for_defrag(struct inode *inode,
1283 struct page **pages,
1284 unsigned long start_index,
1285 unsigned long num_pages)
1287 unsigned long file_end;
1288 u64 isize = i_size_read(inode);
1292 u64 start = (u64)start_index << PAGE_SHIFT;
1297 struct btrfs_ordered_extent *ordered;
1298 struct extent_state *cached_state = NULL;
1299 struct extent_io_tree *tree;
1300 struct extent_changeset *data_reserved = NULL;
1301 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
1303 file_end = (isize - 1) >> PAGE_SHIFT;
1304 if (!isize || start_index > file_end)
1307 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
1309 ret = btrfs_delalloc_reserve_space(BTRFS_I(inode), &data_reserved,
1310 start, page_cnt << PAGE_SHIFT);
1314 tree = &BTRFS_I(inode)->io_tree;
1316 /* step one, lock all the pages */
1317 for (i = 0; i < page_cnt; i++) {
1320 page = find_or_create_page(inode->i_mapping,
1321 start_index + i, mask);
1325 ret = set_page_extent_mapped(page);
1332 page_start = page_offset(page);
1333 page_end = page_start + PAGE_SIZE - 1;
1335 lock_extent_bits(tree, page_start, page_end,
1337 ordered = btrfs_lookup_ordered_extent(BTRFS_I(inode),
1339 unlock_extent_cached(tree, page_start, page_end,
1345 btrfs_start_ordered_extent(ordered, 1);
1346 btrfs_put_ordered_extent(ordered);
1349 * we unlocked the page above, so we need check if
1350 * it was released or not.
1352 if (page->mapping != inode->i_mapping) {
1359 if (!PageUptodate(page)) {
1360 btrfs_readpage(NULL, page);
1362 if (!PageUptodate(page)) {
1370 if (page->mapping != inode->i_mapping) {
1382 if (!(inode->i_sb->s_flags & SB_ACTIVE))
1386 * so now we have a nice long stream of locked
1387 * and up to date pages, lets wait on them
1389 for (i = 0; i < i_done; i++)
1390 wait_on_page_writeback(pages[i]);
1392 page_start = page_offset(pages[0]);
1393 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
1395 lock_extent_bits(&BTRFS_I(inode)->io_tree,
1396 page_start, page_end - 1, &cached_state);
1399 * When defragmenting we skip ranges that have holes or inline extents,
1400 * (check should_defrag_range()), to avoid unnecessary IO and wasting
1401 * space. At btrfs_defrag_file(), we check if a range should be defragged
1402 * before locking the inode and then, if it should, we trigger a sync
1403 * page cache readahead - we lock the inode only after that to avoid
1404 * blocking for too long other tasks that possibly want to operate on
1405 * other file ranges. But before we were able to get the inode lock,
1406 * some other task may have punched a hole in the range, or we may have
1407 * now an inline extent, in which case we should not defrag. So check
1408 * for that here, where we have the inode and the range locked, and bail
1409 * out if that happened.
1411 search_start = page_start;
1412 while (search_start < page_end) {
1413 struct extent_map *em;
1415 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, search_start,
1416 page_end - search_start);
1419 goto out_unlock_range;
1421 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1422 free_extent_map(em);
1423 /* Ok, 0 means we did not defrag anything */
1425 goto out_unlock_range;
1427 search_start = extent_map_end(em);
1428 free_extent_map(em);
1431 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1432 page_end - 1, EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
1433 EXTENT_DEFRAG, 0, 0, &cached_state);
1435 if (i_done != page_cnt) {
1436 spin_lock(&BTRFS_I(inode)->lock);
1437 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
1438 spin_unlock(&BTRFS_I(inode)->lock);
1439 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
1440 start, (page_cnt - i_done) << PAGE_SHIFT, true);
1444 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1447 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1448 page_start, page_end - 1, &cached_state);
1450 for (i = 0; i < i_done; i++) {
1451 clear_page_dirty_for_io(pages[i]);
1452 ClearPageChecked(pages[i]);
1453 set_page_dirty(pages[i]);
1454 unlock_page(pages[i]);
1457 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
1458 extent_changeset_free(data_reserved);
1462 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1463 page_start, page_end - 1, &cached_state);
1465 for (i = 0; i < i_done; i++) {
1466 unlock_page(pages[i]);
1469 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
1470 start, page_cnt << PAGE_SHIFT, true);
1471 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
1472 extent_changeset_free(data_reserved);
1477 int btrfs_defrag_file(struct inode *inode, struct file *file,
1478 struct btrfs_ioctl_defrag_range_args *range,
1479 u64 newer_than, unsigned long max_to_defrag)
1481 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1482 struct btrfs_root *root = BTRFS_I(inode)->root;
1483 struct file_ra_state *ra = NULL;
1484 unsigned long last_index;
1485 u64 isize = i_size_read(inode);
1489 u64 newer_off = range->start;
1491 unsigned long ra_index = 0;
1493 int defrag_count = 0;
1494 int compress_type = BTRFS_COMPRESS_ZLIB;
1495 u32 extent_thresh = range->extent_thresh;
1496 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
1497 unsigned long cluster = max_cluster;
1498 u64 new_align = ~((u64)SZ_128K - 1);
1499 struct page **pages = NULL;
1500 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
1505 if (range->start >= isize)
1509 if (range->compress_type >= BTRFS_NR_COMPRESS_TYPES)
1511 if (range->compress_type)
1512 compress_type = range->compress_type;
1515 if (extent_thresh == 0)
1516 extent_thresh = SZ_256K;
1519 * If we were not given a file, allocate a readahead context. As
1520 * readahead is just an optimization, defrag will work without it so
1521 * we don't error out.
1524 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
1526 file_ra_state_init(ra, inode->i_mapping);
1531 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
1537 /* find the last page to defrag */
1538 if (range->start + range->len > range->start) {
1539 last_index = min_t(u64, isize - 1,
1540 range->start + range->len - 1) >> PAGE_SHIFT;
1542 last_index = (isize - 1) >> PAGE_SHIFT;
1546 ret = find_new_extents(root, inode, newer_than,
1547 &newer_off, SZ_64K);
1549 range->start = newer_off;
1551 * we always align our defrag to help keep
1552 * the extents in the file evenly spaced
1554 i = (newer_off & new_align) >> PAGE_SHIFT;
1558 i = range->start >> PAGE_SHIFT;
1561 max_to_defrag = last_index - i + 1;
1564 * make writeback starts from i, so the defrag range can be
1565 * written sequentially.
1567 if (i < inode->i_mapping->writeback_index)
1568 inode->i_mapping->writeback_index = i;
1570 while (i <= last_index && defrag_count < max_to_defrag &&
1571 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
1573 * make sure we stop running if someone unmounts
1576 if (!(inode->i_sb->s_flags & SB_ACTIVE))
1579 if (btrfs_defrag_cancelled(fs_info)) {
1580 btrfs_debug(fs_info, "defrag_file cancelled");
1585 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
1586 extent_thresh, &last_len, &skip,
1587 &defrag_end, do_compress)){
1590 * the should_defrag function tells us how much to skip
1591 * bump our counter by the suggested amount
1593 next = DIV_ROUND_UP(skip, PAGE_SIZE);
1594 i = max(i + 1, next);
1599 cluster = (PAGE_ALIGN(defrag_end) >>
1601 cluster = min(cluster, max_cluster);
1603 cluster = max_cluster;
1606 if (i + cluster > ra_index) {
1607 ra_index = max(i, ra_index);
1609 page_cache_sync_readahead(inode->i_mapping, ra,
1610 file, ra_index, cluster);
1611 ra_index += cluster;
1615 if (IS_SWAPFILE(inode)) {
1619 BTRFS_I(inode)->defrag_compress = compress_type;
1620 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
1623 inode_unlock(inode);
1627 defrag_count += ret;
1628 balance_dirty_pages_ratelimited(inode->i_mapping);
1629 inode_unlock(inode);
1632 if (newer_off == (u64)-1)
1638 newer_off = max(newer_off + 1,
1639 (u64)i << PAGE_SHIFT);
1641 ret = find_new_extents(root, inode, newer_than,
1642 &newer_off, SZ_64K);
1644 range->start = newer_off;
1645 i = (newer_off & new_align) >> PAGE_SHIFT;
1652 last_len += ret << PAGE_SHIFT;
1660 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
1661 filemap_flush(inode->i_mapping);
1662 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1663 &BTRFS_I(inode)->runtime_flags))
1664 filemap_flush(inode->i_mapping);
1667 if (range->compress_type == BTRFS_COMPRESS_LZO) {
1668 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
1669 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1670 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
1678 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
1679 inode_unlock(inode);
1687 static noinline int btrfs_ioctl_resize(struct file *file,
1690 struct inode *inode = file_inode(file);
1691 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1695 struct btrfs_root *root = BTRFS_I(inode)->root;
1696 struct btrfs_ioctl_vol_args *vol_args;
1697 struct btrfs_trans_handle *trans;
1698 struct btrfs_device *device = NULL;
1701 char *devstr = NULL;
1705 if (!capable(CAP_SYS_ADMIN))
1708 ret = mnt_want_write_file(file);
1712 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_RESIZE)) {
1713 mnt_drop_write_file(file);
1714 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
1717 vol_args = memdup_user(arg, sizeof(*vol_args));
1718 if (IS_ERR(vol_args)) {
1719 ret = PTR_ERR(vol_args);
1723 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1725 sizestr = vol_args->name;
1726 devstr = strchr(sizestr, ':');
1728 sizestr = devstr + 1;
1730 devstr = vol_args->name;
1731 ret = kstrtoull(devstr, 10, &devid);
1738 btrfs_info(fs_info, "resizing devid %llu", devid);
1741 device = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL);
1743 btrfs_info(fs_info, "resizer unable to find device %llu",
1749 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
1751 "resizer unable to apply on readonly device %llu",
1757 if (!strcmp(sizestr, "max"))
1758 new_size = device->bdev->bd_inode->i_size;
1760 if (sizestr[0] == '-') {
1763 } else if (sizestr[0] == '+') {
1767 new_size = memparse(sizestr, &retptr);
1768 if (*retptr != '\0' || new_size == 0) {
1774 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
1779 old_size = btrfs_device_get_total_bytes(device);
1782 if (new_size > old_size) {
1786 new_size = old_size - new_size;
1787 } else if (mod > 0) {
1788 if (new_size > ULLONG_MAX - old_size) {
1792 new_size = old_size + new_size;
1795 if (new_size < SZ_256M) {
1799 if (new_size > device->bdev->bd_inode->i_size) {
1804 new_size = round_down(new_size, fs_info->sectorsize);
1806 if (new_size > old_size) {
1807 trans = btrfs_start_transaction(root, 0);
1808 if (IS_ERR(trans)) {
1809 ret = PTR_ERR(trans);
1812 ret = btrfs_grow_device(trans, device, new_size);
1813 btrfs_commit_transaction(trans);
1814 } else if (new_size < old_size) {
1815 ret = btrfs_shrink_device(device, new_size);
1816 } /* equal, nothing need to do */
1818 if (ret == 0 && new_size != old_size)
1819 btrfs_info_in_rcu(fs_info,
1820 "resize device %s (devid %llu) from %llu to %llu",
1821 rcu_str_deref(device->name), device->devid,
1822 old_size, new_size);
1826 btrfs_exclop_finish(fs_info);
1827 mnt_drop_write_file(file);
1831 static noinline int __btrfs_ioctl_snap_create(struct file *file,
1832 const char *name, unsigned long fd, int subvol,
1834 struct btrfs_qgroup_inherit *inherit)
1839 if (!S_ISDIR(file_inode(file)->i_mode))
1842 ret = mnt_want_write_file(file);
1846 namelen = strlen(name);
1847 if (strchr(name, '/')) {
1849 goto out_drop_write;
1852 if (name[0] == '.' &&
1853 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1855 goto out_drop_write;
1859 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1860 NULL, readonly, inherit);
1862 struct fd src = fdget(fd);
1863 struct inode *src_inode;
1866 goto out_drop_write;
1869 src_inode = file_inode(src.file);
1870 if (src_inode->i_sb != file_inode(file)->i_sb) {
1871 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
1872 "Snapshot src from another FS");
1874 } else if (!inode_owner_or_capable(src_inode)) {
1876 * Subvolume creation is not restricted, but snapshots
1877 * are limited to own subvolumes only
1881 ret = btrfs_mksnapshot(&file->f_path, name, namelen,
1882 BTRFS_I(src_inode)->root,
1888 mnt_drop_write_file(file);
1893 static noinline int btrfs_ioctl_snap_create(struct file *file,
1894 void __user *arg, int subvol)
1896 struct btrfs_ioctl_vol_args *vol_args;
1899 if (!S_ISDIR(file_inode(file)->i_mode))
1902 vol_args = memdup_user(arg, sizeof(*vol_args));
1903 if (IS_ERR(vol_args))
1904 return PTR_ERR(vol_args);
1905 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1907 ret = __btrfs_ioctl_snap_create(file, vol_args->name, vol_args->fd,
1908 subvol, false, NULL);
1914 static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1915 void __user *arg, int subvol)
1917 struct btrfs_ioctl_vol_args_v2 *vol_args;
1919 bool readonly = false;
1920 struct btrfs_qgroup_inherit *inherit = NULL;
1922 if (!S_ISDIR(file_inode(file)->i_mode))
1925 vol_args = memdup_user(arg, sizeof(*vol_args));
1926 if (IS_ERR(vol_args))
1927 return PTR_ERR(vol_args);
1928 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
1930 if (vol_args->flags & ~BTRFS_SUBVOL_CREATE_ARGS_MASK) {
1935 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1937 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1938 if (vol_args->size > PAGE_SIZE) {
1942 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1943 if (IS_ERR(inherit)) {
1944 ret = PTR_ERR(inherit);
1949 ret = __btrfs_ioctl_snap_create(file, vol_args->name, vol_args->fd,
1950 subvol, readonly, inherit);
1960 static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1963 struct inode *inode = file_inode(file);
1964 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1965 struct btrfs_root *root = BTRFS_I(inode)->root;
1969 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
1972 down_read(&fs_info->subvol_sem);
1973 if (btrfs_root_readonly(root))
1974 flags |= BTRFS_SUBVOL_RDONLY;
1975 up_read(&fs_info->subvol_sem);
1977 if (copy_to_user(arg, &flags, sizeof(flags)))
1983 static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1986 struct inode *inode = file_inode(file);
1987 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1988 struct btrfs_root *root = BTRFS_I(inode)->root;
1989 struct btrfs_trans_handle *trans;
1994 if (!inode_owner_or_capable(inode))
1997 ret = mnt_want_write_file(file);
2001 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
2003 goto out_drop_write;
2006 if (copy_from_user(&flags, arg, sizeof(flags))) {
2008 goto out_drop_write;
2011 if (flags & ~BTRFS_SUBVOL_RDONLY) {
2013 goto out_drop_write;
2016 down_write(&fs_info->subvol_sem);
2019 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
2022 root_flags = btrfs_root_flags(&root->root_item);
2023 if (flags & BTRFS_SUBVOL_RDONLY) {
2024 btrfs_set_root_flags(&root->root_item,
2025 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
2028 * Block RO -> RW transition if this subvolume is involved in
2031 spin_lock(&root->root_item_lock);
2032 if (root->send_in_progress == 0) {
2033 btrfs_set_root_flags(&root->root_item,
2034 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
2035 spin_unlock(&root->root_item_lock);
2037 spin_unlock(&root->root_item_lock);
2039 "Attempt to set subvolume %llu read-write during send",
2040 root->root_key.objectid);
2046 trans = btrfs_start_transaction(root, 1);
2047 if (IS_ERR(trans)) {
2048 ret = PTR_ERR(trans);
2052 ret = btrfs_update_root(trans, fs_info->tree_root,
2053 &root->root_key, &root->root_item);
2055 btrfs_end_transaction(trans);
2059 ret = btrfs_commit_transaction(trans);
2063 btrfs_set_root_flags(&root->root_item, root_flags);
2065 up_write(&fs_info->subvol_sem);
2067 mnt_drop_write_file(file);
2072 static noinline int key_in_sk(struct btrfs_key *key,
2073 struct btrfs_ioctl_search_key *sk)
2075 struct btrfs_key test;
2078 test.objectid = sk->min_objectid;
2079 test.type = sk->min_type;
2080 test.offset = sk->min_offset;
2082 ret = btrfs_comp_cpu_keys(key, &test);
2086 test.objectid = sk->max_objectid;
2087 test.type = sk->max_type;
2088 test.offset = sk->max_offset;
2090 ret = btrfs_comp_cpu_keys(key, &test);
2096 static noinline int copy_to_sk(struct btrfs_path *path,
2097 struct btrfs_key *key,
2098 struct btrfs_ioctl_search_key *sk,
2101 unsigned long *sk_offset,
2105 struct extent_buffer *leaf;
2106 struct btrfs_ioctl_search_header sh;
2107 struct btrfs_key test;
2108 unsigned long item_off;
2109 unsigned long item_len;
2115 leaf = path->nodes[0];
2116 slot = path->slots[0];
2117 nritems = btrfs_header_nritems(leaf);
2119 if (btrfs_header_generation(leaf) > sk->max_transid) {
2123 found_transid = btrfs_header_generation(leaf);
2125 for (i = slot; i < nritems; i++) {
2126 item_off = btrfs_item_ptr_offset(leaf, i);
2127 item_len = btrfs_item_size_nr(leaf, i);
2129 btrfs_item_key_to_cpu(leaf, key, i);
2130 if (!key_in_sk(key, sk))
2133 if (sizeof(sh) + item_len > *buf_size) {
2140 * return one empty item back for v1, which does not
2144 *buf_size = sizeof(sh) + item_len;
2149 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
2154 sh.objectid = key->objectid;
2155 sh.offset = key->offset;
2156 sh.type = key->type;
2158 sh.transid = found_transid;
2161 * Copy search result header. If we fault then loop again so we
2162 * can fault in the pages and -EFAULT there if there's a
2163 * problem. Otherwise we'll fault and then copy the buffer in
2164 * properly this next time through
2166 if (copy_to_user_nofault(ubuf + *sk_offset, &sh, sizeof(sh))) {
2171 *sk_offset += sizeof(sh);
2174 char __user *up = ubuf + *sk_offset;
2176 * Copy the item, same behavior as above, but reset the
2177 * * sk_offset so we copy the full thing again.
2179 if (read_extent_buffer_to_user_nofault(leaf, up,
2180 item_off, item_len)) {
2182 *sk_offset -= sizeof(sh);
2186 *sk_offset += item_len;
2190 if (ret) /* -EOVERFLOW from above */
2193 if (*num_found >= sk->nr_items) {
2200 test.objectid = sk->max_objectid;
2201 test.type = sk->max_type;
2202 test.offset = sk->max_offset;
2203 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2205 else if (key->offset < (u64)-1)
2207 else if (key->type < (u8)-1) {
2210 } else if (key->objectid < (u64)-1) {
2218 * 0: all items from this leaf copied, continue with next
2219 * 1: * more items can be copied, but unused buffer is too small
2220 * * all items were found
2221 * Either way, it will stops the loop which iterates to the next
2223 * -EOVERFLOW: item was to large for buffer
2224 * -EFAULT: could not copy extent buffer back to userspace
2229 static noinline int search_ioctl(struct inode *inode,
2230 struct btrfs_ioctl_search_key *sk,
2234 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
2235 struct btrfs_root *root;
2236 struct btrfs_key key;
2237 struct btrfs_path *path;
2240 unsigned long sk_offset = 0;
2242 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2243 *buf_size = sizeof(struct btrfs_ioctl_search_header);
2247 path = btrfs_alloc_path();
2251 if (sk->tree_id == 0) {
2252 /* search the root of the inode that was passed */
2253 root = btrfs_grab_root(BTRFS_I(inode)->root);
2255 root = btrfs_get_fs_root(info, sk->tree_id, true);
2257 btrfs_free_path(path);
2258 return PTR_ERR(root);
2262 key.objectid = sk->min_objectid;
2263 key.type = sk->min_type;
2264 key.offset = sk->min_offset;
2267 ret = fault_in_pages_writeable(ubuf + sk_offset,
2268 *buf_size - sk_offset);
2272 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
2278 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
2279 &sk_offset, &num_found);
2280 btrfs_release_path(path);
2288 sk->nr_items = num_found;
2289 btrfs_put_root(root);
2290 btrfs_free_path(path);
2294 static noinline int btrfs_ioctl_tree_search(struct file *file,
2297 struct btrfs_ioctl_search_args __user *uargs;
2298 struct btrfs_ioctl_search_key sk;
2299 struct inode *inode;
2303 if (!capable(CAP_SYS_ADMIN))
2306 uargs = (struct btrfs_ioctl_search_args __user *)argp;
2308 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2311 buf_size = sizeof(uargs->buf);
2313 inode = file_inode(file);
2314 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
2317 * In the origin implementation an overflow is handled by returning a
2318 * search header with a len of zero, so reset ret.
2320 if (ret == -EOVERFLOW)
2323 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
2328 static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2331 struct btrfs_ioctl_search_args_v2 __user *uarg;
2332 struct btrfs_ioctl_search_args_v2 args;
2333 struct inode *inode;
2336 const size_t buf_limit = SZ_16M;
2338 if (!capable(CAP_SYS_ADMIN))
2341 /* copy search header and buffer size */
2342 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2343 if (copy_from_user(&args, uarg, sizeof(args)))
2346 buf_size = args.buf_size;
2348 /* limit result size to 16MB */
2349 if (buf_size > buf_limit)
2350 buf_size = buf_limit;
2352 inode = file_inode(file);
2353 ret = search_ioctl(inode, &args.key, &buf_size,
2354 (char __user *)(&uarg->buf[0]));
2355 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2357 else if (ret == -EOVERFLOW &&
2358 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2365 * Search INODE_REFs to identify path name of 'dirid' directory
2366 * in a 'tree_id' tree. and sets path name to 'name'.
2368 static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2369 u64 tree_id, u64 dirid, char *name)
2371 struct btrfs_root *root;
2372 struct btrfs_key key;
2378 struct btrfs_inode_ref *iref;
2379 struct extent_buffer *l;
2380 struct btrfs_path *path;
2382 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2387 path = btrfs_alloc_path();
2391 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
2393 root = btrfs_get_fs_root(info, tree_id, true);
2395 ret = PTR_ERR(root);
2400 key.objectid = dirid;
2401 key.type = BTRFS_INODE_REF_KEY;
2402 key.offset = (u64)-1;
2405 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2409 ret = btrfs_previous_item(root, path, dirid,
2410 BTRFS_INODE_REF_KEY);
2420 slot = path->slots[0];
2421 btrfs_item_key_to_cpu(l, &key, slot);
2423 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2424 len = btrfs_inode_ref_name_len(l, iref);
2426 total_len += len + 1;
2428 ret = -ENAMETOOLONG;
2433 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
2435 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2438 btrfs_release_path(path);
2439 key.objectid = key.offset;
2440 key.offset = (u64)-1;
2441 dirid = key.objectid;
2443 memmove(name, ptr, total_len);
2444 name[total_len] = '\0';
2447 btrfs_put_root(root);
2448 btrfs_free_path(path);
2452 static int btrfs_search_path_in_tree_user(struct inode *inode,
2453 struct btrfs_ioctl_ino_lookup_user_args *args)
2455 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2456 struct super_block *sb = inode->i_sb;
2457 struct btrfs_key upper_limit = BTRFS_I(inode)->location;
2458 u64 treeid = BTRFS_I(inode)->root->root_key.objectid;
2459 u64 dirid = args->dirid;
2460 unsigned long item_off;
2461 unsigned long item_len;
2462 struct btrfs_inode_ref *iref;
2463 struct btrfs_root_ref *rref;
2464 struct btrfs_root *root = NULL;
2465 struct btrfs_path *path;
2466 struct btrfs_key key, key2;
2467 struct extent_buffer *leaf;
2468 struct inode *temp_inode;
2475 path = btrfs_alloc_path();
2480 * If the bottom subvolume does not exist directly under upper_limit,
2481 * construct the path in from the bottom up.
2483 if (dirid != upper_limit.objectid) {
2484 ptr = &args->path[BTRFS_INO_LOOKUP_USER_PATH_MAX - 1];
2486 root = btrfs_get_fs_root(fs_info, treeid, true);
2488 ret = PTR_ERR(root);
2492 key.objectid = dirid;
2493 key.type = BTRFS_INODE_REF_KEY;
2494 key.offset = (u64)-1;
2496 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2499 } else if (ret > 0) {
2500 ret = btrfs_previous_item(root, path, dirid,
2501 BTRFS_INODE_REF_KEY);
2504 } else if (ret > 0) {
2510 leaf = path->nodes[0];
2511 slot = path->slots[0];
2512 btrfs_item_key_to_cpu(leaf, &key, slot);
2514 iref = btrfs_item_ptr(leaf, slot, struct btrfs_inode_ref);
2515 len = btrfs_inode_ref_name_len(leaf, iref);
2517 total_len += len + 1;
2518 if (ptr < args->path) {
2519 ret = -ENAMETOOLONG;
2524 read_extent_buffer(leaf, ptr,
2525 (unsigned long)(iref + 1), len);
2527 /* Check the read+exec permission of this directory */
2528 ret = btrfs_previous_item(root, path, dirid,
2529 BTRFS_INODE_ITEM_KEY);
2532 } else if (ret > 0) {
2537 leaf = path->nodes[0];
2538 slot = path->slots[0];
2539 btrfs_item_key_to_cpu(leaf, &key2, slot);
2540 if (key2.objectid != dirid) {
2545 temp_inode = btrfs_iget(sb, key2.objectid, root);
2546 if (IS_ERR(temp_inode)) {
2547 ret = PTR_ERR(temp_inode);
2550 ret = inode_permission(temp_inode, MAY_READ | MAY_EXEC);
2557 if (key.offset == upper_limit.objectid)
2559 if (key.objectid == BTRFS_FIRST_FREE_OBJECTID) {
2564 btrfs_release_path(path);
2565 key.objectid = key.offset;
2566 key.offset = (u64)-1;
2567 dirid = key.objectid;
2570 memmove(args->path, ptr, total_len);
2571 args->path[total_len] = '\0';
2572 btrfs_put_root(root);
2574 btrfs_release_path(path);
2577 /* Get the bottom subvolume's name from ROOT_REF */
2578 key.objectid = treeid;
2579 key.type = BTRFS_ROOT_REF_KEY;
2580 key.offset = args->treeid;
2581 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
2584 } else if (ret > 0) {
2589 leaf = path->nodes[0];
2590 slot = path->slots[0];
2591 btrfs_item_key_to_cpu(leaf, &key, slot);
2593 item_off = btrfs_item_ptr_offset(leaf, slot);
2594 item_len = btrfs_item_size_nr(leaf, slot);
2595 /* Check if dirid in ROOT_REF corresponds to passed dirid */
2596 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2597 if (args->dirid != btrfs_root_ref_dirid(leaf, rref)) {
2602 /* Copy subvolume's name */
2603 item_off += sizeof(struct btrfs_root_ref);
2604 item_len -= sizeof(struct btrfs_root_ref);
2605 read_extent_buffer(leaf, args->name, item_off, item_len);
2606 args->name[item_len] = 0;
2609 btrfs_put_root(root);
2611 btrfs_free_path(path);
2615 static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2618 struct btrfs_ioctl_ino_lookup_args *args;
2619 struct inode *inode;
2622 args = memdup_user(argp, sizeof(*args));
2624 return PTR_ERR(args);
2626 inode = file_inode(file);
2629 * Unprivileged query to obtain the containing subvolume root id. The
2630 * path is reset so it's consistent with btrfs_search_path_in_tree.
2632 if (args->treeid == 0)
2633 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2635 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2640 if (!capable(CAP_SYS_ADMIN)) {
2645 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2646 args->treeid, args->objectid,
2650 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2658 * Version of ino_lookup ioctl (unprivileged)
2660 * The main differences from ino_lookup ioctl are:
2662 * 1. Read + Exec permission will be checked using inode_permission() during
2663 * path construction. -EACCES will be returned in case of failure.
2664 * 2. Path construction will be stopped at the inode number which corresponds
2665 * to the fd with which this ioctl is called. If constructed path does not
2666 * exist under fd's inode, -EACCES will be returned.
2667 * 3. The name of bottom subvolume is also searched and filled.
2669 static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
2671 struct btrfs_ioctl_ino_lookup_user_args *args;
2672 struct inode *inode;
2675 args = memdup_user(argp, sizeof(*args));
2677 return PTR_ERR(args);
2679 inode = file_inode(file);
2681 if (args->dirid == BTRFS_FIRST_FREE_OBJECTID &&
2682 BTRFS_I(inode)->location.objectid != BTRFS_FIRST_FREE_OBJECTID) {
2684 * The subvolume does not exist under fd with which this is
2691 ret = btrfs_search_path_in_tree_user(inode, args);
2693 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2700 /* Get the subvolume information in BTRFS_ROOT_ITEM and BTRFS_ROOT_BACKREF */
2701 static int btrfs_ioctl_get_subvol_info(struct file *file, void __user *argp)
2703 struct btrfs_ioctl_get_subvol_info_args *subvol_info;
2704 struct btrfs_fs_info *fs_info;
2705 struct btrfs_root *root;
2706 struct btrfs_path *path;
2707 struct btrfs_key key;
2708 struct btrfs_root_item *root_item;
2709 struct btrfs_root_ref *rref;
2710 struct extent_buffer *leaf;
2711 unsigned long item_off;
2712 unsigned long item_len;
2713 struct inode *inode;
2717 path = btrfs_alloc_path();
2721 subvol_info = kzalloc(sizeof(*subvol_info), GFP_KERNEL);
2723 btrfs_free_path(path);
2727 inode = file_inode(file);
2728 fs_info = BTRFS_I(inode)->root->fs_info;
2730 /* Get root_item of inode's subvolume */
2731 key.objectid = BTRFS_I(inode)->root->root_key.objectid;
2732 root = btrfs_get_fs_root(fs_info, key.objectid, true);
2734 ret = PTR_ERR(root);
2737 root_item = &root->root_item;
2739 subvol_info->treeid = key.objectid;
2741 subvol_info->generation = btrfs_root_generation(root_item);
2742 subvol_info->flags = btrfs_root_flags(root_item);
2744 memcpy(subvol_info->uuid, root_item->uuid, BTRFS_UUID_SIZE);
2745 memcpy(subvol_info->parent_uuid, root_item->parent_uuid,
2747 memcpy(subvol_info->received_uuid, root_item->received_uuid,
2750 subvol_info->ctransid = btrfs_root_ctransid(root_item);
2751 subvol_info->ctime.sec = btrfs_stack_timespec_sec(&root_item->ctime);
2752 subvol_info->ctime.nsec = btrfs_stack_timespec_nsec(&root_item->ctime);
2754 subvol_info->otransid = btrfs_root_otransid(root_item);
2755 subvol_info->otime.sec = btrfs_stack_timespec_sec(&root_item->otime);
2756 subvol_info->otime.nsec = btrfs_stack_timespec_nsec(&root_item->otime);
2758 subvol_info->stransid = btrfs_root_stransid(root_item);
2759 subvol_info->stime.sec = btrfs_stack_timespec_sec(&root_item->stime);
2760 subvol_info->stime.nsec = btrfs_stack_timespec_nsec(&root_item->stime);
2762 subvol_info->rtransid = btrfs_root_rtransid(root_item);
2763 subvol_info->rtime.sec = btrfs_stack_timespec_sec(&root_item->rtime);
2764 subvol_info->rtime.nsec = btrfs_stack_timespec_nsec(&root_item->rtime);
2766 if (key.objectid != BTRFS_FS_TREE_OBJECTID) {
2767 /* Search root tree for ROOT_BACKREF of this subvolume */
2768 key.type = BTRFS_ROOT_BACKREF_KEY;
2770 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
2773 } else if (path->slots[0] >=
2774 btrfs_header_nritems(path->nodes[0])) {
2775 ret = btrfs_next_leaf(fs_info->tree_root, path);
2778 } else if (ret > 0) {
2784 leaf = path->nodes[0];
2785 slot = path->slots[0];
2786 btrfs_item_key_to_cpu(leaf, &key, slot);
2787 if (key.objectid == subvol_info->treeid &&
2788 key.type == BTRFS_ROOT_BACKREF_KEY) {
2789 subvol_info->parent_id = key.offset;
2791 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2792 subvol_info->dirid = btrfs_root_ref_dirid(leaf, rref);
2794 item_off = btrfs_item_ptr_offset(leaf, slot)
2795 + sizeof(struct btrfs_root_ref);
2796 item_len = btrfs_item_size_nr(leaf, slot)
2797 - sizeof(struct btrfs_root_ref);
2798 read_extent_buffer(leaf, subvol_info->name,
2799 item_off, item_len);
2806 if (copy_to_user(argp, subvol_info, sizeof(*subvol_info)))
2810 btrfs_put_root(root);
2812 btrfs_free_path(path);
2818 * Return ROOT_REF information of the subvolume containing this inode
2819 * except the subvolume name.
2821 static int btrfs_ioctl_get_subvol_rootref(struct file *file, void __user *argp)
2823 struct btrfs_ioctl_get_subvol_rootref_args *rootrefs;
2824 struct btrfs_root_ref *rref;
2825 struct btrfs_root *root;
2826 struct btrfs_path *path;
2827 struct btrfs_key key;
2828 struct extent_buffer *leaf;
2829 struct inode *inode;
2835 path = btrfs_alloc_path();
2839 rootrefs = memdup_user(argp, sizeof(*rootrefs));
2840 if (IS_ERR(rootrefs)) {
2841 btrfs_free_path(path);
2842 return PTR_ERR(rootrefs);
2845 inode = file_inode(file);
2846 root = BTRFS_I(inode)->root->fs_info->tree_root;
2847 objectid = BTRFS_I(inode)->root->root_key.objectid;
2849 key.objectid = objectid;
2850 key.type = BTRFS_ROOT_REF_KEY;
2851 key.offset = rootrefs->min_treeid;
2854 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2857 } else if (path->slots[0] >=
2858 btrfs_header_nritems(path->nodes[0])) {
2859 ret = btrfs_next_leaf(root, path);
2862 } else if (ret > 0) {
2868 leaf = path->nodes[0];
2869 slot = path->slots[0];
2871 btrfs_item_key_to_cpu(leaf, &key, slot);
2872 if (key.objectid != objectid || key.type != BTRFS_ROOT_REF_KEY) {
2877 if (found == BTRFS_MAX_ROOTREF_BUFFER_NUM) {
2882 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2883 rootrefs->rootref[found].treeid = key.offset;
2884 rootrefs->rootref[found].dirid =
2885 btrfs_root_ref_dirid(leaf, rref);
2888 ret = btrfs_next_item(root, path);
2891 } else if (ret > 0) {
2898 if (!ret || ret == -EOVERFLOW) {
2899 rootrefs->num_items = found;
2900 /* update min_treeid for next search */
2902 rootrefs->min_treeid =
2903 rootrefs->rootref[found - 1].treeid + 1;
2904 if (copy_to_user(argp, rootrefs, sizeof(*rootrefs)))
2909 btrfs_free_path(path);
2914 static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2918 struct dentry *parent = file->f_path.dentry;
2919 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
2920 struct dentry *dentry;
2921 struct inode *dir = d_inode(parent);
2922 struct inode *inode;
2923 struct btrfs_root *root = BTRFS_I(dir)->root;
2924 struct btrfs_root *dest = NULL;
2925 struct btrfs_ioctl_vol_args *vol_args = NULL;
2926 struct btrfs_ioctl_vol_args_v2 *vol_args2 = NULL;
2927 char *subvol_name, *subvol_name_ptr = NULL;
2930 bool destroy_parent = false;
2933 vol_args2 = memdup_user(arg, sizeof(*vol_args2));
2934 if (IS_ERR(vol_args2))
2935 return PTR_ERR(vol_args2);
2937 if (vol_args2->flags & ~BTRFS_SUBVOL_DELETE_ARGS_MASK) {
2943 * If SPEC_BY_ID is not set, we are looking for the subvolume by
2944 * name, same as v1 currently does.
2946 if (!(vol_args2->flags & BTRFS_SUBVOL_SPEC_BY_ID)) {
2947 vol_args2->name[BTRFS_SUBVOL_NAME_MAX] = 0;
2948 subvol_name = vol_args2->name;
2950 err = mnt_want_write_file(file);
2954 if (vol_args2->subvolid < BTRFS_FIRST_FREE_OBJECTID) {
2959 err = mnt_want_write_file(file);
2963 dentry = btrfs_get_dentry(fs_info->sb,
2964 BTRFS_FIRST_FREE_OBJECTID,
2965 vol_args2->subvolid, 0, 0);
2966 if (IS_ERR(dentry)) {
2967 err = PTR_ERR(dentry);
2968 goto out_drop_write;
2972 * Change the default parent since the subvolume being
2973 * deleted can be outside of the current mount point.
2975 parent = btrfs_get_parent(dentry);
2978 * At this point dentry->d_name can point to '/' if the
2979 * subvolume we want to destroy is outsite of the
2980 * current mount point, so we need to release the
2981 * current dentry and execute the lookup to return a new
2982 * one with ->d_name pointing to the
2983 * <mount point>/subvol_name.
2986 if (IS_ERR(parent)) {
2987 err = PTR_ERR(parent);
2988 goto out_drop_write;
2990 dir = d_inode(parent);
2993 * If v2 was used with SPEC_BY_ID, a new parent was
2994 * allocated since the subvolume can be outside of the
2995 * current mount point. Later on we need to release this
2996 * new parent dentry.
2998 destroy_parent = true;
3000 subvol_name_ptr = btrfs_get_subvol_name_from_objectid(
3001 fs_info, vol_args2->subvolid);
3002 if (IS_ERR(subvol_name_ptr)) {
3003 err = PTR_ERR(subvol_name_ptr);
3006 /* subvol_name_ptr is already NULL termined */
3007 subvol_name = (char *)kbasename(subvol_name_ptr);
3010 vol_args = memdup_user(arg, sizeof(*vol_args));
3011 if (IS_ERR(vol_args))
3012 return PTR_ERR(vol_args);
3014 vol_args->name[BTRFS_PATH_NAME_MAX] = 0;
3015 subvol_name = vol_args->name;
3017 err = mnt_want_write_file(file);
3022 subvol_namelen = strlen(subvol_name);
3024 if (strchr(subvol_name, '/') ||
3025 strncmp(subvol_name, "..", subvol_namelen) == 0) {
3027 goto free_subvol_name;
3030 if (!S_ISDIR(dir->i_mode)) {
3032 goto free_subvol_name;
3035 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
3037 goto free_subvol_name;
3038 dentry = lookup_one_len(subvol_name, parent, subvol_namelen);
3039 if (IS_ERR(dentry)) {
3040 err = PTR_ERR(dentry);
3041 goto out_unlock_dir;
3044 if (d_really_is_negative(dentry)) {
3049 inode = d_inode(dentry);
3050 dest = BTRFS_I(inode)->root;
3051 if (!capable(CAP_SYS_ADMIN)) {
3053 * Regular user. Only allow this with a special mount
3054 * option, when the user has write+exec access to the
3055 * subvol root, and when rmdir(2) would have been
3058 * Note that this is _not_ check that the subvol is
3059 * empty or doesn't contain data that we wouldn't
3060 * otherwise be able to delete.
3062 * Users who want to delete empty subvols should try
3066 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
3070 * Do not allow deletion if the parent dir is the same
3071 * as the dir to be deleted. That means the ioctl
3072 * must be called on the dentry referencing the root
3073 * of the subvol, not a random directory contained
3080 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
3085 /* check if subvolume may be deleted by a user */
3086 err = btrfs_may_delete(dir, dentry, 1);
3090 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
3096 err = btrfs_delete_subvolume(dir, dentry);
3097 inode_unlock(inode);
3099 fsnotify_rmdir(dir, dentry);
3108 kfree(subvol_name_ptr);
3113 mnt_drop_write_file(file);
3120 static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
3122 struct inode *inode = file_inode(file);
3123 struct btrfs_root *root = BTRFS_I(inode)->root;
3124 struct btrfs_ioctl_defrag_range_args *range;
3127 ret = mnt_want_write_file(file);
3131 if (btrfs_root_readonly(root)) {
3136 switch (inode->i_mode & S_IFMT) {
3138 if (!capable(CAP_SYS_ADMIN)) {
3142 ret = btrfs_defrag_root(root);
3146 * Note that this does not check the file descriptor for write
3147 * access. This prevents defragmenting executables that are
3148 * running and allows defrag on files open in read-only mode.
3150 if (!capable(CAP_SYS_ADMIN) &&
3151 inode_permission(inode, MAY_WRITE)) {
3156 range = kzalloc(sizeof(*range), GFP_KERNEL);
3163 if (copy_from_user(range, argp,
3169 /* compression requires us to start the IO */
3170 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
3171 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
3172 range->extent_thresh = (u32)-1;
3175 /* the rest are all set to zero by kzalloc */
3176 range->len = (u64)-1;
3178 ret = btrfs_defrag_file(file_inode(file), file,
3179 range, BTRFS_OLDEST_GENERATION, 0);
3188 mnt_drop_write_file(file);
3192 static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
3194 struct btrfs_ioctl_vol_args *vol_args;
3197 if (!capable(CAP_SYS_ADMIN))
3200 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_ADD))
3201 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3203 vol_args = memdup_user(arg, sizeof(*vol_args));
3204 if (IS_ERR(vol_args)) {
3205 ret = PTR_ERR(vol_args);
3209 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
3210 ret = btrfs_init_new_device(fs_info, vol_args->name);
3213 btrfs_info(fs_info, "disk added %s", vol_args->name);
3217 btrfs_exclop_finish(fs_info);
3221 static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
3223 struct inode *inode = file_inode(file);
3224 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
3225 struct btrfs_ioctl_vol_args_v2 *vol_args;
3228 if (!capable(CAP_SYS_ADMIN))
3231 ret = mnt_want_write_file(file);
3235 vol_args = memdup_user(arg, sizeof(*vol_args));
3236 if (IS_ERR(vol_args)) {
3237 ret = PTR_ERR(vol_args);
3241 if (vol_args->flags & ~BTRFS_DEVICE_REMOVE_ARGS_MASK) {
3246 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REMOVE)) {
3247 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3251 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
3252 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
3254 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
3255 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
3257 btrfs_exclop_finish(fs_info);
3260 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
3261 btrfs_info(fs_info, "device deleted: id %llu",
3264 btrfs_info(fs_info, "device deleted: %s",
3270 mnt_drop_write_file(file);
3274 static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
3276 struct inode *inode = file_inode(file);
3277 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
3278 struct btrfs_ioctl_vol_args *vol_args;
3281 if (!capable(CAP_SYS_ADMIN))
3284 ret = mnt_want_write_file(file);
3288 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REMOVE)) {
3289 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3290 goto out_drop_write;
3293 vol_args = memdup_user(arg, sizeof(*vol_args));
3294 if (IS_ERR(vol_args)) {
3295 ret = PTR_ERR(vol_args);
3299 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
3300 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
3303 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
3306 btrfs_exclop_finish(fs_info);
3308 mnt_drop_write_file(file);
3313 static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
3316 struct btrfs_ioctl_fs_info_args *fi_args;
3317 struct btrfs_device *device;
3318 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
3322 fi_args = memdup_user(arg, sizeof(*fi_args));
3323 if (IS_ERR(fi_args))
3324 return PTR_ERR(fi_args);
3326 flags_in = fi_args->flags;
3327 memset(fi_args, 0, sizeof(*fi_args));
3330 fi_args->num_devices = fs_devices->num_devices;
3332 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
3333 if (device->devid > fi_args->max_id)
3334 fi_args->max_id = device->devid;
3338 memcpy(&fi_args->fsid, fs_devices->fsid, sizeof(fi_args->fsid));
3339 fi_args->nodesize = fs_info->nodesize;
3340 fi_args->sectorsize = fs_info->sectorsize;
3341 fi_args->clone_alignment = fs_info->sectorsize;
3343 if (flags_in & BTRFS_FS_INFO_FLAG_CSUM_INFO) {
3344 fi_args->csum_type = btrfs_super_csum_type(fs_info->super_copy);
3345 fi_args->csum_size = btrfs_super_csum_size(fs_info->super_copy);
3346 fi_args->flags |= BTRFS_FS_INFO_FLAG_CSUM_INFO;
3349 if (flags_in & BTRFS_FS_INFO_FLAG_GENERATION) {
3350 fi_args->generation = fs_info->generation;
3351 fi_args->flags |= BTRFS_FS_INFO_FLAG_GENERATION;
3354 if (flags_in & BTRFS_FS_INFO_FLAG_METADATA_UUID) {
3355 memcpy(&fi_args->metadata_uuid, fs_devices->metadata_uuid,
3356 sizeof(fi_args->metadata_uuid));
3357 fi_args->flags |= BTRFS_FS_INFO_FLAG_METADATA_UUID;
3360 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
3367 static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
3370 struct btrfs_ioctl_dev_info_args *di_args;
3371 struct btrfs_device *dev;
3373 char *s_uuid = NULL;
3375 di_args = memdup_user(arg, sizeof(*di_args));
3376 if (IS_ERR(di_args))
3377 return PTR_ERR(di_args);
3379 if (!btrfs_is_empty_uuid(di_args->uuid))
3380 s_uuid = di_args->uuid;
3383 dev = btrfs_find_device(fs_info->fs_devices, di_args->devid, s_uuid,
3391 di_args->devid = dev->devid;
3392 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
3393 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
3394 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
3396 strncpy(di_args->path, rcu_str_deref(dev->name),
3397 sizeof(di_args->path) - 1);
3398 di_args->path[sizeof(di_args->path) - 1] = 0;
3400 di_args->path[0] = '\0';
3405 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
3412 static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3414 struct inode *inode = file_inode(file);
3415 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
3416 struct btrfs_root *root = BTRFS_I(inode)->root;
3417 struct btrfs_root *new_root;
3418 struct btrfs_dir_item *di;
3419 struct btrfs_trans_handle *trans;
3420 struct btrfs_path *path = NULL;
3421 struct btrfs_disk_key disk_key;
3426 if (!capable(CAP_SYS_ADMIN))
3429 ret = mnt_want_write_file(file);
3433 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3439 objectid = BTRFS_FS_TREE_OBJECTID;
3441 new_root = btrfs_get_fs_root(fs_info, objectid, true);
3442 if (IS_ERR(new_root)) {
3443 ret = PTR_ERR(new_root);
3446 if (!is_fstree(new_root->root_key.objectid)) {
3451 path = btrfs_alloc_path();
3457 trans = btrfs_start_transaction(root, 1);
3458 if (IS_ERR(trans)) {
3459 ret = PTR_ERR(trans);
3463 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3464 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
3465 dir_id, "default", 7, 1);
3466 if (IS_ERR_OR_NULL(di)) {
3467 btrfs_release_path(path);
3468 btrfs_end_transaction(trans);
3470 "Umm, you don't have the default diritem, this isn't going to work");
3475 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3476 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3477 btrfs_mark_buffer_dirty(path->nodes[0]);
3478 btrfs_release_path(path);
3480 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
3481 btrfs_end_transaction(trans);
3483 btrfs_put_root(new_root);
3484 btrfs_free_path(path);
3486 mnt_drop_write_file(file);
3490 static void get_block_group_info(struct list_head *groups_list,
3491 struct btrfs_ioctl_space_info *space)
3493 struct btrfs_block_group *block_group;
3495 space->total_bytes = 0;
3496 space->used_bytes = 0;
3498 list_for_each_entry(block_group, groups_list, list) {
3499 space->flags = block_group->flags;
3500 space->total_bytes += block_group->length;
3501 space->used_bytes += block_group->used;
3505 static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
3508 struct btrfs_ioctl_space_args space_args;
3509 struct btrfs_ioctl_space_info space;
3510 struct btrfs_ioctl_space_info *dest;
3511 struct btrfs_ioctl_space_info *dest_orig;
3512 struct btrfs_ioctl_space_info __user *user_dest;
3513 struct btrfs_space_info *info;
3514 static const u64 types[] = {
3515 BTRFS_BLOCK_GROUP_DATA,
3516 BTRFS_BLOCK_GROUP_SYSTEM,
3517 BTRFS_BLOCK_GROUP_METADATA,
3518 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
3526 if (copy_from_user(&space_args,
3527 (struct btrfs_ioctl_space_args __user *)arg,
3528 sizeof(space_args)))
3531 for (i = 0; i < num_types; i++) {
3532 struct btrfs_space_info *tmp;
3535 list_for_each_entry(tmp, &fs_info->space_info, list) {
3536 if (tmp->flags == types[i]) {
3545 down_read(&info->groups_sem);
3546 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3547 if (!list_empty(&info->block_groups[c]))
3550 up_read(&info->groups_sem);
3554 * Global block reserve, exported as a space_info
3558 /* space_slots == 0 means they are asking for a count */
3559 if (space_args.space_slots == 0) {
3560 space_args.total_spaces = slot_count;
3564 slot_count = min_t(u64, space_args.space_slots, slot_count);
3566 alloc_size = sizeof(*dest) * slot_count;
3568 /* we generally have at most 6 or so space infos, one for each raid
3569 * level. So, a whole page should be more than enough for everyone
3571 if (alloc_size > PAGE_SIZE)
3574 space_args.total_spaces = 0;
3575 dest = kmalloc(alloc_size, GFP_KERNEL);
3580 /* now we have a buffer to copy into */
3581 for (i = 0; i < num_types; i++) {
3582 struct btrfs_space_info *tmp;
3588 list_for_each_entry(tmp, &fs_info->space_info, list) {
3589 if (tmp->flags == types[i]) {
3597 down_read(&info->groups_sem);
3598 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3599 if (!list_empty(&info->block_groups[c])) {
3600 get_block_group_info(&info->block_groups[c],
3602 memcpy(dest, &space, sizeof(space));
3604 space_args.total_spaces++;
3610 up_read(&info->groups_sem);
3614 * Add global block reserve
3617 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
3619 spin_lock(&block_rsv->lock);
3620 space.total_bytes = block_rsv->size;
3621 space.used_bytes = block_rsv->size - block_rsv->reserved;
3622 spin_unlock(&block_rsv->lock);
3623 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3624 memcpy(dest, &space, sizeof(space));
3625 space_args.total_spaces++;
3628 user_dest = (struct btrfs_ioctl_space_info __user *)
3629 (arg + sizeof(struct btrfs_ioctl_space_args));
3631 if (copy_to_user(user_dest, dest_orig, alloc_size))
3636 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
3642 static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3645 struct btrfs_trans_handle *trans;
3649 trans = btrfs_attach_transaction_barrier(root);
3650 if (IS_ERR(trans)) {
3651 if (PTR_ERR(trans) != -ENOENT)
3652 return PTR_ERR(trans);
3654 /* No running transaction, don't bother */
3655 transid = root->fs_info->last_trans_committed;
3658 transid = trans->transid;
3659 ret = btrfs_commit_transaction_async(trans, 0);
3661 btrfs_end_transaction(trans);
3666 if (copy_to_user(argp, &transid, sizeof(transid)))
3671 static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
3677 if (copy_from_user(&transid, argp, sizeof(transid)))
3680 transid = 0; /* current trans */
3682 return btrfs_wait_for_commit(fs_info, transid);
3685 static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
3687 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
3688 struct btrfs_ioctl_scrub_args *sa;
3691 if (!capable(CAP_SYS_ADMIN))
3694 sa = memdup_user(arg, sizeof(*sa));
3698 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3699 ret = mnt_want_write_file(file);
3704 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
3705 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3709 * Copy scrub args to user space even if btrfs_scrub_dev() returned an
3710 * error. This is important as it allows user space to know how much
3711 * progress scrub has done. For example, if scrub is canceled we get
3712 * -ECANCELED from btrfs_scrub_dev() and return that error back to user
3713 * space. Later user space can inspect the progress from the structure
3714 * btrfs_ioctl_scrub_args and resume scrub from where it left off
3715 * previously (btrfs-progs does this).
3716 * If we fail to copy the btrfs_ioctl_scrub_args structure to user space
3717 * then return -EFAULT to signal the structure was not copied or it may
3718 * be corrupt and unreliable due to a partial copy.
3720 if (copy_to_user(arg, sa, sizeof(*sa)))
3723 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3724 mnt_drop_write_file(file);
3730 static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
3732 if (!capable(CAP_SYS_ADMIN))
3735 return btrfs_scrub_cancel(fs_info);
3738 static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
3741 struct btrfs_ioctl_scrub_args *sa;
3744 if (!capable(CAP_SYS_ADMIN))
3747 sa = memdup_user(arg, sizeof(*sa));
3751 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
3753 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
3760 static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
3763 struct btrfs_ioctl_get_dev_stats *sa;
3766 sa = memdup_user(arg, sizeof(*sa));
3770 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3775 ret = btrfs_get_dev_stats(fs_info, sa);
3777 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
3784 static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
3787 struct btrfs_ioctl_dev_replace_args *p;
3790 if (!capable(CAP_SYS_ADMIN))
3793 p = memdup_user(arg, sizeof(*p));
3798 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
3799 if (sb_rdonly(fs_info->sb)) {
3803 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REPLACE)) {
3804 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3806 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
3807 btrfs_exclop_finish(fs_info);
3810 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
3811 btrfs_dev_replace_status(fs_info, p);
3814 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
3815 p->result = btrfs_dev_replace_cancel(fs_info);
3823 if ((ret == 0 || ret == -ECANCELED) && copy_to_user(arg, p, sizeof(*p)))
3830 static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3836 struct btrfs_ioctl_ino_path_args *ipa = NULL;
3837 struct inode_fs_paths *ipath = NULL;
3838 struct btrfs_path *path;
3840 if (!capable(CAP_DAC_READ_SEARCH))
3843 path = btrfs_alloc_path();
3849 ipa = memdup_user(arg, sizeof(*ipa));
3856 size = min_t(u32, ipa->size, 4096);
3857 ipath = init_ipath(size, root, path);
3858 if (IS_ERR(ipath)) {
3859 ret = PTR_ERR(ipath);
3864 ret = paths_from_inode(ipa->inum, ipath);
3868 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
3869 rel_ptr = ipath->fspath->val[i] -
3870 (u64)(unsigned long)ipath->fspath->val;
3871 ipath->fspath->val[i] = rel_ptr;
3874 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
3875 ipath->fspath, size);
3882 btrfs_free_path(path);
3889 static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3891 struct btrfs_data_container *inodes = ctx;
3892 const size_t c = 3 * sizeof(u64);
3894 if (inodes->bytes_left >= c) {
3895 inodes->bytes_left -= c;
3896 inodes->val[inodes->elem_cnt] = inum;
3897 inodes->val[inodes->elem_cnt + 1] = offset;
3898 inodes->val[inodes->elem_cnt + 2] = root;
3899 inodes->elem_cnt += 3;
3901 inodes->bytes_missing += c - inodes->bytes_left;
3902 inodes->bytes_left = 0;
3903 inodes->elem_missed += 3;
3909 static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
3910 void __user *arg, int version)
3914 struct btrfs_ioctl_logical_ino_args *loi;
3915 struct btrfs_data_container *inodes = NULL;
3916 struct btrfs_path *path = NULL;
3919 if (!capable(CAP_SYS_ADMIN))
3922 loi = memdup_user(arg, sizeof(*loi));
3924 return PTR_ERR(loi);
3927 ignore_offset = false;
3928 size = min_t(u32, loi->size, SZ_64K);
3930 /* All reserved bits must be 0 for now */
3931 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
3935 /* Only accept flags we have defined so far */
3936 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
3940 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
3941 size = min_t(u32, loi->size, SZ_16M);
3944 path = btrfs_alloc_path();
3950 inodes = init_data_container(size);
3951 if (IS_ERR(inodes)) {
3952 ret = PTR_ERR(inodes);
3957 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
3958 build_ino_list, inodes, ignore_offset);
3964 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
3970 btrfs_free_path(path);
3978 void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
3979 struct btrfs_ioctl_balance_args *bargs)
3981 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3983 bargs->flags = bctl->flags;
3985 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags))
3986 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3987 if (atomic_read(&fs_info->balance_pause_req))
3988 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
3989 if (atomic_read(&fs_info->balance_cancel_req))
3990 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
3992 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3993 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3994 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
3996 spin_lock(&fs_info->balance_lock);
3997 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3998 spin_unlock(&fs_info->balance_lock);
4001 static long btrfs_ioctl_balance(struct file *file, void __user *arg)
4003 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4004 struct btrfs_fs_info *fs_info = root->fs_info;
4005 struct btrfs_ioctl_balance_args *bargs;
4006 struct btrfs_balance_control *bctl;
4007 bool need_unlock; /* for mut. excl. ops lock */
4010 if (!capable(CAP_SYS_ADMIN))
4013 ret = mnt_want_write_file(file);
4018 if (btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) {
4019 mutex_lock(&fs_info->balance_mutex);
4025 * mut. excl. ops lock is locked. Three possibilities:
4026 * (1) some other op is running
4027 * (2) balance is running
4028 * (3) balance is paused -- special case (think resume)
4030 mutex_lock(&fs_info->balance_mutex);
4031 if (fs_info->balance_ctl) {
4032 /* this is either (2) or (3) */
4033 if (!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
4034 mutex_unlock(&fs_info->balance_mutex);
4036 * Lock released to allow other waiters to continue,
4037 * we'll reexamine the status again.
4039 mutex_lock(&fs_info->balance_mutex);
4041 if (fs_info->balance_ctl &&
4042 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
4044 need_unlock = false;
4048 mutex_unlock(&fs_info->balance_mutex);
4052 mutex_unlock(&fs_info->balance_mutex);
4058 mutex_unlock(&fs_info->balance_mutex);
4059 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
4066 bargs = memdup_user(arg, sizeof(*bargs));
4067 if (IS_ERR(bargs)) {
4068 ret = PTR_ERR(bargs);
4072 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4073 if (!fs_info->balance_ctl) {
4078 bctl = fs_info->balance_ctl;
4079 spin_lock(&fs_info->balance_lock);
4080 bctl->flags |= BTRFS_BALANCE_RESUME;
4081 spin_unlock(&fs_info->balance_lock);
4089 if (fs_info->balance_ctl) {
4094 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
4101 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4102 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4103 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4105 bctl->flags = bargs->flags;
4107 /* balance everything - no filters */
4108 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
4111 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4118 * Ownership of bctl and exclusive operation goes to btrfs_balance.
4119 * bctl is freed in reset_balance_state, or, if restriper was paused
4120 * all the way until unmount, in free_fs_info. The flag should be
4121 * cleared after reset_balance_state.
4123 need_unlock = false;
4125 ret = btrfs_balance(fs_info, bctl, bargs);
4128 if ((ret == 0 || ret == -ECANCELED) && arg) {
4129 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4138 mutex_unlock(&fs_info->balance_mutex);
4140 btrfs_exclop_finish(fs_info);
4142 mnt_drop_write_file(file);
4146 static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
4148 if (!capable(CAP_SYS_ADMIN))
4152 case BTRFS_BALANCE_CTL_PAUSE:
4153 return btrfs_pause_balance(fs_info);
4154 case BTRFS_BALANCE_CTL_CANCEL:
4155 return btrfs_cancel_balance(fs_info);
4161 static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
4164 struct btrfs_ioctl_balance_args *bargs;
4167 if (!capable(CAP_SYS_ADMIN))
4170 mutex_lock(&fs_info->balance_mutex);
4171 if (!fs_info->balance_ctl) {
4176 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
4182 btrfs_update_ioctl_balance_args(fs_info, bargs);
4184 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4189 mutex_unlock(&fs_info->balance_mutex);
4193 static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
4195 struct inode *inode = file_inode(file);
4196 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4197 struct btrfs_ioctl_quota_ctl_args *sa;
4200 if (!capable(CAP_SYS_ADMIN))
4203 ret = mnt_want_write_file(file);
4207 sa = memdup_user(arg, sizeof(*sa));
4213 down_write(&fs_info->subvol_sem);
4216 case BTRFS_QUOTA_CTL_ENABLE:
4217 ret = btrfs_quota_enable(fs_info);
4219 case BTRFS_QUOTA_CTL_DISABLE:
4220 ret = btrfs_quota_disable(fs_info);
4228 up_write(&fs_info->subvol_sem);
4230 mnt_drop_write_file(file);
4234 static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
4236 struct inode *inode = file_inode(file);
4237 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4238 struct btrfs_root *root = BTRFS_I(inode)->root;
4239 struct btrfs_ioctl_qgroup_assign_args *sa;
4240 struct btrfs_trans_handle *trans;
4244 if (!capable(CAP_SYS_ADMIN))
4247 ret = mnt_want_write_file(file);
4251 sa = memdup_user(arg, sizeof(*sa));
4257 trans = btrfs_join_transaction(root);
4258 if (IS_ERR(trans)) {
4259 ret = PTR_ERR(trans);
4264 ret = btrfs_add_qgroup_relation(trans, sa->src, sa->dst);
4266 ret = btrfs_del_qgroup_relation(trans, sa->src, sa->dst);
4269 /* update qgroup status and info */
4270 err = btrfs_run_qgroups(trans);
4272 btrfs_handle_fs_error(fs_info, err,
4273 "failed to update qgroup status and info");
4274 err = btrfs_end_transaction(trans);
4281 mnt_drop_write_file(file);
4285 static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
4287 struct inode *inode = file_inode(file);
4288 struct btrfs_root *root = BTRFS_I(inode)->root;
4289 struct btrfs_ioctl_qgroup_create_args *sa;
4290 struct btrfs_trans_handle *trans;
4294 if (!capable(CAP_SYS_ADMIN))
4297 ret = mnt_want_write_file(file);
4301 sa = memdup_user(arg, sizeof(*sa));
4307 if (!sa->qgroupid) {
4312 trans = btrfs_join_transaction(root);
4313 if (IS_ERR(trans)) {
4314 ret = PTR_ERR(trans);
4319 ret = btrfs_create_qgroup(trans, sa->qgroupid);
4321 ret = btrfs_remove_qgroup(trans, sa->qgroupid);
4324 err = btrfs_end_transaction(trans);
4331 mnt_drop_write_file(file);
4335 static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
4337 struct inode *inode = file_inode(file);
4338 struct btrfs_root *root = BTRFS_I(inode)->root;
4339 struct btrfs_ioctl_qgroup_limit_args *sa;
4340 struct btrfs_trans_handle *trans;
4345 if (!capable(CAP_SYS_ADMIN))
4348 ret = mnt_want_write_file(file);
4352 sa = memdup_user(arg, sizeof(*sa));
4358 trans = btrfs_join_transaction(root);
4359 if (IS_ERR(trans)) {
4360 ret = PTR_ERR(trans);
4364 qgroupid = sa->qgroupid;
4366 /* take the current subvol as qgroup */
4367 qgroupid = root->root_key.objectid;
4370 ret = btrfs_limit_qgroup(trans, qgroupid, &sa->lim);
4372 err = btrfs_end_transaction(trans);
4379 mnt_drop_write_file(file);
4383 static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4385 struct inode *inode = file_inode(file);
4386 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4387 struct btrfs_ioctl_quota_rescan_args *qsa;
4390 if (!capable(CAP_SYS_ADMIN))
4393 ret = mnt_want_write_file(file);
4397 qsa = memdup_user(arg, sizeof(*qsa));
4408 ret = btrfs_qgroup_rescan(fs_info);
4413 mnt_drop_write_file(file);
4417 static long btrfs_ioctl_quota_rescan_status(struct btrfs_fs_info *fs_info,
4420 struct btrfs_ioctl_quota_rescan_args *qsa;
4423 if (!capable(CAP_SYS_ADMIN))
4426 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
4430 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4432 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
4435 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4442 static long btrfs_ioctl_quota_rescan_wait(struct btrfs_fs_info *fs_info,
4445 if (!capable(CAP_SYS_ADMIN))
4448 return btrfs_qgroup_wait_for_completion(fs_info, true);
4451 static long _btrfs_ioctl_set_received_subvol(struct file *file,
4452 struct btrfs_ioctl_received_subvol_args *sa)
4454 struct inode *inode = file_inode(file);
4455 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4456 struct btrfs_root *root = BTRFS_I(inode)->root;
4457 struct btrfs_root_item *root_item = &root->root_item;
4458 struct btrfs_trans_handle *trans;
4459 struct timespec64 ct = current_time(inode);
4461 int received_uuid_changed;
4463 if (!inode_owner_or_capable(inode))
4466 ret = mnt_want_write_file(file);
4470 down_write(&fs_info->subvol_sem);
4472 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
4477 if (btrfs_root_readonly(root)) {
4484 * 2 - uuid items (received uuid + subvol uuid)
4486 trans = btrfs_start_transaction(root, 3);
4487 if (IS_ERR(trans)) {
4488 ret = PTR_ERR(trans);
4493 sa->rtransid = trans->transid;
4494 sa->rtime.sec = ct.tv_sec;
4495 sa->rtime.nsec = ct.tv_nsec;
4497 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4499 if (received_uuid_changed &&
4500 !btrfs_is_empty_uuid(root_item->received_uuid)) {
4501 ret = btrfs_uuid_tree_remove(trans, root_item->received_uuid,
4502 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4503 root->root_key.objectid);
4504 if (ret && ret != -ENOENT) {
4505 btrfs_abort_transaction(trans, ret);
4506 btrfs_end_transaction(trans);
4510 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4511 btrfs_set_root_stransid(root_item, sa->stransid);
4512 btrfs_set_root_rtransid(root_item, sa->rtransid);
4513 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4514 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4515 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4516 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
4518 ret = btrfs_update_root(trans, fs_info->tree_root,
4519 &root->root_key, &root->root_item);
4521 btrfs_end_transaction(trans);
4524 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
4525 ret = btrfs_uuid_tree_add(trans, sa->uuid,
4526 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4527 root->root_key.objectid);
4528 if (ret < 0 && ret != -EEXIST) {
4529 btrfs_abort_transaction(trans, ret);
4530 btrfs_end_transaction(trans);
4534 ret = btrfs_commit_transaction(trans);
4536 up_write(&fs_info->subvol_sem);
4537 mnt_drop_write_file(file);
4542 static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4545 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4546 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4549 args32 = memdup_user(arg, sizeof(*args32));
4551 return PTR_ERR(args32);
4553 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
4559 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4560 args64->stransid = args32->stransid;
4561 args64->rtransid = args32->rtransid;
4562 args64->stime.sec = args32->stime.sec;
4563 args64->stime.nsec = args32->stime.nsec;
4564 args64->rtime.sec = args32->rtime.sec;
4565 args64->rtime.nsec = args32->rtime.nsec;
4566 args64->flags = args32->flags;
4568 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4572 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4573 args32->stransid = args64->stransid;
4574 args32->rtransid = args64->rtransid;
4575 args32->stime.sec = args64->stime.sec;
4576 args32->stime.nsec = args64->stime.nsec;
4577 args32->rtime.sec = args64->rtime.sec;
4578 args32->rtime.nsec = args64->rtime.nsec;
4579 args32->flags = args64->flags;
4581 ret = copy_to_user(arg, args32, sizeof(*args32));
4592 static long btrfs_ioctl_set_received_subvol(struct file *file,
4595 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4598 sa = memdup_user(arg, sizeof(*sa));
4602 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4607 ret = copy_to_user(arg, sa, sizeof(*sa));
4616 static int btrfs_ioctl_get_fslabel(struct btrfs_fs_info *fs_info,
4621 char label[BTRFS_LABEL_SIZE];
4623 spin_lock(&fs_info->super_lock);
4624 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4625 spin_unlock(&fs_info->super_lock);
4627 len = strnlen(label, BTRFS_LABEL_SIZE);
4629 if (len == BTRFS_LABEL_SIZE) {
4631 "label is too long, return the first %zu bytes",
4635 ret = copy_to_user(arg, label, len);
4637 return ret ? -EFAULT : 0;
4640 static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4642 struct inode *inode = file_inode(file);
4643 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4644 struct btrfs_root *root = BTRFS_I(inode)->root;
4645 struct btrfs_super_block *super_block = fs_info->super_copy;
4646 struct btrfs_trans_handle *trans;
4647 char label[BTRFS_LABEL_SIZE];
4650 if (!capable(CAP_SYS_ADMIN))
4653 if (copy_from_user(label, arg, sizeof(label)))
4656 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
4658 "unable to set label with more than %d bytes",
4659 BTRFS_LABEL_SIZE - 1);
4663 ret = mnt_want_write_file(file);
4667 trans = btrfs_start_transaction(root, 0);
4668 if (IS_ERR(trans)) {
4669 ret = PTR_ERR(trans);
4673 spin_lock(&fs_info->super_lock);
4674 strcpy(super_block->label, label);
4675 spin_unlock(&fs_info->super_lock);
4676 ret = btrfs_commit_transaction(trans);
4679 mnt_drop_write_file(file);
4683 #define INIT_FEATURE_FLAGS(suffix) \
4684 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
4685 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
4686 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
4688 int btrfs_ioctl_get_supported_features(void __user *arg)
4690 static const struct btrfs_ioctl_feature_flags features[3] = {
4691 INIT_FEATURE_FLAGS(SUPP),
4692 INIT_FEATURE_FLAGS(SAFE_SET),
4693 INIT_FEATURE_FLAGS(SAFE_CLEAR)
4696 if (copy_to_user(arg, &features, sizeof(features)))
4702 static int btrfs_ioctl_get_features(struct btrfs_fs_info *fs_info,
4705 struct btrfs_super_block *super_block = fs_info->super_copy;
4706 struct btrfs_ioctl_feature_flags features;
4708 features.compat_flags = btrfs_super_compat_flags(super_block);
4709 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
4710 features.incompat_flags = btrfs_super_incompat_flags(super_block);
4712 if (copy_to_user(arg, &features, sizeof(features)))
4718 static int check_feature_bits(struct btrfs_fs_info *fs_info,
4719 enum btrfs_feature_set set,
4720 u64 change_mask, u64 flags, u64 supported_flags,
4721 u64 safe_set, u64 safe_clear)
4723 const char *type = btrfs_feature_set_name(set);
4725 u64 disallowed, unsupported;
4726 u64 set_mask = flags & change_mask;
4727 u64 clear_mask = ~flags & change_mask;
4729 unsupported = set_mask & ~supported_flags;
4731 names = btrfs_printable_features(set, unsupported);
4734 "this kernel does not support the %s feature bit%s",
4735 names, strchr(names, ',') ? "s" : "");
4739 "this kernel does not support %s bits 0x%llx",
4744 disallowed = set_mask & ~safe_set;
4746 names = btrfs_printable_features(set, disallowed);
4749 "can't set the %s feature bit%s while mounted",
4750 names, strchr(names, ',') ? "s" : "");
4754 "can't set %s bits 0x%llx while mounted",
4759 disallowed = clear_mask & ~safe_clear;
4761 names = btrfs_printable_features(set, disallowed);
4764 "can't clear the %s feature bit%s while mounted",
4765 names, strchr(names, ',') ? "s" : "");
4769 "can't clear %s bits 0x%llx while mounted",
4777 #define check_feature(fs_info, change_mask, flags, mask_base) \
4778 check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
4779 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
4780 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
4781 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
4783 static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
4785 struct inode *inode = file_inode(file);
4786 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4787 struct btrfs_root *root = BTRFS_I(inode)->root;
4788 struct btrfs_super_block *super_block = fs_info->super_copy;
4789 struct btrfs_ioctl_feature_flags flags[2];
4790 struct btrfs_trans_handle *trans;
4794 if (!capable(CAP_SYS_ADMIN))
4797 if (copy_from_user(flags, arg, sizeof(flags)))
4801 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
4802 !flags[0].incompat_flags)
4805 ret = check_feature(fs_info, flags[0].compat_flags,
4806 flags[1].compat_flags, COMPAT);
4810 ret = check_feature(fs_info, flags[0].compat_ro_flags,
4811 flags[1].compat_ro_flags, COMPAT_RO);
4815 ret = check_feature(fs_info, flags[0].incompat_flags,
4816 flags[1].incompat_flags, INCOMPAT);
4820 ret = mnt_want_write_file(file);
4824 trans = btrfs_start_transaction(root, 0);
4825 if (IS_ERR(trans)) {
4826 ret = PTR_ERR(trans);
4827 goto out_drop_write;
4830 spin_lock(&fs_info->super_lock);
4831 newflags = btrfs_super_compat_flags(super_block);
4832 newflags |= flags[0].compat_flags & flags[1].compat_flags;
4833 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
4834 btrfs_set_super_compat_flags(super_block, newflags);
4836 newflags = btrfs_super_compat_ro_flags(super_block);
4837 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
4838 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
4839 btrfs_set_super_compat_ro_flags(super_block, newflags);
4841 newflags = btrfs_super_incompat_flags(super_block);
4842 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
4843 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
4844 btrfs_set_super_incompat_flags(super_block, newflags);
4845 spin_unlock(&fs_info->super_lock);
4847 ret = btrfs_commit_transaction(trans);
4849 mnt_drop_write_file(file);
4854 static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
4856 struct btrfs_ioctl_send_args *arg;
4860 #if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
4861 struct btrfs_ioctl_send_args_32 args32;
4863 ret = copy_from_user(&args32, argp, sizeof(args32));
4866 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
4869 arg->send_fd = args32.send_fd;
4870 arg->clone_sources_count = args32.clone_sources_count;
4871 arg->clone_sources = compat_ptr(args32.clone_sources);
4872 arg->parent_root = args32.parent_root;
4873 arg->flags = args32.flags;
4874 memcpy(arg->reserved, args32.reserved,
4875 sizeof(args32.reserved));
4880 arg = memdup_user(argp, sizeof(*arg));
4882 return PTR_ERR(arg);
4884 ret = btrfs_ioctl_send(file, arg);
4889 long btrfs_ioctl(struct file *file, unsigned int
4890 cmd, unsigned long arg)
4892 struct inode *inode = file_inode(file);
4893 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4894 struct btrfs_root *root = BTRFS_I(inode)->root;
4895 void __user *argp = (void __user *)arg;
4898 case FS_IOC_GETFLAGS:
4899 return btrfs_ioctl_getflags(file, argp);
4900 case FS_IOC_SETFLAGS:
4901 return btrfs_ioctl_setflags(file, argp);
4902 case FS_IOC_GETVERSION:
4903 return btrfs_ioctl_getversion(file, argp);
4904 case FS_IOC_GETFSLABEL:
4905 return btrfs_ioctl_get_fslabel(fs_info, argp);
4906 case FS_IOC_SETFSLABEL:
4907 return btrfs_ioctl_set_fslabel(file, argp);
4909 return btrfs_ioctl_fitrim(fs_info, argp);
4910 case BTRFS_IOC_SNAP_CREATE:
4911 return btrfs_ioctl_snap_create(file, argp, 0);
4912 case BTRFS_IOC_SNAP_CREATE_V2:
4913 return btrfs_ioctl_snap_create_v2(file, argp, 0);
4914 case BTRFS_IOC_SUBVOL_CREATE:
4915 return btrfs_ioctl_snap_create(file, argp, 1);
4916 case BTRFS_IOC_SUBVOL_CREATE_V2:
4917 return btrfs_ioctl_snap_create_v2(file, argp, 1);
4918 case BTRFS_IOC_SNAP_DESTROY:
4919 return btrfs_ioctl_snap_destroy(file, argp, false);
4920 case BTRFS_IOC_SNAP_DESTROY_V2:
4921 return btrfs_ioctl_snap_destroy(file, argp, true);
4922 case BTRFS_IOC_SUBVOL_GETFLAGS:
4923 return btrfs_ioctl_subvol_getflags(file, argp);
4924 case BTRFS_IOC_SUBVOL_SETFLAGS:
4925 return btrfs_ioctl_subvol_setflags(file, argp);
4926 case BTRFS_IOC_DEFAULT_SUBVOL:
4927 return btrfs_ioctl_default_subvol(file, argp);
4928 case BTRFS_IOC_DEFRAG:
4929 return btrfs_ioctl_defrag(file, NULL);
4930 case BTRFS_IOC_DEFRAG_RANGE:
4931 return btrfs_ioctl_defrag(file, argp);
4932 case BTRFS_IOC_RESIZE:
4933 return btrfs_ioctl_resize(file, argp);
4934 case BTRFS_IOC_ADD_DEV:
4935 return btrfs_ioctl_add_dev(fs_info, argp);
4936 case BTRFS_IOC_RM_DEV:
4937 return btrfs_ioctl_rm_dev(file, argp);
4938 case BTRFS_IOC_RM_DEV_V2:
4939 return btrfs_ioctl_rm_dev_v2(file, argp);
4940 case BTRFS_IOC_FS_INFO:
4941 return btrfs_ioctl_fs_info(fs_info, argp);
4942 case BTRFS_IOC_DEV_INFO:
4943 return btrfs_ioctl_dev_info(fs_info, argp);
4944 case BTRFS_IOC_BALANCE:
4945 return btrfs_ioctl_balance(file, NULL);
4946 case BTRFS_IOC_TREE_SEARCH:
4947 return btrfs_ioctl_tree_search(file, argp);
4948 case BTRFS_IOC_TREE_SEARCH_V2:
4949 return btrfs_ioctl_tree_search_v2(file, argp);
4950 case BTRFS_IOC_INO_LOOKUP:
4951 return btrfs_ioctl_ino_lookup(file, argp);
4952 case BTRFS_IOC_INO_PATHS:
4953 return btrfs_ioctl_ino_to_path(root, argp);
4954 case BTRFS_IOC_LOGICAL_INO:
4955 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
4956 case BTRFS_IOC_LOGICAL_INO_V2:
4957 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
4958 case BTRFS_IOC_SPACE_INFO:
4959 return btrfs_ioctl_space_info(fs_info, argp);
4960 case BTRFS_IOC_SYNC: {
4963 ret = btrfs_start_delalloc_roots(fs_info, LONG_MAX, false);
4966 ret = btrfs_sync_fs(inode->i_sb, 1);
4968 * The transaction thread may want to do more work,
4969 * namely it pokes the cleaner kthread that will start
4970 * processing uncleaned subvols.
4972 wake_up_process(fs_info->transaction_kthread);
4975 case BTRFS_IOC_START_SYNC:
4976 return btrfs_ioctl_start_sync(root, argp);
4977 case BTRFS_IOC_WAIT_SYNC:
4978 return btrfs_ioctl_wait_sync(fs_info, argp);
4979 case BTRFS_IOC_SCRUB:
4980 return btrfs_ioctl_scrub(file, argp);
4981 case BTRFS_IOC_SCRUB_CANCEL:
4982 return btrfs_ioctl_scrub_cancel(fs_info);
4983 case BTRFS_IOC_SCRUB_PROGRESS:
4984 return btrfs_ioctl_scrub_progress(fs_info, argp);
4985 case BTRFS_IOC_BALANCE_V2:
4986 return btrfs_ioctl_balance(file, argp);
4987 case BTRFS_IOC_BALANCE_CTL:
4988 return btrfs_ioctl_balance_ctl(fs_info, arg);
4989 case BTRFS_IOC_BALANCE_PROGRESS:
4990 return btrfs_ioctl_balance_progress(fs_info, argp);
4991 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
4992 return btrfs_ioctl_set_received_subvol(file, argp);
4994 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
4995 return btrfs_ioctl_set_received_subvol_32(file, argp);
4997 case BTRFS_IOC_SEND:
4998 return _btrfs_ioctl_send(file, argp, false);
4999 #if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5000 case BTRFS_IOC_SEND_32:
5001 return _btrfs_ioctl_send(file, argp, true);
5003 case BTRFS_IOC_GET_DEV_STATS:
5004 return btrfs_ioctl_get_dev_stats(fs_info, argp);
5005 case BTRFS_IOC_QUOTA_CTL:
5006 return btrfs_ioctl_quota_ctl(file, argp);
5007 case BTRFS_IOC_QGROUP_ASSIGN:
5008 return btrfs_ioctl_qgroup_assign(file, argp);
5009 case BTRFS_IOC_QGROUP_CREATE:
5010 return btrfs_ioctl_qgroup_create(file, argp);
5011 case BTRFS_IOC_QGROUP_LIMIT:
5012 return btrfs_ioctl_qgroup_limit(file, argp);
5013 case BTRFS_IOC_QUOTA_RESCAN:
5014 return btrfs_ioctl_quota_rescan(file, argp);
5015 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5016 return btrfs_ioctl_quota_rescan_status(fs_info, argp);
5017 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5018 return btrfs_ioctl_quota_rescan_wait(fs_info, argp);
5019 case BTRFS_IOC_DEV_REPLACE:
5020 return btrfs_ioctl_dev_replace(fs_info, argp);
5021 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5022 return btrfs_ioctl_get_supported_features(argp);
5023 case BTRFS_IOC_GET_FEATURES:
5024 return btrfs_ioctl_get_features(fs_info, argp);
5025 case BTRFS_IOC_SET_FEATURES:
5026 return btrfs_ioctl_set_features(file, argp);
5027 case FS_IOC_FSGETXATTR:
5028 return btrfs_ioctl_fsgetxattr(file, argp);
5029 case FS_IOC_FSSETXATTR:
5030 return btrfs_ioctl_fssetxattr(file, argp);
5031 case BTRFS_IOC_GET_SUBVOL_INFO:
5032 return btrfs_ioctl_get_subvol_info(file, argp);
5033 case BTRFS_IOC_GET_SUBVOL_ROOTREF:
5034 return btrfs_ioctl_get_subvol_rootref(file, argp);
5035 case BTRFS_IOC_INO_LOOKUP_USER:
5036 return btrfs_ioctl_ino_lookup_user(file, argp);
5042 #ifdef CONFIG_COMPAT
5043 long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5046 * These all access 32-bit values anyway so no further
5047 * handling is necessary.
5050 case FS_IOC32_GETFLAGS:
5051 cmd = FS_IOC_GETFLAGS;
5053 case FS_IOC32_SETFLAGS:
5054 cmd = FS_IOC_SETFLAGS;
5056 case FS_IOC32_GETVERSION:
5057 cmd = FS_IOC_GETVERSION;
5061 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));