2 * Copyright (C) 2007 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #include <linux/kernel.h>
20 #include <linux/bio.h>
21 #include <linux/buffer_head.h>
22 #include <linux/file.h>
24 #include <linux/fsnotify.h>
25 #include <linux/pagemap.h>
26 #include <linux/highmem.h>
27 #include <linux/time.h>
28 #include <linux/init.h>
29 #include <linux/string.h>
30 #include <linux/backing-dev.h>
31 #include <linux/mount.h>
32 #include <linux/mpage.h>
33 #include <linux/namei.h>
34 #include <linux/swap.h>
35 #include <linux/writeback.h>
36 #include <linux/statfs.h>
37 #include <linux/compat.h>
38 #include <linux/bit_spinlock.h>
39 #include <linux/security.h>
40 #include <linux/xattr.h>
41 #include <linux/vmalloc.h>
42 #include <linux/slab.h>
43 #include <linux/blkdev.h>
44 #include <linux/uuid.h>
45 #include <linux/btrfs.h>
46 #include <linux/uaccess.h>
49 #include "transaction.h"
50 #include "btrfs_inode.h"
51 #include "print-tree.h"
54 #include "inode-map.h"
56 #include "rcu-string.h"
58 #include "dev-replace.h"
63 /* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
64 * structures are incorrect, as the timespec structure from userspace
65 * is 4 bytes too small. We define these alternatives here to teach
66 * the kernel about the 32-bit struct packing.
68 struct btrfs_ioctl_timespec_32 {
71 } __attribute__ ((__packed__));
73 struct btrfs_ioctl_received_subvol_args_32 {
74 char uuid[BTRFS_UUID_SIZE]; /* in */
75 __u64 stransid; /* in */
76 __u64 rtransid; /* out */
77 struct btrfs_ioctl_timespec_32 stime; /* in */
78 struct btrfs_ioctl_timespec_32 rtime; /* out */
80 __u64 reserved[16]; /* in */
81 } __attribute__ ((__packed__));
83 #define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
84 struct btrfs_ioctl_received_subvol_args_32)
88 static int btrfs_clone(struct inode *src, struct inode *inode,
89 u64 off, u64 olen, u64 olen_aligned, u64 destoff);
91 /* Mask out flags that are inappropriate for the given type of inode. */
92 static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
96 else if (S_ISREG(mode))
97 return flags & ~FS_DIRSYNC_FL;
99 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
103 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
105 static unsigned int btrfs_flags_to_ioctl(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_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
125 iflags |= FS_COMPR_FL;
126 else if (flags & BTRFS_INODE_NOCOMPRESS)
127 iflags |= FS_NOCOMP_FL;
133 * Update inode->i_flags based on the btrfs internal flags.
135 void btrfs_update_iflags(struct inode *inode)
137 struct btrfs_inode *ip = BTRFS_I(inode);
139 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
141 if (ip->flags & BTRFS_INODE_SYNC)
142 inode->i_flags |= S_SYNC;
143 if (ip->flags & BTRFS_INODE_IMMUTABLE)
144 inode->i_flags |= S_IMMUTABLE;
145 if (ip->flags & BTRFS_INODE_APPEND)
146 inode->i_flags |= S_APPEND;
147 if (ip->flags & BTRFS_INODE_NOATIME)
148 inode->i_flags |= S_NOATIME;
149 if (ip->flags & BTRFS_INODE_DIRSYNC)
150 inode->i_flags |= S_DIRSYNC;
154 * Inherit flags from the parent inode.
156 * Currently only the compression flags and the cow flags are inherited.
158 void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
165 flags = BTRFS_I(dir)->flags;
167 if (flags & BTRFS_INODE_NOCOMPRESS) {
168 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
169 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
170 } else if (flags & BTRFS_INODE_COMPRESS) {
171 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
172 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
175 if (flags & BTRFS_INODE_NODATACOW) {
176 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
177 if (S_ISREG(inode->i_mode))
178 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
181 btrfs_update_iflags(inode);
184 static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
186 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
187 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
189 if (copy_to_user(arg, &flags, sizeof(flags)))
194 static int check_flags(unsigned int flags)
196 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
197 FS_NOATIME_FL | FS_NODUMP_FL | \
198 FS_SYNC_FL | FS_DIRSYNC_FL | \
199 FS_NOCOMP_FL | FS_COMPR_FL |
203 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
209 static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
211 struct inode *inode = file_inode(file);
212 struct btrfs_inode *ip = BTRFS_I(inode);
213 struct btrfs_root *root = ip->root;
214 struct btrfs_trans_handle *trans;
215 unsigned int flags, oldflags;
218 unsigned int i_oldflags;
221 if (!inode_owner_or_capable(inode))
224 if (btrfs_root_readonly(root))
227 if (copy_from_user(&flags, arg, sizeof(flags)))
230 ret = check_flags(flags);
234 ret = mnt_want_write_file(file);
238 mutex_lock(&inode->i_mutex);
240 ip_oldflags = ip->flags;
241 i_oldflags = inode->i_flags;
242 mode = inode->i_mode;
244 flags = btrfs_mask_flags(inode->i_mode, flags);
245 oldflags = btrfs_flags_to_ioctl(ip->flags);
246 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
247 if (!capable(CAP_LINUX_IMMUTABLE)) {
253 if (flags & FS_SYNC_FL)
254 ip->flags |= BTRFS_INODE_SYNC;
256 ip->flags &= ~BTRFS_INODE_SYNC;
257 if (flags & FS_IMMUTABLE_FL)
258 ip->flags |= BTRFS_INODE_IMMUTABLE;
260 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
261 if (flags & FS_APPEND_FL)
262 ip->flags |= BTRFS_INODE_APPEND;
264 ip->flags &= ~BTRFS_INODE_APPEND;
265 if (flags & FS_NODUMP_FL)
266 ip->flags |= BTRFS_INODE_NODUMP;
268 ip->flags &= ~BTRFS_INODE_NODUMP;
269 if (flags & FS_NOATIME_FL)
270 ip->flags |= BTRFS_INODE_NOATIME;
272 ip->flags &= ~BTRFS_INODE_NOATIME;
273 if (flags & FS_DIRSYNC_FL)
274 ip->flags |= BTRFS_INODE_DIRSYNC;
276 ip->flags &= ~BTRFS_INODE_DIRSYNC;
277 if (flags & FS_NOCOW_FL) {
280 * It's safe to turn csums off here, no extents exist.
281 * Otherwise we want the flag to reflect the real COW
282 * status of the file and will not set it.
284 if (inode->i_size == 0)
285 ip->flags |= BTRFS_INODE_NODATACOW
286 | BTRFS_INODE_NODATASUM;
288 ip->flags |= BTRFS_INODE_NODATACOW;
292 * Revert back under same assuptions as above
295 if (inode->i_size == 0)
296 ip->flags &= ~(BTRFS_INODE_NODATACOW
297 | BTRFS_INODE_NODATASUM);
299 ip->flags &= ~BTRFS_INODE_NODATACOW;
304 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
305 * flag may be changed automatically if compression code won't make
308 if (flags & FS_NOCOMP_FL) {
309 ip->flags &= ~BTRFS_INODE_COMPRESS;
310 ip->flags |= BTRFS_INODE_NOCOMPRESS;
312 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
313 if (ret && ret != -ENODATA)
315 } else if (flags & FS_COMPR_FL) {
318 ip->flags |= BTRFS_INODE_COMPRESS;
319 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
321 if (root->fs_info->compress_type == BTRFS_COMPRESS_LZO)
325 ret = btrfs_set_prop(inode, "btrfs.compression",
326 comp, strlen(comp), 0);
331 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
334 trans = btrfs_start_transaction(root, 1);
336 ret = PTR_ERR(trans);
340 btrfs_update_iflags(inode);
341 inode_inc_iversion(inode);
342 inode->i_ctime = CURRENT_TIME;
343 ret = btrfs_update_inode(trans, root, inode);
345 btrfs_end_transaction(trans, root);
348 ip->flags = ip_oldflags;
349 inode->i_flags = i_oldflags;
353 mutex_unlock(&inode->i_mutex);
354 mnt_drop_write_file(file);
358 static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
360 struct inode *inode = file_inode(file);
362 return put_user(inode->i_generation, arg);
365 static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
367 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
368 struct btrfs_device *device;
369 struct request_queue *q;
370 struct fstrim_range range;
371 u64 minlen = ULLONG_MAX;
373 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
376 if (!capable(CAP_SYS_ADMIN))
380 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
384 q = bdev_get_queue(device->bdev);
385 if (blk_queue_discard(q)) {
387 minlen = min((u64)q->limits.discard_granularity,
395 if (copy_from_user(&range, arg, sizeof(range)))
397 if (range.start > total_bytes ||
398 range.len < fs_info->sb->s_blocksize)
401 range.len = min(range.len, total_bytes - range.start);
402 range.minlen = max(range.minlen, minlen);
403 ret = btrfs_trim_fs(fs_info->tree_root, &range);
407 if (copy_to_user(arg, &range, sizeof(range)))
413 int btrfs_is_empty_uuid(u8 *uuid)
417 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
424 static noinline int create_subvol(struct inode *dir,
425 struct dentry *dentry,
426 char *name, int namelen,
428 struct btrfs_qgroup_inherit *inherit)
430 struct btrfs_trans_handle *trans;
431 struct btrfs_key key;
432 struct btrfs_root_item root_item;
433 struct btrfs_inode_item *inode_item;
434 struct extent_buffer *leaf;
435 struct btrfs_root *root = BTRFS_I(dir)->root;
436 struct btrfs_root *new_root;
437 struct btrfs_block_rsv block_rsv;
438 struct timespec cur_time = CURRENT_TIME;
443 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
448 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
452 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
454 * The same as the snapshot creation, please see the comment
455 * of create_snapshot().
457 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
458 8, &qgroup_reserved, false);
462 trans = btrfs_start_transaction(root, 0);
464 ret = PTR_ERR(trans);
465 btrfs_subvolume_release_metadata(root, &block_rsv,
469 trans->block_rsv = &block_rsv;
470 trans->bytes_reserved = block_rsv.size;
472 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
476 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
477 0, objectid, NULL, 0, 0, 0);
483 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
484 btrfs_set_header_bytenr(leaf, leaf->start);
485 btrfs_set_header_generation(leaf, trans->transid);
486 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
487 btrfs_set_header_owner(leaf, objectid);
489 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
491 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
492 btrfs_header_chunk_tree_uuid(leaf),
494 btrfs_mark_buffer_dirty(leaf);
496 memset(&root_item, 0, sizeof(root_item));
498 inode_item = &root_item.inode;
499 btrfs_set_stack_inode_generation(inode_item, 1);
500 btrfs_set_stack_inode_size(inode_item, 3);
501 btrfs_set_stack_inode_nlink(inode_item, 1);
502 btrfs_set_stack_inode_nbytes(inode_item, root->leafsize);
503 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
505 btrfs_set_root_flags(&root_item, 0);
506 btrfs_set_root_limit(&root_item, 0);
507 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
509 btrfs_set_root_bytenr(&root_item, leaf->start);
510 btrfs_set_root_generation(&root_item, trans->transid);
511 btrfs_set_root_level(&root_item, 0);
512 btrfs_set_root_refs(&root_item, 1);
513 btrfs_set_root_used(&root_item, leaf->len);
514 btrfs_set_root_last_snapshot(&root_item, 0);
516 btrfs_set_root_generation_v2(&root_item,
517 btrfs_root_generation(&root_item));
518 uuid_le_gen(&new_uuid);
519 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
520 btrfs_set_stack_timespec_sec(&root_item.otime, cur_time.tv_sec);
521 btrfs_set_stack_timespec_nsec(&root_item.otime, cur_time.tv_nsec);
522 root_item.ctime = root_item.otime;
523 btrfs_set_root_ctransid(&root_item, trans->transid);
524 btrfs_set_root_otransid(&root_item, trans->transid);
526 btrfs_tree_unlock(leaf);
527 free_extent_buffer(leaf);
530 btrfs_set_root_dirid(&root_item, new_dirid);
532 key.objectid = objectid;
534 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
535 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
540 key.offset = (u64)-1;
541 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
542 if (IS_ERR(new_root)) {
543 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
544 ret = PTR_ERR(new_root);
548 btrfs_record_root_in_trans(trans, new_root);
550 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
552 /* We potentially lose an unused inode item here */
553 btrfs_abort_transaction(trans, root, ret);
558 * insert the directory item
560 ret = btrfs_set_inode_index(dir, &index);
562 btrfs_abort_transaction(trans, root, ret);
566 ret = btrfs_insert_dir_item(trans, root,
567 name, namelen, dir, &key,
568 BTRFS_FT_DIR, index);
570 btrfs_abort_transaction(trans, root, ret);
574 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
575 ret = btrfs_update_inode(trans, root, dir);
578 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
579 objectid, root->root_key.objectid,
580 btrfs_ino(dir), index, name, namelen);
583 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
584 root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
587 btrfs_abort_transaction(trans, root, ret);
590 trans->block_rsv = NULL;
591 trans->bytes_reserved = 0;
592 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
595 *async_transid = trans->transid;
596 err = btrfs_commit_transaction_async(trans, root, 1);
598 err = btrfs_commit_transaction(trans, root);
600 err = btrfs_commit_transaction(trans, root);
606 inode = btrfs_lookup_dentry(dir, dentry);
608 return PTR_ERR(inode);
609 d_instantiate(dentry, inode);
614 static void btrfs_wait_nocow_write(struct btrfs_root *root)
620 prepare_to_wait(&root->subv_writers->wait, &wait,
621 TASK_UNINTERRUPTIBLE);
623 writers = percpu_counter_sum(&root->subv_writers->counter);
627 finish_wait(&root->subv_writers->wait, &wait);
631 static int create_snapshot(struct btrfs_root *root, struct inode *dir,
632 struct dentry *dentry, char *name, int namelen,
633 u64 *async_transid, bool readonly,
634 struct btrfs_qgroup_inherit *inherit)
637 struct btrfs_pending_snapshot *pending_snapshot;
638 struct btrfs_trans_handle *trans;
644 atomic_inc(&root->will_be_snapshoted);
645 smp_mb__after_atomic_inc();
646 btrfs_wait_nocow_write(root);
648 ret = btrfs_start_delalloc_inodes(root, 0);
652 btrfs_wait_ordered_extents(root, -1);
654 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
655 if (!pending_snapshot) {
660 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
661 BTRFS_BLOCK_RSV_TEMP);
663 * 1 - parent dir inode
666 * 2 - root ref/backref
667 * 1 - root of snapshot
670 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
671 &pending_snapshot->block_rsv, 8,
672 &pending_snapshot->qgroup_reserved,
677 pending_snapshot->dentry = dentry;
678 pending_snapshot->root = root;
679 pending_snapshot->readonly = readonly;
680 pending_snapshot->dir = dir;
681 pending_snapshot->inherit = inherit;
683 trans = btrfs_start_transaction(root, 0);
685 ret = PTR_ERR(trans);
689 spin_lock(&root->fs_info->trans_lock);
690 list_add(&pending_snapshot->list,
691 &trans->transaction->pending_snapshots);
692 spin_unlock(&root->fs_info->trans_lock);
694 *async_transid = trans->transid;
695 ret = btrfs_commit_transaction_async(trans,
696 root->fs_info->extent_root, 1);
698 ret = btrfs_commit_transaction(trans, root);
700 ret = btrfs_commit_transaction(trans,
701 root->fs_info->extent_root);
706 ret = pending_snapshot->error;
710 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
714 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
716 ret = PTR_ERR(inode);
720 d_instantiate(dentry, inode);
723 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
724 &pending_snapshot->block_rsv,
725 pending_snapshot->qgroup_reserved);
727 kfree(pending_snapshot);
729 atomic_dec(&root->will_be_snapshoted);
733 /* copy of check_sticky in fs/namei.c()
734 * It's inline, so penalty for filesystems that don't use sticky bit is
737 static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
739 kuid_t fsuid = current_fsuid();
741 if (!(dir->i_mode & S_ISVTX))
743 if (uid_eq(inode->i_uid, fsuid))
745 if (uid_eq(dir->i_uid, fsuid))
747 return !capable(CAP_FOWNER);
750 /* copy of may_delete in fs/namei.c()
751 * Check whether we can remove a link victim from directory dir, check
752 * whether the type of victim is right.
753 * 1. We can't do it if dir is read-only (done in permission())
754 * 2. We should have write and exec permissions on dir
755 * 3. We can't remove anything from append-only dir
756 * 4. We can't do anything with immutable dir (done in permission())
757 * 5. If the sticky bit on dir is set we should either
758 * a. be owner of dir, or
759 * b. be owner of victim, or
760 * c. have CAP_FOWNER capability
761 * 6. If the victim is append-only or immutable we can't do antyhing with
762 * links pointing to it.
763 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
764 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
765 * 9. We can't remove a root or mountpoint.
766 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
767 * nfs_async_unlink().
770 static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
774 if (!victim->d_inode)
777 BUG_ON(victim->d_parent->d_inode != dir);
778 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
780 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
785 if (btrfs_check_sticky(dir, victim->d_inode)||
786 IS_APPEND(victim->d_inode)||
787 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
790 if (!S_ISDIR(victim->d_inode->i_mode))
794 } else if (S_ISDIR(victim->d_inode->i_mode))
798 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
803 /* copy of may_create in fs/namei.c() */
804 static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
810 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
814 * Create a new subvolume below @parent. This is largely modeled after
815 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
816 * inside this filesystem so it's quite a bit simpler.
818 static noinline int btrfs_mksubvol(struct path *parent,
819 char *name, int namelen,
820 struct btrfs_root *snap_src,
821 u64 *async_transid, bool readonly,
822 struct btrfs_qgroup_inherit *inherit)
824 struct inode *dir = parent->dentry->d_inode;
825 struct dentry *dentry;
828 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
832 dentry = lookup_one_len(name, parent->dentry, namelen);
833 error = PTR_ERR(dentry);
841 error = btrfs_may_create(dir, dentry);
846 * even if this name doesn't exist, we may get hash collisions.
847 * check for them now when we can safely fail
849 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
855 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
857 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
861 error = create_snapshot(snap_src, dir, dentry, name, namelen,
862 async_transid, readonly, inherit);
864 error = create_subvol(dir, dentry, name, namelen,
865 async_transid, inherit);
868 fsnotify_mkdir(dir, dentry);
870 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
874 mutex_unlock(&dir->i_mutex);
879 * When we're defragging a range, we don't want to kick it off again
880 * if it is really just waiting for delalloc to send it down.
881 * If we find a nice big extent or delalloc range for the bytes in the
882 * file you want to defrag, we return 0 to let you know to skip this
885 static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
887 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
888 struct extent_map *em = NULL;
889 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
892 read_lock(&em_tree->lock);
893 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
894 read_unlock(&em_tree->lock);
897 end = extent_map_end(em);
899 if (end - offset > thresh)
902 /* if we already have a nice delalloc here, just stop */
904 end = count_range_bits(io_tree, &offset, offset + thresh,
905 thresh, EXTENT_DELALLOC, 1);
912 * helper function to walk through a file and find extents
913 * newer than a specific transid, and smaller than thresh.
915 * This is used by the defragging code to find new and small
918 static int find_new_extents(struct btrfs_root *root,
919 struct inode *inode, u64 newer_than,
920 u64 *off, int thresh)
922 struct btrfs_path *path;
923 struct btrfs_key min_key;
924 struct extent_buffer *leaf;
925 struct btrfs_file_extent_item *extent;
928 u64 ino = btrfs_ino(inode);
930 path = btrfs_alloc_path();
934 min_key.objectid = ino;
935 min_key.type = BTRFS_EXTENT_DATA_KEY;
936 min_key.offset = *off;
938 path->keep_locks = 1;
941 ret = btrfs_search_forward(root, &min_key, path, newer_than);
944 if (min_key.objectid != ino)
946 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
949 leaf = path->nodes[0];
950 extent = btrfs_item_ptr(leaf, path->slots[0],
951 struct btrfs_file_extent_item);
953 type = btrfs_file_extent_type(leaf, extent);
954 if (type == BTRFS_FILE_EXTENT_REG &&
955 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
956 check_defrag_in_cache(inode, min_key.offset, thresh)) {
957 *off = min_key.offset;
958 btrfs_free_path(path);
962 if (min_key.offset == (u64)-1)
966 btrfs_release_path(path);
969 btrfs_free_path(path);
973 static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
975 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
976 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
977 struct extent_map *em;
978 u64 len = PAGE_CACHE_SIZE;
981 * hopefully we have this extent in the tree already, try without
982 * the full extent lock
984 read_lock(&em_tree->lock);
985 em = lookup_extent_mapping(em_tree, start, len);
986 read_unlock(&em_tree->lock);
989 struct extent_state *cached = NULL;
990 u64 end = start + len - 1;
992 /* get the big lock and read metadata off disk */
993 lock_extent_bits(io_tree, start, end, 0, &cached);
994 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
995 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
1004 static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1006 struct extent_map *next;
1009 /* this is the last extent */
1010 if (em->start + em->len >= i_size_read(inode))
1013 next = defrag_lookup_extent(inode, em->start + em->len);
1014 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE ||
1015 (em->block_start + em->block_len == next->block_start))
1018 free_extent_map(next);
1022 static int should_defrag_range(struct inode *inode, u64 start, int thresh,
1023 u64 *last_len, u64 *skip, u64 *defrag_end,
1026 struct extent_map *em;
1028 bool next_mergeable = true;
1031 * make sure that once we start defragging an extent, we keep on
1034 if (start < *defrag_end)
1039 em = defrag_lookup_extent(inode, start);
1043 /* this will cover holes, and inline extents */
1044 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1049 next_mergeable = defrag_check_next_extent(inode, em);
1052 * we hit a real extent, if it is big or the next extent is not a
1053 * real extent, don't bother defragging it
1055 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
1056 (em->len >= thresh || !next_mergeable))
1060 * last_len ends up being a counter of how many bytes we've defragged.
1061 * every time we choose not to defrag an extent, we reset *last_len
1062 * so that the next tiny extent will force a defrag.
1064 * The end result of this is that tiny extents before a single big
1065 * extent will force at least part of that big extent to be defragged.
1068 *defrag_end = extent_map_end(em);
1071 *skip = extent_map_end(em);
1075 free_extent_map(em);
1080 * it doesn't do much good to defrag one or two pages
1081 * at a time. This pulls in a nice chunk of pages
1082 * to COW and defrag.
1084 * It also makes sure the delalloc code has enough
1085 * dirty data to avoid making new small extents as part
1088 * It's a good idea to start RA on this range
1089 * before calling this.
1091 static int cluster_pages_for_defrag(struct inode *inode,
1092 struct page **pages,
1093 unsigned long start_index,
1094 unsigned long num_pages)
1096 unsigned long file_end;
1097 u64 isize = i_size_read(inode);
1104 struct btrfs_ordered_extent *ordered;
1105 struct extent_state *cached_state = NULL;
1106 struct extent_io_tree *tree;
1107 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
1109 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
1110 if (!isize || start_index > file_end)
1113 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
1115 ret = btrfs_delalloc_reserve_space(inode,
1116 page_cnt << PAGE_CACHE_SHIFT);
1120 tree = &BTRFS_I(inode)->io_tree;
1122 /* step one, lock all the pages */
1123 for (i = 0; i < page_cnt; i++) {
1126 page = find_or_create_page(inode->i_mapping,
1127 start_index + i, mask);
1131 page_start = page_offset(page);
1132 page_end = page_start + PAGE_CACHE_SIZE - 1;
1134 lock_extent_bits(tree, page_start, page_end,
1136 ordered = btrfs_lookup_ordered_extent(inode,
1138 unlock_extent_cached(tree, page_start, page_end,
1139 &cached_state, GFP_NOFS);
1144 btrfs_start_ordered_extent(inode, ordered, 1);
1145 btrfs_put_ordered_extent(ordered);
1148 * we unlocked the page above, so we need check if
1149 * it was released or not.
1151 if (page->mapping != inode->i_mapping) {
1153 page_cache_release(page);
1158 if (!PageUptodate(page)) {
1159 btrfs_readpage(NULL, page);
1161 if (!PageUptodate(page)) {
1163 page_cache_release(page);
1169 if (page->mapping != inode->i_mapping) {
1171 page_cache_release(page);
1181 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1185 * so now we have a nice long stream of locked
1186 * and up to date pages, lets wait on them
1188 for (i = 0; i < i_done; i++)
1189 wait_on_page_writeback(pages[i]);
1191 page_start = page_offset(pages[0]);
1192 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1194 lock_extent_bits(&BTRFS_I(inode)->io_tree,
1195 page_start, page_end - 1, 0, &cached_state);
1196 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1197 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
1198 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1199 &cached_state, GFP_NOFS);
1201 if (i_done != page_cnt) {
1202 spin_lock(&BTRFS_I(inode)->lock);
1203 BTRFS_I(inode)->outstanding_extents++;
1204 spin_unlock(&BTRFS_I(inode)->lock);
1205 btrfs_delalloc_release_space(inode,
1206 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
1210 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1211 &cached_state, GFP_NOFS);
1213 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1214 page_start, page_end - 1, &cached_state,
1217 for (i = 0; i < i_done; i++) {
1218 clear_page_dirty_for_io(pages[i]);
1219 ClearPageChecked(pages[i]);
1220 set_page_extent_mapped(pages[i]);
1221 set_page_dirty(pages[i]);
1222 unlock_page(pages[i]);
1223 page_cache_release(pages[i]);
1227 for (i = 0; i < i_done; i++) {
1228 unlock_page(pages[i]);
1229 page_cache_release(pages[i]);
1231 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
1236 int btrfs_defrag_file(struct inode *inode, struct file *file,
1237 struct btrfs_ioctl_defrag_range_args *range,
1238 u64 newer_than, unsigned long max_to_defrag)
1240 struct btrfs_root *root = BTRFS_I(inode)->root;
1241 struct file_ra_state *ra = NULL;
1242 unsigned long last_index;
1243 u64 isize = i_size_read(inode);
1247 u64 newer_off = range->start;
1249 unsigned long ra_index = 0;
1251 int defrag_count = 0;
1252 int compress_type = BTRFS_COMPRESS_ZLIB;
1253 int extent_thresh = range->extent_thresh;
1254 unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1255 unsigned long cluster = max_cluster;
1256 u64 new_align = ~((u64)128 * 1024 - 1);
1257 struct page **pages = NULL;
1262 if (range->start >= isize)
1265 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1266 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1268 if (range->compress_type)
1269 compress_type = range->compress_type;
1272 if (extent_thresh == 0)
1273 extent_thresh = 256 * 1024;
1276 * if we were not given a file, allocate a readahead
1280 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1283 file_ra_state_init(ra, inode->i_mapping);
1288 pages = kmalloc_array(max_cluster, sizeof(struct page *),
1295 /* find the last page to defrag */
1296 if (range->start + range->len > range->start) {
1297 last_index = min_t(u64, isize - 1,
1298 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1300 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1304 ret = find_new_extents(root, inode, newer_than,
1305 &newer_off, 64 * 1024);
1307 range->start = newer_off;
1309 * we always align our defrag to help keep
1310 * the extents in the file evenly spaced
1312 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
1316 i = range->start >> PAGE_CACHE_SHIFT;
1319 max_to_defrag = last_index + 1;
1322 * make writeback starts from i, so the defrag range can be
1323 * written sequentially.
1325 if (i < inode->i_mapping->writeback_index)
1326 inode->i_mapping->writeback_index = i;
1328 while (i <= last_index && defrag_count < max_to_defrag &&
1329 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1330 PAGE_CACHE_SHIFT)) {
1332 * make sure we stop running if someone unmounts
1335 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1338 if (btrfs_defrag_cancelled(root->fs_info)) {
1339 printk(KERN_DEBUG "BTRFS: defrag_file cancelled\n");
1344 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
1345 extent_thresh, &last_len, &skip,
1346 &defrag_end, range->flags &
1347 BTRFS_DEFRAG_RANGE_COMPRESS)) {
1350 * the should_defrag function tells us how much to skip
1351 * bump our counter by the suggested amount
1353 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1354 i = max(i + 1, next);
1359 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1360 PAGE_CACHE_SHIFT) - i;
1361 cluster = min(cluster, max_cluster);
1363 cluster = max_cluster;
1366 if (i + cluster > ra_index) {
1367 ra_index = max(i, ra_index);
1368 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1370 ra_index += max_cluster;
1373 mutex_lock(&inode->i_mutex);
1374 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1375 BTRFS_I(inode)->force_compress = compress_type;
1376 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
1378 mutex_unlock(&inode->i_mutex);
1382 defrag_count += ret;
1383 balance_dirty_pages_ratelimited(inode->i_mapping);
1384 mutex_unlock(&inode->i_mutex);
1387 if (newer_off == (u64)-1)
1393 newer_off = max(newer_off + 1,
1394 (u64)i << PAGE_CACHE_SHIFT);
1396 ret = find_new_extents(root, inode,
1397 newer_than, &newer_off,
1400 range->start = newer_off;
1401 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
1408 last_len += ret << PAGE_CACHE_SHIFT;
1416 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
1417 filemap_flush(inode->i_mapping);
1418 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1419 &BTRFS_I(inode)->runtime_flags))
1420 filemap_flush(inode->i_mapping);
1423 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1424 /* the filemap_flush will queue IO into the worker threads, but
1425 * we have to make sure the IO is actually started and that
1426 * ordered extents get created before we return
1428 atomic_inc(&root->fs_info->async_submit_draining);
1429 while (atomic_read(&root->fs_info->nr_async_submits) ||
1430 atomic_read(&root->fs_info->async_delalloc_pages)) {
1431 wait_event(root->fs_info->async_submit_wait,
1432 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1433 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1435 atomic_dec(&root->fs_info->async_submit_draining);
1438 if (range->compress_type == BTRFS_COMPRESS_LZO) {
1439 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
1445 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1446 mutex_lock(&inode->i_mutex);
1447 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1448 mutex_unlock(&inode->i_mutex);
1456 static noinline int btrfs_ioctl_resize(struct file *file,
1462 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
1463 struct btrfs_ioctl_vol_args *vol_args;
1464 struct btrfs_trans_handle *trans;
1465 struct btrfs_device *device = NULL;
1467 char *devstr = NULL;
1471 if (!capable(CAP_SYS_ADMIN))
1474 ret = mnt_want_write_file(file);
1478 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1480 mnt_drop_write_file(file);
1481 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
1484 mutex_lock(&root->fs_info->volume_mutex);
1485 vol_args = memdup_user(arg, sizeof(*vol_args));
1486 if (IS_ERR(vol_args)) {
1487 ret = PTR_ERR(vol_args);
1491 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1493 sizestr = vol_args->name;
1494 devstr = strchr(sizestr, ':');
1497 sizestr = devstr + 1;
1499 devstr = vol_args->name;
1500 devid = simple_strtoull(devstr, &end, 10);
1505 btrfs_info(root->fs_info, "resizing devid %llu", devid);
1508 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
1510 btrfs_info(root->fs_info, "resizer unable to find device %llu",
1516 if (!device->writeable) {
1517 btrfs_info(root->fs_info,
1518 "resizer unable to apply on readonly device %llu",
1524 if (!strcmp(sizestr, "max"))
1525 new_size = device->bdev->bd_inode->i_size;
1527 if (sizestr[0] == '-') {
1530 } else if (sizestr[0] == '+') {
1534 new_size = memparse(sizestr, NULL);
1535 if (new_size == 0) {
1541 if (device->is_tgtdev_for_dev_replace) {
1546 old_size = device->total_bytes;
1549 if (new_size > old_size) {
1553 new_size = old_size - new_size;
1554 } else if (mod > 0) {
1555 if (new_size > ULLONG_MAX - old_size) {
1559 new_size = old_size + new_size;
1562 if (new_size < 256 * 1024 * 1024) {
1566 if (new_size > device->bdev->bd_inode->i_size) {
1571 do_div(new_size, root->sectorsize);
1572 new_size *= root->sectorsize;
1574 printk_in_rcu(KERN_INFO "BTRFS: new size for %s is %llu\n",
1575 rcu_str_deref(device->name), new_size);
1577 if (new_size > old_size) {
1578 trans = btrfs_start_transaction(root, 0);
1579 if (IS_ERR(trans)) {
1580 ret = PTR_ERR(trans);
1583 ret = btrfs_grow_device(trans, device, new_size);
1584 btrfs_commit_transaction(trans, root);
1585 } else if (new_size < old_size) {
1586 ret = btrfs_shrink_device(device, new_size);
1587 } /* equal, nothing need to do */
1592 mutex_unlock(&root->fs_info->volume_mutex);
1593 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
1594 mnt_drop_write_file(file);
1598 static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
1599 char *name, unsigned long fd, int subvol,
1600 u64 *transid, bool readonly,
1601 struct btrfs_qgroup_inherit *inherit)
1606 ret = mnt_want_write_file(file);
1610 namelen = strlen(name);
1611 if (strchr(name, '/')) {
1613 goto out_drop_write;
1616 if (name[0] == '.' &&
1617 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1619 goto out_drop_write;
1623 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1624 NULL, transid, readonly, inherit);
1626 struct fd src = fdget(fd);
1627 struct inode *src_inode;
1630 goto out_drop_write;
1633 src_inode = file_inode(src.file);
1634 if (src_inode->i_sb != file_inode(file)->i_sb) {
1635 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1636 "Snapshot src from another FS");
1638 } else if (!inode_owner_or_capable(src_inode)) {
1640 * Subvolume creation is not restricted, but snapshots
1641 * are limited to own subvolumes only
1645 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1646 BTRFS_I(src_inode)->root,
1647 transid, readonly, inherit);
1652 mnt_drop_write_file(file);
1657 static noinline int btrfs_ioctl_snap_create(struct file *file,
1658 void __user *arg, int subvol)
1660 struct btrfs_ioctl_vol_args *vol_args;
1663 vol_args = memdup_user(arg, sizeof(*vol_args));
1664 if (IS_ERR(vol_args))
1665 return PTR_ERR(vol_args);
1666 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1668 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
1669 vol_args->fd, subvol,
1676 static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1677 void __user *arg, int subvol)
1679 struct btrfs_ioctl_vol_args_v2 *vol_args;
1683 bool readonly = false;
1684 struct btrfs_qgroup_inherit *inherit = NULL;
1686 vol_args = memdup_user(arg, sizeof(*vol_args));
1687 if (IS_ERR(vol_args))
1688 return PTR_ERR(vol_args);
1689 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
1691 if (vol_args->flags &
1692 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1693 BTRFS_SUBVOL_QGROUP_INHERIT)) {
1698 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1700 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1702 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1703 if (vol_args->size > PAGE_CACHE_SIZE) {
1707 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1708 if (IS_ERR(inherit)) {
1709 ret = PTR_ERR(inherit);
1714 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
1715 vol_args->fd, subvol, ptr,
1718 if (ret == 0 && ptr &&
1720 offsetof(struct btrfs_ioctl_vol_args_v2,
1721 transid), ptr, sizeof(*ptr)))
1729 static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1732 struct inode *inode = file_inode(file);
1733 struct btrfs_root *root = BTRFS_I(inode)->root;
1737 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
1740 down_read(&root->fs_info->subvol_sem);
1741 if (btrfs_root_readonly(root))
1742 flags |= BTRFS_SUBVOL_RDONLY;
1743 up_read(&root->fs_info->subvol_sem);
1745 if (copy_to_user(arg, &flags, sizeof(flags)))
1751 static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1754 struct inode *inode = file_inode(file);
1755 struct btrfs_root *root = BTRFS_I(inode)->root;
1756 struct btrfs_trans_handle *trans;
1761 if (!inode_owner_or_capable(inode))
1764 ret = mnt_want_write_file(file);
1768 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1770 goto out_drop_write;
1773 if (copy_from_user(&flags, arg, sizeof(flags))) {
1775 goto out_drop_write;
1778 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1780 goto out_drop_write;
1783 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1785 goto out_drop_write;
1788 down_write(&root->fs_info->subvol_sem);
1791 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
1794 root_flags = btrfs_root_flags(&root->root_item);
1795 if (flags & BTRFS_SUBVOL_RDONLY) {
1796 btrfs_set_root_flags(&root->root_item,
1797 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1800 * Block RO -> RW transition if this subvolume is involved in
1803 spin_lock(&root->root_item_lock);
1804 if (root->send_in_progress == 0) {
1805 btrfs_set_root_flags(&root->root_item,
1806 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1807 spin_unlock(&root->root_item_lock);
1809 spin_unlock(&root->root_item_lock);
1810 btrfs_warn(root->fs_info,
1811 "Attempt to set subvolume %llu read-write during send",
1812 root->root_key.objectid);
1818 trans = btrfs_start_transaction(root, 1);
1819 if (IS_ERR(trans)) {
1820 ret = PTR_ERR(trans);
1824 ret = btrfs_update_root(trans, root->fs_info->tree_root,
1825 &root->root_key, &root->root_item);
1827 btrfs_commit_transaction(trans, root);
1830 btrfs_set_root_flags(&root->root_item, root_flags);
1832 up_write(&root->fs_info->subvol_sem);
1834 mnt_drop_write_file(file);
1840 * helper to check if the subvolume references other subvolumes
1842 static noinline int may_destroy_subvol(struct btrfs_root *root)
1844 struct btrfs_path *path;
1845 struct btrfs_dir_item *di;
1846 struct btrfs_key key;
1850 path = btrfs_alloc_path();
1854 /* Make sure this root isn't set as the default subvol */
1855 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1856 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1857 dir_id, "default", 7, 0);
1858 if (di && !IS_ERR(di)) {
1859 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1860 if (key.objectid == root->root_key.objectid) {
1864 btrfs_release_path(path);
1867 key.objectid = root->root_key.objectid;
1868 key.type = BTRFS_ROOT_REF_KEY;
1869 key.offset = (u64)-1;
1871 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1878 if (path->slots[0] > 0) {
1880 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1881 if (key.objectid == root->root_key.objectid &&
1882 key.type == BTRFS_ROOT_REF_KEY)
1886 btrfs_free_path(path);
1890 static noinline int key_in_sk(struct btrfs_key *key,
1891 struct btrfs_ioctl_search_key *sk)
1893 struct btrfs_key test;
1896 test.objectid = sk->min_objectid;
1897 test.type = sk->min_type;
1898 test.offset = sk->min_offset;
1900 ret = btrfs_comp_cpu_keys(key, &test);
1904 test.objectid = sk->max_objectid;
1905 test.type = sk->max_type;
1906 test.offset = sk->max_offset;
1908 ret = btrfs_comp_cpu_keys(key, &test);
1914 static noinline int copy_to_sk(struct btrfs_root *root,
1915 struct btrfs_path *path,
1916 struct btrfs_key *key,
1917 struct btrfs_ioctl_search_key *sk,
1919 unsigned long *sk_offset,
1923 struct extent_buffer *leaf;
1924 struct btrfs_ioctl_search_header sh;
1925 unsigned long item_off;
1926 unsigned long item_len;
1932 leaf = path->nodes[0];
1933 slot = path->slots[0];
1934 nritems = btrfs_header_nritems(leaf);
1936 if (btrfs_header_generation(leaf) > sk->max_transid) {
1940 found_transid = btrfs_header_generation(leaf);
1942 for (i = slot; i < nritems; i++) {
1943 item_off = btrfs_item_ptr_offset(leaf, i);
1944 item_len = btrfs_item_size_nr(leaf, i);
1946 btrfs_item_key_to_cpu(leaf, key, i);
1947 if (!key_in_sk(key, sk))
1950 if (sizeof(sh) + item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1953 if (sizeof(sh) + item_len + *sk_offset >
1954 BTRFS_SEARCH_ARGS_BUFSIZE) {
1959 sh.objectid = key->objectid;
1960 sh.offset = key->offset;
1961 sh.type = key->type;
1963 sh.transid = found_transid;
1965 /* copy search result header */
1966 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1967 *sk_offset += sizeof(sh);
1970 char *p = buf + *sk_offset;
1972 read_extent_buffer(leaf, p,
1973 item_off, item_len);
1974 *sk_offset += item_len;
1978 if (*num_found >= sk->nr_items)
1983 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1985 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1988 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1998 static noinline int search_ioctl(struct inode *inode,
1999 struct btrfs_ioctl_search_args *args)
2001 struct btrfs_root *root;
2002 struct btrfs_key key;
2003 struct btrfs_path *path;
2004 struct btrfs_ioctl_search_key *sk = &args->key;
2005 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2008 unsigned long sk_offset = 0;
2010 path = btrfs_alloc_path();
2014 if (sk->tree_id == 0) {
2015 /* search the root of the inode that was passed */
2016 root = BTRFS_I(inode)->root;
2018 key.objectid = sk->tree_id;
2019 key.type = BTRFS_ROOT_ITEM_KEY;
2020 key.offset = (u64)-1;
2021 root = btrfs_read_fs_root_no_name(info, &key);
2023 printk(KERN_ERR "BTRFS: could not find root %llu\n",
2025 btrfs_free_path(path);
2030 key.objectid = sk->min_objectid;
2031 key.type = sk->min_type;
2032 key.offset = sk->min_offset;
2034 path->keep_locks = 1;
2037 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
2043 ret = copy_to_sk(root, path, &key, sk, args->buf,
2044 &sk_offset, &num_found);
2045 btrfs_release_path(path);
2046 if (ret || num_found >= sk->nr_items)
2052 sk->nr_items = num_found;
2053 btrfs_free_path(path);
2057 static noinline int btrfs_ioctl_tree_search(struct file *file,
2060 struct btrfs_ioctl_search_args *args;
2061 struct inode *inode;
2064 if (!capable(CAP_SYS_ADMIN))
2067 args = memdup_user(argp, sizeof(*args));
2069 return PTR_ERR(args);
2071 inode = file_inode(file);
2072 ret = search_ioctl(inode, args);
2073 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2080 * Search INODE_REFs to identify path name of 'dirid' directory
2081 * in a 'tree_id' tree. and sets path name to 'name'.
2083 static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2084 u64 tree_id, u64 dirid, char *name)
2086 struct btrfs_root *root;
2087 struct btrfs_key key;
2093 struct btrfs_inode_ref *iref;
2094 struct extent_buffer *l;
2095 struct btrfs_path *path;
2097 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2102 path = btrfs_alloc_path();
2106 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
2108 key.objectid = tree_id;
2109 key.type = BTRFS_ROOT_ITEM_KEY;
2110 key.offset = (u64)-1;
2111 root = btrfs_read_fs_root_no_name(info, &key);
2113 printk(KERN_ERR "BTRFS: could not find root %llu\n", tree_id);
2118 key.objectid = dirid;
2119 key.type = BTRFS_INODE_REF_KEY;
2120 key.offset = (u64)-1;
2123 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2127 ret = btrfs_previous_item(root, path, dirid,
2128 BTRFS_INODE_REF_KEY);
2138 slot = path->slots[0];
2139 btrfs_item_key_to_cpu(l, &key, slot);
2141 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2142 len = btrfs_inode_ref_name_len(l, iref);
2144 total_len += len + 1;
2146 ret = -ENAMETOOLONG;
2151 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
2153 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2156 btrfs_release_path(path);
2157 key.objectid = key.offset;
2158 key.offset = (u64)-1;
2159 dirid = key.objectid;
2161 memmove(name, ptr, total_len);
2162 name[total_len] = '\0';
2165 btrfs_free_path(path);
2169 static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2172 struct btrfs_ioctl_ino_lookup_args *args;
2173 struct inode *inode;
2176 if (!capable(CAP_SYS_ADMIN))
2179 args = memdup_user(argp, sizeof(*args));
2181 return PTR_ERR(args);
2183 inode = file_inode(file);
2185 if (args->treeid == 0)
2186 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2188 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2189 args->treeid, args->objectid,
2192 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2199 static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2202 struct dentry *parent = file->f_path.dentry;
2203 struct dentry *dentry;
2204 struct inode *dir = parent->d_inode;
2205 struct inode *inode;
2206 struct btrfs_root *root = BTRFS_I(dir)->root;
2207 struct btrfs_root *dest = NULL;
2208 struct btrfs_ioctl_vol_args *vol_args;
2209 struct btrfs_trans_handle *trans;
2210 struct btrfs_block_rsv block_rsv;
2211 u64 qgroup_reserved;
2216 vol_args = memdup_user(arg, sizeof(*vol_args));
2217 if (IS_ERR(vol_args))
2218 return PTR_ERR(vol_args);
2220 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2221 namelen = strlen(vol_args->name);
2222 if (strchr(vol_args->name, '/') ||
2223 strncmp(vol_args->name, "..", namelen) == 0) {
2228 err = mnt_want_write_file(file);
2232 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2234 goto out_drop_write;
2235 dentry = lookup_one_len(vol_args->name, parent, namelen);
2236 if (IS_ERR(dentry)) {
2237 err = PTR_ERR(dentry);
2238 goto out_unlock_dir;
2241 if (!dentry->d_inode) {
2246 inode = dentry->d_inode;
2247 dest = BTRFS_I(inode)->root;
2248 if (!capable(CAP_SYS_ADMIN)) {
2250 * Regular user. Only allow this with a special mount
2251 * option, when the user has write+exec access to the
2252 * subvol root, and when rmdir(2) would have been
2255 * Note that this is _not_ check that the subvol is
2256 * empty or doesn't contain data that we wouldn't
2257 * otherwise be able to delete.
2259 * Users who want to delete empty subvols should try
2263 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2267 * Do not allow deletion if the parent dir is the same
2268 * as the dir to be deleted. That means the ioctl
2269 * must be called on the dentry referencing the root
2270 * of the subvol, not a random directory contained
2277 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2282 /* check if subvolume may be deleted by a user */
2283 err = btrfs_may_delete(dir, dentry, 1);
2287 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
2292 mutex_lock(&inode->i_mutex);
2293 err = d_invalidate(dentry);
2297 down_write(&root->fs_info->subvol_sem);
2299 err = may_destroy_subvol(dest);
2303 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2305 * One for dir inode, two for dir entries, two for root
2308 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
2309 5, &qgroup_reserved, true);
2313 trans = btrfs_start_transaction(root, 0);
2314 if (IS_ERR(trans)) {
2315 err = PTR_ERR(trans);
2318 trans->block_rsv = &block_rsv;
2319 trans->bytes_reserved = block_rsv.size;
2321 ret = btrfs_unlink_subvol(trans, root, dir,
2322 dest->root_key.objectid,
2323 dentry->d_name.name,
2324 dentry->d_name.len);
2327 btrfs_abort_transaction(trans, root, ret);
2331 btrfs_record_root_in_trans(trans, dest);
2333 memset(&dest->root_item.drop_progress, 0,
2334 sizeof(dest->root_item.drop_progress));
2335 dest->root_item.drop_level = 0;
2336 btrfs_set_root_refs(&dest->root_item, 0);
2338 if (!xchg(&dest->orphan_item_inserted, 1)) {
2339 ret = btrfs_insert_orphan_item(trans,
2340 root->fs_info->tree_root,
2341 dest->root_key.objectid);
2343 btrfs_abort_transaction(trans, root, ret);
2349 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2350 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2351 dest->root_key.objectid);
2352 if (ret && ret != -ENOENT) {
2353 btrfs_abort_transaction(trans, root, ret);
2357 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2358 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2359 dest->root_item.received_uuid,
2360 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2361 dest->root_key.objectid);
2362 if (ret && ret != -ENOENT) {
2363 btrfs_abort_transaction(trans, root, ret);
2370 trans->block_rsv = NULL;
2371 trans->bytes_reserved = 0;
2372 ret = btrfs_end_transaction(trans, root);
2375 inode->i_flags |= S_DEAD;
2377 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
2379 up_write(&root->fs_info->subvol_sem);
2381 mutex_unlock(&inode->i_mutex);
2383 shrink_dcache_sb(root->fs_info->sb);
2384 btrfs_invalidate_inodes(dest);
2388 if (dest->cache_inode) {
2389 iput(dest->cache_inode);
2390 dest->cache_inode = NULL;
2396 mutex_unlock(&dir->i_mutex);
2398 mnt_drop_write_file(file);
2404 static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
2406 struct inode *inode = file_inode(file);
2407 struct btrfs_root *root = BTRFS_I(inode)->root;
2408 struct btrfs_ioctl_defrag_range_args *range;
2411 ret = mnt_want_write_file(file);
2415 if (btrfs_root_readonly(root)) {
2420 switch (inode->i_mode & S_IFMT) {
2422 if (!capable(CAP_SYS_ADMIN)) {
2426 ret = btrfs_defrag_root(root);
2429 ret = btrfs_defrag_root(root->fs_info->extent_root);
2432 if (!(file->f_mode & FMODE_WRITE)) {
2437 range = kzalloc(sizeof(*range), GFP_KERNEL);
2444 if (copy_from_user(range, argp,
2450 /* compression requires us to start the IO */
2451 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2452 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2453 range->extent_thresh = (u32)-1;
2456 /* the rest are all set to zero by kzalloc */
2457 range->len = (u64)-1;
2459 ret = btrfs_defrag_file(file_inode(file), file,
2469 mnt_drop_write_file(file);
2473 static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
2475 struct btrfs_ioctl_vol_args *vol_args;
2478 if (!capable(CAP_SYS_ADMIN))
2481 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2483 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2486 mutex_lock(&root->fs_info->volume_mutex);
2487 vol_args = memdup_user(arg, sizeof(*vol_args));
2488 if (IS_ERR(vol_args)) {
2489 ret = PTR_ERR(vol_args);
2493 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2494 ret = btrfs_init_new_device(root, vol_args->name);
2498 mutex_unlock(&root->fs_info->volume_mutex);
2499 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
2503 static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2505 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
2506 struct btrfs_ioctl_vol_args *vol_args;
2509 if (!capable(CAP_SYS_ADMIN))
2512 ret = mnt_want_write_file(file);
2516 vol_args = memdup_user(arg, sizeof(*vol_args));
2517 if (IS_ERR(vol_args)) {
2518 ret = PTR_ERR(vol_args);
2522 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2524 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2526 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2530 mutex_lock(&root->fs_info->volume_mutex);
2531 ret = btrfs_rm_device(root, vol_args->name);
2532 mutex_unlock(&root->fs_info->volume_mutex);
2533 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
2537 mnt_drop_write_file(file);
2541 static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2543 struct btrfs_ioctl_fs_info_args *fi_args;
2544 struct btrfs_device *device;
2545 struct btrfs_device *next;
2546 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2549 if (!capable(CAP_SYS_ADMIN))
2552 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2556 mutex_lock(&fs_devices->device_list_mutex);
2557 fi_args->num_devices = fs_devices->num_devices;
2558 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
2560 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
2561 if (device->devid > fi_args->max_id)
2562 fi_args->max_id = device->devid;
2564 mutex_unlock(&fs_devices->device_list_mutex);
2566 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2573 static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2575 struct btrfs_ioctl_dev_info_args *di_args;
2576 struct btrfs_device *dev;
2577 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2579 char *s_uuid = NULL;
2581 if (!capable(CAP_SYS_ADMIN))
2584 di_args = memdup_user(arg, sizeof(*di_args));
2585 if (IS_ERR(di_args))
2586 return PTR_ERR(di_args);
2588 if (!btrfs_is_empty_uuid(di_args->uuid))
2589 s_uuid = di_args->uuid;
2591 mutex_lock(&fs_devices->device_list_mutex);
2592 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
2599 di_args->devid = dev->devid;
2600 di_args->bytes_used = dev->bytes_used;
2601 di_args->total_bytes = dev->total_bytes;
2602 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
2604 struct rcu_string *name;
2607 name = rcu_dereference(dev->name);
2608 strncpy(di_args->path, name->str, sizeof(di_args->path));
2610 di_args->path[sizeof(di_args->path) - 1] = 0;
2612 di_args->path[0] = '\0';
2616 mutex_unlock(&fs_devices->device_list_mutex);
2617 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2624 static struct page *extent_same_get_page(struct inode *inode, u64 off)
2628 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2630 index = off >> PAGE_CACHE_SHIFT;
2632 page = grab_cache_page(inode->i_mapping, index);
2636 if (!PageUptodate(page)) {
2637 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2641 if (!PageUptodate(page)) {
2643 page_cache_release(page);
2652 static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2654 /* do any pending delalloc/csum calc on src, one way or
2655 another, and lock file content */
2657 struct btrfs_ordered_extent *ordered;
2658 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2659 ordered = btrfs_lookup_first_ordered_extent(inode,
2662 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
2663 off + len - 1, EXTENT_DELALLOC, 0, NULL))
2665 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2667 btrfs_put_ordered_extent(ordered);
2668 btrfs_wait_ordered_range(inode, off, len);
2672 static void btrfs_double_unlock(struct inode *inode1, u64 loff1,
2673 struct inode *inode2, u64 loff2, u64 len)
2675 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2676 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2678 mutex_unlock(&inode1->i_mutex);
2679 mutex_unlock(&inode2->i_mutex);
2682 static void btrfs_double_lock(struct inode *inode1, u64 loff1,
2683 struct inode *inode2, u64 loff2, u64 len)
2685 if (inode1 < inode2) {
2686 swap(inode1, inode2);
2690 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
2691 lock_extent_range(inode1, loff1, len);
2692 if (inode1 != inode2) {
2693 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
2694 lock_extent_range(inode2, loff2, len);
2698 static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
2699 u64 dst_loff, u64 len)
2702 struct page *src_page, *dst_page;
2703 unsigned int cmp_len = PAGE_CACHE_SIZE;
2704 void *addr, *dst_addr;
2707 if (len < PAGE_CACHE_SIZE)
2710 src_page = extent_same_get_page(src, loff);
2713 dst_page = extent_same_get_page(dst, dst_loff);
2715 page_cache_release(src_page);
2718 addr = kmap_atomic(src_page);
2719 dst_addr = kmap_atomic(dst_page);
2721 flush_dcache_page(src_page);
2722 flush_dcache_page(dst_page);
2724 if (memcmp(addr, dst_addr, cmp_len))
2725 ret = BTRFS_SAME_DATA_DIFFERS;
2727 kunmap_atomic(addr);
2728 kunmap_atomic(dst_addr);
2729 page_cache_release(src_page);
2730 page_cache_release(dst_page);
2736 dst_loff += cmp_len;
2743 static int extent_same_check_offsets(struct inode *inode, u64 off, u64 len)
2745 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2747 if (off + len > inode->i_size || off + len < off)
2749 /* Check that we are block aligned - btrfs_clone() requires this */
2750 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2756 static int btrfs_extent_same(struct inode *src, u64 loff, u64 len,
2757 struct inode *dst, u64 dst_loff)
2762 * btrfs_clone() can't handle extents in the same file
2763 * yet. Once that works, we can drop this check and replace it
2764 * with a check for the same inode, but overlapping extents.
2769 btrfs_double_lock(src, loff, dst, dst_loff, len);
2771 ret = extent_same_check_offsets(src, loff, len);
2775 ret = extent_same_check_offsets(dst, dst_loff, len);
2779 /* don't make the dst file partly checksummed */
2780 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2781 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2786 ret = btrfs_cmp_data(src, loff, dst, dst_loff, len);
2788 ret = btrfs_clone(src, dst, loff, len, len, dst_loff);
2791 btrfs_double_unlock(src, loff, dst, dst_loff, len);
2796 #define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
2798 static long btrfs_ioctl_file_extent_same(struct file *file,
2801 struct btrfs_ioctl_same_args tmp;
2802 struct btrfs_ioctl_same_args *same;
2803 struct btrfs_ioctl_same_extent_info *info;
2804 struct inode *src = file->f_dentry->d_inode;
2805 struct file *dst_file = NULL;
2812 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
2813 bool is_admin = capable(CAP_SYS_ADMIN);
2815 if (!(file->f_mode & FMODE_READ))
2818 ret = mnt_want_write_file(file);
2822 if (copy_from_user(&tmp,
2823 (struct btrfs_ioctl_same_args __user *)argp,
2829 size = sizeof(tmp) +
2830 tmp.dest_count * sizeof(struct btrfs_ioctl_same_extent_info);
2832 same = memdup_user((struct btrfs_ioctl_same_args __user *)argp, size);
2835 ret = PTR_ERR(same);
2839 off = same->logical_offset;
2843 * Limit the total length we will dedupe for each operation.
2844 * This is intended to bound the total time spent in this
2845 * ioctl to something sane.
2847 if (len > BTRFS_MAX_DEDUPE_LEN)
2848 len = BTRFS_MAX_DEDUPE_LEN;
2850 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
2852 * Btrfs does not support blocksize < page_size. As a
2853 * result, btrfs_cmp_data() won't correctly handle
2854 * this situation without an update.
2861 if (S_ISDIR(src->i_mode))
2865 if (!S_ISREG(src->i_mode))
2868 /* pre-format output fields to sane values */
2869 for (i = 0; i < same->dest_count; i++) {
2870 same->info[i].bytes_deduped = 0ULL;
2871 same->info[i].status = 0;
2875 for (i = 0; i < same->dest_count; i++) {
2876 info = &same->info[i];
2878 dst_file = fget(info->fd);
2880 info->status = -EBADF;
2884 if (!(is_admin || (dst_file->f_mode & FMODE_WRITE))) {
2885 info->status = -EINVAL;
2889 info->status = -EXDEV;
2890 if (file->f_path.mnt != dst_file->f_path.mnt)
2893 dst = dst_file->f_dentry->d_inode;
2894 if (src->i_sb != dst->i_sb)
2897 if (S_ISDIR(dst->i_mode)) {
2898 info->status = -EISDIR;
2902 if (!S_ISREG(dst->i_mode)) {
2903 info->status = -EACCES;
2907 info->status = btrfs_extent_same(src, off, len, dst,
2908 info->logical_offset);
2909 if (info->status == 0)
2910 info->bytes_deduped += len;
2917 ret = copy_to_user(argp, same, size);
2922 mnt_drop_write_file(file);
2927 * btrfs_clone() - clone a range from inode file to another
2929 * @src: Inode to clone from
2930 * @inode: Inode to clone to
2931 * @off: Offset within source to start clone from
2932 * @olen: Original length, passed by user, of range to clone
2933 * @olen_aligned: Block-aligned value of olen, extent_same uses
2934 * identical values here
2935 * @destoff: Offset within @inode to start clone
2937 static int btrfs_clone(struct inode *src, struct inode *inode,
2938 u64 off, u64 olen, u64 olen_aligned, u64 destoff)
2940 struct btrfs_root *root = BTRFS_I(inode)->root;
2941 struct btrfs_path *path = NULL;
2942 struct extent_buffer *leaf;
2943 struct btrfs_trans_handle *trans;
2945 struct btrfs_key key;
2949 u64 len = olen_aligned;
2952 buf = vmalloc(btrfs_level_size(root, 0));
2956 path = btrfs_alloc_path();
2964 key.objectid = btrfs_ino(src);
2965 key.type = BTRFS_EXTENT_DATA_KEY;
2970 * note the key will change type as we walk through the
2973 path->leave_spinning = 1;
2974 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2979 nritems = btrfs_header_nritems(path->nodes[0]);
2981 if (path->slots[0] >= nritems) {
2982 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
2987 nritems = btrfs_header_nritems(path->nodes[0]);
2989 leaf = path->nodes[0];
2990 slot = path->slots[0];
2992 btrfs_item_key_to_cpu(leaf, &key, slot);
2993 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
2994 key.objectid != btrfs_ino(src))
2997 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2998 struct btrfs_file_extent_item *extent;
3001 struct btrfs_key new_key;
3002 u64 disko = 0, diskl = 0;
3003 u64 datao = 0, datal = 0;
3007 extent = btrfs_item_ptr(leaf, slot,
3008 struct btrfs_file_extent_item);
3009 comp = btrfs_file_extent_compression(leaf, extent);
3010 type = btrfs_file_extent_type(leaf, extent);
3011 if (type == BTRFS_FILE_EXTENT_REG ||
3012 type == BTRFS_FILE_EXTENT_PREALLOC) {
3013 disko = btrfs_file_extent_disk_bytenr(leaf,
3015 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3017 datao = btrfs_file_extent_offset(leaf, extent);
3018 datal = btrfs_file_extent_num_bytes(leaf,
3020 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3021 /* take upper bound, may be compressed */
3022 datal = btrfs_file_extent_ram_bytes(leaf,
3026 if (key.offset + datal <= off ||
3027 key.offset >= off + len - 1) {
3032 size = btrfs_item_size_nr(leaf, slot);
3033 read_extent_buffer(leaf, buf,
3034 btrfs_item_ptr_offset(leaf, slot),
3037 btrfs_release_path(path);
3038 path->leave_spinning = 0;
3040 memcpy(&new_key, &key, sizeof(new_key));
3041 new_key.objectid = btrfs_ino(inode);
3042 if (off <= key.offset)
3043 new_key.offset = key.offset + destoff - off;
3045 new_key.offset = destoff;
3048 * 1 - adjusting old extent (we may have to split it)
3049 * 1 - add new extent
3052 trans = btrfs_start_transaction(root, 3);
3053 if (IS_ERR(trans)) {
3054 ret = PTR_ERR(trans);
3058 if (type == BTRFS_FILE_EXTENT_REG ||
3059 type == BTRFS_FILE_EXTENT_PREALLOC) {
3061 * a | --- range to clone ---| b
3062 * | ------------- extent ------------- |
3065 /* substract range b */
3066 if (key.offset + datal > off + len)
3067 datal = off + len - key.offset;
3069 /* substract range a */
3070 if (off > key.offset) {
3071 datao += off - key.offset;
3072 datal -= off - key.offset;
3075 ret = btrfs_drop_extents(trans, root, inode,
3077 new_key.offset + datal,
3080 btrfs_abort_transaction(trans, root,
3082 btrfs_end_transaction(trans, root);
3086 ret = btrfs_insert_empty_item(trans, root, path,
3089 btrfs_abort_transaction(trans, root,
3091 btrfs_end_transaction(trans, root);
3095 leaf = path->nodes[0];
3096 slot = path->slots[0];
3097 write_extent_buffer(leaf, buf,
3098 btrfs_item_ptr_offset(leaf, slot),
3101 extent = btrfs_item_ptr(leaf, slot,
3102 struct btrfs_file_extent_item);
3104 /* disko == 0 means it's a hole */
3108 btrfs_set_file_extent_offset(leaf, extent,
3110 btrfs_set_file_extent_num_bytes(leaf, extent,
3113 inode_add_bytes(inode, datal);
3114 ret = btrfs_inc_extent_ref(trans, root,
3116 root->root_key.objectid,
3118 new_key.offset - datao,
3121 btrfs_abort_transaction(trans,
3124 btrfs_end_transaction(trans,
3130 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3133 if (off > key.offset) {
3134 skip = off - key.offset;
3135 new_key.offset += skip;
3138 if (key.offset + datal > off + len)
3139 trim = key.offset + datal - (off + len);
3141 if (comp && (skip || trim)) {
3143 btrfs_end_transaction(trans, root);
3146 size -= skip + trim;
3147 datal -= skip + trim;
3149 ret = btrfs_drop_extents(trans, root, inode,
3151 new_key.offset + datal,
3154 btrfs_abort_transaction(trans, root,
3156 btrfs_end_transaction(trans, root);
3160 ret = btrfs_insert_empty_item(trans, root, path,
3163 btrfs_abort_transaction(trans, root,
3165 btrfs_end_transaction(trans, root);
3171 btrfs_file_extent_calc_inline_size(0);
3172 memmove(buf+start, buf+start+skip,
3176 leaf = path->nodes[0];
3177 slot = path->slots[0];
3178 write_extent_buffer(leaf, buf,
3179 btrfs_item_ptr_offset(leaf, slot),
3181 inode_add_bytes(inode, datal);
3184 btrfs_mark_buffer_dirty(leaf);
3185 btrfs_release_path(path);
3187 inode_inc_iversion(inode);
3188 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3191 * we round up to the block size at eof when
3192 * determining which extents to clone above,
3193 * but shouldn't round up the file size
3195 endoff = new_key.offset + datal;
3196 if (endoff > destoff+olen)
3197 endoff = destoff+olen;
3198 if (endoff > inode->i_size)
3199 btrfs_i_size_write(inode, endoff);
3201 ret = btrfs_update_inode(trans, root, inode);
3203 btrfs_abort_transaction(trans, root, ret);
3204 btrfs_end_transaction(trans, root);
3207 ret = btrfs_end_transaction(trans, root);
3209 btrfs_release_path(path);
3215 btrfs_release_path(path);
3216 btrfs_free_path(path);
3221 static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3222 u64 off, u64 olen, u64 destoff)
3224 struct inode *inode = file_inode(file);
3225 struct btrfs_root *root = BTRFS_I(inode)->root;
3230 u64 bs = root->fs_info->sb->s_blocksize;
3235 * - split compressed inline extents. annoying: we need to
3236 * decompress into destination's address_space (the file offset
3237 * may change, so source mapping won't do), then recompress (or
3238 * otherwise reinsert) a subrange.
3239 * - allow ranges within the same file to be cloned (provided
3240 * they don't overlap)?
3243 /* the destination must be opened for writing */
3244 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3247 if (btrfs_root_readonly(root))
3250 ret = mnt_want_write_file(file);
3254 src_file = fdget(srcfd);
3255 if (!src_file.file) {
3257 goto out_drop_write;
3261 if (src_file.file->f_path.mnt != file->f_path.mnt)
3264 src = file_inode(src_file.file);
3270 /* the src must be open for reading */
3271 if (!(src_file.file->f_mode & FMODE_READ))
3274 /* don't make the dst file partly checksummed */
3275 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3276 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3280 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3284 if (src->i_sb != inode->i_sb)
3289 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
3290 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
3292 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
3293 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
3296 mutex_lock(&src->i_mutex);
3299 /* determine range to clone */
3301 if (off + len > src->i_size || off + len < off)
3304 olen = len = src->i_size - off;
3305 /* if we extend to eof, continue to block boundary */
3306 if (off + len == src->i_size)
3307 len = ALIGN(src->i_size, bs) - off;
3309 /* verify the end result is block aligned */
3310 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3311 !IS_ALIGNED(destoff, bs))
3314 /* verify if ranges are overlapped within the same file */
3316 if (destoff + len > off && destoff < off + len)
3320 if (destoff > inode->i_size) {
3321 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3326 /* truncate page cache pages from target inode range */
3327 truncate_inode_pages_range(&inode->i_data, destoff,
3328 PAGE_CACHE_ALIGN(destoff + len) - 1);
3330 lock_extent_range(src, off, len);
3332 ret = btrfs_clone(src, inode, off, olen, len, destoff);
3334 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
3338 mutex_unlock(&src->i_mutex);
3339 mutex_unlock(&inode->i_mutex);
3341 mutex_unlock(&inode->i_mutex);
3342 mutex_unlock(&src->i_mutex);
3345 mutex_unlock(&src->i_mutex);
3350 mnt_drop_write_file(file);
3354 static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
3356 struct btrfs_ioctl_clone_range_args args;
3358 if (copy_from_user(&args, argp, sizeof(args)))
3360 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3361 args.src_length, args.dest_offset);
3365 * there are many ways the trans_start and trans_end ioctls can lead
3366 * to deadlocks. They should only be used by applications that
3367 * basically own the machine, and have a very in depth understanding
3368 * of all the possible deadlocks and enospc problems.
3370 static long btrfs_ioctl_trans_start(struct file *file)
3372 struct inode *inode = file_inode(file);
3373 struct btrfs_root *root = BTRFS_I(inode)->root;
3374 struct btrfs_trans_handle *trans;
3378 if (!capable(CAP_SYS_ADMIN))
3382 if (file->private_data)
3386 if (btrfs_root_readonly(root))
3389 ret = mnt_want_write_file(file);
3393 atomic_inc(&root->fs_info->open_ioctl_trans);
3396 trans = btrfs_start_ioctl_transaction(root);
3400 file->private_data = trans;
3404 atomic_dec(&root->fs_info->open_ioctl_trans);
3405 mnt_drop_write_file(file);
3410 static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3412 struct inode *inode = file_inode(file);
3413 struct btrfs_root *root = BTRFS_I(inode)->root;
3414 struct btrfs_root *new_root;
3415 struct btrfs_dir_item *di;
3416 struct btrfs_trans_handle *trans;
3417 struct btrfs_path *path;
3418 struct btrfs_key location;
3419 struct btrfs_disk_key disk_key;
3424 if (!capable(CAP_SYS_ADMIN))
3427 ret = mnt_want_write_file(file);
3431 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3437 objectid = BTRFS_FS_TREE_OBJECTID;
3439 location.objectid = objectid;
3440 location.type = BTRFS_ROOT_ITEM_KEY;
3441 location.offset = (u64)-1;
3443 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
3444 if (IS_ERR(new_root)) {
3445 ret = PTR_ERR(new_root);
3449 path = btrfs_alloc_path();
3454 path->leave_spinning = 1;
3456 trans = btrfs_start_transaction(root, 1);
3457 if (IS_ERR(trans)) {
3458 btrfs_free_path(path);
3459 ret = PTR_ERR(trans);
3463 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
3464 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
3465 dir_id, "default", 7, 1);
3466 if (IS_ERR_OR_NULL(di)) {
3467 btrfs_free_path(path);
3468 btrfs_end_transaction(trans, root);
3469 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
3470 "item, 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_free_path(path);
3480 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
3481 btrfs_end_transaction(trans, root);
3483 mnt_drop_write_file(file);
3487 void btrfs_get_block_group_info(struct list_head *groups_list,
3488 struct btrfs_ioctl_space_info *space)
3490 struct btrfs_block_group_cache *block_group;
3492 space->total_bytes = 0;
3493 space->used_bytes = 0;
3495 list_for_each_entry(block_group, groups_list, list) {
3496 space->flags = block_group->flags;
3497 space->total_bytes += block_group->key.offset;
3498 space->used_bytes +=
3499 btrfs_block_group_used(&block_group->item);
3503 static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
3505 struct btrfs_ioctl_space_args space_args;
3506 struct btrfs_ioctl_space_info space;
3507 struct btrfs_ioctl_space_info *dest;
3508 struct btrfs_ioctl_space_info *dest_orig;
3509 struct btrfs_ioctl_space_info __user *user_dest;
3510 struct btrfs_space_info *info;
3511 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3512 BTRFS_BLOCK_GROUP_SYSTEM,
3513 BTRFS_BLOCK_GROUP_METADATA,
3514 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3521 if (copy_from_user(&space_args,
3522 (struct btrfs_ioctl_space_args __user *)arg,
3523 sizeof(space_args)))
3526 for (i = 0; i < num_types; i++) {
3527 struct btrfs_space_info *tmp;
3531 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3533 if (tmp->flags == types[i]) {
3543 down_read(&info->groups_sem);
3544 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3545 if (!list_empty(&info->block_groups[c]))
3548 up_read(&info->groups_sem);
3551 /* space_slots == 0 means they are asking for a count */
3552 if (space_args.space_slots == 0) {
3553 space_args.total_spaces = slot_count;
3557 slot_count = min_t(u64, space_args.space_slots, slot_count);
3559 alloc_size = sizeof(*dest) * slot_count;
3561 /* we generally have at most 6 or so space infos, one for each raid
3562 * level. So, a whole page should be more than enough for everyone
3564 if (alloc_size > PAGE_CACHE_SIZE)
3567 space_args.total_spaces = 0;
3568 dest = kmalloc(alloc_size, GFP_NOFS);
3573 /* now we have a buffer to copy into */
3574 for (i = 0; i < num_types; i++) {
3575 struct btrfs_space_info *tmp;
3582 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3584 if (tmp->flags == types[i]) {
3593 down_read(&info->groups_sem);
3594 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3595 if (!list_empty(&info->block_groups[c])) {
3596 btrfs_get_block_group_info(
3597 &info->block_groups[c], &space);
3598 memcpy(dest, &space, sizeof(space));
3600 space_args.total_spaces++;
3606 up_read(&info->groups_sem);
3609 user_dest = (struct btrfs_ioctl_space_info __user *)
3610 (arg + sizeof(struct btrfs_ioctl_space_args));
3612 if (copy_to_user(user_dest, dest_orig, alloc_size))
3617 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
3624 * there are many ways the trans_start and trans_end ioctls can lead
3625 * to deadlocks. They should only be used by applications that
3626 * basically own the machine, and have a very in depth understanding
3627 * of all the possible deadlocks and enospc problems.
3629 long btrfs_ioctl_trans_end(struct file *file)
3631 struct inode *inode = file_inode(file);
3632 struct btrfs_root *root = BTRFS_I(inode)->root;
3633 struct btrfs_trans_handle *trans;
3635 trans = file->private_data;
3638 file->private_data = NULL;
3640 btrfs_end_transaction(trans, root);
3642 atomic_dec(&root->fs_info->open_ioctl_trans);
3644 mnt_drop_write_file(file);
3648 static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3651 struct btrfs_trans_handle *trans;
3655 trans = btrfs_attach_transaction_barrier(root);
3656 if (IS_ERR(trans)) {
3657 if (PTR_ERR(trans) != -ENOENT)
3658 return PTR_ERR(trans);
3660 /* No running transaction, don't bother */
3661 transid = root->fs_info->last_trans_committed;
3664 transid = trans->transid;
3665 ret = btrfs_commit_transaction_async(trans, root, 0);
3667 btrfs_end_transaction(trans, root);
3672 if (copy_to_user(argp, &transid, sizeof(transid)))
3677 static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
3683 if (copy_from_user(&transid, argp, sizeof(transid)))
3686 transid = 0; /* current trans */
3688 return btrfs_wait_for_commit(root, transid);
3691 static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
3693 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
3694 struct btrfs_ioctl_scrub_args *sa;
3697 if (!capable(CAP_SYS_ADMIN))
3700 sa = memdup_user(arg, sizeof(*sa));
3704 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3705 ret = mnt_want_write_file(file);
3710 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
3711 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3714 if (copy_to_user(arg, sa, sizeof(*sa)))
3717 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3718 mnt_drop_write_file(file);
3724 static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3726 if (!capable(CAP_SYS_ADMIN))
3729 return btrfs_scrub_cancel(root->fs_info);
3732 static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3735 struct btrfs_ioctl_scrub_args *sa;
3738 if (!capable(CAP_SYS_ADMIN))
3741 sa = memdup_user(arg, sizeof(*sa));
3745 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3747 if (copy_to_user(arg, sa, sizeof(*sa)))
3754 static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
3757 struct btrfs_ioctl_get_dev_stats *sa;
3760 sa = memdup_user(arg, sizeof(*sa));
3764 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3769 ret = btrfs_get_dev_stats(root, sa);
3771 if (copy_to_user(arg, sa, sizeof(*sa)))
3778 static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
3780 struct btrfs_ioctl_dev_replace_args *p;
3783 if (!capable(CAP_SYS_ADMIN))
3786 p = memdup_user(arg, sizeof(*p));
3791 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
3792 if (root->fs_info->sb->s_flags & MS_RDONLY) {
3797 &root->fs_info->mutually_exclusive_operation_running,
3799 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3801 ret = btrfs_dev_replace_start(root, p);
3803 &root->fs_info->mutually_exclusive_operation_running,
3807 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
3808 btrfs_dev_replace_status(root->fs_info, p);
3811 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
3812 ret = btrfs_dev_replace_cancel(root->fs_info, p);
3819 if (copy_to_user(arg, p, sizeof(*p)))
3826 static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3832 struct btrfs_ioctl_ino_path_args *ipa = NULL;
3833 struct inode_fs_paths *ipath = NULL;
3834 struct btrfs_path *path;
3836 if (!capable(CAP_DAC_READ_SEARCH))
3839 path = btrfs_alloc_path();
3845 ipa = memdup_user(arg, sizeof(*ipa));
3852 size = min_t(u32, ipa->size, 4096);
3853 ipath = init_ipath(size, root, path);
3854 if (IS_ERR(ipath)) {
3855 ret = PTR_ERR(ipath);
3860 ret = paths_from_inode(ipa->inum, ipath);
3864 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
3865 rel_ptr = ipath->fspath->val[i] -
3866 (u64)(unsigned long)ipath->fspath->val;
3867 ipath->fspath->val[i] = rel_ptr;
3870 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3871 (void *)(unsigned long)ipath->fspath, size);
3878 btrfs_free_path(path);
3885 static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3887 struct btrfs_data_container *inodes = ctx;
3888 const size_t c = 3 * sizeof(u64);
3890 if (inodes->bytes_left >= c) {
3891 inodes->bytes_left -= c;
3892 inodes->val[inodes->elem_cnt] = inum;
3893 inodes->val[inodes->elem_cnt + 1] = offset;
3894 inodes->val[inodes->elem_cnt + 2] = root;
3895 inodes->elem_cnt += 3;
3897 inodes->bytes_missing += c - inodes->bytes_left;
3898 inodes->bytes_left = 0;
3899 inodes->elem_missed += 3;
3905 static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3910 struct btrfs_ioctl_logical_ino_args *loi;
3911 struct btrfs_data_container *inodes = NULL;
3912 struct btrfs_path *path = NULL;
3914 if (!capable(CAP_SYS_ADMIN))
3917 loi = memdup_user(arg, sizeof(*loi));
3924 path = btrfs_alloc_path();
3930 size = min_t(u32, loi->size, 64 * 1024);
3931 inodes = init_data_container(size);
3932 if (IS_ERR(inodes)) {
3933 ret = PTR_ERR(inodes);
3938 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
3939 build_ino_list, inodes);
3945 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3946 (void *)(unsigned long)inodes, size);
3951 btrfs_free_path(path);
3958 void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
3959 struct btrfs_ioctl_balance_args *bargs)
3961 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3963 bargs->flags = bctl->flags;
3965 if (atomic_read(&fs_info->balance_running))
3966 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3967 if (atomic_read(&fs_info->balance_pause_req))
3968 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
3969 if (atomic_read(&fs_info->balance_cancel_req))
3970 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
3972 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3973 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3974 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
3977 spin_lock(&fs_info->balance_lock);
3978 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3979 spin_unlock(&fs_info->balance_lock);
3981 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3985 static long btrfs_ioctl_balance(struct file *file, void __user *arg)
3987 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
3988 struct btrfs_fs_info *fs_info = root->fs_info;
3989 struct btrfs_ioctl_balance_args *bargs;
3990 struct btrfs_balance_control *bctl;
3991 bool need_unlock; /* for mut. excl. ops lock */
3994 if (!capable(CAP_SYS_ADMIN))
3997 ret = mnt_want_write_file(file);
4002 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4003 mutex_lock(&fs_info->volume_mutex);
4004 mutex_lock(&fs_info->balance_mutex);
4010 * mut. excl. ops lock is locked. Three possibilites:
4011 * (1) some other op is running
4012 * (2) balance is running
4013 * (3) balance is paused -- special case (think resume)
4015 mutex_lock(&fs_info->balance_mutex);
4016 if (fs_info->balance_ctl) {
4017 /* this is either (2) or (3) */
4018 if (!atomic_read(&fs_info->balance_running)) {
4019 mutex_unlock(&fs_info->balance_mutex);
4020 if (!mutex_trylock(&fs_info->volume_mutex))
4022 mutex_lock(&fs_info->balance_mutex);
4024 if (fs_info->balance_ctl &&
4025 !atomic_read(&fs_info->balance_running)) {
4027 need_unlock = false;
4031 mutex_unlock(&fs_info->balance_mutex);
4032 mutex_unlock(&fs_info->volume_mutex);
4036 mutex_unlock(&fs_info->balance_mutex);
4042 mutex_unlock(&fs_info->balance_mutex);
4043 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
4048 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
4051 bargs = memdup_user(arg, sizeof(*bargs));
4052 if (IS_ERR(bargs)) {
4053 ret = PTR_ERR(bargs);
4057 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4058 if (!fs_info->balance_ctl) {
4063 bctl = fs_info->balance_ctl;
4064 spin_lock(&fs_info->balance_lock);
4065 bctl->flags |= BTRFS_BALANCE_RESUME;
4066 spin_unlock(&fs_info->balance_lock);
4074 if (fs_info->balance_ctl) {
4079 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4085 bctl->fs_info = fs_info;
4087 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4088 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4089 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4091 bctl->flags = bargs->flags;
4093 /* balance everything - no filters */
4094 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
4099 * Ownership of bctl and mutually_exclusive_operation_running
4100 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4101 * or, if restriper was paused all the way until unmount, in
4102 * free_fs_info. mutually_exclusive_operation_running is
4103 * cleared in __cancel_balance.
4105 need_unlock = false;
4107 ret = btrfs_balance(bctl, bargs);
4110 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4117 mutex_unlock(&fs_info->balance_mutex);
4118 mutex_unlock(&fs_info->volume_mutex);
4120 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4122 mnt_drop_write_file(file);
4126 static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4128 if (!capable(CAP_SYS_ADMIN))
4132 case BTRFS_BALANCE_CTL_PAUSE:
4133 return btrfs_pause_balance(root->fs_info);
4134 case BTRFS_BALANCE_CTL_CANCEL:
4135 return btrfs_cancel_balance(root->fs_info);
4141 static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4144 struct btrfs_fs_info *fs_info = root->fs_info;
4145 struct btrfs_ioctl_balance_args *bargs;
4148 if (!capable(CAP_SYS_ADMIN))
4151 mutex_lock(&fs_info->balance_mutex);
4152 if (!fs_info->balance_ctl) {
4157 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4163 update_ioctl_balance_args(fs_info, 1, bargs);
4165 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4170 mutex_unlock(&fs_info->balance_mutex);
4174 static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
4176 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4177 struct btrfs_ioctl_quota_ctl_args *sa;
4178 struct btrfs_trans_handle *trans = NULL;
4182 if (!capable(CAP_SYS_ADMIN))
4185 ret = mnt_want_write_file(file);
4189 sa = memdup_user(arg, sizeof(*sa));
4195 down_write(&root->fs_info->subvol_sem);
4196 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4197 if (IS_ERR(trans)) {
4198 ret = PTR_ERR(trans);
4203 case BTRFS_QUOTA_CTL_ENABLE:
4204 ret = btrfs_quota_enable(trans, root->fs_info);
4206 case BTRFS_QUOTA_CTL_DISABLE:
4207 ret = btrfs_quota_disable(trans, root->fs_info);
4214 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4219 up_write(&root->fs_info->subvol_sem);
4221 mnt_drop_write_file(file);
4225 static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
4227 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4228 struct btrfs_ioctl_qgroup_assign_args *sa;
4229 struct btrfs_trans_handle *trans;
4233 if (!capable(CAP_SYS_ADMIN))
4236 ret = mnt_want_write_file(file);
4240 sa = memdup_user(arg, sizeof(*sa));
4246 trans = btrfs_join_transaction(root);
4247 if (IS_ERR(trans)) {
4248 ret = PTR_ERR(trans);
4252 /* FIXME: check if the IDs really exist */
4254 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4257 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4261 err = btrfs_end_transaction(trans, root);
4268 mnt_drop_write_file(file);
4272 static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
4274 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4275 struct btrfs_ioctl_qgroup_create_args *sa;
4276 struct btrfs_trans_handle *trans;
4280 if (!capable(CAP_SYS_ADMIN))
4283 ret = mnt_want_write_file(file);
4287 sa = memdup_user(arg, sizeof(*sa));
4293 if (!sa->qgroupid) {
4298 trans = btrfs_join_transaction(root);
4299 if (IS_ERR(trans)) {
4300 ret = PTR_ERR(trans);
4304 /* FIXME: check if the IDs really exist */
4306 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
4309 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4312 err = btrfs_end_transaction(trans, root);
4319 mnt_drop_write_file(file);
4323 static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
4325 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4326 struct btrfs_ioctl_qgroup_limit_args *sa;
4327 struct btrfs_trans_handle *trans;
4332 if (!capable(CAP_SYS_ADMIN))
4335 ret = mnt_want_write_file(file);
4339 sa = memdup_user(arg, sizeof(*sa));
4345 trans = btrfs_join_transaction(root);
4346 if (IS_ERR(trans)) {
4347 ret = PTR_ERR(trans);
4351 qgroupid = sa->qgroupid;
4353 /* take the current subvol as qgroup */
4354 qgroupid = root->root_key.objectid;
4357 /* FIXME: check if the IDs really exist */
4358 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4360 err = btrfs_end_transaction(trans, root);
4367 mnt_drop_write_file(file);
4371 static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4373 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4374 struct btrfs_ioctl_quota_rescan_args *qsa;
4377 if (!capable(CAP_SYS_ADMIN))
4380 ret = mnt_want_write_file(file);
4384 qsa = memdup_user(arg, sizeof(*qsa));
4395 ret = btrfs_qgroup_rescan(root->fs_info);
4400 mnt_drop_write_file(file);
4404 static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4406 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4407 struct btrfs_ioctl_quota_rescan_args *qsa;
4410 if (!capable(CAP_SYS_ADMIN))
4413 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
4417 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4419 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
4422 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4429 static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4431 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4433 if (!capable(CAP_SYS_ADMIN))
4436 return btrfs_qgroup_wait_for_completion(root->fs_info);
4439 static long _btrfs_ioctl_set_received_subvol(struct file *file,
4440 struct btrfs_ioctl_received_subvol_args *sa)
4442 struct inode *inode = file_inode(file);
4443 struct btrfs_root *root = BTRFS_I(inode)->root;
4444 struct btrfs_root_item *root_item = &root->root_item;
4445 struct btrfs_trans_handle *trans;
4446 struct timespec ct = CURRENT_TIME;
4448 int received_uuid_changed;
4450 if (!inode_owner_or_capable(inode))
4453 ret = mnt_want_write_file(file);
4457 down_write(&root->fs_info->subvol_sem);
4459 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
4464 if (btrfs_root_readonly(root)) {
4471 * 2 - uuid items (received uuid + subvol uuid)
4473 trans = btrfs_start_transaction(root, 3);
4474 if (IS_ERR(trans)) {
4475 ret = PTR_ERR(trans);
4480 sa->rtransid = trans->transid;
4481 sa->rtime.sec = ct.tv_sec;
4482 sa->rtime.nsec = ct.tv_nsec;
4484 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4486 if (received_uuid_changed &&
4487 !btrfs_is_empty_uuid(root_item->received_uuid))
4488 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
4489 root_item->received_uuid,
4490 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4491 root->root_key.objectid);
4492 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4493 btrfs_set_root_stransid(root_item, sa->stransid);
4494 btrfs_set_root_rtransid(root_item, sa->rtransid);
4495 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4496 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4497 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4498 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
4500 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4501 &root->root_key, &root->root_item);
4503 btrfs_end_transaction(trans, root);
4506 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
4507 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
4509 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4510 root->root_key.objectid);
4511 if (ret < 0 && ret != -EEXIST) {
4512 btrfs_abort_transaction(trans, root, ret);
4516 ret = btrfs_commit_transaction(trans, root);
4518 btrfs_abort_transaction(trans, root, ret);
4523 up_write(&root->fs_info->subvol_sem);
4524 mnt_drop_write_file(file);
4529 static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4532 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4533 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4536 args32 = memdup_user(arg, sizeof(*args32));
4537 if (IS_ERR(args32)) {
4538 ret = PTR_ERR(args32);
4543 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
4544 if (IS_ERR(args64)) {
4545 ret = PTR_ERR(args64);
4550 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4551 args64->stransid = args32->stransid;
4552 args64->rtransid = args32->rtransid;
4553 args64->stime.sec = args32->stime.sec;
4554 args64->stime.nsec = args32->stime.nsec;
4555 args64->rtime.sec = args32->rtime.sec;
4556 args64->rtime.nsec = args32->rtime.nsec;
4557 args64->flags = args32->flags;
4559 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4563 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4564 args32->stransid = args64->stransid;
4565 args32->rtransid = args64->rtransid;
4566 args32->stime.sec = args64->stime.sec;
4567 args32->stime.nsec = args64->stime.nsec;
4568 args32->rtime.sec = args64->rtime.sec;
4569 args32->rtime.nsec = args64->rtime.nsec;
4570 args32->flags = args64->flags;
4572 ret = copy_to_user(arg, args32, sizeof(*args32));
4583 static long btrfs_ioctl_set_received_subvol(struct file *file,
4586 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4589 sa = memdup_user(arg, sizeof(*sa));
4596 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4601 ret = copy_to_user(arg, sa, sizeof(*sa));
4610 static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4612 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4615 char label[BTRFS_LABEL_SIZE];
4617 spin_lock(&root->fs_info->super_lock);
4618 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4619 spin_unlock(&root->fs_info->super_lock);
4621 len = strnlen(label, BTRFS_LABEL_SIZE);
4623 if (len == BTRFS_LABEL_SIZE) {
4624 btrfs_warn(root->fs_info,
4625 "label is too long, return the first %zu bytes", --len);
4628 ret = copy_to_user(arg, label, len);
4630 return ret ? -EFAULT : 0;
4633 static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4635 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4636 struct btrfs_super_block *super_block = root->fs_info->super_copy;
4637 struct btrfs_trans_handle *trans;
4638 char label[BTRFS_LABEL_SIZE];
4641 if (!capable(CAP_SYS_ADMIN))
4644 if (copy_from_user(label, arg, sizeof(label)))
4647 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
4648 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
4649 BTRFS_LABEL_SIZE - 1);
4653 ret = mnt_want_write_file(file);
4657 trans = btrfs_start_transaction(root, 0);
4658 if (IS_ERR(trans)) {
4659 ret = PTR_ERR(trans);
4663 spin_lock(&root->fs_info->super_lock);
4664 strcpy(super_block->label, label);
4665 spin_unlock(&root->fs_info->super_lock);
4666 ret = btrfs_commit_transaction(trans, root);
4669 mnt_drop_write_file(file);
4673 #define INIT_FEATURE_FLAGS(suffix) \
4674 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
4675 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
4676 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
4678 static int btrfs_ioctl_get_supported_features(struct file *file,
4681 static struct btrfs_ioctl_feature_flags features[3] = {
4682 INIT_FEATURE_FLAGS(SUPP),
4683 INIT_FEATURE_FLAGS(SAFE_SET),
4684 INIT_FEATURE_FLAGS(SAFE_CLEAR)
4687 if (copy_to_user(arg, &features, sizeof(features)))
4693 static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
4695 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4696 struct btrfs_super_block *super_block = root->fs_info->super_copy;
4697 struct btrfs_ioctl_feature_flags features;
4699 features.compat_flags = btrfs_super_compat_flags(super_block);
4700 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
4701 features.incompat_flags = btrfs_super_incompat_flags(super_block);
4703 if (copy_to_user(arg, &features, sizeof(features)))
4709 static int check_feature_bits(struct btrfs_root *root,
4710 enum btrfs_feature_set set,
4711 u64 change_mask, u64 flags, u64 supported_flags,
4712 u64 safe_set, u64 safe_clear)
4714 const char *type = btrfs_feature_set_names[set];
4716 u64 disallowed, unsupported;
4717 u64 set_mask = flags & change_mask;
4718 u64 clear_mask = ~flags & change_mask;
4720 unsupported = set_mask & ~supported_flags;
4722 names = btrfs_printable_features(set, unsupported);
4724 btrfs_warn(root->fs_info,
4725 "this kernel does not support the %s feature bit%s",
4726 names, strchr(names, ',') ? "s" : "");
4729 btrfs_warn(root->fs_info,
4730 "this kernel does not support %s bits 0x%llx",
4735 disallowed = set_mask & ~safe_set;
4737 names = btrfs_printable_features(set, disallowed);
4739 btrfs_warn(root->fs_info,
4740 "can't set the %s feature bit%s while mounted",
4741 names, strchr(names, ',') ? "s" : "");
4744 btrfs_warn(root->fs_info,
4745 "can't set %s bits 0x%llx while mounted",
4750 disallowed = clear_mask & ~safe_clear;
4752 names = btrfs_printable_features(set, disallowed);
4754 btrfs_warn(root->fs_info,
4755 "can't clear the %s feature bit%s while mounted",
4756 names, strchr(names, ',') ? "s" : "");
4759 btrfs_warn(root->fs_info,
4760 "can't clear %s bits 0x%llx while mounted",
4768 #define check_feature(root, change_mask, flags, mask_base) \
4769 check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
4770 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
4771 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
4772 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
4774 static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
4776 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4777 struct btrfs_super_block *super_block = root->fs_info->super_copy;
4778 struct btrfs_ioctl_feature_flags flags[2];
4779 struct btrfs_trans_handle *trans;
4783 if (!capable(CAP_SYS_ADMIN))
4786 if (copy_from_user(flags, arg, sizeof(flags)))
4790 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
4791 !flags[0].incompat_flags)
4794 ret = check_feature(root, flags[0].compat_flags,
4795 flags[1].compat_flags, COMPAT);
4799 ret = check_feature(root, flags[0].compat_ro_flags,
4800 flags[1].compat_ro_flags, COMPAT_RO);
4804 ret = check_feature(root, flags[0].incompat_flags,
4805 flags[1].incompat_flags, INCOMPAT);
4809 trans = btrfs_start_transaction(root, 0);
4811 return PTR_ERR(trans);
4813 spin_lock(&root->fs_info->super_lock);
4814 newflags = btrfs_super_compat_flags(super_block);
4815 newflags |= flags[0].compat_flags & flags[1].compat_flags;
4816 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
4817 btrfs_set_super_compat_flags(super_block, newflags);
4819 newflags = btrfs_super_compat_ro_flags(super_block);
4820 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
4821 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
4822 btrfs_set_super_compat_ro_flags(super_block, newflags);
4824 newflags = btrfs_super_incompat_flags(super_block);
4825 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
4826 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
4827 btrfs_set_super_incompat_flags(super_block, newflags);
4828 spin_unlock(&root->fs_info->super_lock);
4830 return btrfs_commit_transaction(trans, root);
4833 long btrfs_ioctl(struct file *file, unsigned int
4834 cmd, unsigned long arg)
4836 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4837 void __user *argp = (void __user *)arg;
4840 case FS_IOC_GETFLAGS:
4841 return btrfs_ioctl_getflags(file, argp);
4842 case FS_IOC_SETFLAGS:
4843 return btrfs_ioctl_setflags(file, argp);
4844 case FS_IOC_GETVERSION:
4845 return btrfs_ioctl_getversion(file, argp);
4847 return btrfs_ioctl_fitrim(file, argp);
4848 case BTRFS_IOC_SNAP_CREATE:
4849 return btrfs_ioctl_snap_create(file, argp, 0);
4850 case BTRFS_IOC_SNAP_CREATE_V2:
4851 return btrfs_ioctl_snap_create_v2(file, argp, 0);
4852 case BTRFS_IOC_SUBVOL_CREATE:
4853 return btrfs_ioctl_snap_create(file, argp, 1);
4854 case BTRFS_IOC_SUBVOL_CREATE_V2:
4855 return btrfs_ioctl_snap_create_v2(file, argp, 1);
4856 case BTRFS_IOC_SNAP_DESTROY:
4857 return btrfs_ioctl_snap_destroy(file, argp);
4858 case BTRFS_IOC_SUBVOL_GETFLAGS:
4859 return btrfs_ioctl_subvol_getflags(file, argp);
4860 case BTRFS_IOC_SUBVOL_SETFLAGS:
4861 return btrfs_ioctl_subvol_setflags(file, argp);
4862 case BTRFS_IOC_DEFAULT_SUBVOL:
4863 return btrfs_ioctl_default_subvol(file, argp);
4864 case BTRFS_IOC_DEFRAG:
4865 return btrfs_ioctl_defrag(file, NULL);
4866 case BTRFS_IOC_DEFRAG_RANGE:
4867 return btrfs_ioctl_defrag(file, argp);
4868 case BTRFS_IOC_RESIZE:
4869 return btrfs_ioctl_resize(file, argp);
4870 case BTRFS_IOC_ADD_DEV:
4871 return btrfs_ioctl_add_dev(root, argp);
4872 case BTRFS_IOC_RM_DEV:
4873 return btrfs_ioctl_rm_dev(file, argp);
4874 case BTRFS_IOC_FS_INFO:
4875 return btrfs_ioctl_fs_info(root, argp);
4876 case BTRFS_IOC_DEV_INFO:
4877 return btrfs_ioctl_dev_info(root, argp);
4878 case BTRFS_IOC_BALANCE:
4879 return btrfs_ioctl_balance(file, NULL);
4880 case BTRFS_IOC_CLONE:
4881 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
4882 case BTRFS_IOC_CLONE_RANGE:
4883 return btrfs_ioctl_clone_range(file, argp);
4884 case BTRFS_IOC_TRANS_START:
4885 return btrfs_ioctl_trans_start(file);
4886 case BTRFS_IOC_TRANS_END:
4887 return btrfs_ioctl_trans_end(file);
4888 case BTRFS_IOC_TREE_SEARCH:
4889 return btrfs_ioctl_tree_search(file, argp);
4890 case BTRFS_IOC_INO_LOOKUP:
4891 return btrfs_ioctl_ino_lookup(file, argp);
4892 case BTRFS_IOC_INO_PATHS:
4893 return btrfs_ioctl_ino_to_path(root, argp);
4894 case BTRFS_IOC_LOGICAL_INO:
4895 return btrfs_ioctl_logical_to_ino(root, argp);
4896 case BTRFS_IOC_SPACE_INFO:
4897 return btrfs_ioctl_space_info(root, argp);
4898 case BTRFS_IOC_SYNC: {
4901 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
4904 ret = btrfs_sync_fs(file->f_dentry->d_sb, 1);
4907 case BTRFS_IOC_START_SYNC:
4908 return btrfs_ioctl_start_sync(root, argp);
4909 case BTRFS_IOC_WAIT_SYNC:
4910 return btrfs_ioctl_wait_sync(root, argp);
4911 case BTRFS_IOC_SCRUB:
4912 return btrfs_ioctl_scrub(file, argp);
4913 case BTRFS_IOC_SCRUB_CANCEL:
4914 return btrfs_ioctl_scrub_cancel(root, argp);
4915 case BTRFS_IOC_SCRUB_PROGRESS:
4916 return btrfs_ioctl_scrub_progress(root, argp);
4917 case BTRFS_IOC_BALANCE_V2:
4918 return btrfs_ioctl_balance(file, argp);
4919 case BTRFS_IOC_BALANCE_CTL:
4920 return btrfs_ioctl_balance_ctl(root, arg);
4921 case BTRFS_IOC_BALANCE_PROGRESS:
4922 return btrfs_ioctl_balance_progress(root, argp);
4923 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
4924 return btrfs_ioctl_set_received_subvol(file, argp);
4926 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
4927 return btrfs_ioctl_set_received_subvol_32(file, argp);
4929 case BTRFS_IOC_SEND:
4930 return btrfs_ioctl_send(file, argp);
4931 case BTRFS_IOC_GET_DEV_STATS:
4932 return btrfs_ioctl_get_dev_stats(root, argp);
4933 case BTRFS_IOC_QUOTA_CTL:
4934 return btrfs_ioctl_quota_ctl(file, argp);
4935 case BTRFS_IOC_QGROUP_ASSIGN:
4936 return btrfs_ioctl_qgroup_assign(file, argp);
4937 case BTRFS_IOC_QGROUP_CREATE:
4938 return btrfs_ioctl_qgroup_create(file, argp);
4939 case BTRFS_IOC_QGROUP_LIMIT:
4940 return btrfs_ioctl_qgroup_limit(file, argp);
4941 case BTRFS_IOC_QUOTA_RESCAN:
4942 return btrfs_ioctl_quota_rescan(file, argp);
4943 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
4944 return btrfs_ioctl_quota_rescan_status(file, argp);
4945 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
4946 return btrfs_ioctl_quota_rescan_wait(file, argp);
4947 case BTRFS_IOC_DEV_REPLACE:
4948 return btrfs_ioctl_dev_replace(root, argp);
4949 case BTRFS_IOC_GET_FSLABEL:
4950 return btrfs_ioctl_get_fslabel(file, argp);
4951 case BTRFS_IOC_SET_FSLABEL:
4952 return btrfs_ioctl_set_fslabel(file, argp);
4953 case BTRFS_IOC_FILE_EXTENT_SAME:
4954 return btrfs_ioctl_file_extent_same(file, argp);
4955 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
4956 return btrfs_ioctl_get_supported_features(file, argp);
4957 case BTRFS_IOC_GET_FEATURES:
4958 return btrfs_ioctl_get_features(file, argp);
4959 case BTRFS_IOC_SET_FEATURES:
4960 return btrfs_ioctl_set_features(file, argp);