xref: /openbmc/linux/fs/btrfs/ioctl.c (revision e9662f70)
1f46b5a66SChristoph Hellwig /*
2f46b5a66SChristoph Hellwig  * Copyright (C) 2007 Oracle.  All rights reserved.
3f46b5a66SChristoph Hellwig  *
4f46b5a66SChristoph Hellwig  * This program is free software; you can redistribute it and/or
5f46b5a66SChristoph Hellwig  * modify it under the terms of the GNU General Public
6f46b5a66SChristoph Hellwig  * License v2 as published by the Free Software Foundation.
7f46b5a66SChristoph Hellwig  *
8f46b5a66SChristoph Hellwig  * This program is distributed in the hope that it will be useful,
9f46b5a66SChristoph Hellwig  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10f46b5a66SChristoph Hellwig  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11f46b5a66SChristoph Hellwig  * General Public License for more details.
12f46b5a66SChristoph Hellwig  *
13f46b5a66SChristoph Hellwig  * You should have received a copy of the GNU General Public
14f46b5a66SChristoph Hellwig  * License along with this program; if not, write to the
15f46b5a66SChristoph Hellwig  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16f46b5a66SChristoph Hellwig  * Boston, MA 021110-1307, USA.
17f46b5a66SChristoph Hellwig  */
18f46b5a66SChristoph Hellwig 
19f46b5a66SChristoph Hellwig #include <linux/kernel.h>
20f46b5a66SChristoph Hellwig #include <linux/bio.h>
21f46b5a66SChristoph Hellwig #include <linux/buffer_head.h>
22f46b5a66SChristoph Hellwig #include <linux/file.h>
23f46b5a66SChristoph Hellwig #include <linux/fs.h>
24cb8e7090SChristoph Hellwig #include <linux/fsnotify.h>
25f46b5a66SChristoph Hellwig #include <linux/pagemap.h>
26f46b5a66SChristoph Hellwig #include <linux/highmem.h>
27f46b5a66SChristoph Hellwig #include <linux/time.h>
28f46b5a66SChristoph Hellwig #include <linux/init.h>
29f46b5a66SChristoph Hellwig #include <linux/string.h>
30f46b5a66SChristoph Hellwig #include <linux/backing-dev.h>
31cb8e7090SChristoph Hellwig #include <linux/mount.h>
32f46b5a66SChristoph Hellwig #include <linux/mpage.h>
33cb8e7090SChristoph Hellwig #include <linux/namei.h>
34f46b5a66SChristoph Hellwig #include <linux/swap.h>
35f46b5a66SChristoph Hellwig #include <linux/writeback.h>
36f46b5a66SChristoph Hellwig #include <linux/statfs.h>
37f46b5a66SChristoph Hellwig #include <linux/compat.h>
38f46b5a66SChristoph Hellwig #include <linux/bit_spinlock.h>
39cb8e7090SChristoph Hellwig #include <linux/security.h>
40f46b5a66SChristoph Hellwig #include <linux/xattr.h>
417ea394f1SYan Zheng #include <linux/vmalloc.h>
425a0e3ad6STejun Heo #include <linux/slab.h>
43f7039b1dSLi Dongyang #include <linux/blkdev.h>
448ea05e3aSAlexander Block #include <linux/uuid.h>
4555e301fdSFilipe Brandenburger #include <linux/btrfs.h>
464b4e25f2SChris Mason #include "compat.h"
47f46b5a66SChristoph Hellwig #include "ctree.h"
48f46b5a66SChristoph Hellwig #include "disk-io.h"
49f46b5a66SChristoph Hellwig #include "transaction.h"
50f46b5a66SChristoph Hellwig #include "btrfs_inode.h"
51f46b5a66SChristoph Hellwig #include "print-tree.h"
52f46b5a66SChristoph Hellwig #include "volumes.h"
53925baeddSChris Mason #include "locking.h"
54581bb050SLi Zefan #include "inode-map.h"
55d7728c96SJan Schmidt #include "backref.h"
56606686eeSJosef Bacik #include "rcu-string.h"
5731db9f7cSAlexander Block #include "send.h"
583f6bcfbdSStefan Behrens #include "dev-replace.h"
59f46b5a66SChristoph Hellwig 
606cbff00fSChristoph Hellwig /* Mask out flags that are inappropriate for the given type of inode. */
616cbff00fSChristoph Hellwig static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
626cbff00fSChristoph Hellwig {
636cbff00fSChristoph Hellwig 	if (S_ISDIR(mode))
646cbff00fSChristoph Hellwig 		return flags;
656cbff00fSChristoph Hellwig 	else if (S_ISREG(mode))
666cbff00fSChristoph Hellwig 		return flags & ~FS_DIRSYNC_FL;
676cbff00fSChristoph Hellwig 	else
686cbff00fSChristoph Hellwig 		return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
696cbff00fSChristoph Hellwig }
70f46b5a66SChristoph Hellwig 
716cbff00fSChristoph Hellwig /*
726cbff00fSChristoph Hellwig  * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
736cbff00fSChristoph Hellwig  */
746cbff00fSChristoph Hellwig static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
756cbff00fSChristoph Hellwig {
766cbff00fSChristoph Hellwig 	unsigned int iflags = 0;
776cbff00fSChristoph Hellwig 
786cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_SYNC)
796cbff00fSChristoph Hellwig 		iflags |= FS_SYNC_FL;
806cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_IMMUTABLE)
816cbff00fSChristoph Hellwig 		iflags |= FS_IMMUTABLE_FL;
826cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_APPEND)
836cbff00fSChristoph Hellwig 		iflags |= FS_APPEND_FL;
846cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_NODUMP)
856cbff00fSChristoph Hellwig 		iflags |= FS_NODUMP_FL;
866cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_NOATIME)
876cbff00fSChristoph Hellwig 		iflags |= FS_NOATIME_FL;
886cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_DIRSYNC)
896cbff00fSChristoph Hellwig 		iflags |= FS_DIRSYNC_FL;
90d0092bddSLi Zefan 	if (flags & BTRFS_INODE_NODATACOW)
91d0092bddSLi Zefan 		iflags |= FS_NOCOW_FL;
92d0092bddSLi Zefan 
93d0092bddSLi Zefan 	if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
94d0092bddSLi Zefan 		iflags |= FS_COMPR_FL;
95d0092bddSLi Zefan 	else if (flags & BTRFS_INODE_NOCOMPRESS)
96d0092bddSLi Zefan 		iflags |= FS_NOCOMP_FL;
976cbff00fSChristoph Hellwig 
986cbff00fSChristoph Hellwig 	return iflags;
996cbff00fSChristoph Hellwig }
1006cbff00fSChristoph Hellwig 
1016cbff00fSChristoph Hellwig /*
1026cbff00fSChristoph Hellwig  * Update inode->i_flags based on the btrfs internal flags.
1036cbff00fSChristoph Hellwig  */
1046cbff00fSChristoph Hellwig void btrfs_update_iflags(struct inode *inode)
1056cbff00fSChristoph Hellwig {
1066cbff00fSChristoph Hellwig 	struct btrfs_inode *ip = BTRFS_I(inode);
1076cbff00fSChristoph Hellwig 
1086cbff00fSChristoph Hellwig 	inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
1096cbff00fSChristoph Hellwig 
1106cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_SYNC)
1116cbff00fSChristoph Hellwig 		inode->i_flags |= S_SYNC;
1126cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_IMMUTABLE)
1136cbff00fSChristoph Hellwig 		inode->i_flags |= S_IMMUTABLE;
1146cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_APPEND)
1156cbff00fSChristoph Hellwig 		inode->i_flags |= S_APPEND;
1166cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_NOATIME)
1176cbff00fSChristoph Hellwig 		inode->i_flags |= S_NOATIME;
1186cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_DIRSYNC)
1196cbff00fSChristoph Hellwig 		inode->i_flags |= S_DIRSYNC;
1206cbff00fSChristoph Hellwig }
1216cbff00fSChristoph Hellwig 
1226cbff00fSChristoph Hellwig /*
1236cbff00fSChristoph Hellwig  * Inherit flags from the parent inode.
1246cbff00fSChristoph Hellwig  *
125e27425d6SJosef Bacik  * Currently only the compression flags and the cow flags are inherited.
1266cbff00fSChristoph Hellwig  */
1276cbff00fSChristoph Hellwig void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
1286cbff00fSChristoph Hellwig {
1290b4dcea5SChris Mason 	unsigned int flags;
1300b4dcea5SChris Mason 
1310b4dcea5SChris Mason 	if (!dir)
1320b4dcea5SChris Mason 		return;
1330b4dcea5SChris Mason 
1340b4dcea5SChris Mason 	flags = BTRFS_I(dir)->flags;
1356cbff00fSChristoph Hellwig 
136e27425d6SJosef Bacik 	if (flags & BTRFS_INODE_NOCOMPRESS) {
137e27425d6SJosef Bacik 		BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
138e27425d6SJosef Bacik 		BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
139e27425d6SJosef Bacik 	} else if (flags & BTRFS_INODE_COMPRESS) {
140e27425d6SJosef Bacik 		BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
141e27425d6SJosef Bacik 		BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
142e27425d6SJosef Bacik 	}
1436cbff00fSChristoph Hellwig 
144213490b3SLiu Bo 	if (flags & BTRFS_INODE_NODATACOW) {
145e27425d6SJosef Bacik 		BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
146213490b3SLiu Bo 		if (S_ISREG(inode->i_mode))
147213490b3SLiu Bo 			BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
148213490b3SLiu Bo 	}
149e27425d6SJosef Bacik 
1506cbff00fSChristoph Hellwig 	btrfs_update_iflags(inode);
1516cbff00fSChristoph Hellwig }
1526cbff00fSChristoph Hellwig 
1536cbff00fSChristoph Hellwig static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
1546cbff00fSChristoph Hellwig {
1556cbff00fSChristoph Hellwig 	struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
1566cbff00fSChristoph Hellwig 	unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
1576cbff00fSChristoph Hellwig 
1586cbff00fSChristoph Hellwig 	if (copy_to_user(arg, &flags, sizeof(flags)))
1596cbff00fSChristoph Hellwig 		return -EFAULT;
1606cbff00fSChristoph Hellwig 	return 0;
1616cbff00fSChristoph Hellwig }
1626cbff00fSChristoph Hellwig 
16375e7cb7fSLiu Bo static int check_flags(unsigned int flags)
16475e7cb7fSLiu Bo {
16575e7cb7fSLiu Bo 	if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
16675e7cb7fSLiu Bo 		      FS_NOATIME_FL | FS_NODUMP_FL | \
16775e7cb7fSLiu Bo 		      FS_SYNC_FL | FS_DIRSYNC_FL | \
168e1e8fb6aSLi Zefan 		      FS_NOCOMP_FL | FS_COMPR_FL |
169e1e8fb6aSLi Zefan 		      FS_NOCOW_FL))
17075e7cb7fSLiu Bo 		return -EOPNOTSUPP;
17175e7cb7fSLiu Bo 
17275e7cb7fSLiu Bo 	if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
17375e7cb7fSLiu Bo 		return -EINVAL;
17475e7cb7fSLiu Bo 
17575e7cb7fSLiu Bo 	return 0;
17675e7cb7fSLiu Bo }
17775e7cb7fSLiu Bo 
1786cbff00fSChristoph Hellwig static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
1796cbff00fSChristoph Hellwig {
1806cbff00fSChristoph Hellwig 	struct inode *inode = file->f_path.dentry->d_inode;
1816cbff00fSChristoph Hellwig 	struct btrfs_inode *ip = BTRFS_I(inode);
1826cbff00fSChristoph Hellwig 	struct btrfs_root *root = ip->root;
1836cbff00fSChristoph Hellwig 	struct btrfs_trans_handle *trans;
1846cbff00fSChristoph Hellwig 	unsigned int flags, oldflags;
1856cbff00fSChristoph Hellwig 	int ret;
186f062abf0SLi Zefan 	u64 ip_oldflags;
187f062abf0SLi Zefan 	unsigned int i_oldflags;
1887e97b8daSDavid Sterba 	umode_t mode;
1896cbff00fSChristoph Hellwig 
190b83cc969SLi Zefan 	if (btrfs_root_readonly(root))
191b83cc969SLi Zefan 		return -EROFS;
192b83cc969SLi Zefan 
1936cbff00fSChristoph Hellwig 	if (copy_from_user(&flags, arg, sizeof(flags)))
1946cbff00fSChristoph Hellwig 		return -EFAULT;
1956cbff00fSChristoph Hellwig 
19675e7cb7fSLiu Bo 	ret = check_flags(flags);
19775e7cb7fSLiu Bo 	if (ret)
19875e7cb7fSLiu Bo 		return ret;
1996cbff00fSChristoph Hellwig 
2002e149670SSerge E. Hallyn 	if (!inode_owner_or_capable(inode))
2016cbff00fSChristoph Hellwig 		return -EACCES;
2026cbff00fSChristoph Hellwig 
203e7848683SJan Kara 	ret = mnt_want_write_file(file);
204e7848683SJan Kara 	if (ret)
205e7848683SJan Kara 		return ret;
206e7848683SJan Kara 
2076cbff00fSChristoph Hellwig 	mutex_lock(&inode->i_mutex);
2086cbff00fSChristoph Hellwig 
209f062abf0SLi Zefan 	ip_oldflags = ip->flags;
210f062abf0SLi Zefan 	i_oldflags = inode->i_flags;
2117e97b8daSDavid Sterba 	mode = inode->i_mode;
212f062abf0SLi Zefan 
2136cbff00fSChristoph Hellwig 	flags = btrfs_mask_flags(inode->i_mode, flags);
2146cbff00fSChristoph Hellwig 	oldflags = btrfs_flags_to_ioctl(ip->flags);
2156cbff00fSChristoph Hellwig 	if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
2166cbff00fSChristoph Hellwig 		if (!capable(CAP_LINUX_IMMUTABLE)) {
2176cbff00fSChristoph Hellwig 			ret = -EPERM;
2186cbff00fSChristoph Hellwig 			goto out_unlock;
2196cbff00fSChristoph Hellwig 		}
2206cbff00fSChristoph Hellwig 	}
2216cbff00fSChristoph Hellwig 
2226cbff00fSChristoph Hellwig 	if (flags & FS_SYNC_FL)
2236cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_SYNC;
2246cbff00fSChristoph Hellwig 	else
2256cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_SYNC;
2266cbff00fSChristoph Hellwig 	if (flags & FS_IMMUTABLE_FL)
2276cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_IMMUTABLE;
2286cbff00fSChristoph Hellwig 	else
2296cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_IMMUTABLE;
2306cbff00fSChristoph Hellwig 	if (flags & FS_APPEND_FL)
2316cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_APPEND;
2326cbff00fSChristoph Hellwig 	else
2336cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_APPEND;
2346cbff00fSChristoph Hellwig 	if (flags & FS_NODUMP_FL)
2356cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_NODUMP;
2366cbff00fSChristoph Hellwig 	else
2376cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_NODUMP;
2386cbff00fSChristoph Hellwig 	if (flags & FS_NOATIME_FL)
2396cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_NOATIME;
2406cbff00fSChristoph Hellwig 	else
2416cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_NOATIME;
2426cbff00fSChristoph Hellwig 	if (flags & FS_DIRSYNC_FL)
2436cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_DIRSYNC;
2446cbff00fSChristoph Hellwig 	else
2456cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_DIRSYNC;
2467e97b8daSDavid Sterba 	if (flags & FS_NOCOW_FL) {
2477e97b8daSDavid Sterba 		if (S_ISREG(mode)) {
2487e97b8daSDavid Sterba 			/*
2497e97b8daSDavid Sterba 			 * It's safe to turn csums off here, no extents exist.
2507e97b8daSDavid Sterba 			 * Otherwise we want the flag to reflect the real COW
2517e97b8daSDavid Sterba 			 * status of the file and will not set it.
2527e97b8daSDavid Sterba 			 */
2537e97b8daSDavid Sterba 			if (inode->i_size == 0)
2547e97b8daSDavid Sterba 				ip->flags |= BTRFS_INODE_NODATACOW
2557e97b8daSDavid Sterba 					   | BTRFS_INODE_NODATASUM;
2567e97b8daSDavid Sterba 		} else {
257e1e8fb6aSLi Zefan 			ip->flags |= BTRFS_INODE_NODATACOW;
2587e97b8daSDavid Sterba 		}
2597e97b8daSDavid Sterba 	} else {
2607e97b8daSDavid Sterba 		/*
2617e97b8daSDavid Sterba 		 * Revert back under same assuptions as above
2627e97b8daSDavid Sterba 		 */
2637e97b8daSDavid Sterba 		if (S_ISREG(mode)) {
2647e97b8daSDavid Sterba 			if (inode->i_size == 0)
2657e97b8daSDavid Sterba 				ip->flags &= ~(BTRFS_INODE_NODATACOW
2667e97b8daSDavid Sterba 				             | BTRFS_INODE_NODATASUM);
2677e97b8daSDavid Sterba 		} else {
268e1e8fb6aSLi Zefan 			ip->flags &= ~BTRFS_INODE_NODATACOW;
2697e97b8daSDavid Sterba 		}
2707e97b8daSDavid Sterba 	}
2716cbff00fSChristoph Hellwig 
27275e7cb7fSLiu Bo 	/*
27375e7cb7fSLiu Bo 	 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
27475e7cb7fSLiu Bo 	 * flag may be changed automatically if compression code won't make
27575e7cb7fSLiu Bo 	 * things smaller.
27675e7cb7fSLiu Bo 	 */
27775e7cb7fSLiu Bo 	if (flags & FS_NOCOMP_FL) {
27875e7cb7fSLiu Bo 		ip->flags &= ~BTRFS_INODE_COMPRESS;
27975e7cb7fSLiu Bo 		ip->flags |= BTRFS_INODE_NOCOMPRESS;
28075e7cb7fSLiu Bo 	} else if (flags & FS_COMPR_FL) {
28175e7cb7fSLiu Bo 		ip->flags |= BTRFS_INODE_COMPRESS;
28275e7cb7fSLiu Bo 		ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
283ebcb904dSLi Zefan 	} else {
284ebcb904dSLi Zefan 		ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
28575e7cb7fSLiu Bo 	}
2866cbff00fSChristoph Hellwig 
2874da6f1a3SLi Zefan 	trans = btrfs_start_transaction(root, 1);
288f062abf0SLi Zefan 	if (IS_ERR(trans)) {
289f062abf0SLi Zefan 		ret = PTR_ERR(trans);
290f062abf0SLi Zefan 		goto out_drop;
291f062abf0SLi Zefan 	}
2926cbff00fSChristoph Hellwig 
293306424ccSLi Zefan 	btrfs_update_iflags(inode);
2940c4d2d95SJosef Bacik 	inode_inc_iversion(inode);
295306424ccSLi Zefan 	inode->i_ctime = CURRENT_TIME;
2966cbff00fSChristoph Hellwig 	ret = btrfs_update_inode(trans, root, inode);
2976cbff00fSChristoph Hellwig 
2986cbff00fSChristoph Hellwig 	btrfs_end_transaction(trans, root);
299f062abf0SLi Zefan  out_drop:
300f062abf0SLi Zefan 	if (ret) {
301f062abf0SLi Zefan 		ip->flags = ip_oldflags;
302f062abf0SLi Zefan 		inode->i_flags = i_oldflags;
303f062abf0SLi Zefan 	}
3046cbff00fSChristoph Hellwig 
3056cbff00fSChristoph Hellwig  out_unlock:
3066cbff00fSChristoph Hellwig 	mutex_unlock(&inode->i_mutex);
307e7848683SJan Kara 	mnt_drop_write_file(file);
3082d4e6f6aSliubo 	return ret;
3096cbff00fSChristoph Hellwig }
3106cbff00fSChristoph Hellwig 
3116cbff00fSChristoph Hellwig static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
3126cbff00fSChristoph Hellwig {
3136cbff00fSChristoph Hellwig 	struct inode *inode = file->f_path.dentry->d_inode;
3146cbff00fSChristoph Hellwig 
3156cbff00fSChristoph Hellwig 	return put_user(inode->i_generation, arg);
3166cbff00fSChristoph Hellwig }
317f46b5a66SChristoph Hellwig 
318f7039b1dSLi Dongyang static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
319f7039b1dSLi Dongyang {
320815745cfSAl Viro 	struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
321f7039b1dSLi Dongyang 	struct btrfs_device *device;
322f7039b1dSLi Dongyang 	struct request_queue *q;
323f7039b1dSLi Dongyang 	struct fstrim_range range;
324f7039b1dSLi Dongyang 	u64 minlen = ULLONG_MAX;
325f7039b1dSLi Dongyang 	u64 num_devices = 0;
326815745cfSAl Viro 	u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
327f7039b1dSLi Dongyang 	int ret;
328f7039b1dSLi Dongyang 
329f7039b1dSLi Dongyang 	if (!capable(CAP_SYS_ADMIN))
330f7039b1dSLi Dongyang 		return -EPERM;
331f7039b1dSLi Dongyang 
3321f78160cSXiao Guangrong 	rcu_read_lock();
3331f78160cSXiao Guangrong 	list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
3341f78160cSXiao Guangrong 				dev_list) {
335f7039b1dSLi Dongyang 		if (!device->bdev)
336f7039b1dSLi Dongyang 			continue;
337f7039b1dSLi Dongyang 		q = bdev_get_queue(device->bdev);
338f7039b1dSLi Dongyang 		if (blk_queue_discard(q)) {
339f7039b1dSLi Dongyang 			num_devices++;
340f7039b1dSLi Dongyang 			minlen = min((u64)q->limits.discard_granularity,
341f7039b1dSLi Dongyang 				     minlen);
342f7039b1dSLi Dongyang 		}
343f7039b1dSLi Dongyang 	}
3441f78160cSXiao Guangrong 	rcu_read_unlock();
345f4c697e6SLukas Czerner 
346f7039b1dSLi Dongyang 	if (!num_devices)
347f7039b1dSLi Dongyang 		return -EOPNOTSUPP;
348f7039b1dSLi Dongyang 	if (copy_from_user(&range, arg, sizeof(range)))
349f7039b1dSLi Dongyang 		return -EFAULT;
350e515c18bSLukas Czerner 	if (range.start > total_bytes ||
351e515c18bSLukas Czerner 	    range.len < fs_info->sb->s_blocksize)
352f4c697e6SLukas Czerner 		return -EINVAL;
353f7039b1dSLi Dongyang 
354f4c697e6SLukas Czerner 	range.len = min(range.len, total_bytes - range.start);
355f7039b1dSLi Dongyang 	range.minlen = max(range.minlen, minlen);
356815745cfSAl Viro 	ret = btrfs_trim_fs(fs_info->tree_root, &range);
357f7039b1dSLi Dongyang 	if (ret < 0)
358f7039b1dSLi Dongyang 		return ret;
359f7039b1dSLi Dongyang 
360f7039b1dSLi Dongyang 	if (copy_to_user(arg, &range, sizeof(range)))
361f7039b1dSLi Dongyang 		return -EFAULT;
362f7039b1dSLi Dongyang 
363f7039b1dSLi Dongyang 	return 0;
364f7039b1dSLi Dongyang }
365f7039b1dSLi Dongyang 
366cb8e7090SChristoph Hellwig static noinline int create_subvol(struct btrfs_root *root,
367cb8e7090SChristoph Hellwig 				  struct dentry *dentry,
36872fd032eSSage Weil 				  char *name, int namelen,
3696f72c7e2SArne Jansen 				  u64 *async_transid,
3708696c533SMiao Xie 				  struct btrfs_qgroup_inherit *inherit)
371f46b5a66SChristoph Hellwig {
372f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
373f46b5a66SChristoph Hellwig 	struct btrfs_key key;
374f46b5a66SChristoph Hellwig 	struct btrfs_root_item root_item;
375f46b5a66SChristoph Hellwig 	struct btrfs_inode_item *inode_item;
376f46b5a66SChristoph Hellwig 	struct extent_buffer *leaf;
37776dda93cSYan, Zheng 	struct btrfs_root *new_root;
3782fbe8c8aSAl Viro 	struct dentry *parent = dentry->d_parent;
3796a912213SJosef Bacik 	struct inode *dir;
3808ea05e3aSAlexander Block 	struct timespec cur_time = CURRENT_TIME;
381f46b5a66SChristoph Hellwig 	int ret;
382f46b5a66SChristoph Hellwig 	int err;
383f46b5a66SChristoph Hellwig 	u64 objectid;
384f46b5a66SChristoph Hellwig 	u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
3853de4586cSChris Mason 	u64 index = 0;
3868ea05e3aSAlexander Block 	uuid_le new_uuid;
387f46b5a66SChristoph Hellwig 
388581bb050SLi Zefan 	ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
3892fbe8c8aSAl Viro 	if (ret)
390a22285a6SYan, Zheng 		return ret;
3916a912213SJosef Bacik 
3926a912213SJosef Bacik 	dir = parent->d_inode;
3936a912213SJosef Bacik 
3949ed74f2dSJosef Bacik 	/*
3959ed74f2dSJosef Bacik 	 * 1 - inode item
3969ed74f2dSJosef Bacik 	 * 2 - refs
3979ed74f2dSJosef Bacik 	 * 1 - root item
3989ed74f2dSJosef Bacik 	 * 2 - dir items
3999ed74f2dSJosef Bacik 	 */
400a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root, 6);
4012fbe8c8aSAl Viro 	if (IS_ERR(trans))
402a22285a6SYan, Zheng 		return PTR_ERR(trans);
403f46b5a66SChristoph Hellwig 
4048696c533SMiao Xie 	ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
4056f72c7e2SArne Jansen 	if (ret)
4066f72c7e2SArne Jansen 		goto fail;
4076f72c7e2SArne Jansen 
4085d4f98a2SYan Zheng 	leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
4095581a51aSJan Schmidt 				      0, objectid, NULL, 0, 0, 0);
4108e8a1e31SJosef Bacik 	if (IS_ERR(leaf)) {
4118e8a1e31SJosef Bacik 		ret = PTR_ERR(leaf);
4128e8a1e31SJosef Bacik 		goto fail;
4138e8a1e31SJosef Bacik 	}
414f46b5a66SChristoph Hellwig 
4155d4f98a2SYan Zheng 	memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
416f46b5a66SChristoph Hellwig 	btrfs_set_header_bytenr(leaf, leaf->start);
417f46b5a66SChristoph Hellwig 	btrfs_set_header_generation(leaf, trans->transid);
4185d4f98a2SYan Zheng 	btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
419f46b5a66SChristoph Hellwig 	btrfs_set_header_owner(leaf, objectid);
420f46b5a66SChristoph Hellwig 
421f46b5a66SChristoph Hellwig 	write_extent_buffer(leaf, root->fs_info->fsid,
422f46b5a66SChristoph Hellwig 			    (unsigned long)btrfs_header_fsid(leaf),
423f46b5a66SChristoph Hellwig 			    BTRFS_FSID_SIZE);
4245d4f98a2SYan Zheng 	write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
4255d4f98a2SYan Zheng 			    (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
4265d4f98a2SYan Zheng 			    BTRFS_UUID_SIZE);
427f46b5a66SChristoph Hellwig 	btrfs_mark_buffer_dirty(leaf);
428f46b5a66SChristoph Hellwig 
4298ea05e3aSAlexander Block 	memset(&root_item, 0, sizeof(root_item));
4308ea05e3aSAlexander Block 
431f46b5a66SChristoph Hellwig 	inode_item = &root_item.inode;
432f46b5a66SChristoph Hellwig 	inode_item->generation = cpu_to_le64(1);
433f46b5a66SChristoph Hellwig 	inode_item->size = cpu_to_le64(3);
434f46b5a66SChristoph Hellwig 	inode_item->nlink = cpu_to_le32(1);
435a76a3cd4SYan Zheng 	inode_item->nbytes = cpu_to_le64(root->leafsize);
436f46b5a66SChristoph Hellwig 	inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
437f46b5a66SChristoph Hellwig 
43808fe4db1SLi Zefan 	root_item.flags = 0;
43908fe4db1SLi Zefan 	root_item.byte_limit = 0;
44008fe4db1SLi Zefan 	inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
44108fe4db1SLi Zefan 
442f46b5a66SChristoph Hellwig 	btrfs_set_root_bytenr(&root_item, leaf->start);
44384234f3aSYan Zheng 	btrfs_set_root_generation(&root_item, trans->transid);
444f46b5a66SChristoph Hellwig 	btrfs_set_root_level(&root_item, 0);
445f46b5a66SChristoph Hellwig 	btrfs_set_root_refs(&root_item, 1);
44686b9f2ecSYan, Zheng 	btrfs_set_root_used(&root_item, leaf->len);
44780ff3856SYan Zheng 	btrfs_set_root_last_snapshot(&root_item, 0);
448f46b5a66SChristoph Hellwig 
4498ea05e3aSAlexander Block 	btrfs_set_root_generation_v2(&root_item,
4508ea05e3aSAlexander Block 			btrfs_root_generation(&root_item));
4518ea05e3aSAlexander Block 	uuid_le_gen(&new_uuid);
4528ea05e3aSAlexander Block 	memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
4538ea05e3aSAlexander Block 	root_item.otime.sec = cpu_to_le64(cur_time.tv_sec);
454dadd1105SDan Carpenter 	root_item.otime.nsec = cpu_to_le32(cur_time.tv_nsec);
4558ea05e3aSAlexander Block 	root_item.ctime = root_item.otime;
4568ea05e3aSAlexander Block 	btrfs_set_root_ctransid(&root_item, trans->transid);
4578ea05e3aSAlexander Block 	btrfs_set_root_otransid(&root_item, trans->transid);
458f46b5a66SChristoph Hellwig 
459925baeddSChris Mason 	btrfs_tree_unlock(leaf);
460f46b5a66SChristoph Hellwig 	free_extent_buffer(leaf);
461f46b5a66SChristoph Hellwig 	leaf = NULL;
462f46b5a66SChristoph Hellwig 
463f46b5a66SChristoph Hellwig 	btrfs_set_root_dirid(&root_item, new_dirid);
464f46b5a66SChristoph Hellwig 
465f46b5a66SChristoph Hellwig 	key.objectid = objectid;
4665d4f98a2SYan Zheng 	key.offset = 0;
467f46b5a66SChristoph Hellwig 	btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
468f46b5a66SChristoph Hellwig 	ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
469f46b5a66SChristoph Hellwig 				&root_item);
470f46b5a66SChristoph Hellwig 	if (ret)
471f46b5a66SChristoph Hellwig 		goto fail;
472f46b5a66SChristoph Hellwig 
47376dda93cSYan, Zheng 	key.offset = (u64)-1;
47476dda93cSYan, Zheng 	new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
47579787eaaSJeff Mahoney 	if (IS_ERR(new_root)) {
47679787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
47779787eaaSJeff Mahoney 		ret = PTR_ERR(new_root);
47879787eaaSJeff Mahoney 		goto fail;
47979787eaaSJeff Mahoney 	}
48076dda93cSYan, Zheng 
48176dda93cSYan, Zheng 	btrfs_record_root_in_trans(trans, new_root);
48276dda93cSYan, Zheng 
483d82a6f1dSJosef Bacik 	ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
484ce598979SMark Fasheh 	if (ret) {
485ce598979SMark Fasheh 		/* We potentially lose an unused inode item here */
48679787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, ret);
487ce598979SMark Fasheh 		goto fail;
488ce598979SMark Fasheh 	}
489ce598979SMark Fasheh 
490f46b5a66SChristoph Hellwig 	/*
491f46b5a66SChristoph Hellwig 	 * insert the directory item
492f46b5a66SChristoph Hellwig 	 */
4933de4586cSChris Mason 	ret = btrfs_set_inode_index(dir, &index);
49479787eaaSJeff Mahoney 	if (ret) {
49579787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, ret);
49679787eaaSJeff Mahoney 		goto fail;
49779787eaaSJeff Mahoney 	}
4983de4586cSChris Mason 
4993de4586cSChris Mason 	ret = btrfs_insert_dir_item(trans, root,
50016cdcec7SMiao Xie 				    name, namelen, dir, &key,
5013de4586cSChris Mason 				    BTRFS_FT_DIR, index);
50279787eaaSJeff Mahoney 	if (ret) {
50379787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, ret);
504f46b5a66SChristoph Hellwig 		goto fail;
50579787eaaSJeff Mahoney 	}
5060660b5afSChris Mason 
50752c26179SYan Zheng 	btrfs_i_size_write(dir, dir->i_size + namelen * 2);
50852c26179SYan Zheng 	ret = btrfs_update_inode(trans, root, dir);
50952c26179SYan Zheng 	BUG_ON(ret);
51052c26179SYan Zheng 
5110660b5afSChris Mason 	ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
5124df27c4dSYan, Zheng 				 objectid, root->root_key.objectid,
51333345d01SLi Zefan 				 btrfs_ino(dir), index, name, namelen);
51476dda93cSYan, Zheng 
5150660b5afSChris Mason 	BUG_ON(ret);
5160660b5afSChris Mason 
517f46b5a66SChristoph Hellwig fail:
51872fd032eSSage Weil 	if (async_transid) {
51972fd032eSSage Weil 		*async_transid = trans->transid;
52072fd032eSSage Weil 		err = btrfs_commit_transaction_async(trans, root, 1);
52172fd032eSSage Weil 	} else {
52276dda93cSYan, Zheng 		err = btrfs_commit_transaction(trans, root);
52372fd032eSSage Weil 	}
524f46b5a66SChristoph Hellwig 	if (err && !ret)
525f46b5a66SChristoph Hellwig 		ret = err;
5261a65e24bSChris Mason 
5271a65e24bSChris Mason 	if (!ret)
5281a65e24bSChris Mason 		d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
5291a65e24bSChris Mason 
530f46b5a66SChristoph Hellwig 	return ret;
531f46b5a66SChristoph Hellwig }
532f46b5a66SChristoph Hellwig 
533e9662f70SMiao Xie static int create_snapshot(struct btrfs_root *root, struct inode *dir,
534e9662f70SMiao Xie 			   struct dentry *dentry, char *name, int namelen,
535e9662f70SMiao Xie 			   u64 *async_transid, bool readonly,
536e9662f70SMiao Xie 			   struct btrfs_qgroup_inherit *inherit)
537f46b5a66SChristoph Hellwig {
5382e4bfab9SYan, Zheng 	struct inode *inode;
539f46b5a66SChristoph Hellwig 	struct btrfs_pending_snapshot *pending_snapshot;
540f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
5412e4bfab9SYan, Zheng 	int ret;
542f46b5a66SChristoph Hellwig 
543f46b5a66SChristoph Hellwig 	if (!root->ref_cows)
544f46b5a66SChristoph Hellwig 		return -EINVAL;
545f46b5a66SChristoph Hellwig 
546a22285a6SYan, Zheng 	pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
547a22285a6SYan, Zheng 	if (!pending_snapshot)
548a22285a6SYan, Zheng 		return -ENOMEM;
549a22285a6SYan, Zheng 
55066d8f3ddSMiao Xie 	btrfs_init_block_rsv(&pending_snapshot->block_rsv,
55166d8f3ddSMiao Xie 			     BTRFS_BLOCK_RSV_TEMP);
552a22285a6SYan, Zheng 	pending_snapshot->dentry = dentry;
553a22285a6SYan, Zheng 	pending_snapshot->root = root;
554b83cc969SLi Zefan 	pending_snapshot->readonly = readonly;
555e9662f70SMiao Xie 	pending_snapshot->dir = dir;
5568696c533SMiao Xie 	pending_snapshot->inherit = inherit;
557a22285a6SYan, Zheng 
55848c03c4bSMiao Xie 	trans = btrfs_start_transaction(root->fs_info->extent_root, 6);
559a22285a6SYan, Zheng 	if (IS_ERR(trans)) {
560a22285a6SYan, Zheng 		ret = PTR_ERR(trans);
561a22285a6SYan, Zheng 		goto fail;
562a22285a6SYan, Zheng 	}
563a22285a6SYan, Zheng 
564a22285a6SYan, Zheng 	ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
565a22285a6SYan, Zheng 	BUG_ON(ret);
566a22285a6SYan, Zheng 
5678351583eSJosef Bacik 	spin_lock(&root->fs_info->trans_lock);
568a22285a6SYan, Zheng 	list_add(&pending_snapshot->list,
569a22285a6SYan, Zheng 		 &trans->transaction->pending_snapshots);
5708351583eSJosef Bacik 	spin_unlock(&root->fs_info->trans_lock);
57172fd032eSSage Weil 	if (async_transid) {
57272fd032eSSage Weil 		*async_transid = trans->transid;
57372fd032eSSage Weil 		ret = btrfs_commit_transaction_async(trans,
57472fd032eSSage Weil 				     root->fs_info->extent_root, 1);
57572fd032eSSage Weil 	} else {
57672fd032eSSage Weil 		ret = btrfs_commit_transaction(trans,
57772fd032eSSage Weil 					       root->fs_info->extent_root);
57872fd032eSSage Weil 	}
579109f2365SLiu Bo 	if (ret) {
580109f2365SLiu Bo 		/* cleanup_transaction has freed this for us */
581109f2365SLiu Bo 		if (trans->aborted)
582109f2365SLiu Bo 			pending_snapshot = NULL;
583c37b2b62SJosef Bacik 		goto fail;
584109f2365SLiu Bo 	}
585a22285a6SYan, Zheng 
586a22285a6SYan, Zheng 	ret = pending_snapshot->error;
587f46b5a66SChristoph Hellwig 	if (ret)
5882e4bfab9SYan, Zheng 		goto fail;
589f46b5a66SChristoph Hellwig 
59066b4ffd1SJosef Bacik 	ret = btrfs_orphan_cleanup(pending_snapshot->snap);
59166b4ffd1SJosef Bacik 	if (ret)
59266b4ffd1SJosef Bacik 		goto fail;
593f46b5a66SChristoph Hellwig 
5942fbe8c8aSAl Viro 	inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
5952e4bfab9SYan, Zheng 	if (IS_ERR(inode)) {
5962e4bfab9SYan, Zheng 		ret = PTR_ERR(inode);
5972e4bfab9SYan, Zheng 		goto fail;
5982e4bfab9SYan, Zheng 	}
5992e4bfab9SYan, Zheng 	BUG_ON(!inode);
6002e4bfab9SYan, Zheng 	d_instantiate(dentry, inode);
6012e4bfab9SYan, Zheng 	ret = 0;
6022e4bfab9SYan, Zheng fail:
603a22285a6SYan, Zheng 	kfree(pending_snapshot);
604f46b5a66SChristoph Hellwig 	return ret;
605f46b5a66SChristoph Hellwig }
606f46b5a66SChristoph Hellwig 
6074260f7c7SSage Weil /*  copy of check_sticky in fs/namei.c()
6084260f7c7SSage Weil * It's inline, so penalty for filesystems that don't use sticky bit is
6094260f7c7SSage Weil * minimal.
6104260f7c7SSage Weil */
6114260f7c7SSage Weil static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
6124260f7c7SSage Weil {
6132f2f43d3SEric W. Biederman 	kuid_t fsuid = current_fsuid();
6144260f7c7SSage Weil 
6154260f7c7SSage Weil 	if (!(dir->i_mode & S_ISVTX))
6164260f7c7SSage Weil 		return 0;
6172f2f43d3SEric W. Biederman 	if (uid_eq(inode->i_uid, fsuid))
6184260f7c7SSage Weil 		return 0;
6192f2f43d3SEric W. Biederman 	if (uid_eq(dir->i_uid, fsuid))
6204260f7c7SSage Weil 		return 0;
6214260f7c7SSage Weil 	return !capable(CAP_FOWNER);
6224260f7c7SSage Weil }
6234260f7c7SSage Weil 
6244260f7c7SSage Weil /*  copy of may_delete in fs/namei.c()
6254260f7c7SSage Weil  *	Check whether we can remove a link victim from directory dir, check
6264260f7c7SSage Weil  *  whether the type of victim is right.
6274260f7c7SSage Weil  *  1. We can't do it if dir is read-only (done in permission())
6284260f7c7SSage Weil  *  2. We should have write and exec permissions on dir
6294260f7c7SSage Weil  *  3. We can't remove anything from append-only dir
6304260f7c7SSage Weil  *  4. We can't do anything with immutable dir (done in permission())
6314260f7c7SSage Weil  *  5. If the sticky bit on dir is set we should either
6324260f7c7SSage Weil  *	a. be owner of dir, or
6334260f7c7SSage Weil  *	b. be owner of victim, or
6344260f7c7SSage Weil  *	c. have CAP_FOWNER capability
6354260f7c7SSage Weil  *  6. If the victim is append-only or immutable we can't do antyhing with
6364260f7c7SSage Weil  *     links pointing to it.
6374260f7c7SSage Weil  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
6384260f7c7SSage Weil  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
6394260f7c7SSage Weil  *  9. We can't remove a root or mountpoint.
6404260f7c7SSage Weil  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
6414260f7c7SSage Weil  *     nfs_async_unlink().
6424260f7c7SSage Weil  */
6434260f7c7SSage Weil 
6444260f7c7SSage Weil static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
6454260f7c7SSage Weil {
6464260f7c7SSage Weil 	int error;
6474260f7c7SSage Weil 
6484260f7c7SSage Weil 	if (!victim->d_inode)
6494260f7c7SSage Weil 		return -ENOENT;
6504260f7c7SSage Weil 
6514260f7c7SSage Weil 	BUG_ON(victim->d_parent->d_inode != dir);
6524fa6b5ecSJeff Layton 	audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
6534260f7c7SSage Weil 
6544260f7c7SSage Weil 	error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
6554260f7c7SSage Weil 	if (error)
6564260f7c7SSage Weil 		return error;
6574260f7c7SSage Weil 	if (IS_APPEND(dir))
6584260f7c7SSage Weil 		return -EPERM;
6594260f7c7SSage Weil 	if (btrfs_check_sticky(dir, victim->d_inode)||
6604260f7c7SSage Weil 		IS_APPEND(victim->d_inode)||
6614260f7c7SSage Weil 	    IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
6624260f7c7SSage Weil 		return -EPERM;
6634260f7c7SSage Weil 	if (isdir) {
6644260f7c7SSage Weil 		if (!S_ISDIR(victim->d_inode->i_mode))
6654260f7c7SSage Weil 			return -ENOTDIR;
6664260f7c7SSage Weil 		if (IS_ROOT(victim))
6674260f7c7SSage Weil 			return -EBUSY;
6684260f7c7SSage Weil 	} else if (S_ISDIR(victim->d_inode->i_mode))
6694260f7c7SSage Weil 		return -EISDIR;
6704260f7c7SSage Weil 	if (IS_DEADDIR(dir))
6714260f7c7SSage Weil 		return -ENOENT;
6724260f7c7SSage Weil 	if (victim->d_flags & DCACHE_NFSFS_RENAMED)
6734260f7c7SSage Weil 		return -EBUSY;
6744260f7c7SSage Weil 	return 0;
6754260f7c7SSage Weil }
6764260f7c7SSage Weil 
677cb8e7090SChristoph Hellwig /* copy of may_create in fs/namei.c() */
678cb8e7090SChristoph Hellwig static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
679cb8e7090SChristoph Hellwig {
680cb8e7090SChristoph Hellwig 	if (child->d_inode)
681cb8e7090SChristoph Hellwig 		return -EEXIST;
682cb8e7090SChristoph Hellwig 	if (IS_DEADDIR(dir))
683cb8e7090SChristoph Hellwig 		return -ENOENT;
684cb8e7090SChristoph Hellwig 	return inode_permission(dir, MAY_WRITE | MAY_EXEC);
685cb8e7090SChristoph Hellwig }
686cb8e7090SChristoph Hellwig 
687cb8e7090SChristoph Hellwig /*
688cb8e7090SChristoph Hellwig  * Create a new subvolume below @parent.  This is largely modeled after
689cb8e7090SChristoph Hellwig  * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
690cb8e7090SChristoph Hellwig  * inside this filesystem so it's quite a bit simpler.
691cb8e7090SChristoph Hellwig  */
69276dda93cSYan, Zheng static noinline int btrfs_mksubvol(struct path *parent,
69376dda93cSYan, Zheng 				   char *name, int namelen,
69472fd032eSSage Weil 				   struct btrfs_root *snap_src,
6956f72c7e2SArne Jansen 				   u64 *async_transid, bool readonly,
6968696c533SMiao Xie 				   struct btrfs_qgroup_inherit *inherit)
697cb8e7090SChristoph Hellwig {
69876dda93cSYan, Zheng 	struct inode *dir  = parent->dentry->d_inode;
699cb8e7090SChristoph Hellwig 	struct dentry *dentry;
700cb8e7090SChristoph Hellwig 	int error;
701cb8e7090SChristoph Hellwig 
70276dda93cSYan, Zheng 	mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
703cb8e7090SChristoph Hellwig 
704cb8e7090SChristoph Hellwig 	dentry = lookup_one_len(name, parent->dentry, namelen);
705cb8e7090SChristoph Hellwig 	error = PTR_ERR(dentry);
706cb8e7090SChristoph Hellwig 	if (IS_ERR(dentry))
707cb8e7090SChristoph Hellwig 		goto out_unlock;
708cb8e7090SChristoph Hellwig 
709cb8e7090SChristoph Hellwig 	error = -EEXIST;
710cb8e7090SChristoph Hellwig 	if (dentry->d_inode)
711cb8e7090SChristoph Hellwig 		goto out_dput;
712cb8e7090SChristoph Hellwig 
71376dda93cSYan, Zheng 	error = btrfs_may_create(dir, dentry);
714cb8e7090SChristoph Hellwig 	if (error)
715a874a63eSLiu Bo 		goto out_dput;
716cb8e7090SChristoph Hellwig 
7179c52057cSChris Mason 	/*
7189c52057cSChris Mason 	 * even if this name doesn't exist, we may get hash collisions.
7199c52057cSChris Mason 	 * check for them now when we can safely fail
7209c52057cSChris Mason 	 */
7219c52057cSChris Mason 	error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
7229c52057cSChris Mason 					       dir->i_ino, name,
7239c52057cSChris Mason 					       namelen);
7249c52057cSChris Mason 	if (error)
7259c52057cSChris Mason 		goto out_dput;
7269c52057cSChris Mason 
72776dda93cSYan, Zheng 	down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
72876dda93cSYan, Zheng 
72976dda93cSYan, Zheng 	if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
73076dda93cSYan, Zheng 		goto out_up_read;
73176dda93cSYan, Zheng 
7323de4586cSChris Mason 	if (snap_src) {
733e9662f70SMiao Xie 		error = create_snapshot(snap_src, dir, dentry, name, namelen,
7346f72c7e2SArne Jansen 					async_transid, readonly, inherit);
7353de4586cSChris Mason 	} else {
73676dda93cSYan, Zheng 		error = create_subvol(BTRFS_I(dir)->root, dentry,
7376f72c7e2SArne Jansen 				      name, namelen, async_transid, inherit);
7383de4586cSChris Mason 	}
73976dda93cSYan, Zheng 	if (!error)
74076dda93cSYan, Zheng 		fsnotify_mkdir(dir, dentry);
74176dda93cSYan, Zheng out_up_read:
74276dda93cSYan, Zheng 	up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
743cb8e7090SChristoph Hellwig out_dput:
744cb8e7090SChristoph Hellwig 	dput(dentry);
745cb8e7090SChristoph Hellwig out_unlock:
74676dda93cSYan, Zheng 	mutex_unlock(&dir->i_mutex);
747cb8e7090SChristoph Hellwig 	return error;
748cb8e7090SChristoph Hellwig }
749cb8e7090SChristoph Hellwig 
7504cb5300bSChris Mason /*
7514cb5300bSChris Mason  * When we're defragging a range, we don't want to kick it off again
7524cb5300bSChris Mason  * if it is really just waiting for delalloc to send it down.
7534cb5300bSChris Mason  * If we find a nice big extent or delalloc range for the bytes in the
7544cb5300bSChris Mason  * file you want to defrag, we return 0 to let you know to skip this
7554cb5300bSChris Mason  * part of the file
7564cb5300bSChris Mason  */
7574cb5300bSChris Mason static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
7584cb5300bSChris Mason {
7594cb5300bSChris Mason 	struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7604cb5300bSChris Mason 	struct extent_map *em = NULL;
7614cb5300bSChris Mason 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
7624cb5300bSChris Mason 	u64 end;
7634cb5300bSChris Mason 
7644cb5300bSChris Mason 	read_lock(&em_tree->lock);
7654cb5300bSChris Mason 	em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
7664cb5300bSChris Mason 	read_unlock(&em_tree->lock);
7674cb5300bSChris Mason 
7684cb5300bSChris Mason 	if (em) {
7694cb5300bSChris Mason 		end = extent_map_end(em);
7704cb5300bSChris Mason 		free_extent_map(em);
7714cb5300bSChris Mason 		if (end - offset > thresh)
7724cb5300bSChris Mason 			return 0;
7734cb5300bSChris Mason 	}
7744cb5300bSChris Mason 	/* if we already have a nice delalloc here, just stop */
7754cb5300bSChris Mason 	thresh /= 2;
7764cb5300bSChris Mason 	end = count_range_bits(io_tree, &offset, offset + thresh,
7774cb5300bSChris Mason 			       thresh, EXTENT_DELALLOC, 1);
7784cb5300bSChris Mason 	if (end >= thresh)
7794cb5300bSChris Mason 		return 0;
7804cb5300bSChris Mason 	return 1;
7814cb5300bSChris Mason }
7824cb5300bSChris Mason 
7834cb5300bSChris Mason /*
7844cb5300bSChris Mason  * helper function to walk through a file and find extents
7854cb5300bSChris Mason  * newer than a specific transid, and smaller than thresh.
7864cb5300bSChris Mason  *
7874cb5300bSChris Mason  * This is used by the defragging code to find new and small
7884cb5300bSChris Mason  * extents
7894cb5300bSChris Mason  */
7904cb5300bSChris Mason static int find_new_extents(struct btrfs_root *root,
7914cb5300bSChris Mason 			    struct inode *inode, u64 newer_than,
7924cb5300bSChris Mason 			    u64 *off, int thresh)
7934cb5300bSChris Mason {
7944cb5300bSChris Mason 	struct btrfs_path *path;
7954cb5300bSChris Mason 	struct btrfs_key min_key;
7964cb5300bSChris Mason 	struct btrfs_key max_key;
7974cb5300bSChris Mason 	struct extent_buffer *leaf;
7984cb5300bSChris Mason 	struct btrfs_file_extent_item *extent;
7994cb5300bSChris Mason 	int type;
8004cb5300bSChris Mason 	int ret;
801a4689d2bSDavid Sterba 	u64 ino = btrfs_ino(inode);
8024cb5300bSChris Mason 
8034cb5300bSChris Mason 	path = btrfs_alloc_path();
8044cb5300bSChris Mason 	if (!path)
8054cb5300bSChris Mason 		return -ENOMEM;
8064cb5300bSChris Mason 
807a4689d2bSDavid Sterba 	min_key.objectid = ino;
8084cb5300bSChris Mason 	min_key.type = BTRFS_EXTENT_DATA_KEY;
8094cb5300bSChris Mason 	min_key.offset = *off;
8104cb5300bSChris Mason 
811a4689d2bSDavid Sterba 	max_key.objectid = ino;
8124cb5300bSChris Mason 	max_key.type = (u8)-1;
8134cb5300bSChris Mason 	max_key.offset = (u64)-1;
8144cb5300bSChris Mason 
8154cb5300bSChris Mason 	path->keep_locks = 1;
8164cb5300bSChris Mason 
8174cb5300bSChris Mason 	while(1) {
8184cb5300bSChris Mason 		ret = btrfs_search_forward(root, &min_key, &max_key,
819de78b51aSEric Sandeen 					   path, newer_than);
8204cb5300bSChris Mason 		if (ret != 0)
8214cb5300bSChris Mason 			goto none;
822a4689d2bSDavid Sterba 		if (min_key.objectid != ino)
8234cb5300bSChris Mason 			goto none;
8244cb5300bSChris Mason 		if (min_key.type != BTRFS_EXTENT_DATA_KEY)
8254cb5300bSChris Mason 			goto none;
8264cb5300bSChris Mason 
8274cb5300bSChris Mason 		leaf = path->nodes[0];
8284cb5300bSChris Mason 		extent = btrfs_item_ptr(leaf, path->slots[0],
8294cb5300bSChris Mason 					struct btrfs_file_extent_item);
8304cb5300bSChris Mason 
8314cb5300bSChris Mason 		type = btrfs_file_extent_type(leaf, extent);
8324cb5300bSChris Mason 		if (type == BTRFS_FILE_EXTENT_REG &&
8334cb5300bSChris Mason 		    btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
8344cb5300bSChris Mason 		    check_defrag_in_cache(inode, min_key.offset, thresh)) {
8354cb5300bSChris Mason 			*off = min_key.offset;
8364cb5300bSChris Mason 			btrfs_free_path(path);
8374cb5300bSChris Mason 			return 0;
8384cb5300bSChris Mason 		}
8394cb5300bSChris Mason 
8404cb5300bSChris Mason 		if (min_key.offset == (u64)-1)
8414cb5300bSChris Mason 			goto none;
8424cb5300bSChris Mason 
8434cb5300bSChris Mason 		min_key.offset++;
8444cb5300bSChris Mason 		btrfs_release_path(path);
8454cb5300bSChris Mason 	}
8464cb5300bSChris Mason none:
8474cb5300bSChris Mason 	btrfs_free_path(path);
8484cb5300bSChris Mason 	return -ENOENT;
8494cb5300bSChris Mason }
8504cb5300bSChris Mason 
8516c282eb4SLi Zefan static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
85217ce6ef8SLiu Bo {
85317ce6ef8SLiu Bo 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
854940100a4SChris Mason 	struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
8556c282eb4SLi Zefan 	struct extent_map *em;
8566c282eb4SLi Zefan 	u64 len = PAGE_CACHE_SIZE;
857940100a4SChris Mason 
858940100a4SChris Mason 	/*
859940100a4SChris Mason 	 * hopefully we have this extent in the tree already, try without
860940100a4SChris Mason 	 * the full extent lock
861940100a4SChris Mason 	 */
862940100a4SChris Mason 	read_lock(&em_tree->lock);
863940100a4SChris Mason 	em = lookup_extent_mapping(em_tree, start, len);
864940100a4SChris Mason 	read_unlock(&em_tree->lock);
865940100a4SChris Mason 
866940100a4SChris Mason 	if (!em) {
867940100a4SChris Mason 		/* get the big lock and read metadata off disk */
868d0082371SJeff Mahoney 		lock_extent(io_tree, start, start + len - 1);
869940100a4SChris Mason 		em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
870d0082371SJeff Mahoney 		unlock_extent(io_tree, start, start + len - 1);
871940100a4SChris Mason 
8726cf8bfbfSDan Carpenter 		if (IS_ERR(em))
8736c282eb4SLi Zefan 			return NULL;
874940100a4SChris Mason 	}
875940100a4SChris Mason 
8766c282eb4SLi Zefan 	return em;
8776c282eb4SLi Zefan }
8786c282eb4SLi Zefan 
8796c282eb4SLi Zefan static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
8806c282eb4SLi Zefan {
8816c282eb4SLi Zefan 	struct extent_map *next;
8826c282eb4SLi Zefan 	bool ret = true;
8836c282eb4SLi Zefan 
8846c282eb4SLi Zefan 	/* this is the last extent */
8856c282eb4SLi Zefan 	if (em->start + em->len >= i_size_read(inode))
8866c282eb4SLi Zefan 		return false;
8876c282eb4SLi Zefan 
8886c282eb4SLi Zefan 	next = defrag_lookup_extent(inode, em->start + em->len);
8896c282eb4SLi Zefan 	if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
8906c282eb4SLi Zefan 		ret = false;
8916c282eb4SLi Zefan 
8926c282eb4SLi Zefan 	free_extent_map(next);
8936c282eb4SLi Zefan 	return ret;
8946c282eb4SLi Zefan }
8956c282eb4SLi Zefan 
8966c282eb4SLi Zefan static int should_defrag_range(struct inode *inode, u64 start, int thresh,
897a43a2111SAndrew Mahone 			       u64 *last_len, u64 *skip, u64 *defrag_end,
898a43a2111SAndrew Mahone 			       int compress)
8996c282eb4SLi Zefan {
9006c282eb4SLi Zefan 	struct extent_map *em;
9016c282eb4SLi Zefan 	int ret = 1;
9026c282eb4SLi Zefan 	bool next_mergeable = true;
9036c282eb4SLi Zefan 
9046c282eb4SLi Zefan 	/*
9056c282eb4SLi Zefan 	 * make sure that once we start defragging an extent, we keep on
9066c282eb4SLi Zefan 	 * defragging it
9076c282eb4SLi Zefan 	 */
9086c282eb4SLi Zefan 	if (start < *defrag_end)
9096c282eb4SLi Zefan 		return 1;
9106c282eb4SLi Zefan 
9116c282eb4SLi Zefan 	*skip = 0;
9126c282eb4SLi Zefan 
9136c282eb4SLi Zefan 	em = defrag_lookup_extent(inode, start);
9146c282eb4SLi Zefan 	if (!em)
9156c282eb4SLi Zefan 		return 0;
9166c282eb4SLi Zefan 
917940100a4SChris Mason 	/* this will cover holes, and inline extents */
91817ce6ef8SLiu Bo 	if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
919940100a4SChris Mason 		ret = 0;
92017ce6ef8SLiu Bo 		goto out;
92117ce6ef8SLiu Bo 	}
92217ce6ef8SLiu Bo 
9236c282eb4SLi Zefan 	next_mergeable = defrag_check_next_extent(inode, em);
924940100a4SChris Mason 
925940100a4SChris Mason 	/*
9266c282eb4SLi Zefan 	 * we hit a real extent, if it is big or the next extent is not a
9276c282eb4SLi Zefan 	 * real extent, don't bother defragging it
928940100a4SChris Mason 	 */
929a43a2111SAndrew Mahone 	if (!compress && (*last_len == 0 || *last_len >= thresh) &&
9306c282eb4SLi Zefan 	    (em->len >= thresh || !next_mergeable))
931940100a4SChris Mason 		ret = 0;
93217ce6ef8SLiu Bo out:
933940100a4SChris Mason 	/*
934940100a4SChris Mason 	 * last_len ends up being a counter of how many bytes we've defragged.
935940100a4SChris Mason 	 * every time we choose not to defrag an extent, we reset *last_len
936940100a4SChris Mason 	 * so that the next tiny extent will force a defrag.
937940100a4SChris Mason 	 *
938940100a4SChris Mason 	 * The end result of this is that tiny extents before a single big
939940100a4SChris Mason 	 * extent will force at least part of that big extent to be defragged.
940940100a4SChris Mason 	 */
941940100a4SChris Mason 	if (ret) {
942940100a4SChris Mason 		*defrag_end = extent_map_end(em);
943940100a4SChris Mason 	} else {
944940100a4SChris Mason 		*last_len = 0;
945940100a4SChris Mason 		*skip = extent_map_end(em);
946940100a4SChris Mason 		*defrag_end = 0;
947940100a4SChris Mason 	}
948940100a4SChris Mason 
949940100a4SChris Mason 	free_extent_map(em);
950940100a4SChris Mason 	return ret;
951940100a4SChris Mason }
952940100a4SChris Mason 
9534cb5300bSChris Mason /*
9544cb5300bSChris Mason  * it doesn't do much good to defrag one or two pages
9554cb5300bSChris Mason  * at a time.  This pulls in a nice chunk of pages
9564cb5300bSChris Mason  * to COW and defrag.
9574cb5300bSChris Mason  *
9584cb5300bSChris Mason  * It also makes sure the delalloc code has enough
9594cb5300bSChris Mason  * dirty data to avoid making new small extents as part
9604cb5300bSChris Mason  * of the defrag
9614cb5300bSChris Mason  *
9624cb5300bSChris Mason  * It's a good idea to start RA on this range
9634cb5300bSChris Mason  * before calling this.
9644cb5300bSChris Mason  */
9654cb5300bSChris Mason static int cluster_pages_for_defrag(struct inode *inode,
9664cb5300bSChris Mason 				    struct page **pages,
9674cb5300bSChris Mason 				    unsigned long start_index,
9684cb5300bSChris Mason 				    int num_pages)
969f46b5a66SChristoph Hellwig {
9704cb5300bSChris Mason 	unsigned long file_end;
9714cb5300bSChris Mason 	u64 isize = i_size_read(inode);
972f46b5a66SChristoph Hellwig 	u64 page_start;
973f46b5a66SChristoph Hellwig 	u64 page_end;
9741f12bd06SLiu Bo 	u64 page_cnt;
9754cb5300bSChris Mason 	int ret;
9764cb5300bSChris Mason 	int i;
9774cb5300bSChris Mason 	int i_done;
9784cb5300bSChris Mason 	struct btrfs_ordered_extent *ordered;
9794cb5300bSChris Mason 	struct extent_state *cached_state = NULL;
980600a45e1SMiao Xie 	struct extent_io_tree *tree;
9813b16a4e3SJosef Bacik 	gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
9824cb5300bSChris Mason 
9834cb5300bSChris Mason 	file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
9841f12bd06SLiu Bo 	if (!isize || start_index > file_end)
9851f12bd06SLiu Bo 		return 0;
9861f12bd06SLiu Bo 
9871f12bd06SLiu Bo 	page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
9884cb5300bSChris Mason 
9894cb5300bSChris Mason 	ret = btrfs_delalloc_reserve_space(inode,
9901f12bd06SLiu Bo 					   page_cnt << PAGE_CACHE_SHIFT);
9914cb5300bSChris Mason 	if (ret)
9924cb5300bSChris Mason 		return ret;
9934cb5300bSChris Mason 	i_done = 0;
994600a45e1SMiao Xie 	tree = &BTRFS_I(inode)->io_tree;
9954cb5300bSChris Mason 
9964cb5300bSChris Mason 	/* step one, lock all the pages */
9971f12bd06SLiu Bo 	for (i = 0; i < page_cnt; i++) {
9984cb5300bSChris Mason 		struct page *page;
999600a45e1SMiao Xie again:
1000a94733d0SJosef Bacik 		page = find_or_create_page(inode->i_mapping,
10013b16a4e3SJosef Bacik 					   start_index + i, mask);
10024cb5300bSChris Mason 		if (!page)
10034cb5300bSChris Mason 			break;
10044cb5300bSChris Mason 
1005600a45e1SMiao Xie 		page_start = page_offset(page);
1006600a45e1SMiao Xie 		page_end = page_start + PAGE_CACHE_SIZE - 1;
1007600a45e1SMiao Xie 		while (1) {
1008d0082371SJeff Mahoney 			lock_extent(tree, page_start, page_end);
1009600a45e1SMiao Xie 			ordered = btrfs_lookup_ordered_extent(inode,
1010600a45e1SMiao Xie 							      page_start);
1011d0082371SJeff Mahoney 			unlock_extent(tree, page_start, page_end);
1012600a45e1SMiao Xie 			if (!ordered)
1013600a45e1SMiao Xie 				break;
1014600a45e1SMiao Xie 
1015600a45e1SMiao Xie 			unlock_page(page);
1016600a45e1SMiao Xie 			btrfs_start_ordered_extent(inode, ordered, 1);
1017600a45e1SMiao Xie 			btrfs_put_ordered_extent(ordered);
1018600a45e1SMiao Xie 			lock_page(page);
10191f12bd06SLiu Bo 			/*
10201f12bd06SLiu Bo 			 * we unlocked the page above, so we need check if
10211f12bd06SLiu Bo 			 * it was released or not.
10221f12bd06SLiu Bo 			 */
10231f12bd06SLiu Bo 			if (page->mapping != inode->i_mapping) {
10241f12bd06SLiu Bo 				unlock_page(page);
10251f12bd06SLiu Bo 				page_cache_release(page);
10261f12bd06SLiu Bo 				goto again;
10271f12bd06SLiu Bo 			}
1028600a45e1SMiao Xie 		}
1029600a45e1SMiao Xie 
10304cb5300bSChris Mason 		if (!PageUptodate(page)) {
10314cb5300bSChris Mason 			btrfs_readpage(NULL, page);
10324cb5300bSChris Mason 			lock_page(page);
10334cb5300bSChris Mason 			if (!PageUptodate(page)) {
10344cb5300bSChris Mason 				unlock_page(page);
10354cb5300bSChris Mason 				page_cache_release(page);
10364cb5300bSChris Mason 				ret = -EIO;
10374cb5300bSChris Mason 				break;
10384cb5300bSChris Mason 			}
10394cb5300bSChris Mason 		}
1040600a45e1SMiao Xie 
1041600a45e1SMiao Xie 		if (page->mapping != inode->i_mapping) {
1042600a45e1SMiao Xie 			unlock_page(page);
1043600a45e1SMiao Xie 			page_cache_release(page);
1044600a45e1SMiao Xie 			goto again;
1045600a45e1SMiao Xie 		}
1046600a45e1SMiao Xie 
10474cb5300bSChris Mason 		pages[i] = page;
10484cb5300bSChris Mason 		i_done++;
10494cb5300bSChris Mason 	}
10504cb5300bSChris Mason 	if (!i_done || ret)
10514cb5300bSChris Mason 		goto out;
10524cb5300bSChris Mason 
10534cb5300bSChris Mason 	if (!(inode->i_sb->s_flags & MS_ACTIVE))
10544cb5300bSChris Mason 		goto out;
10554cb5300bSChris Mason 
10564cb5300bSChris Mason 	/*
10574cb5300bSChris Mason 	 * so now we have a nice long stream of locked
10584cb5300bSChris Mason 	 * and up to date pages, lets wait on them
10594cb5300bSChris Mason 	 */
10604cb5300bSChris Mason 	for (i = 0; i < i_done; i++)
10614cb5300bSChris Mason 		wait_on_page_writeback(pages[i]);
10624cb5300bSChris Mason 
10634cb5300bSChris Mason 	page_start = page_offset(pages[0]);
10644cb5300bSChris Mason 	page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
10654cb5300bSChris Mason 
10664cb5300bSChris Mason 	lock_extent_bits(&BTRFS_I(inode)->io_tree,
1067d0082371SJeff Mahoney 			 page_start, page_end - 1, 0, &cached_state);
10684cb5300bSChris Mason 	clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
10694cb5300bSChris Mason 			  page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
10709e8a4a8bSLiu Bo 			  EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
10719e8a4a8bSLiu Bo 			  &cached_state, GFP_NOFS);
10724cb5300bSChris Mason 
10731f12bd06SLiu Bo 	if (i_done != page_cnt) {
10749e0baf60SJosef Bacik 		spin_lock(&BTRFS_I(inode)->lock);
10759e0baf60SJosef Bacik 		BTRFS_I(inode)->outstanding_extents++;
10769e0baf60SJosef Bacik 		spin_unlock(&BTRFS_I(inode)->lock);
10774cb5300bSChris Mason 		btrfs_delalloc_release_space(inode,
10781f12bd06SLiu Bo 				     (page_cnt - i_done) << PAGE_CACHE_SHIFT);
10794cb5300bSChris Mason 	}
10804cb5300bSChris Mason 
10814cb5300bSChris Mason 
10829e8a4a8bSLiu Bo 	set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
10839e8a4a8bSLiu Bo 			  &cached_state, GFP_NOFS);
10844cb5300bSChris Mason 
10854cb5300bSChris Mason 	unlock_extent_cached(&BTRFS_I(inode)->io_tree,
10864cb5300bSChris Mason 			     page_start, page_end - 1, &cached_state,
10874cb5300bSChris Mason 			     GFP_NOFS);
10884cb5300bSChris Mason 
10894cb5300bSChris Mason 	for (i = 0; i < i_done; i++) {
10904cb5300bSChris Mason 		clear_page_dirty_for_io(pages[i]);
10914cb5300bSChris Mason 		ClearPageChecked(pages[i]);
10924cb5300bSChris Mason 		set_page_extent_mapped(pages[i]);
10934cb5300bSChris Mason 		set_page_dirty(pages[i]);
10944cb5300bSChris Mason 		unlock_page(pages[i]);
10954cb5300bSChris Mason 		page_cache_release(pages[i]);
10964cb5300bSChris Mason 	}
10974cb5300bSChris Mason 	return i_done;
10984cb5300bSChris Mason out:
10994cb5300bSChris Mason 	for (i = 0; i < i_done; i++) {
11004cb5300bSChris Mason 		unlock_page(pages[i]);
11014cb5300bSChris Mason 		page_cache_release(pages[i]);
11024cb5300bSChris Mason 	}
11031f12bd06SLiu Bo 	btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
11044cb5300bSChris Mason 	return ret;
11054cb5300bSChris Mason 
11064cb5300bSChris Mason }
11074cb5300bSChris Mason 
11084cb5300bSChris Mason int btrfs_defrag_file(struct inode *inode, struct file *file,
11094cb5300bSChris Mason 		      struct btrfs_ioctl_defrag_range_args *range,
11104cb5300bSChris Mason 		      u64 newer_than, unsigned long max_to_defrag)
11114cb5300bSChris Mason {
11124cb5300bSChris Mason 	struct btrfs_root *root = BTRFS_I(inode)->root;
11134cb5300bSChris Mason 	struct file_ra_state *ra = NULL;
11144cb5300bSChris Mason 	unsigned long last_index;
1115151a31b2SLi Zefan 	u64 isize = i_size_read(inode);
1116940100a4SChris Mason 	u64 last_len = 0;
1117940100a4SChris Mason 	u64 skip = 0;
1118940100a4SChris Mason 	u64 defrag_end = 0;
11194cb5300bSChris Mason 	u64 newer_off = range->start;
1120f46b5a66SChristoph Hellwig 	unsigned long i;
1121008873eaSLi Zefan 	unsigned long ra_index = 0;
1122f46b5a66SChristoph Hellwig 	int ret;
11234cb5300bSChris Mason 	int defrag_count = 0;
11241a419d85SLi Zefan 	int compress_type = BTRFS_COMPRESS_ZLIB;
11254cb5300bSChris Mason 	int extent_thresh = range->extent_thresh;
1126008873eaSLi Zefan 	int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1127008873eaSLi Zefan 	int cluster = max_cluster;
11284cb5300bSChris Mason 	u64 new_align = ~((u64)128 * 1024 - 1);
11294cb5300bSChris Mason 	struct page **pages = NULL;
11304cb5300bSChris Mason 
11314cb5300bSChris Mason 	if (extent_thresh == 0)
11324cb5300bSChris Mason 		extent_thresh = 256 * 1024;
11331a419d85SLi Zefan 
11341a419d85SLi Zefan 	if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
11351a419d85SLi Zefan 		if (range->compress_type > BTRFS_COMPRESS_TYPES)
11361a419d85SLi Zefan 			return -EINVAL;
11371a419d85SLi Zefan 		if (range->compress_type)
11381a419d85SLi Zefan 			compress_type = range->compress_type;
11391a419d85SLi Zefan 	}
1140f46b5a66SChristoph Hellwig 
1141151a31b2SLi Zefan 	if (isize == 0)
1142940100a4SChris Mason 		return 0;
1143f46b5a66SChristoph Hellwig 
11444cb5300bSChris Mason 	/*
11454cb5300bSChris Mason 	 * if we were not given a file, allocate a readahead
11464cb5300bSChris Mason 	 * context
11474cb5300bSChris Mason 	 */
11484cb5300bSChris Mason 	if (!file) {
11494cb5300bSChris Mason 		ra = kzalloc(sizeof(*ra), GFP_NOFS);
11504cb5300bSChris Mason 		if (!ra)
11514cb5300bSChris Mason 			return -ENOMEM;
11524cb5300bSChris Mason 		file_ra_state_init(ra, inode->i_mapping);
11534cb5300bSChris Mason 	} else {
11544cb5300bSChris Mason 		ra = &file->f_ra;
11554cb5300bSChris Mason 	}
11564cb5300bSChris Mason 
1157008873eaSLi Zefan 	pages = kmalloc(sizeof(struct page *) * max_cluster,
11584cb5300bSChris Mason 			GFP_NOFS);
11594cb5300bSChris Mason 	if (!pages) {
11604cb5300bSChris Mason 		ret = -ENOMEM;
11614cb5300bSChris Mason 		goto out_ra;
11624cb5300bSChris Mason 	}
11634cb5300bSChris Mason 
11644cb5300bSChris Mason 	/* find the last page to defrag */
11651e701a32SChris Mason 	if (range->start + range->len > range->start) {
1166151a31b2SLi Zefan 		last_index = min_t(u64, isize - 1,
11671e701a32SChris Mason 			 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
11681e701a32SChris Mason 	} else {
1169151a31b2SLi Zefan 		last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
11701e701a32SChris Mason 	}
11711e701a32SChris Mason 
11724cb5300bSChris Mason 	if (newer_than) {
11734cb5300bSChris Mason 		ret = find_new_extents(root, inode, newer_than,
11744cb5300bSChris Mason 				       &newer_off, 64 * 1024);
11754cb5300bSChris Mason 		if (!ret) {
11764cb5300bSChris Mason 			range->start = newer_off;
11774cb5300bSChris Mason 			/*
11784cb5300bSChris Mason 			 * we always align our defrag to help keep
11794cb5300bSChris Mason 			 * the extents in the file evenly spaced
11804cb5300bSChris Mason 			 */
11814cb5300bSChris Mason 			i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
11824cb5300bSChris Mason 		} else
11834cb5300bSChris Mason 			goto out_ra;
11844cb5300bSChris Mason 	} else {
11851e701a32SChris Mason 		i = range->start >> PAGE_CACHE_SHIFT;
11864cb5300bSChris Mason 	}
11874cb5300bSChris Mason 	if (!max_to_defrag)
11887ec31b54SLiu Bo 		max_to_defrag = last_index + 1;
11894cb5300bSChris Mason 
11902a0f7f57SLi Zefan 	/*
11912a0f7f57SLi Zefan 	 * make writeback starts from i, so the defrag range can be
11922a0f7f57SLi Zefan 	 * written sequentially.
11932a0f7f57SLi Zefan 	 */
11942a0f7f57SLi Zefan 	if (i < inode->i_mapping->writeback_index)
11952a0f7f57SLi Zefan 		inode->i_mapping->writeback_index = i;
11962a0f7f57SLi Zefan 
1197f7f43cc8SChris Mason 	while (i <= last_index && defrag_count < max_to_defrag &&
1198f7f43cc8SChris Mason 	       (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1199f7f43cc8SChris Mason 		PAGE_CACHE_SHIFT)) {
12004cb5300bSChris Mason 		/*
12014cb5300bSChris Mason 		 * make sure we stop running if someone unmounts
12024cb5300bSChris Mason 		 * the FS
12034cb5300bSChris Mason 		 */
12044cb5300bSChris Mason 		if (!(inode->i_sb->s_flags & MS_ACTIVE))
12054cb5300bSChris Mason 			break;
12064cb5300bSChris Mason 
1207210549ebSDavid Sterba 		if (btrfs_defrag_cancelled(root->fs_info)) {
1208210549ebSDavid Sterba 			printk(KERN_DEBUG "btrfs: defrag_file cancelled\n");
1209210549ebSDavid Sterba 			ret = -EAGAIN;
1210210549ebSDavid Sterba 			break;
1211210549ebSDavid Sterba 		}
1212210549ebSDavid Sterba 
121366c26892SLiu Bo 		if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
12146c282eb4SLi Zefan 					 extent_thresh, &last_len, &skip,
1215a43a2111SAndrew Mahone 					 &defrag_end, range->flags &
1216a43a2111SAndrew Mahone 					 BTRFS_DEFRAG_RANGE_COMPRESS)) {
1217940100a4SChris Mason 			unsigned long next;
1218940100a4SChris Mason 			/*
1219940100a4SChris Mason 			 * the should_defrag function tells us how much to skip
1220940100a4SChris Mason 			 * bump our counter by the suggested amount
1221940100a4SChris Mason 			 */
1222940100a4SChris Mason 			next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1223940100a4SChris Mason 			i = max(i + 1, next);
1224940100a4SChris Mason 			continue;
1225940100a4SChris Mason 		}
1226008873eaSLi Zefan 
1227008873eaSLi Zefan 		if (!newer_than) {
1228008873eaSLi Zefan 			cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1229008873eaSLi Zefan 				   PAGE_CACHE_SHIFT) - i;
1230008873eaSLi Zefan 			cluster = min(cluster, max_cluster);
1231008873eaSLi Zefan 		} else {
1232008873eaSLi Zefan 			cluster = max_cluster;
1233008873eaSLi Zefan 		}
1234008873eaSLi Zefan 
12351e701a32SChris Mason 		if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
12361a419d85SLi Zefan 			BTRFS_I(inode)->force_compress = compress_type;
1237940100a4SChris Mason 
1238008873eaSLi Zefan 		if (i + cluster > ra_index) {
1239008873eaSLi Zefan 			ra_index = max(i, ra_index);
1240008873eaSLi Zefan 			btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1241008873eaSLi Zefan 				       cluster);
1242008873eaSLi Zefan 			ra_index += max_cluster;
1243008873eaSLi Zefan 		}
12444cb5300bSChris Mason 
1245ecb8bea8SLiu Bo 		mutex_lock(&inode->i_mutex);
1246008873eaSLi Zefan 		ret = cluster_pages_for_defrag(inode, pages, i, cluster);
1247ecb8bea8SLiu Bo 		if (ret < 0) {
1248ecb8bea8SLiu Bo 			mutex_unlock(&inode->i_mutex);
12494cb5300bSChris Mason 			goto out_ra;
1250ecb8bea8SLiu Bo 		}
12514cb5300bSChris Mason 
12524cb5300bSChris Mason 		defrag_count += ret;
1253d0e1d66bSNamjae Jeon 		balance_dirty_pages_ratelimited(inode->i_mapping);
1254ecb8bea8SLiu Bo 		mutex_unlock(&inode->i_mutex);
12554cb5300bSChris Mason 
12564cb5300bSChris Mason 		if (newer_than) {
12574cb5300bSChris Mason 			if (newer_off == (u64)-1)
12584cb5300bSChris Mason 				break;
12594cb5300bSChris Mason 
1260e1f041e1SLiu Bo 			if (ret > 0)
1261e1f041e1SLiu Bo 				i += ret;
1262e1f041e1SLiu Bo 
12634cb5300bSChris Mason 			newer_off = max(newer_off + 1,
12644cb5300bSChris Mason 					(u64)i << PAGE_CACHE_SHIFT);
12654cb5300bSChris Mason 
12664cb5300bSChris Mason 			ret = find_new_extents(root, inode,
12674cb5300bSChris Mason 					       newer_than, &newer_off,
12684cb5300bSChris Mason 					       64 * 1024);
12694cb5300bSChris Mason 			if (!ret) {
12704cb5300bSChris Mason 				range->start = newer_off;
12714cb5300bSChris Mason 				i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
12724cb5300bSChris Mason 			} else {
12734cb5300bSChris Mason 				break;
1274940100a4SChris Mason 			}
12754cb5300bSChris Mason 		} else {
1276008873eaSLi Zefan 			if (ret > 0) {
1277cbcc8326SLi Zefan 				i += ret;
1278008873eaSLi Zefan 				last_len += ret << PAGE_CACHE_SHIFT;
1279008873eaSLi Zefan 			} else {
1280940100a4SChris Mason 				i++;
1281008873eaSLi Zefan 				last_len = 0;
1282008873eaSLi Zefan 			}
1283f46b5a66SChristoph Hellwig 		}
12844cb5300bSChris Mason 	}
1285f46b5a66SChristoph Hellwig 
12861e701a32SChris Mason 	if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
12871e701a32SChris Mason 		filemap_flush(inode->i_mapping);
12881e701a32SChris Mason 
12891e701a32SChris Mason 	if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
12901e701a32SChris Mason 		/* the filemap_flush will queue IO into the worker threads, but
12911e701a32SChris Mason 		 * we have to make sure the IO is actually started and that
12921e701a32SChris Mason 		 * ordered extents get created before we return
12931e701a32SChris Mason 		 */
12941e701a32SChris Mason 		atomic_inc(&root->fs_info->async_submit_draining);
12951e701a32SChris Mason 		while (atomic_read(&root->fs_info->nr_async_submits) ||
12961e701a32SChris Mason 		      atomic_read(&root->fs_info->async_delalloc_pages)) {
12971e701a32SChris Mason 			wait_event(root->fs_info->async_submit_wait,
12981e701a32SChris Mason 			   (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
12991e701a32SChris Mason 			    atomic_read(&root->fs_info->async_delalloc_pages) == 0));
13001e701a32SChris Mason 		}
13011e701a32SChris Mason 		atomic_dec(&root->fs_info->async_submit_draining);
13021e701a32SChris Mason 
13031e701a32SChris Mason 		mutex_lock(&inode->i_mutex);
1304261507a0SLi Zefan 		BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
13051e701a32SChris Mason 		mutex_unlock(&inode->i_mutex);
13061e701a32SChris Mason 	}
13071e701a32SChris Mason 
13081a419d85SLi Zefan 	if (range->compress_type == BTRFS_COMPRESS_LZO) {
13092b0ce2c2SMitch Harder 		btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
13101a419d85SLi Zefan 	}
13111a419d85SLi Zefan 
131260ccf82fSDiego Calleja 	ret = defrag_count;
1313940100a4SChris Mason 
13144cb5300bSChris Mason out_ra:
13154cb5300bSChris Mason 	if (!file)
13164cb5300bSChris Mason 		kfree(ra);
13174cb5300bSChris Mason 	kfree(pages);
1318940100a4SChris Mason 	return ret;
1319f46b5a66SChristoph Hellwig }
1320f46b5a66SChristoph Hellwig 
1321198605a8SMiao Xie static noinline int btrfs_ioctl_resize(struct file *file,
132276dda93cSYan, Zheng 					void __user *arg)
1323f46b5a66SChristoph Hellwig {
1324f46b5a66SChristoph Hellwig 	u64 new_size;
1325f46b5a66SChristoph Hellwig 	u64 old_size;
1326f46b5a66SChristoph Hellwig 	u64 devid = 1;
1327198605a8SMiao Xie 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
1328f46b5a66SChristoph Hellwig 	struct btrfs_ioctl_vol_args *vol_args;
1329f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
1330f46b5a66SChristoph Hellwig 	struct btrfs_device *device = NULL;
1331f46b5a66SChristoph Hellwig 	char *sizestr;
1332f46b5a66SChristoph Hellwig 	char *devstr = NULL;
1333f46b5a66SChristoph Hellwig 	int ret = 0;
1334f46b5a66SChristoph Hellwig 	int mod = 0;
1335f46b5a66SChristoph Hellwig 
1336e441d54dSChris Mason 	if (!capable(CAP_SYS_ADMIN))
1337e441d54dSChris Mason 		return -EPERM;
1338e441d54dSChris Mason 
1339198605a8SMiao Xie 	ret = mnt_want_write_file(file);
1340198605a8SMiao Xie 	if (ret)
1341198605a8SMiao Xie 		return ret;
1342198605a8SMiao Xie 
13435ac00addSStefan Behrens 	if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
13445ac00addSStefan Behrens 			1)) {
13455ac00addSStefan Behrens 		pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
134697547676SMiao Xie 		mnt_drop_write_file(file);
13472c0c9da0SIlya Dryomov 		return -EINVAL;
1348c9e9f97bSIlya Dryomov 	}
1349c9e9f97bSIlya Dryomov 
13505ac00addSStefan Behrens 	mutex_lock(&root->fs_info->volume_mutex);
1351dae7b665SLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
1352c9e9f97bSIlya Dryomov 	if (IS_ERR(vol_args)) {
1353c9e9f97bSIlya Dryomov 		ret = PTR_ERR(vol_args);
1354c9e9f97bSIlya Dryomov 		goto out;
1355c9e9f97bSIlya Dryomov 	}
13565516e595SMark Fasheh 
13575516e595SMark Fasheh 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1358f46b5a66SChristoph Hellwig 
1359f46b5a66SChristoph Hellwig 	sizestr = vol_args->name;
1360f46b5a66SChristoph Hellwig 	devstr = strchr(sizestr, ':');
1361f46b5a66SChristoph Hellwig 	if (devstr) {
1362f46b5a66SChristoph Hellwig 		char *end;
1363f46b5a66SChristoph Hellwig 		sizestr = devstr + 1;
1364f46b5a66SChristoph Hellwig 		*devstr = '\0';
1365f46b5a66SChristoph Hellwig 		devstr = vol_args->name;
1366f46b5a66SChristoph Hellwig 		devid = simple_strtoull(devstr, &end, 10);
1367dfd79829SMiao Xie 		if (!devid) {
1368dfd79829SMiao Xie 			ret = -EINVAL;
1369dfd79829SMiao Xie 			goto out_free;
1370dfd79829SMiao Xie 		}
13715bb14682SArnd Hannemann 		printk(KERN_INFO "btrfs: resizing devid %llu\n",
137221380931SJoel Becker 		       (unsigned long long)devid);
1373f46b5a66SChristoph Hellwig 	}
1374dba60f3fSMiao Xie 
1375aa1b8cd4SStefan Behrens 	device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
1376f46b5a66SChristoph Hellwig 	if (!device) {
13775bb14682SArnd Hannemann 		printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
137821380931SJoel Becker 		       (unsigned long long)devid);
1379dfd79829SMiao Xie 		ret = -ENODEV;
1380c9e9f97bSIlya Dryomov 		goto out_free;
1381f46b5a66SChristoph Hellwig 	}
1382dba60f3fSMiao Xie 
1383dba60f3fSMiao Xie 	if (!device->writeable) {
13844e42ae1bSLiu Bo 		printk(KERN_INFO "btrfs: resizer unable to apply on "
1385dba60f3fSMiao Xie 		       "readonly device %llu\n",
1386a8c4a33bSChris Mason 		       (unsigned long long)devid);
1387dfd79829SMiao Xie 		ret = -EPERM;
13884e42ae1bSLiu Bo 		goto out_free;
13894e42ae1bSLiu Bo 	}
13904e42ae1bSLiu Bo 
1391f46b5a66SChristoph Hellwig 	if (!strcmp(sizestr, "max"))
1392f46b5a66SChristoph Hellwig 		new_size = device->bdev->bd_inode->i_size;
1393f46b5a66SChristoph Hellwig 	else {
1394f46b5a66SChristoph Hellwig 		if (sizestr[0] == '-') {
1395f46b5a66SChristoph Hellwig 			mod = -1;
1396f46b5a66SChristoph Hellwig 			sizestr++;
1397f46b5a66SChristoph Hellwig 		} else if (sizestr[0] == '+') {
1398f46b5a66SChristoph Hellwig 			mod = 1;
1399f46b5a66SChristoph Hellwig 			sizestr++;
1400f46b5a66SChristoph Hellwig 		}
140191748467SAkinobu Mita 		new_size = memparse(sizestr, NULL);
1402f46b5a66SChristoph Hellwig 		if (new_size == 0) {
1403f46b5a66SChristoph Hellwig 			ret = -EINVAL;
1404c9e9f97bSIlya Dryomov 			goto out_free;
1405f46b5a66SChristoph Hellwig 		}
1406f46b5a66SChristoph Hellwig 	}
1407f46b5a66SChristoph Hellwig 
140863a212abSStefan Behrens 	if (device->is_tgtdev_for_dev_replace) {
1409dfd79829SMiao Xie 		ret = -EPERM;
141063a212abSStefan Behrens 		goto out_free;
141163a212abSStefan Behrens 	}
141263a212abSStefan Behrens 
1413f46b5a66SChristoph Hellwig 	old_size = device->total_bytes;
1414f46b5a66SChristoph Hellwig 
1415f46b5a66SChristoph Hellwig 	if (mod < 0) {
1416f46b5a66SChristoph Hellwig 		if (new_size > old_size) {
1417f46b5a66SChristoph Hellwig 			ret = -EINVAL;
1418c9e9f97bSIlya Dryomov 			goto out_free;
1419f46b5a66SChristoph Hellwig 		}
1420f46b5a66SChristoph Hellwig 		new_size = old_size - new_size;
1421f46b5a66SChristoph Hellwig 	} else if (mod > 0) {
1422f46b5a66SChristoph Hellwig 		new_size = old_size + new_size;
1423f46b5a66SChristoph Hellwig 	}
1424f46b5a66SChristoph Hellwig 
1425f46b5a66SChristoph Hellwig 	if (new_size < 256 * 1024 * 1024) {
1426f46b5a66SChristoph Hellwig 		ret = -EINVAL;
1427c9e9f97bSIlya Dryomov 		goto out_free;
1428f46b5a66SChristoph Hellwig 	}
1429f46b5a66SChristoph Hellwig 	if (new_size > device->bdev->bd_inode->i_size) {
1430f46b5a66SChristoph Hellwig 		ret = -EFBIG;
1431c9e9f97bSIlya Dryomov 		goto out_free;
1432f46b5a66SChristoph Hellwig 	}
1433f46b5a66SChristoph Hellwig 
1434f46b5a66SChristoph Hellwig 	do_div(new_size, root->sectorsize);
1435f46b5a66SChristoph Hellwig 	new_size *= root->sectorsize;
1436f46b5a66SChristoph Hellwig 
1437606686eeSJosef Bacik 	printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1438606686eeSJosef Bacik 		      rcu_str_deref(device->name),
1439606686eeSJosef Bacik 		      (unsigned long long)new_size);
1440f46b5a66SChristoph Hellwig 
1441f46b5a66SChristoph Hellwig 	if (new_size > old_size) {
1442a22285a6SYan, Zheng 		trans = btrfs_start_transaction(root, 0);
144398d5dc13STsutomu Itoh 		if (IS_ERR(trans)) {
144498d5dc13STsutomu Itoh 			ret = PTR_ERR(trans);
1445c9e9f97bSIlya Dryomov 			goto out_free;
144698d5dc13STsutomu Itoh 		}
1447f46b5a66SChristoph Hellwig 		ret = btrfs_grow_device(trans, device, new_size);
1448f46b5a66SChristoph Hellwig 		btrfs_commit_transaction(trans, root);
1449ece7d20eSMike Fleetwood 	} else if (new_size < old_size) {
1450f46b5a66SChristoph Hellwig 		ret = btrfs_shrink_device(device, new_size);
14510253f40eSjeff.liu 	} /* equal, nothing need to do */
1452f46b5a66SChristoph Hellwig 
1453c9e9f97bSIlya Dryomov out_free:
1454f46b5a66SChristoph Hellwig 	kfree(vol_args);
1455c9e9f97bSIlya Dryomov out:
1456c9e9f97bSIlya Dryomov 	mutex_unlock(&root->fs_info->volume_mutex);
14575ac00addSStefan Behrens 	atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
145818f39c41SIlya Dryomov 	mnt_drop_write_file(file);
1459f46b5a66SChristoph Hellwig 	return ret;
1460f46b5a66SChristoph Hellwig }
1461f46b5a66SChristoph Hellwig 
146272fd032eSSage Weil static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
14636f72c7e2SArne Jansen 				char *name, unsigned long fd, int subvol,
14646f72c7e2SArne Jansen 				u64 *transid, bool readonly,
14658696c533SMiao Xie 				struct btrfs_qgroup_inherit *inherit)
1466f46b5a66SChristoph Hellwig {
1467f46b5a66SChristoph Hellwig 	int namelen;
14683de4586cSChris Mason 	int ret = 0;
1469f46b5a66SChristoph Hellwig 
1470a874a63eSLiu Bo 	ret = mnt_want_write_file(file);
1471a874a63eSLiu Bo 	if (ret)
1472a874a63eSLiu Bo 		goto out;
1473a874a63eSLiu Bo 
147472fd032eSSage Weil 	namelen = strlen(name);
147572fd032eSSage Weil 	if (strchr(name, '/')) {
1476f46b5a66SChristoph Hellwig 		ret = -EINVAL;
1477a874a63eSLiu Bo 		goto out_drop_write;
1478f46b5a66SChristoph Hellwig 	}
1479f46b5a66SChristoph Hellwig 
148016780cabSChris Mason 	if (name[0] == '.' &&
148116780cabSChris Mason 	   (namelen == 1 || (name[1] == '.' && namelen == 2))) {
148216780cabSChris Mason 		ret = -EEXIST;
1483a874a63eSLiu Bo 		goto out_drop_write;
148416780cabSChris Mason 	}
148516780cabSChris Mason 
14863de4586cSChris Mason 	if (subvol) {
148772fd032eSSage Weil 		ret = btrfs_mksubvol(&file->f_path, name, namelen,
14886f72c7e2SArne Jansen 				     NULL, transid, readonly, inherit);
1489cb8e7090SChristoph Hellwig 	} else {
14902903ff01SAl Viro 		struct fd src = fdget(fd);
14913de4586cSChris Mason 		struct inode *src_inode;
14922903ff01SAl Viro 		if (!src.file) {
14933de4586cSChris Mason 			ret = -EINVAL;
1494a874a63eSLiu Bo 			goto out_drop_write;
14953de4586cSChris Mason 		}
14963de4586cSChris Mason 
14972903ff01SAl Viro 		src_inode = src.file->f_path.dentry->d_inode;
14983de4586cSChris Mason 		if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
1499d397712bSChris Mason 			printk(KERN_INFO "btrfs: Snapshot src from "
1500d397712bSChris Mason 			       "another FS\n");
15013de4586cSChris Mason 			ret = -EINVAL;
1502ecd18815SAl Viro 		} else {
150372fd032eSSage Weil 			ret = btrfs_mksubvol(&file->f_path, name, namelen,
150472fd032eSSage Weil 					     BTRFS_I(src_inode)->root,
15056f72c7e2SArne Jansen 					     transid, readonly, inherit);
1506ecd18815SAl Viro 		}
15072903ff01SAl Viro 		fdput(src);
1508cb8e7090SChristoph Hellwig 	}
1509a874a63eSLiu Bo out_drop_write:
1510a874a63eSLiu Bo 	mnt_drop_write_file(file);
1511f46b5a66SChristoph Hellwig out:
151272fd032eSSage Weil 	return ret;
151372fd032eSSage Weil }
151472fd032eSSage Weil 
151572fd032eSSage Weil static noinline int btrfs_ioctl_snap_create(struct file *file,
1516fa0d2b9bSLi Zefan 					    void __user *arg, int subvol)
151772fd032eSSage Weil {
1518fa0d2b9bSLi Zefan 	struct btrfs_ioctl_vol_args *vol_args;
151972fd032eSSage Weil 	int ret;
152072fd032eSSage Weil 
1521fa0d2b9bSLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
1522fa0d2b9bSLi Zefan 	if (IS_ERR(vol_args))
1523fa0d2b9bSLi Zefan 		return PTR_ERR(vol_args);
1524fa0d2b9bSLi Zefan 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1525fa0d2b9bSLi Zefan 
1526fa0d2b9bSLi Zefan 	ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
1527b83cc969SLi Zefan 					      vol_args->fd, subvol,
15286f72c7e2SArne Jansen 					      NULL, false, NULL);
1529fa0d2b9bSLi Zefan 
1530fa0d2b9bSLi Zefan 	kfree(vol_args);
1531fa0d2b9bSLi Zefan 	return ret;
1532fa0d2b9bSLi Zefan }
1533fa0d2b9bSLi Zefan 
1534fa0d2b9bSLi Zefan static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1535fa0d2b9bSLi Zefan 					       void __user *arg, int subvol)
1536fa0d2b9bSLi Zefan {
1537fa0d2b9bSLi Zefan 	struct btrfs_ioctl_vol_args_v2 *vol_args;
1538fa0d2b9bSLi Zefan 	int ret;
1539fdfb1e4fSLi Zefan 	u64 transid = 0;
1540fdfb1e4fSLi Zefan 	u64 *ptr = NULL;
1541b83cc969SLi Zefan 	bool readonly = false;
15426f72c7e2SArne Jansen 	struct btrfs_qgroup_inherit *inherit = NULL;
154372fd032eSSage Weil 
1544fa0d2b9bSLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
1545fa0d2b9bSLi Zefan 	if (IS_ERR(vol_args))
1546fa0d2b9bSLi Zefan 		return PTR_ERR(vol_args);
1547fa0d2b9bSLi Zefan 	vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
1548fdfb1e4fSLi Zefan 
1549b83cc969SLi Zefan 	if (vol_args->flags &
15506f72c7e2SArne Jansen 	    ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
15516f72c7e2SArne Jansen 	      BTRFS_SUBVOL_QGROUP_INHERIT)) {
1552b83cc969SLi Zefan 		ret = -EOPNOTSUPP;
1553fdfb1e4fSLi Zefan 		goto out;
1554fdfb1e4fSLi Zefan 	}
1555fdfb1e4fSLi Zefan 
1556fa0d2b9bSLi Zefan 	if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1557fdfb1e4fSLi Zefan 		ptr = &transid;
1558b83cc969SLi Zefan 	if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1559b83cc969SLi Zefan 		readonly = true;
15606f72c7e2SArne Jansen 	if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
15616f72c7e2SArne Jansen 		if (vol_args->size > PAGE_CACHE_SIZE) {
15626f72c7e2SArne Jansen 			ret = -EINVAL;
15636f72c7e2SArne Jansen 			goto out;
15646f72c7e2SArne Jansen 		}
15656f72c7e2SArne Jansen 		inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
15666f72c7e2SArne Jansen 		if (IS_ERR(inherit)) {
15676f72c7e2SArne Jansen 			ret = PTR_ERR(inherit);
15686f72c7e2SArne Jansen 			goto out;
15696f72c7e2SArne Jansen 		}
15706f72c7e2SArne Jansen 	}
157175eaa0e2SSage Weil 
1572fa0d2b9bSLi Zefan 	ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
15736f72c7e2SArne Jansen 					      vol_args->fd, subvol, ptr,
15748696c533SMiao Xie 					      readonly, inherit);
157575eaa0e2SSage Weil 
1576fdfb1e4fSLi Zefan 	if (ret == 0 && ptr &&
157775eaa0e2SSage Weil 	    copy_to_user(arg +
1578fdfb1e4fSLi Zefan 			 offsetof(struct btrfs_ioctl_vol_args_v2,
1579fdfb1e4fSLi Zefan 				  transid), ptr, sizeof(*ptr)))
158075eaa0e2SSage Weil 		ret = -EFAULT;
1581fdfb1e4fSLi Zefan out:
1582f46b5a66SChristoph Hellwig 	kfree(vol_args);
15836f72c7e2SArne Jansen 	kfree(inherit);
1584f46b5a66SChristoph Hellwig 	return ret;
1585f46b5a66SChristoph Hellwig }
1586f46b5a66SChristoph Hellwig 
15870caa102dSLi Zefan static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
15880caa102dSLi Zefan 						void __user *arg)
15890caa102dSLi Zefan {
15900caa102dSLi Zefan 	struct inode *inode = fdentry(file)->d_inode;
15910caa102dSLi Zefan 	struct btrfs_root *root = BTRFS_I(inode)->root;
15920caa102dSLi Zefan 	int ret = 0;
15930caa102dSLi Zefan 	u64 flags = 0;
15940caa102dSLi Zefan 
159533345d01SLi Zefan 	if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
15960caa102dSLi Zefan 		return -EINVAL;
15970caa102dSLi Zefan 
15980caa102dSLi Zefan 	down_read(&root->fs_info->subvol_sem);
15990caa102dSLi Zefan 	if (btrfs_root_readonly(root))
16000caa102dSLi Zefan 		flags |= BTRFS_SUBVOL_RDONLY;
16010caa102dSLi Zefan 	up_read(&root->fs_info->subvol_sem);
16020caa102dSLi Zefan 
16030caa102dSLi Zefan 	if (copy_to_user(arg, &flags, sizeof(flags)))
16040caa102dSLi Zefan 		ret = -EFAULT;
16050caa102dSLi Zefan 
16060caa102dSLi Zefan 	return ret;
16070caa102dSLi Zefan }
16080caa102dSLi Zefan 
16090caa102dSLi Zefan static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
16100caa102dSLi Zefan 					      void __user *arg)
16110caa102dSLi Zefan {
16120caa102dSLi Zefan 	struct inode *inode = fdentry(file)->d_inode;
16130caa102dSLi Zefan 	struct btrfs_root *root = BTRFS_I(inode)->root;
16140caa102dSLi Zefan 	struct btrfs_trans_handle *trans;
16150caa102dSLi Zefan 	u64 root_flags;
16160caa102dSLi Zefan 	u64 flags;
16170caa102dSLi Zefan 	int ret = 0;
16180caa102dSLi Zefan 
1619b9ca0664SLiu Bo 	ret = mnt_want_write_file(file);
1620b9ca0664SLiu Bo 	if (ret)
1621b9ca0664SLiu Bo 		goto out;
16220caa102dSLi Zefan 
1623b9ca0664SLiu Bo 	if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1624b9ca0664SLiu Bo 		ret = -EINVAL;
1625b9ca0664SLiu Bo 		goto out_drop_write;
1626b9ca0664SLiu Bo 	}
16270caa102dSLi Zefan 
1628b9ca0664SLiu Bo 	if (copy_from_user(&flags, arg, sizeof(flags))) {
1629b9ca0664SLiu Bo 		ret = -EFAULT;
1630b9ca0664SLiu Bo 		goto out_drop_write;
1631b9ca0664SLiu Bo 	}
16320caa102dSLi Zefan 
1633b9ca0664SLiu Bo 	if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1634b9ca0664SLiu Bo 		ret = -EINVAL;
1635b9ca0664SLiu Bo 		goto out_drop_write;
1636b9ca0664SLiu Bo 	}
16370caa102dSLi Zefan 
1638b9ca0664SLiu Bo 	if (flags & ~BTRFS_SUBVOL_RDONLY) {
1639b9ca0664SLiu Bo 		ret = -EOPNOTSUPP;
1640b9ca0664SLiu Bo 		goto out_drop_write;
1641b9ca0664SLiu Bo 	}
16420caa102dSLi Zefan 
1643b9ca0664SLiu Bo 	if (!inode_owner_or_capable(inode)) {
1644b9ca0664SLiu Bo 		ret = -EACCES;
1645b9ca0664SLiu Bo 		goto out_drop_write;
1646b9ca0664SLiu Bo 	}
1647b4dc2b8cSLi Zefan 
16480caa102dSLi Zefan 	down_write(&root->fs_info->subvol_sem);
16490caa102dSLi Zefan 
16500caa102dSLi Zefan 	/* nothing to do */
16510caa102dSLi Zefan 	if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
1652b9ca0664SLiu Bo 		goto out_drop_sem;
16530caa102dSLi Zefan 
16540caa102dSLi Zefan 	root_flags = btrfs_root_flags(&root->root_item);
16550caa102dSLi Zefan 	if (flags & BTRFS_SUBVOL_RDONLY)
16560caa102dSLi Zefan 		btrfs_set_root_flags(&root->root_item,
16570caa102dSLi Zefan 				     root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
16580caa102dSLi Zefan 	else
16590caa102dSLi Zefan 		btrfs_set_root_flags(&root->root_item,
16600caa102dSLi Zefan 				     root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
16610caa102dSLi Zefan 
16620caa102dSLi Zefan 	trans = btrfs_start_transaction(root, 1);
16630caa102dSLi Zefan 	if (IS_ERR(trans)) {
16640caa102dSLi Zefan 		ret = PTR_ERR(trans);
16650caa102dSLi Zefan 		goto out_reset;
16660caa102dSLi Zefan 	}
16670caa102dSLi Zefan 
1668b4dc2b8cSLi Zefan 	ret = btrfs_update_root(trans, root->fs_info->tree_root,
16690caa102dSLi Zefan 				&root->root_key, &root->root_item);
16700caa102dSLi Zefan 
16710caa102dSLi Zefan 	btrfs_commit_transaction(trans, root);
16720caa102dSLi Zefan out_reset:
16730caa102dSLi Zefan 	if (ret)
16740caa102dSLi Zefan 		btrfs_set_root_flags(&root->root_item, root_flags);
1675b9ca0664SLiu Bo out_drop_sem:
16760caa102dSLi Zefan 	up_write(&root->fs_info->subvol_sem);
1677b9ca0664SLiu Bo out_drop_write:
1678b9ca0664SLiu Bo 	mnt_drop_write_file(file);
1679b9ca0664SLiu Bo out:
16800caa102dSLi Zefan 	return ret;
16810caa102dSLi Zefan }
16820caa102dSLi Zefan 
168376dda93cSYan, Zheng /*
168476dda93cSYan, Zheng  * helper to check if the subvolume references other subvolumes
168576dda93cSYan, Zheng  */
168676dda93cSYan, Zheng static noinline int may_destroy_subvol(struct btrfs_root *root)
168776dda93cSYan, Zheng {
168876dda93cSYan, Zheng 	struct btrfs_path *path;
168976dda93cSYan, Zheng 	struct btrfs_key key;
169076dda93cSYan, Zheng 	int ret;
169176dda93cSYan, Zheng 
169276dda93cSYan, Zheng 	path = btrfs_alloc_path();
169376dda93cSYan, Zheng 	if (!path)
169476dda93cSYan, Zheng 		return -ENOMEM;
169576dda93cSYan, Zheng 
169676dda93cSYan, Zheng 	key.objectid = root->root_key.objectid;
169776dda93cSYan, Zheng 	key.type = BTRFS_ROOT_REF_KEY;
169876dda93cSYan, Zheng 	key.offset = (u64)-1;
169976dda93cSYan, Zheng 
170076dda93cSYan, Zheng 	ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
170176dda93cSYan, Zheng 				&key, path, 0, 0);
170276dda93cSYan, Zheng 	if (ret < 0)
170376dda93cSYan, Zheng 		goto out;
170476dda93cSYan, Zheng 	BUG_ON(ret == 0);
170576dda93cSYan, Zheng 
170676dda93cSYan, Zheng 	ret = 0;
170776dda93cSYan, Zheng 	if (path->slots[0] > 0) {
170876dda93cSYan, Zheng 		path->slots[0]--;
170976dda93cSYan, Zheng 		btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
171076dda93cSYan, Zheng 		if (key.objectid == root->root_key.objectid &&
171176dda93cSYan, Zheng 		    key.type == BTRFS_ROOT_REF_KEY)
171276dda93cSYan, Zheng 			ret = -ENOTEMPTY;
171376dda93cSYan, Zheng 	}
171476dda93cSYan, Zheng out:
171576dda93cSYan, Zheng 	btrfs_free_path(path);
171676dda93cSYan, Zheng 	return ret;
171776dda93cSYan, Zheng }
171876dda93cSYan, Zheng 
1719ac8e9819SChris Mason static noinline int key_in_sk(struct btrfs_key *key,
1720ac8e9819SChris Mason 			      struct btrfs_ioctl_search_key *sk)
1721ac8e9819SChris Mason {
1722abc6e134SChris Mason 	struct btrfs_key test;
1723abc6e134SChris Mason 	int ret;
1724abc6e134SChris Mason 
1725abc6e134SChris Mason 	test.objectid = sk->min_objectid;
1726abc6e134SChris Mason 	test.type = sk->min_type;
1727abc6e134SChris Mason 	test.offset = sk->min_offset;
1728abc6e134SChris Mason 
1729abc6e134SChris Mason 	ret = btrfs_comp_cpu_keys(key, &test);
1730abc6e134SChris Mason 	if (ret < 0)
1731ac8e9819SChris Mason 		return 0;
1732abc6e134SChris Mason 
1733abc6e134SChris Mason 	test.objectid = sk->max_objectid;
1734abc6e134SChris Mason 	test.type = sk->max_type;
1735abc6e134SChris Mason 	test.offset = sk->max_offset;
1736abc6e134SChris Mason 
1737abc6e134SChris Mason 	ret = btrfs_comp_cpu_keys(key, &test);
1738abc6e134SChris Mason 	if (ret > 0)
1739ac8e9819SChris Mason 		return 0;
1740ac8e9819SChris Mason 	return 1;
1741ac8e9819SChris Mason }
1742ac8e9819SChris Mason 
1743ac8e9819SChris Mason static noinline int copy_to_sk(struct btrfs_root *root,
1744ac8e9819SChris Mason 			       struct btrfs_path *path,
1745ac8e9819SChris Mason 			       struct btrfs_key *key,
1746ac8e9819SChris Mason 			       struct btrfs_ioctl_search_key *sk,
1747ac8e9819SChris Mason 			       char *buf,
1748ac8e9819SChris Mason 			       unsigned long *sk_offset,
1749ac8e9819SChris Mason 			       int *num_found)
1750ac8e9819SChris Mason {
1751ac8e9819SChris Mason 	u64 found_transid;
1752ac8e9819SChris Mason 	struct extent_buffer *leaf;
1753ac8e9819SChris Mason 	struct btrfs_ioctl_search_header sh;
1754ac8e9819SChris Mason 	unsigned long item_off;
1755ac8e9819SChris Mason 	unsigned long item_len;
1756ac8e9819SChris Mason 	int nritems;
1757ac8e9819SChris Mason 	int i;
1758ac8e9819SChris Mason 	int slot;
1759ac8e9819SChris Mason 	int ret = 0;
1760ac8e9819SChris Mason 
1761ac8e9819SChris Mason 	leaf = path->nodes[0];
1762ac8e9819SChris Mason 	slot = path->slots[0];
1763ac8e9819SChris Mason 	nritems = btrfs_header_nritems(leaf);
1764ac8e9819SChris Mason 
1765ac8e9819SChris Mason 	if (btrfs_header_generation(leaf) > sk->max_transid) {
1766ac8e9819SChris Mason 		i = nritems;
1767ac8e9819SChris Mason 		goto advance_key;
1768ac8e9819SChris Mason 	}
1769ac8e9819SChris Mason 	found_transid = btrfs_header_generation(leaf);
1770ac8e9819SChris Mason 
1771ac8e9819SChris Mason 	for (i = slot; i < nritems; i++) {
1772ac8e9819SChris Mason 		item_off = btrfs_item_ptr_offset(leaf, i);
1773ac8e9819SChris Mason 		item_len = btrfs_item_size_nr(leaf, i);
1774ac8e9819SChris Mason 
1775ac8e9819SChris Mason 		if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1776ac8e9819SChris Mason 			item_len = 0;
1777ac8e9819SChris Mason 
1778ac8e9819SChris Mason 		if (sizeof(sh) + item_len + *sk_offset >
1779ac8e9819SChris Mason 		    BTRFS_SEARCH_ARGS_BUFSIZE) {
1780ac8e9819SChris Mason 			ret = 1;
1781ac8e9819SChris Mason 			goto overflow;
1782ac8e9819SChris Mason 		}
1783ac8e9819SChris Mason 
1784ac8e9819SChris Mason 		btrfs_item_key_to_cpu(leaf, key, i);
1785ac8e9819SChris Mason 		if (!key_in_sk(key, sk))
1786ac8e9819SChris Mason 			continue;
1787ac8e9819SChris Mason 
1788ac8e9819SChris Mason 		sh.objectid = key->objectid;
1789ac8e9819SChris Mason 		sh.offset = key->offset;
1790ac8e9819SChris Mason 		sh.type = key->type;
1791ac8e9819SChris Mason 		sh.len = item_len;
1792ac8e9819SChris Mason 		sh.transid = found_transid;
1793ac8e9819SChris Mason 
1794ac8e9819SChris Mason 		/* copy search result header */
1795ac8e9819SChris Mason 		memcpy(buf + *sk_offset, &sh, sizeof(sh));
1796ac8e9819SChris Mason 		*sk_offset += sizeof(sh);
1797ac8e9819SChris Mason 
1798ac8e9819SChris Mason 		if (item_len) {
1799ac8e9819SChris Mason 			char *p = buf + *sk_offset;
1800ac8e9819SChris Mason 			/* copy the item */
1801ac8e9819SChris Mason 			read_extent_buffer(leaf, p,
1802ac8e9819SChris Mason 					   item_off, item_len);
1803ac8e9819SChris Mason 			*sk_offset += item_len;
1804ac8e9819SChris Mason 		}
1805e2156867SHugo Mills 		(*num_found)++;
1806ac8e9819SChris Mason 
1807ac8e9819SChris Mason 		if (*num_found >= sk->nr_items)
1808ac8e9819SChris Mason 			break;
1809ac8e9819SChris Mason 	}
1810ac8e9819SChris Mason advance_key:
1811ac8e9819SChris Mason 	ret = 0;
1812abc6e134SChris Mason 	if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1813abc6e134SChris Mason 		key->offset++;
1814abc6e134SChris Mason 	else if (key->type < (u8)-1 && key->type < sk->max_type) {
1815abc6e134SChris Mason 		key->offset = 0;
1816abc6e134SChris Mason 		key->type++;
1817abc6e134SChris Mason 	} else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1818abc6e134SChris Mason 		key->offset = 0;
1819abc6e134SChris Mason 		key->type = 0;
1820abc6e134SChris Mason 		key->objectid++;
1821abc6e134SChris Mason 	} else
1822abc6e134SChris Mason 		ret = 1;
1823ac8e9819SChris Mason overflow:
1824ac8e9819SChris Mason 	return ret;
1825ac8e9819SChris Mason }
1826ac8e9819SChris Mason 
1827ac8e9819SChris Mason static noinline int search_ioctl(struct inode *inode,
1828ac8e9819SChris Mason 				 struct btrfs_ioctl_search_args *args)
1829ac8e9819SChris Mason {
1830ac8e9819SChris Mason 	struct btrfs_root *root;
1831ac8e9819SChris Mason 	struct btrfs_key key;
1832ac8e9819SChris Mason 	struct btrfs_key max_key;
1833ac8e9819SChris Mason 	struct btrfs_path *path;
1834ac8e9819SChris Mason 	struct btrfs_ioctl_search_key *sk = &args->key;
1835ac8e9819SChris Mason 	struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1836ac8e9819SChris Mason 	int ret;
1837ac8e9819SChris Mason 	int num_found = 0;
1838ac8e9819SChris Mason 	unsigned long sk_offset = 0;
1839ac8e9819SChris Mason 
1840ac8e9819SChris Mason 	path = btrfs_alloc_path();
1841ac8e9819SChris Mason 	if (!path)
1842ac8e9819SChris Mason 		return -ENOMEM;
1843ac8e9819SChris Mason 
1844ac8e9819SChris Mason 	if (sk->tree_id == 0) {
1845ac8e9819SChris Mason 		/* search the root of the inode that was passed */
1846ac8e9819SChris Mason 		root = BTRFS_I(inode)->root;
1847ac8e9819SChris Mason 	} else {
1848ac8e9819SChris Mason 		key.objectid = sk->tree_id;
1849ac8e9819SChris Mason 		key.type = BTRFS_ROOT_ITEM_KEY;
1850ac8e9819SChris Mason 		key.offset = (u64)-1;
1851ac8e9819SChris Mason 		root = btrfs_read_fs_root_no_name(info, &key);
1852ac8e9819SChris Mason 		if (IS_ERR(root)) {
1853ac8e9819SChris Mason 			printk(KERN_ERR "could not find root %llu\n",
1854ac8e9819SChris Mason 			       sk->tree_id);
1855ac8e9819SChris Mason 			btrfs_free_path(path);
1856ac8e9819SChris Mason 			return -ENOENT;
1857ac8e9819SChris Mason 		}
1858ac8e9819SChris Mason 	}
1859ac8e9819SChris Mason 
1860ac8e9819SChris Mason 	key.objectid = sk->min_objectid;
1861ac8e9819SChris Mason 	key.type = sk->min_type;
1862ac8e9819SChris Mason 	key.offset = sk->min_offset;
1863ac8e9819SChris Mason 
1864ac8e9819SChris Mason 	max_key.objectid = sk->max_objectid;
1865ac8e9819SChris Mason 	max_key.type = sk->max_type;
1866ac8e9819SChris Mason 	max_key.offset = sk->max_offset;
1867ac8e9819SChris Mason 
1868ac8e9819SChris Mason 	path->keep_locks = 1;
1869ac8e9819SChris Mason 
1870ac8e9819SChris Mason 	while(1) {
1871de78b51aSEric Sandeen 		ret = btrfs_search_forward(root, &key, &max_key, path,
1872ac8e9819SChris Mason 					   sk->min_transid);
1873ac8e9819SChris Mason 		if (ret != 0) {
1874ac8e9819SChris Mason 			if (ret > 0)
1875ac8e9819SChris Mason 				ret = 0;
1876ac8e9819SChris Mason 			goto err;
1877ac8e9819SChris Mason 		}
1878ac8e9819SChris Mason 		ret = copy_to_sk(root, path, &key, sk, args->buf,
1879ac8e9819SChris Mason 				 &sk_offset, &num_found);
1880b3b4aa74SDavid Sterba 		btrfs_release_path(path);
1881ac8e9819SChris Mason 		if (ret || num_found >= sk->nr_items)
1882ac8e9819SChris Mason 			break;
1883ac8e9819SChris Mason 
1884ac8e9819SChris Mason 	}
1885ac8e9819SChris Mason 	ret = 0;
1886ac8e9819SChris Mason err:
1887ac8e9819SChris Mason 	sk->nr_items = num_found;
1888ac8e9819SChris Mason 	btrfs_free_path(path);
1889ac8e9819SChris Mason 	return ret;
1890ac8e9819SChris Mason }
1891ac8e9819SChris Mason 
1892ac8e9819SChris Mason static noinline int btrfs_ioctl_tree_search(struct file *file,
1893ac8e9819SChris Mason 					   void __user *argp)
1894ac8e9819SChris Mason {
1895ac8e9819SChris Mason 	 struct btrfs_ioctl_search_args *args;
1896ac8e9819SChris Mason 	 struct inode *inode;
1897ac8e9819SChris Mason 	 int ret;
1898ac8e9819SChris Mason 
1899ac8e9819SChris Mason 	if (!capable(CAP_SYS_ADMIN))
1900ac8e9819SChris Mason 		return -EPERM;
1901ac8e9819SChris Mason 
19022354d08fSJulia Lawall 	args = memdup_user(argp, sizeof(*args));
19032354d08fSJulia Lawall 	if (IS_ERR(args))
19042354d08fSJulia Lawall 		return PTR_ERR(args);
1905ac8e9819SChris Mason 
1906ac8e9819SChris Mason 	inode = fdentry(file)->d_inode;
1907ac8e9819SChris Mason 	ret = search_ioctl(inode, args);
1908ac8e9819SChris Mason 	if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1909ac8e9819SChris Mason 		ret = -EFAULT;
1910ac8e9819SChris Mason 	kfree(args);
1911ac8e9819SChris Mason 	return ret;
1912ac8e9819SChris Mason }
1913ac8e9819SChris Mason 
191498d377a0STARUISI Hiroaki /*
1915ac8e9819SChris Mason  * Search INODE_REFs to identify path name of 'dirid' directory
1916ac8e9819SChris Mason  * in a 'tree_id' tree. and sets path name to 'name'.
191798d377a0STARUISI Hiroaki  */
191898d377a0STARUISI Hiroaki static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
191998d377a0STARUISI Hiroaki 				u64 tree_id, u64 dirid, char *name)
192098d377a0STARUISI Hiroaki {
192198d377a0STARUISI Hiroaki 	struct btrfs_root *root;
192298d377a0STARUISI Hiroaki 	struct btrfs_key key;
1923ac8e9819SChris Mason 	char *ptr;
192498d377a0STARUISI Hiroaki 	int ret = -1;
192598d377a0STARUISI Hiroaki 	int slot;
192698d377a0STARUISI Hiroaki 	int len;
192798d377a0STARUISI Hiroaki 	int total_len = 0;
192898d377a0STARUISI Hiroaki 	struct btrfs_inode_ref *iref;
192998d377a0STARUISI Hiroaki 	struct extent_buffer *l;
193098d377a0STARUISI Hiroaki 	struct btrfs_path *path;
193198d377a0STARUISI Hiroaki 
193298d377a0STARUISI Hiroaki 	if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
193398d377a0STARUISI Hiroaki 		name[0]='\0';
193498d377a0STARUISI Hiroaki 		return 0;
193598d377a0STARUISI Hiroaki 	}
193698d377a0STARUISI Hiroaki 
193798d377a0STARUISI Hiroaki 	path = btrfs_alloc_path();
193898d377a0STARUISI Hiroaki 	if (!path)
193998d377a0STARUISI Hiroaki 		return -ENOMEM;
194098d377a0STARUISI Hiroaki 
1941ac8e9819SChris Mason 	ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
194298d377a0STARUISI Hiroaki 
194398d377a0STARUISI Hiroaki 	key.objectid = tree_id;
194498d377a0STARUISI Hiroaki 	key.type = BTRFS_ROOT_ITEM_KEY;
194598d377a0STARUISI Hiroaki 	key.offset = (u64)-1;
194698d377a0STARUISI Hiroaki 	root = btrfs_read_fs_root_no_name(info, &key);
194798d377a0STARUISI Hiroaki 	if (IS_ERR(root)) {
194898d377a0STARUISI Hiroaki 		printk(KERN_ERR "could not find root %llu\n", tree_id);
19498ad6fcabSChris Mason 		ret = -ENOENT;
19508ad6fcabSChris Mason 		goto out;
195198d377a0STARUISI Hiroaki 	}
195298d377a0STARUISI Hiroaki 
195398d377a0STARUISI Hiroaki 	key.objectid = dirid;
195498d377a0STARUISI Hiroaki 	key.type = BTRFS_INODE_REF_KEY;
19558ad6fcabSChris Mason 	key.offset = (u64)-1;
195698d377a0STARUISI Hiroaki 
195798d377a0STARUISI Hiroaki 	while(1) {
195898d377a0STARUISI Hiroaki 		ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
195998d377a0STARUISI Hiroaki 		if (ret < 0)
196098d377a0STARUISI Hiroaki 			goto out;
196198d377a0STARUISI Hiroaki 
196298d377a0STARUISI Hiroaki 		l = path->nodes[0];
196398d377a0STARUISI Hiroaki 		slot = path->slots[0];
19648ad6fcabSChris Mason 		if (ret > 0 && slot > 0)
19658ad6fcabSChris Mason 			slot--;
196698d377a0STARUISI Hiroaki 		btrfs_item_key_to_cpu(l, &key, slot);
196798d377a0STARUISI Hiroaki 
196898d377a0STARUISI Hiroaki 		if (ret > 0 && (key.objectid != dirid ||
1969ac8e9819SChris Mason 				key.type != BTRFS_INODE_REF_KEY)) {
1970ac8e9819SChris Mason 			ret = -ENOENT;
197198d377a0STARUISI Hiroaki 			goto out;
1972ac8e9819SChris Mason 		}
197398d377a0STARUISI Hiroaki 
197498d377a0STARUISI Hiroaki 		iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
197598d377a0STARUISI Hiroaki 		len = btrfs_inode_ref_name_len(l, iref);
197698d377a0STARUISI Hiroaki 		ptr -= len + 1;
197798d377a0STARUISI Hiroaki 		total_len += len + 1;
1978ac8e9819SChris Mason 		if (ptr < name)
197998d377a0STARUISI Hiroaki 			goto out;
198098d377a0STARUISI Hiroaki 
198198d377a0STARUISI Hiroaki 		*(ptr + len) = '/';
198298d377a0STARUISI Hiroaki 		read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
198398d377a0STARUISI Hiroaki 
198498d377a0STARUISI Hiroaki 		if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
198598d377a0STARUISI Hiroaki 			break;
198698d377a0STARUISI Hiroaki 
1987b3b4aa74SDavid Sterba 		btrfs_release_path(path);
198898d377a0STARUISI Hiroaki 		key.objectid = key.offset;
19898ad6fcabSChris Mason 		key.offset = (u64)-1;
199098d377a0STARUISI Hiroaki 		dirid = key.objectid;
199198d377a0STARUISI Hiroaki 	}
1992ac8e9819SChris Mason 	if (ptr < name)
199398d377a0STARUISI Hiroaki 		goto out;
199477906a50SLi Zefan 	memmove(name, ptr, total_len);
199598d377a0STARUISI Hiroaki 	name[total_len]='\0';
199698d377a0STARUISI Hiroaki 	ret = 0;
199798d377a0STARUISI Hiroaki out:
199898d377a0STARUISI Hiroaki 	btrfs_free_path(path);
1999ac8e9819SChris Mason 	return ret;
2000ac8e9819SChris Mason }
2001ac8e9819SChris Mason 
2002ac8e9819SChris Mason static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2003ac8e9819SChris Mason 					   void __user *argp)
2004ac8e9819SChris Mason {
2005ac8e9819SChris Mason 	 struct btrfs_ioctl_ino_lookup_args *args;
2006ac8e9819SChris Mason 	 struct inode *inode;
2007ac8e9819SChris Mason 	 int ret;
2008ac8e9819SChris Mason 
2009ac8e9819SChris Mason 	if (!capable(CAP_SYS_ADMIN))
2010ac8e9819SChris Mason 		return -EPERM;
2011ac8e9819SChris Mason 
20122354d08fSJulia Lawall 	args = memdup_user(argp, sizeof(*args));
20132354d08fSJulia Lawall 	if (IS_ERR(args))
20142354d08fSJulia Lawall 		return PTR_ERR(args);
2015c2b96929SDan Carpenter 
2016ac8e9819SChris Mason 	inode = fdentry(file)->d_inode;
2017ac8e9819SChris Mason 
20181b53ac4dSChris Mason 	if (args->treeid == 0)
20191b53ac4dSChris Mason 		args->treeid = BTRFS_I(inode)->root->root_key.objectid;
20201b53ac4dSChris Mason 
2021ac8e9819SChris Mason 	ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2022ac8e9819SChris Mason 					args->treeid, args->objectid,
2023ac8e9819SChris Mason 					args->name);
2024ac8e9819SChris Mason 
2025ac8e9819SChris Mason 	if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2026ac8e9819SChris Mason 		ret = -EFAULT;
2027ac8e9819SChris Mason 
2028ac8e9819SChris Mason 	kfree(args);
202998d377a0STARUISI Hiroaki 	return ret;
203098d377a0STARUISI Hiroaki }
203198d377a0STARUISI Hiroaki 
203276dda93cSYan, Zheng static noinline int btrfs_ioctl_snap_destroy(struct file *file,
203376dda93cSYan, Zheng 					     void __user *arg)
203476dda93cSYan, Zheng {
203576dda93cSYan, Zheng 	struct dentry *parent = fdentry(file);
203676dda93cSYan, Zheng 	struct dentry *dentry;
203776dda93cSYan, Zheng 	struct inode *dir = parent->d_inode;
203876dda93cSYan, Zheng 	struct inode *inode;
203976dda93cSYan, Zheng 	struct btrfs_root *root = BTRFS_I(dir)->root;
204076dda93cSYan, Zheng 	struct btrfs_root *dest = NULL;
204176dda93cSYan, Zheng 	struct btrfs_ioctl_vol_args *vol_args;
204276dda93cSYan, Zheng 	struct btrfs_trans_handle *trans;
204376dda93cSYan, Zheng 	int namelen;
204476dda93cSYan, Zheng 	int ret;
204576dda93cSYan, Zheng 	int err = 0;
204676dda93cSYan, Zheng 
204776dda93cSYan, Zheng 	vol_args = memdup_user(arg, sizeof(*vol_args));
204876dda93cSYan, Zheng 	if (IS_ERR(vol_args))
204976dda93cSYan, Zheng 		return PTR_ERR(vol_args);
205076dda93cSYan, Zheng 
205176dda93cSYan, Zheng 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
205276dda93cSYan, Zheng 	namelen = strlen(vol_args->name);
205376dda93cSYan, Zheng 	if (strchr(vol_args->name, '/') ||
205476dda93cSYan, Zheng 	    strncmp(vol_args->name, "..", namelen) == 0) {
205576dda93cSYan, Zheng 		err = -EINVAL;
205676dda93cSYan, Zheng 		goto out;
205776dda93cSYan, Zheng 	}
205876dda93cSYan, Zheng 
2059a561be71SAl Viro 	err = mnt_want_write_file(file);
206076dda93cSYan, Zheng 	if (err)
206176dda93cSYan, Zheng 		goto out;
206276dda93cSYan, Zheng 
206376dda93cSYan, Zheng 	mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
206476dda93cSYan, Zheng 	dentry = lookup_one_len(vol_args->name, parent, namelen);
206576dda93cSYan, Zheng 	if (IS_ERR(dentry)) {
206676dda93cSYan, Zheng 		err = PTR_ERR(dentry);
206776dda93cSYan, Zheng 		goto out_unlock_dir;
206876dda93cSYan, Zheng 	}
206976dda93cSYan, Zheng 
207076dda93cSYan, Zheng 	if (!dentry->d_inode) {
207176dda93cSYan, Zheng 		err = -ENOENT;
207276dda93cSYan, Zheng 		goto out_dput;
207376dda93cSYan, Zheng 	}
207476dda93cSYan, Zheng 
207576dda93cSYan, Zheng 	inode = dentry->d_inode;
20764260f7c7SSage Weil 	dest = BTRFS_I(inode)->root;
20774260f7c7SSage Weil 	if (!capable(CAP_SYS_ADMIN)){
20784260f7c7SSage Weil 		/*
20794260f7c7SSage Weil 		 * Regular user.  Only allow this with a special mount
20804260f7c7SSage Weil 		 * option, when the user has write+exec access to the
20814260f7c7SSage Weil 		 * subvol root, and when rmdir(2) would have been
20824260f7c7SSage Weil 		 * allowed.
20834260f7c7SSage Weil 		 *
20844260f7c7SSage Weil 		 * Note that this is _not_ check that the subvol is
20854260f7c7SSage Weil 		 * empty or doesn't contain data that we wouldn't
20864260f7c7SSage Weil 		 * otherwise be able to delete.
20874260f7c7SSage Weil 		 *
20884260f7c7SSage Weil 		 * Users who want to delete empty subvols should try
20894260f7c7SSage Weil 		 * rmdir(2).
20904260f7c7SSage Weil 		 */
20914260f7c7SSage Weil 		err = -EPERM;
20924260f7c7SSage Weil 		if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
20934260f7c7SSage Weil 			goto out_dput;
20944260f7c7SSage Weil 
20954260f7c7SSage Weil 		/*
20964260f7c7SSage Weil 		 * Do not allow deletion if the parent dir is the same
20974260f7c7SSage Weil 		 * as the dir to be deleted.  That means the ioctl
20984260f7c7SSage Weil 		 * must be called on the dentry referencing the root
20994260f7c7SSage Weil 		 * of the subvol, not a random directory contained
21004260f7c7SSage Weil 		 * within it.
21014260f7c7SSage Weil 		 */
21024260f7c7SSage Weil 		err = -EINVAL;
21034260f7c7SSage Weil 		if (root == dest)
21044260f7c7SSage Weil 			goto out_dput;
21054260f7c7SSage Weil 
21064260f7c7SSage Weil 		err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
21074260f7c7SSage Weil 		if (err)
21084260f7c7SSage Weil 			goto out_dput;
21095c39da5bSMiao Xie 	}
21104260f7c7SSage Weil 
21115c39da5bSMiao Xie 	/* check if subvolume may be deleted by a user */
21124260f7c7SSage Weil 	err = btrfs_may_delete(dir, dentry, 1);
21134260f7c7SSage Weil 	if (err)
21144260f7c7SSage Weil 		goto out_dput;
21154260f7c7SSage Weil 
211633345d01SLi Zefan 	if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
211776dda93cSYan, Zheng 		err = -EINVAL;
211876dda93cSYan, Zheng 		goto out_dput;
211976dda93cSYan, Zheng 	}
212076dda93cSYan, Zheng 
212176dda93cSYan, Zheng 	mutex_lock(&inode->i_mutex);
212276dda93cSYan, Zheng 	err = d_invalidate(dentry);
212376dda93cSYan, Zheng 	if (err)
212476dda93cSYan, Zheng 		goto out_unlock;
212576dda93cSYan, Zheng 
212676dda93cSYan, Zheng 	down_write(&root->fs_info->subvol_sem);
212776dda93cSYan, Zheng 
212876dda93cSYan, Zheng 	err = may_destroy_subvol(dest);
212976dda93cSYan, Zheng 	if (err)
213076dda93cSYan, Zheng 		goto out_up_write;
213176dda93cSYan, Zheng 
2132a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root, 0);
2133a22285a6SYan, Zheng 	if (IS_ERR(trans)) {
2134a22285a6SYan, Zheng 		err = PTR_ERR(trans);
2135d327099aSDan Carpenter 		goto out_up_write;
2136a22285a6SYan, Zheng 	}
2137a22285a6SYan, Zheng 	trans->block_rsv = &root->fs_info->global_block_rsv;
2138a22285a6SYan, Zheng 
213976dda93cSYan, Zheng 	ret = btrfs_unlink_subvol(trans, root, dir,
214076dda93cSYan, Zheng 				dest->root_key.objectid,
214176dda93cSYan, Zheng 				dentry->d_name.name,
214276dda93cSYan, Zheng 				dentry->d_name.len);
214379787eaaSJeff Mahoney 	if (ret) {
214479787eaaSJeff Mahoney 		err = ret;
214579787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, ret);
214679787eaaSJeff Mahoney 		goto out_end_trans;
214779787eaaSJeff Mahoney 	}
214876dda93cSYan, Zheng 
214976dda93cSYan, Zheng 	btrfs_record_root_in_trans(trans, dest);
215076dda93cSYan, Zheng 
215176dda93cSYan, Zheng 	memset(&dest->root_item.drop_progress, 0,
215276dda93cSYan, Zheng 		sizeof(dest->root_item.drop_progress));
215376dda93cSYan, Zheng 	dest->root_item.drop_level = 0;
215476dda93cSYan, Zheng 	btrfs_set_root_refs(&dest->root_item, 0);
215576dda93cSYan, Zheng 
2156d68fc57bSYan, Zheng 	if (!xchg(&dest->orphan_item_inserted, 1)) {
215776dda93cSYan, Zheng 		ret = btrfs_insert_orphan_item(trans,
215876dda93cSYan, Zheng 					root->fs_info->tree_root,
215976dda93cSYan, Zheng 					dest->root_key.objectid);
216079787eaaSJeff Mahoney 		if (ret) {
216179787eaaSJeff Mahoney 			btrfs_abort_transaction(trans, root, ret);
216279787eaaSJeff Mahoney 			err = ret;
216379787eaaSJeff Mahoney 			goto out_end_trans;
2164d68fc57bSYan, Zheng 		}
216579787eaaSJeff Mahoney 	}
216679787eaaSJeff Mahoney out_end_trans:
2167531cb13fSSage Weil 	ret = btrfs_end_transaction(trans, root);
216879787eaaSJeff Mahoney 	if (ret && !err)
216979787eaaSJeff Mahoney 		err = ret;
217076dda93cSYan, Zheng 	inode->i_flags |= S_DEAD;
217176dda93cSYan, Zheng out_up_write:
217276dda93cSYan, Zheng 	up_write(&root->fs_info->subvol_sem);
217376dda93cSYan, Zheng out_unlock:
217476dda93cSYan, Zheng 	mutex_unlock(&inode->i_mutex);
217576dda93cSYan, Zheng 	if (!err) {
2176efefb143SYan, Zheng 		shrink_dcache_sb(root->fs_info->sb);
217776dda93cSYan, Zheng 		btrfs_invalidate_inodes(dest);
217876dda93cSYan, Zheng 		d_delete(dentry);
2179fa6ac876SLiu Bo 
2180fa6ac876SLiu Bo 		/* the last ref */
2181fa6ac876SLiu Bo 		if (dest->cache_inode) {
2182fa6ac876SLiu Bo 			iput(dest->cache_inode);
2183fa6ac876SLiu Bo 			dest->cache_inode = NULL;
2184fa6ac876SLiu Bo 		}
218576dda93cSYan, Zheng 	}
218676dda93cSYan, Zheng out_dput:
218776dda93cSYan, Zheng 	dput(dentry);
218876dda93cSYan, Zheng out_unlock_dir:
218976dda93cSYan, Zheng 	mutex_unlock(&dir->i_mutex);
21902a79f17eSAl Viro 	mnt_drop_write_file(file);
219176dda93cSYan, Zheng out:
219276dda93cSYan, Zheng 	kfree(vol_args);
219376dda93cSYan, Zheng 	return err;
219476dda93cSYan, Zheng }
219576dda93cSYan, Zheng 
21961e701a32SChris Mason static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
2197f46b5a66SChristoph Hellwig {
2198f46b5a66SChristoph Hellwig 	struct inode *inode = fdentry(file)->d_inode;
2199f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(inode)->root;
22001e701a32SChris Mason 	struct btrfs_ioctl_defrag_range_args *range;
2201c146afadSYan Zheng 	int ret;
2202c146afadSYan Zheng 
220325122d15SIlya Dryomov 	ret = mnt_want_write_file(file);
220425122d15SIlya Dryomov 	if (ret)
220525122d15SIlya Dryomov 		return ret;
2206b83cc969SLi Zefan 
22075ac00addSStefan Behrens 	if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
22085ac00addSStefan Behrens 			1)) {
22095ac00addSStefan Behrens 		pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
221025122d15SIlya Dryomov 		mnt_drop_write_file(file);
22112c0c9da0SIlya Dryomov 		return -EINVAL;
22125ac00addSStefan Behrens 	}
221325122d15SIlya Dryomov 
221425122d15SIlya Dryomov 	if (btrfs_root_readonly(root)) {
221525122d15SIlya Dryomov 		ret = -EROFS;
221625122d15SIlya Dryomov 		goto out;
22175ac00addSStefan Behrens 	}
2218f46b5a66SChristoph Hellwig 
2219f46b5a66SChristoph Hellwig 	switch (inode->i_mode & S_IFMT) {
2220f46b5a66SChristoph Hellwig 	case S_IFDIR:
2221e441d54dSChris Mason 		if (!capable(CAP_SYS_ADMIN)) {
2222e441d54dSChris Mason 			ret = -EPERM;
2223e441d54dSChris Mason 			goto out;
2224e441d54dSChris Mason 		}
2225de78b51aSEric Sandeen 		ret = btrfs_defrag_root(root);
22268929ecfaSYan, Zheng 		if (ret)
22278929ecfaSYan, Zheng 			goto out;
2228de78b51aSEric Sandeen 		ret = btrfs_defrag_root(root->fs_info->extent_root);
2229f46b5a66SChristoph Hellwig 		break;
2230f46b5a66SChristoph Hellwig 	case S_IFREG:
2231e441d54dSChris Mason 		if (!(file->f_mode & FMODE_WRITE)) {
2232e441d54dSChris Mason 			ret = -EINVAL;
2233e441d54dSChris Mason 			goto out;
2234e441d54dSChris Mason 		}
22351e701a32SChris Mason 
22361e701a32SChris Mason 		range = kzalloc(sizeof(*range), GFP_KERNEL);
22371e701a32SChris Mason 		if (!range) {
22381e701a32SChris Mason 			ret = -ENOMEM;
22391e701a32SChris Mason 			goto out;
22401e701a32SChris Mason 		}
22411e701a32SChris Mason 
22421e701a32SChris Mason 		if (argp) {
22431e701a32SChris Mason 			if (copy_from_user(range, argp,
22441e701a32SChris Mason 					   sizeof(*range))) {
22451e701a32SChris Mason 				ret = -EFAULT;
22461e701a32SChris Mason 				kfree(range);
2247683be16eSDan Carpenter 				goto out;
22481e701a32SChris Mason 			}
22491e701a32SChris Mason 			/* compression requires us to start the IO */
22501e701a32SChris Mason 			if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
22511e701a32SChris Mason 				range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
22521e701a32SChris Mason 				range->extent_thresh = (u32)-1;
22531e701a32SChris Mason 			}
22541e701a32SChris Mason 		} else {
22551e701a32SChris Mason 			/* the rest are all set to zero by kzalloc */
22561e701a32SChris Mason 			range->len = (u64)-1;
22571e701a32SChris Mason 		}
22584cb5300bSChris Mason 		ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
22594cb5300bSChris Mason 					range, 0, 0);
22604cb5300bSChris Mason 		if (ret > 0)
22614cb5300bSChris Mason 			ret = 0;
22621e701a32SChris Mason 		kfree(range);
2263f46b5a66SChristoph Hellwig 		break;
22648929ecfaSYan, Zheng 	default:
22658929ecfaSYan, Zheng 		ret = -EINVAL;
2266f46b5a66SChristoph Hellwig 	}
2267e441d54dSChris Mason out:
22685ac00addSStefan Behrens 	atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
226925122d15SIlya Dryomov 	mnt_drop_write_file(file);
2270e441d54dSChris Mason 	return ret;
2271f46b5a66SChristoph Hellwig }
2272f46b5a66SChristoph Hellwig 
2273b2950863SChristoph Hellwig static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
2274f46b5a66SChristoph Hellwig {
2275f46b5a66SChristoph Hellwig 	struct btrfs_ioctl_vol_args *vol_args;
2276f46b5a66SChristoph Hellwig 	int ret;
2277f46b5a66SChristoph Hellwig 
2278e441d54dSChris Mason 	if (!capable(CAP_SYS_ADMIN))
2279e441d54dSChris Mason 		return -EPERM;
2280e441d54dSChris Mason 
22815ac00addSStefan Behrens 	if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
22825ac00addSStefan Behrens 			1)) {
22835ac00addSStefan Behrens 		pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
22842c0c9da0SIlya Dryomov 		return -EINVAL;
2285c9e9f97bSIlya Dryomov 	}
2286c9e9f97bSIlya Dryomov 
22875ac00addSStefan Behrens 	mutex_lock(&root->fs_info->volume_mutex);
2288dae7b665SLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
2289c9e9f97bSIlya Dryomov 	if (IS_ERR(vol_args)) {
2290c9e9f97bSIlya Dryomov 		ret = PTR_ERR(vol_args);
2291c9e9f97bSIlya Dryomov 		goto out;
2292c9e9f97bSIlya Dryomov 	}
2293f46b5a66SChristoph Hellwig 
22945516e595SMark Fasheh 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2295f46b5a66SChristoph Hellwig 	ret = btrfs_init_new_device(root, vol_args->name);
2296f46b5a66SChristoph Hellwig 
2297f46b5a66SChristoph Hellwig 	kfree(vol_args);
2298c9e9f97bSIlya Dryomov out:
2299c9e9f97bSIlya Dryomov 	mutex_unlock(&root->fs_info->volume_mutex);
23005ac00addSStefan Behrens 	atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
2301f46b5a66SChristoph Hellwig 	return ret;
2302f46b5a66SChristoph Hellwig }
2303f46b5a66SChristoph Hellwig 
2304da24927bSMiao Xie static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2305f46b5a66SChristoph Hellwig {
2306da24927bSMiao Xie 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
2307f46b5a66SChristoph Hellwig 	struct btrfs_ioctl_vol_args *vol_args;
2308f46b5a66SChristoph Hellwig 	int ret;
2309f46b5a66SChristoph Hellwig 
2310e441d54dSChris Mason 	if (!capable(CAP_SYS_ADMIN))
2311e441d54dSChris Mason 		return -EPERM;
2312e441d54dSChris Mason 
2313da24927bSMiao Xie 	ret = mnt_want_write_file(file);
2314da24927bSMiao Xie 	if (ret)
2315da24927bSMiao Xie 		return ret;
2316c146afadSYan Zheng 
23175ac00addSStefan Behrens 	if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
23185ac00addSStefan Behrens 			1)) {
23195ac00addSStefan Behrens 		pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
2320da24927bSMiao Xie 		mnt_drop_write_file(file);
23212c0c9da0SIlya Dryomov 		return -EINVAL;
2322c9e9f97bSIlya Dryomov 	}
2323c9e9f97bSIlya Dryomov 
23245ac00addSStefan Behrens 	mutex_lock(&root->fs_info->volume_mutex);
2325dae7b665SLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
2326c9e9f97bSIlya Dryomov 	if (IS_ERR(vol_args)) {
2327c9e9f97bSIlya Dryomov 		ret = PTR_ERR(vol_args);
2328c9e9f97bSIlya Dryomov 		goto out;
2329c9e9f97bSIlya Dryomov 	}
2330f46b5a66SChristoph Hellwig 
23315516e595SMark Fasheh 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2332f46b5a66SChristoph Hellwig 	ret = btrfs_rm_device(root, vol_args->name);
2333f46b5a66SChristoph Hellwig 
2334f46b5a66SChristoph Hellwig 	kfree(vol_args);
2335c9e9f97bSIlya Dryomov out:
2336c9e9f97bSIlya Dryomov 	mutex_unlock(&root->fs_info->volume_mutex);
23375ac00addSStefan Behrens 	atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
23384ac20c70SIlya Dryomov 	mnt_drop_write_file(file);
2339f46b5a66SChristoph Hellwig 	return ret;
2340f46b5a66SChristoph Hellwig }
2341f46b5a66SChristoph Hellwig 
2342475f6387SJan Schmidt static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2343475f6387SJan Schmidt {
2344027ed2f0SLi Zefan 	struct btrfs_ioctl_fs_info_args *fi_args;
2345475f6387SJan Schmidt 	struct btrfs_device *device;
2346475f6387SJan Schmidt 	struct btrfs_device *next;
2347475f6387SJan Schmidt 	struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2348027ed2f0SLi Zefan 	int ret = 0;
2349475f6387SJan Schmidt 
2350475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
2351475f6387SJan Schmidt 		return -EPERM;
2352475f6387SJan Schmidt 
2353027ed2f0SLi Zefan 	fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2354027ed2f0SLi Zefan 	if (!fi_args)
2355027ed2f0SLi Zefan 		return -ENOMEM;
2356027ed2f0SLi Zefan 
2357027ed2f0SLi Zefan 	fi_args->num_devices = fs_devices->num_devices;
2358027ed2f0SLi Zefan 	memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
2359475f6387SJan Schmidt 
2360475f6387SJan Schmidt 	mutex_lock(&fs_devices->device_list_mutex);
2361475f6387SJan Schmidt 	list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
2362027ed2f0SLi Zefan 		if (device->devid > fi_args->max_id)
2363027ed2f0SLi Zefan 			fi_args->max_id = device->devid;
2364475f6387SJan Schmidt 	}
2365475f6387SJan Schmidt 	mutex_unlock(&fs_devices->device_list_mutex);
2366475f6387SJan Schmidt 
2367027ed2f0SLi Zefan 	if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2368027ed2f0SLi Zefan 		ret = -EFAULT;
2369475f6387SJan Schmidt 
2370027ed2f0SLi Zefan 	kfree(fi_args);
2371027ed2f0SLi Zefan 	return ret;
2372475f6387SJan Schmidt }
2373475f6387SJan Schmidt 
2374475f6387SJan Schmidt static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2375475f6387SJan Schmidt {
2376475f6387SJan Schmidt 	struct btrfs_ioctl_dev_info_args *di_args;
2377475f6387SJan Schmidt 	struct btrfs_device *dev;
2378475f6387SJan Schmidt 	struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2379475f6387SJan Schmidt 	int ret = 0;
2380475f6387SJan Schmidt 	char *s_uuid = NULL;
2381475f6387SJan Schmidt 	char empty_uuid[BTRFS_UUID_SIZE] = {0};
2382475f6387SJan Schmidt 
2383475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
2384475f6387SJan Schmidt 		return -EPERM;
2385475f6387SJan Schmidt 
2386475f6387SJan Schmidt 	di_args = memdup_user(arg, sizeof(*di_args));
2387475f6387SJan Schmidt 	if (IS_ERR(di_args))
2388475f6387SJan Schmidt 		return PTR_ERR(di_args);
2389475f6387SJan Schmidt 
2390475f6387SJan Schmidt 	if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2391475f6387SJan Schmidt 		s_uuid = di_args->uuid;
2392475f6387SJan Schmidt 
2393475f6387SJan Schmidt 	mutex_lock(&fs_devices->device_list_mutex);
2394aa1b8cd4SStefan Behrens 	dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
2395475f6387SJan Schmidt 	mutex_unlock(&fs_devices->device_list_mutex);
2396475f6387SJan Schmidt 
2397475f6387SJan Schmidt 	if (!dev) {
2398475f6387SJan Schmidt 		ret = -ENODEV;
2399475f6387SJan Schmidt 		goto out;
2400475f6387SJan Schmidt 	}
2401475f6387SJan Schmidt 
2402475f6387SJan Schmidt 	di_args->devid = dev->devid;
2403475f6387SJan Schmidt 	di_args->bytes_used = dev->bytes_used;
2404475f6387SJan Schmidt 	di_args->total_bytes = dev->total_bytes;
2405475f6387SJan Schmidt 	memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
2406a27202fbSJim Meyering 	if (dev->name) {
2407606686eeSJosef Bacik 		struct rcu_string *name;
2408606686eeSJosef Bacik 
2409606686eeSJosef Bacik 		rcu_read_lock();
2410606686eeSJosef Bacik 		name = rcu_dereference(dev->name);
2411606686eeSJosef Bacik 		strncpy(di_args->path, name->str, sizeof(di_args->path));
2412606686eeSJosef Bacik 		rcu_read_unlock();
2413a27202fbSJim Meyering 		di_args->path[sizeof(di_args->path) - 1] = 0;
2414a27202fbSJim Meyering 	} else {
241599ba55adSStefan Behrens 		di_args->path[0] = '\0';
2416a27202fbSJim Meyering 	}
2417475f6387SJan Schmidt 
2418475f6387SJan Schmidt out:
2419475f6387SJan Schmidt 	if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2420475f6387SJan Schmidt 		ret = -EFAULT;
2421475f6387SJan Schmidt 
2422475f6387SJan Schmidt 	kfree(di_args);
2423475f6387SJan Schmidt 	return ret;
2424475f6387SJan Schmidt }
2425475f6387SJan Schmidt 
242676dda93cSYan, Zheng static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2427b2950863SChristoph Hellwig 				       u64 off, u64 olen, u64 destoff)
2428f46b5a66SChristoph Hellwig {
2429f46b5a66SChristoph Hellwig 	struct inode *inode = fdentry(file)->d_inode;
2430f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(inode)->root;
24312903ff01SAl Viro 	struct fd src_file;
2432f46b5a66SChristoph Hellwig 	struct inode *src;
2433f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
2434f46b5a66SChristoph Hellwig 	struct btrfs_path *path;
2435f46b5a66SChristoph Hellwig 	struct extent_buffer *leaf;
2436ae01a0abSYan Zheng 	char *buf;
2437ae01a0abSYan Zheng 	struct btrfs_key key;
2438f46b5a66SChristoph Hellwig 	u32 nritems;
2439f46b5a66SChristoph Hellwig 	int slot;
2440ae01a0abSYan Zheng 	int ret;
2441c5c9cd4dSSage Weil 	u64 len = olen;
2442c5c9cd4dSSage Weil 	u64 bs = root->fs_info->sb->s_blocksize;
2443d20f7043SChris Mason 
2444c5c9cd4dSSage Weil 	/*
2445c5c9cd4dSSage Weil 	 * TODO:
2446c5c9cd4dSSage Weil 	 * - split compressed inline extents.  annoying: we need to
2447c5c9cd4dSSage Weil 	 *   decompress into destination's address_space (the file offset
2448c5c9cd4dSSage Weil 	 *   may change, so source mapping won't do), then recompress (or
2449c5c9cd4dSSage Weil 	 *   otherwise reinsert) a subrange.
2450c5c9cd4dSSage Weil 	 * - allow ranges within the same file to be cloned (provided
2451c5c9cd4dSSage Weil 	 *   they don't overlap)?
2452c5c9cd4dSSage Weil 	 */
2453c5c9cd4dSSage Weil 
2454e441d54dSChris Mason 	/* the destination must be opened for writing */
24552ebc3464SDan Rosenberg 	if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
2456e441d54dSChris Mason 		return -EINVAL;
2457e441d54dSChris Mason 
2458b83cc969SLi Zefan 	if (btrfs_root_readonly(root))
2459b83cc969SLi Zefan 		return -EROFS;
2460b83cc969SLi Zefan 
2461a561be71SAl Viro 	ret = mnt_want_write_file(file);
2462c146afadSYan Zheng 	if (ret)
2463c146afadSYan Zheng 		return ret;
2464c146afadSYan Zheng 
24652903ff01SAl Viro 	src_file = fdget(srcfd);
24662903ff01SAl Viro 	if (!src_file.file) {
2467ab67b7c1SYan Zheng 		ret = -EBADF;
2468ab67b7c1SYan Zheng 		goto out_drop_write;
2469ab67b7c1SYan Zheng 	}
24705dc64164SDan Rosenberg 
2471362a20c5SDavid Sterba 	ret = -EXDEV;
24722903ff01SAl Viro 	if (src_file.file->f_path.mnt != file->f_path.mnt)
2473362a20c5SDavid Sterba 		goto out_fput;
2474362a20c5SDavid Sterba 
24752903ff01SAl Viro 	src = src_file.file->f_dentry->d_inode;
2476f46b5a66SChristoph Hellwig 
2477c5c9cd4dSSage Weil 	ret = -EINVAL;
2478c5c9cd4dSSage Weil 	if (src == inode)
2479c5c9cd4dSSage Weil 		goto out_fput;
2480c5c9cd4dSSage Weil 
24815dc64164SDan Rosenberg 	/* the src must be open for reading */
24822903ff01SAl Viro 	if (!(src_file.file->f_mode & FMODE_READ))
24835dc64164SDan Rosenberg 		goto out_fput;
24845dc64164SDan Rosenberg 
24850e7b824cSLi Zefan 	/* don't make the dst file partly checksummed */
24860e7b824cSLi Zefan 	if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
24870e7b824cSLi Zefan 	    (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
24880e7b824cSLi Zefan 		goto out_fput;
24890e7b824cSLi Zefan 
2490ae01a0abSYan Zheng 	ret = -EISDIR;
2491ae01a0abSYan Zheng 	if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
2492f46b5a66SChristoph Hellwig 		goto out_fput;
2493f46b5a66SChristoph Hellwig 
2494ae01a0abSYan Zheng 	ret = -EXDEV;
2495362a20c5SDavid Sterba 	if (src->i_sb != inode->i_sb)
2496ae01a0abSYan Zheng 		goto out_fput;
2497ae01a0abSYan Zheng 
2498ae01a0abSYan Zheng 	ret = -ENOMEM;
2499ae01a0abSYan Zheng 	buf = vmalloc(btrfs_level_size(root, 0));
2500ae01a0abSYan Zheng 	if (!buf)
2501ae01a0abSYan Zheng 		goto out_fput;
2502ae01a0abSYan Zheng 
2503ae01a0abSYan Zheng 	path = btrfs_alloc_path();
2504ae01a0abSYan Zheng 	if (!path) {
2505ae01a0abSYan Zheng 		vfree(buf);
2506ae01a0abSYan Zheng 		goto out_fput;
2507ae01a0abSYan Zheng 	}
2508ae01a0abSYan Zheng 	path->reada = 2;
2509ae01a0abSYan Zheng 
2510f46b5a66SChristoph Hellwig 	if (inode < src) {
2511fccdae43SSage Weil 		mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2512fccdae43SSage Weil 		mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
2513f46b5a66SChristoph Hellwig 	} else {
2514fccdae43SSage Weil 		mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2515fccdae43SSage Weil 		mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
2516f46b5a66SChristoph Hellwig 	}
2517f46b5a66SChristoph Hellwig 
2518c5c9cd4dSSage Weil 	/* determine range to clone */
2519c5c9cd4dSSage Weil 	ret = -EINVAL;
25202ebc3464SDan Rosenberg 	if (off + len > src->i_size || off + len < off)
2521f46b5a66SChristoph Hellwig 		goto out_unlock;
2522c5c9cd4dSSage Weil 	if (len == 0)
2523c5c9cd4dSSage Weil 		olen = len = src->i_size - off;
2524c5c9cd4dSSage Weil 	/* if we extend to eof, continue to block boundary */
2525c5c9cd4dSSage Weil 	if (off + len == src->i_size)
25262a6b8daeSLi Zefan 		len = ALIGN(src->i_size, bs) - off;
2527c5c9cd4dSSage Weil 
2528c5c9cd4dSSage Weil 	/* verify the end result is block aligned */
25292a6b8daeSLi Zefan 	if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
25302a6b8daeSLi Zefan 	    !IS_ALIGNED(destoff, bs))
2531c5c9cd4dSSage Weil 		goto out_unlock;
2532c5c9cd4dSSage Weil 
2533d525e8abSLi Zefan 	if (destoff > inode->i_size) {
2534d525e8abSLi Zefan 		ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2535d525e8abSLi Zefan 		if (ret)
2536d525e8abSLi Zefan 			goto out_unlock;
2537d525e8abSLi Zefan 	}
2538d525e8abSLi Zefan 
253971ef0786SLi Zefan 	/* truncate page cache pages from target inode range */
254071ef0786SLi Zefan 	truncate_inode_pages_range(&inode->i_data, destoff,
254171ef0786SLi Zefan 				   PAGE_CACHE_ALIGN(destoff + len) - 1);
254271ef0786SLi Zefan 
2543f46b5a66SChristoph Hellwig 	/* do any pending delalloc/csum calc on src, one way or
2544f46b5a66SChristoph Hellwig 	   another, and lock file content */
2545f46b5a66SChristoph Hellwig 	while (1) {
254631840ae1SZheng Yan 		struct btrfs_ordered_extent *ordered;
2547aa42ffd9SLiu Bo 		lock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2548aa42ffd9SLiu Bo 		ordered = btrfs_lookup_first_ordered_extent(src, off + len - 1);
25499a019196SSage Weil 		if (!ordered &&
2550aa42ffd9SLiu Bo 		    !test_range_bit(&BTRFS_I(src)->io_tree, off, off + len - 1,
25519a019196SSage Weil 				    EXTENT_DELALLOC, 0, NULL))
2552f46b5a66SChristoph Hellwig 			break;
2553aa42ffd9SLiu Bo 		unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2554ae01a0abSYan Zheng 		if (ordered)
2555ae01a0abSYan Zheng 			btrfs_put_ordered_extent(ordered);
25569a019196SSage Weil 		btrfs_wait_ordered_range(src, off, len);
2557f46b5a66SChristoph Hellwig 	}
2558f46b5a66SChristoph Hellwig 
2559c5c9cd4dSSage Weil 	/* clone data */
256033345d01SLi Zefan 	key.objectid = btrfs_ino(src);
2561ae01a0abSYan Zheng 	key.type = BTRFS_EXTENT_DATA_KEY;
2562ae01a0abSYan Zheng 	key.offset = 0;
2563f46b5a66SChristoph Hellwig 
2564f46b5a66SChristoph Hellwig 	while (1) {
2565f46b5a66SChristoph Hellwig 		/*
2566f46b5a66SChristoph Hellwig 		 * note the key will change type as we walk through the
2567f46b5a66SChristoph Hellwig 		 * tree.
2568f46b5a66SChristoph Hellwig 		 */
2569362a20c5SDavid Sterba 		ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2570362a20c5SDavid Sterba 				0, 0);
2571f46b5a66SChristoph Hellwig 		if (ret < 0)
2572f46b5a66SChristoph Hellwig 			goto out;
2573f46b5a66SChristoph Hellwig 
2574ae01a0abSYan Zheng 		nritems = btrfs_header_nritems(path->nodes[0]);
2575ae01a0abSYan Zheng 		if (path->slots[0] >= nritems) {
2576362a20c5SDavid Sterba 			ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
2577f46b5a66SChristoph Hellwig 			if (ret < 0)
2578f46b5a66SChristoph Hellwig 				goto out;
2579f46b5a66SChristoph Hellwig 			if (ret > 0)
2580f46b5a66SChristoph Hellwig 				break;
2581ae01a0abSYan Zheng 			nritems = btrfs_header_nritems(path->nodes[0]);
2582f46b5a66SChristoph Hellwig 		}
2583f46b5a66SChristoph Hellwig 		leaf = path->nodes[0];
2584f46b5a66SChristoph Hellwig 		slot = path->slots[0];
2585f46b5a66SChristoph Hellwig 
2586ae01a0abSYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, slot);
2587d20f7043SChris Mason 		if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
258833345d01SLi Zefan 		    key.objectid != btrfs_ino(src))
2589f46b5a66SChristoph Hellwig 			break;
2590f46b5a66SChristoph Hellwig 
2591c5c9cd4dSSage Weil 		if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2592c5c9cd4dSSage Weil 			struct btrfs_file_extent_item *extent;
2593c5c9cd4dSSage Weil 			int type;
259431840ae1SZheng Yan 			u32 size;
259531840ae1SZheng Yan 			struct btrfs_key new_key;
2596c5c9cd4dSSage Weil 			u64 disko = 0, diskl = 0;
2597c5c9cd4dSSage Weil 			u64 datao = 0, datal = 0;
2598c5c9cd4dSSage Weil 			u8 comp;
2599b5384d48SSage Weil 			u64 endoff;
260031840ae1SZheng Yan 
260131840ae1SZheng Yan 			size = btrfs_item_size_nr(leaf, slot);
260231840ae1SZheng Yan 			read_extent_buffer(leaf, buf,
260331840ae1SZheng Yan 					   btrfs_item_ptr_offset(leaf, slot),
260431840ae1SZheng Yan 					   size);
2605c5c9cd4dSSage Weil 
2606c5c9cd4dSSage Weil 			extent = btrfs_item_ptr(leaf, slot,
2607c5c9cd4dSSage Weil 						struct btrfs_file_extent_item);
2608c5c9cd4dSSage Weil 			comp = btrfs_file_extent_compression(leaf, extent);
2609c5c9cd4dSSage Weil 			type = btrfs_file_extent_type(leaf, extent);
2610c8a894d7SChris Mason 			if (type == BTRFS_FILE_EXTENT_REG ||
2611c8a894d7SChris Mason 			    type == BTRFS_FILE_EXTENT_PREALLOC) {
2612d397712bSChris Mason 				disko = btrfs_file_extent_disk_bytenr(leaf,
2613d397712bSChris Mason 								      extent);
2614d397712bSChris Mason 				diskl = btrfs_file_extent_disk_num_bytes(leaf,
2615d397712bSChris Mason 								 extent);
2616c5c9cd4dSSage Weil 				datao = btrfs_file_extent_offset(leaf, extent);
2617d397712bSChris Mason 				datal = btrfs_file_extent_num_bytes(leaf,
2618d397712bSChris Mason 								    extent);
2619c5c9cd4dSSage Weil 			} else if (type == BTRFS_FILE_EXTENT_INLINE) {
2620c5c9cd4dSSage Weil 				/* take upper bound, may be compressed */
2621c5c9cd4dSSage Weil 				datal = btrfs_file_extent_ram_bytes(leaf,
2622c5c9cd4dSSage Weil 								    extent);
2623c5c9cd4dSSage Weil 			}
2624b3b4aa74SDavid Sterba 			btrfs_release_path(path);
262531840ae1SZheng Yan 
2626050006a7SSage Weil 			if (key.offset + datal <= off ||
2627aa42ffd9SLiu Bo 			    key.offset >= off + len - 1)
2628c5c9cd4dSSage Weil 				goto next;
2629c5c9cd4dSSage Weil 
263031840ae1SZheng Yan 			memcpy(&new_key, &key, sizeof(new_key));
263133345d01SLi Zefan 			new_key.objectid = btrfs_ino(inode);
26324d728ec7SLi Zefan 			if (off <= key.offset)
2633c5c9cd4dSSage Weil 				new_key.offset = key.offset + destoff - off;
26344d728ec7SLi Zefan 			else
26354d728ec7SLi Zefan 				new_key.offset = destoff;
2636c5c9cd4dSSage Weil 
2637b6f3409bSSage Weil 			/*
2638b6f3409bSSage Weil 			 * 1 - adjusting old extent (we may have to split it)
2639b6f3409bSSage Weil 			 * 1 - add new extent
2640b6f3409bSSage Weil 			 * 1 - inode update
2641b6f3409bSSage Weil 			 */
2642b6f3409bSSage Weil 			trans = btrfs_start_transaction(root, 3);
2643a22285a6SYan, Zheng 			if (IS_ERR(trans)) {
2644a22285a6SYan, Zheng 				ret = PTR_ERR(trans);
2645a22285a6SYan, Zheng 				goto out;
2646a22285a6SYan, Zheng 			}
2647a22285a6SYan, Zheng 
2648c8a894d7SChris Mason 			if (type == BTRFS_FILE_EXTENT_REG ||
2649c8a894d7SChris Mason 			    type == BTRFS_FILE_EXTENT_PREALLOC) {
2650d72c0842SLi Zefan 				/*
2651d72c0842SLi Zefan 				 *    a  | --- range to clone ---|  b
2652d72c0842SLi Zefan 				 * | ------------- extent ------------- |
2653d72c0842SLi Zefan 				 */
2654d72c0842SLi Zefan 
2655d72c0842SLi Zefan 				/* substract range b */
2656d72c0842SLi Zefan 				if (key.offset + datal > off + len)
2657d72c0842SLi Zefan 					datal = off + len - key.offset;
2658d72c0842SLi Zefan 
2659d72c0842SLi Zefan 				/* substract range a */
2660a22285a6SYan, Zheng 				if (off > key.offset) {
2661a22285a6SYan, Zheng 					datao += off - key.offset;
2662a22285a6SYan, Zheng 					datal -= off - key.offset;
2663a22285a6SYan, Zheng 				}
2664a22285a6SYan, Zheng 
26655dc562c5SJosef Bacik 				ret = btrfs_drop_extents(trans, root, inode,
2666a22285a6SYan, Zheng 							 new_key.offset,
2667a22285a6SYan, Zheng 							 new_key.offset + datal,
26682671485dSJosef Bacik 							 1);
266979787eaaSJeff Mahoney 				if (ret) {
267079787eaaSJeff Mahoney 					btrfs_abort_transaction(trans, root,
267179787eaaSJeff Mahoney 								ret);
267279787eaaSJeff Mahoney 					btrfs_end_transaction(trans, root);
267379787eaaSJeff Mahoney 					goto out;
267479787eaaSJeff Mahoney 				}
2675a22285a6SYan, Zheng 
267631840ae1SZheng Yan 				ret = btrfs_insert_empty_item(trans, root, path,
267731840ae1SZheng Yan 							      &new_key, size);
267879787eaaSJeff Mahoney 				if (ret) {
267979787eaaSJeff Mahoney 					btrfs_abort_transaction(trans, root,
268079787eaaSJeff Mahoney 								ret);
268179787eaaSJeff Mahoney 					btrfs_end_transaction(trans, root);
268279787eaaSJeff Mahoney 					goto out;
268379787eaaSJeff Mahoney 				}
268431840ae1SZheng Yan 
268531840ae1SZheng Yan 				leaf = path->nodes[0];
268631840ae1SZheng Yan 				slot = path->slots[0];
268731840ae1SZheng Yan 				write_extent_buffer(leaf, buf,
268831840ae1SZheng Yan 					    btrfs_item_ptr_offset(leaf, slot),
268931840ae1SZheng Yan 					    size);
2690ae01a0abSYan Zheng 
2691f46b5a66SChristoph Hellwig 				extent = btrfs_item_ptr(leaf, slot,
2692f46b5a66SChristoph Hellwig 						struct btrfs_file_extent_item);
2693c5c9cd4dSSage Weil 
2694c5c9cd4dSSage Weil 				/* disko == 0 means it's a hole */
2695c5c9cd4dSSage Weil 				if (!disko)
2696c5c9cd4dSSage Weil 					datao = 0;
2697c5c9cd4dSSage Weil 
2698c5c9cd4dSSage Weil 				btrfs_set_file_extent_offset(leaf, extent,
2699c5c9cd4dSSage Weil 							     datao);
2700c5c9cd4dSSage Weil 				btrfs_set_file_extent_num_bytes(leaf, extent,
2701c5c9cd4dSSage Weil 								datal);
2702c5c9cd4dSSage Weil 				if (disko) {
2703c5c9cd4dSSage Weil 					inode_add_bytes(inode, datal);
2704ae01a0abSYan Zheng 					ret = btrfs_inc_extent_ref(trans, root,
27055d4f98a2SYan Zheng 							disko, diskl, 0,
2706f46b5a66SChristoph Hellwig 							root->root_key.objectid,
270733345d01SLi Zefan 							btrfs_ino(inode),
270866d7e7f0SArne Jansen 							new_key.offset - datao,
270966d7e7f0SArne Jansen 							0);
271079787eaaSJeff Mahoney 					if (ret) {
271179787eaaSJeff Mahoney 						btrfs_abort_transaction(trans,
271279787eaaSJeff Mahoney 									root,
271379787eaaSJeff Mahoney 									ret);
271479787eaaSJeff Mahoney 						btrfs_end_transaction(trans,
271579787eaaSJeff Mahoney 								      root);
271679787eaaSJeff Mahoney 						goto out;
271779787eaaSJeff Mahoney 
271879787eaaSJeff Mahoney 					}
2719f46b5a66SChristoph Hellwig 				}
2720c5c9cd4dSSage Weil 			} else if (type == BTRFS_FILE_EXTENT_INLINE) {
2721c5c9cd4dSSage Weil 				u64 skip = 0;
2722c5c9cd4dSSage Weil 				u64 trim = 0;
2723c5c9cd4dSSage Weil 				if (off > key.offset) {
2724c5c9cd4dSSage Weil 					skip = off - key.offset;
2725c5c9cd4dSSage Weil 					new_key.offset += skip;
272631840ae1SZheng Yan 				}
2727d397712bSChris Mason 
2728c5c9cd4dSSage Weil 				if (key.offset + datal > off + len)
2729c5c9cd4dSSage Weil 					trim = key.offset + datal - (off + len);
2730d397712bSChris Mason 
2731c5c9cd4dSSage Weil 				if (comp && (skip || trim)) {
2732c5c9cd4dSSage Weil 					ret = -EINVAL;
2733a22285a6SYan, Zheng 					btrfs_end_transaction(trans, root);
2734c5c9cd4dSSage Weil 					goto out;
273531840ae1SZheng Yan 				}
2736c5c9cd4dSSage Weil 				size -= skip + trim;
2737c5c9cd4dSSage Weil 				datal -= skip + trim;
2738a22285a6SYan, Zheng 
27395dc562c5SJosef Bacik 				ret = btrfs_drop_extents(trans, root, inode,
2740a22285a6SYan, Zheng 							 new_key.offset,
2741a22285a6SYan, Zheng 							 new_key.offset + datal,
27422671485dSJosef Bacik 							 1);
274379787eaaSJeff Mahoney 				if (ret) {
274479787eaaSJeff Mahoney 					btrfs_abort_transaction(trans, root,
274579787eaaSJeff Mahoney 								ret);
274679787eaaSJeff Mahoney 					btrfs_end_transaction(trans, root);
274779787eaaSJeff Mahoney 					goto out;
274879787eaaSJeff Mahoney 				}
2749a22285a6SYan, Zheng 
2750c5c9cd4dSSage Weil 				ret = btrfs_insert_empty_item(trans, root, path,
2751c5c9cd4dSSage Weil 							      &new_key, size);
275279787eaaSJeff Mahoney 				if (ret) {
275379787eaaSJeff Mahoney 					btrfs_abort_transaction(trans, root,
275479787eaaSJeff Mahoney 								ret);
275579787eaaSJeff Mahoney 					btrfs_end_transaction(trans, root);
275679787eaaSJeff Mahoney 					goto out;
275779787eaaSJeff Mahoney 				}
2758c5c9cd4dSSage Weil 
2759c5c9cd4dSSage Weil 				if (skip) {
2760d397712bSChris Mason 					u32 start =
2761d397712bSChris Mason 					  btrfs_file_extent_calc_inline_size(0);
2762c5c9cd4dSSage Weil 					memmove(buf+start, buf+start+skip,
2763c5c9cd4dSSage Weil 						datal);
2764c5c9cd4dSSage Weil 				}
2765c5c9cd4dSSage Weil 
2766c5c9cd4dSSage Weil 				leaf = path->nodes[0];
2767c5c9cd4dSSage Weil 				slot = path->slots[0];
2768c5c9cd4dSSage Weil 				write_extent_buffer(leaf, buf,
2769c5c9cd4dSSage Weil 					    btrfs_item_ptr_offset(leaf, slot),
2770c5c9cd4dSSage Weil 					    size);
2771c5c9cd4dSSage Weil 				inode_add_bytes(inode, datal);
2772c5c9cd4dSSage Weil 			}
2773c5c9cd4dSSage Weil 
2774c5c9cd4dSSage Weil 			btrfs_mark_buffer_dirty(leaf);
2775b3b4aa74SDavid Sterba 			btrfs_release_path(path);
2776c5c9cd4dSSage Weil 
27770c4d2d95SJosef Bacik 			inode_inc_iversion(inode);
2778a22285a6SYan, Zheng 			inode->i_mtime = inode->i_ctime = CURRENT_TIME;
2779b5384d48SSage Weil 
2780b5384d48SSage Weil 			/*
2781b5384d48SSage Weil 			 * we round up to the block size at eof when
2782b5384d48SSage Weil 			 * determining which extents to clone above,
2783b5384d48SSage Weil 			 * but shouldn't round up the file size
2784b5384d48SSage Weil 			 */
2785b5384d48SSage Weil 			endoff = new_key.offset + datal;
27865f3888ffSLi Zefan 			if (endoff > destoff+olen)
27875f3888ffSLi Zefan 				endoff = destoff+olen;
2788b5384d48SSage Weil 			if (endoff > inode->i_size)
2789b5384d48SSage Weil 				btrfs_i_size_write(inode, endoff);
2790b5384d48SSage Weil 
2791a22285a6SYan, Zheng 			ret = btrfs_update_inode(trans, root, inode);
279279787eaaSJeff Mahoney 			if (ret) {
279379787eaaSJeff Mahoney 				btrfs_abort_transaction(trans, root, ret);
2794a22285a6SYan, Zheng 				btrfs_end_transaction(trans, root);
279579787eaaSJeff Mahoney 				goto out;
279679787eaaSJeff Mahoney 			}
279779787eaaSJeff Mahoney 			ret = btrfs_end_transaction(trans, root);
2798a22285a6SYan, Zheng 		}
2799c5c9cd4dSSage Weil next:
2800b3b4aa74SDavid Sterba 		btrfs_release_path(path);
2801ae01a0abSYan Zheng 		key.offset++;
2802ae01a0abSYan Zheng 	}
2803f46b5a66SChristoph Hellwig 	ret = 0;
2804f46b5a66SChristoph Hellwig out:
2805b3b4aa74SDavid Sterba 	btrfs_release_path(path);
2806aa42ffd9SLiu Bo 	unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2807f46b5a66SChristoph Hellwig out_unlock:
2808f46b5a66SChristoph Hellwig 	mutex_unlock(&src->i_mutex);
2809f46b5a66SChristoph Hellwig 	mutex_unlock(&inode->i_mutex);
2810ae01a0abSYan Zheng 	vfree(buf);
2811ae01a0abSYan Zheng 	btrfs_free_path(path);
2812f46b5a66SChristoph Hellwig out_fput:
28132903ff01SAl Viro 	fdput(src_file);
2814ab67b7c1SYan Zheng out_drop_write:
28152a79f17eSAl Viro 	mnt_drop_write_file(file);
2816f46b5a66SChristoph Hellwig 	return ret;
2817f46b5a66SChristoph Hellwig }
2818f46b5a66SChristoph Hellwig 
28197a865e8aSChristoph Hellwig static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
2820c5c9cd4dSSage Weil {
2821c5c9cd4dSSage Weil 	struct btrfs_ioctl_clone_range_args args;
2822c5c9cd4dSSage Weil 
28237a865e8aSChristoph Hellwig 	if (copy_from_user(&args, argp, sizeof(args)))
2824c5c9cd4dSSage Weil 		return -EFAULT;
2825c5c9cd4dSSage Weil 	return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2826c5c9cd4dSSage Weil 				 args.src_length, args.dest_offset);
2827c5c9cd4dSSage Weil }
2828c5c9cd4dSSage Weil 
2829f46b5a66SChristoph Hellwig /*
2830f46b5a66SChristoph Hellwig  * there are many ways the trans_start and trans_end ioctls can lead
2831f46b5a66SChristoph Hellwig  * to deadlocks.  They should only be used by applications that
2832f46b5a66SChristoph Hellwig  * basically own the machine, and have a very in depth understanding
2833f46b5a66SChristoph Hellwig  * of all the possible deadlocks and enospc problems.
2834f46b5a66SChristoph Hellwig  */
2835b2950863SChristoph Hellwig static long btrfs_ioctl_trans_start(struct file *file)
2836f46b5a66SChristoph Hellwig {
2837f46b5a66SChristoph Hellwig 	struct inode *inode = fdentry(file)->d_inode;
2838f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(inode)->root;
2839f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
28401ab86aedSSage Weil 	int ret;
2841f46b5a66SChristoph Hellwig 
28421ab86aedSSage Weil 	ret = -EPERM;
2843df5b5520SChristoph Hellwig 	if (!capable(CAP_SYS_ADMIN))
2844f46b5a66SChristoph Hellwig 		goto out;
28451ab86aedSSage Weil 
28461ab86aedSSage Weil 	ret = -EINPROGRESS;
28471ab86aedSSage Weil 	if (file->private_data)
28481ab86aedSSage Weil 		goto out;
28499ca9ee09SSage Weil 
2850b83cc969SLi Zefan 	ret = -EROFS;
2851b83cc969SLi Zefan 	if (btrfs_root_readonly(root))
2852b83cc969SLi Zefan 		goto out;
2853b83cc969SLi Zefan 
2854a561be71SAl Viro 	ret = mnt_want_write_file(file);
2855c146afadSYan Zheng 	if (ret)
2856c146afadSYan Zheng 		goto out;
2857c146afadSYan Zheng 
2858a4abeea4SJosef Bacik 	atomic_inc(&root->fs_info->open_ioctl_trans);
28599ca9ee09SSage Weil 
2860f46b5a66SChristoph Hellwig 	ret = -ENOMEM;
28617a7eaa40SJosef Bacik 	trans = btrfs_start_ioctl_transaction(root);
2862abd30bb0STsutomu Itoh 	if (IS_ERR(trans))
28631ab86aedSSage Weil 		goto out_drop;
28641ab86aedSSage Weil 
28651ab86aedSSage Weil 	file->private_data = trans;
28661ab86aedSSage Weil 	return 0;
28671ab86aedSSage Weil 
28681ab86aedSSage Weil out_drop:
2869a4abeea4SJosef Bacik 	atomic_dec(&root->fs_info->open_ioctl_trans);
28702a79f17eSAl Viro 	mnt_drop_write_file(file);
2871f46b5a66SChristoph Hellwig out:
2872f46b5a66SChristoph Hellwig 	return ret;
2873f46b5a66SChristoph Hellwig }
2874f46b5a66SChristoph Hellwig 
28756ef5ed0dSJosef Bacik static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
28766ef5ed0dSJosef Bacik {
28776ef5ed0dSJosef Bacik 	struct inode *inode = fdentry(file)->d_inode;
28786ef5ed0dSJosef Bacik 	struct btrfs_root *root = BTRFS_I(inode)->root;
28796ef5ed0dSJosef Bacik 	struct btrfs_root *new_root;
28806ef5ed0dSJosef Bacik 	struct btrfs_dir_item *di;
28816ef5ed0dSJosef Bacik 	struct btrfs_trans_handle *trans;
28826ef5ed0dSJosef Bacik 	struct btrfs_path *path;
28836ef5ed0dSJosef Bacik 	struct btrfs_key location;
28846ef5ed0dSJosef Bacik 	struct btrfs_disk_key disk_key;
28856ef5ed0dSJosef Bacik 	u64 objectid = 0;
28866ef5ed0dSJosef Bacik 	u64 dir_id;
28873c04ce01SMiao Xie 	int ret;
28886ef5ed0dSJosef Bacik 
28896ef5ed0dSJosef Bacik 	if (!capable(CAP_SYS_ADMIN))
28906ef5ed0dSJosef Bacik 		return -EPERM;
28916ef5ed0dSJosef Bacik 
28923c04ce01SMiao Xie 	ret = mnt_want_write_file(file);
28933c04ce01SMiao Xie 	if (ret)
28943c04ce01SMiao Xie 		return ret;
28953c04ce01SMiao Xie 
28963c04ce01SMiao Xie 	if (copy_from_user(&objectid, argp, sizeof(objectid))) {
28973c04ce01SMiao Xie 		ret = -EFAULT;
28983c04ce01SMiao Xie 		goto out;
28993c04ce01SMiao Xie 	}
29006ef5ed0dSJosef Bacik 
29016ef5ed0dSJosef Bacik 	if (!objectid)
29026ef5ed0dSJosef Bacik 		objectid = root->root_key.objectid;
29036ef5ed0dSJosef Bacik 
29046ef5ed0dSJosef Bacik 	location.objectid = objectid;
29056ef5ed0dSJosef Bacik 	location.type = BTRFS_ROOT_ITEM_KEY;
29066ef5ed0dSJosef Bacik 	location.offset = (u64)-1;
29076ef5ed0dSJosef Bacik 
29086ef5ed0dSJosef Bacik 	new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
29093c04ce01SMiao Xie 	if (IS_ERR(new_root)) {
29103c04ce01SMiao Xie 		ret = PTR_ERR(new_root);
29113c04ce01SMiao Xie 		goto out;
29123c04ce01SMiao Xie 	}
29136ef5ed0dSJosef Bacik 
29143c04ce01SMiao Xie 	if (btrfs_root_refs(&new_root->root_item) == 0) {
29153c04ce01SMiao Xie 		ret = -ENOENT;
29163c04ce01SMiao Xie 		goto out;
29173c04ce01SMiao Xie 	}
29186ef5ed0dSJosef Bacik 
29196ef5ed0dSJosef Bacik 	path = btrfs_alloc_path();
29203c04ce01SMiao Xie 	if (!path) {
29213c04ce01SMiao Xie 		ret = -ENOMEM;
29223c04ce01SMiao Xie 		goto out;
29233c04ce01SMiao Xie 	}
29246ef5ed0dSJosef Bacik 	path->leave_spinning = 1;
29256ef5ed0dSJosef Bacik 
29266ef5ed0dSJosef Bacik 	trans = btrfs_start_transaction(root, 1);
292798d5dc13STsutomu Itoh 	if (IS_ERR(trans)) {
29286ef5ed0dSJosef Bacik 		btrfs_free_path(path);
29293c04ce01SMiao Xie 		ret = PTR_ERR(trans);
29303c04ce01SMiao Xie 		goto out;
29316ef5ed0dSJosef Bacik 	}
29326ef5ed0dSJosef Bacik 
29336c41761fSDavid Sterba 	dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
29346ef5ed0dSJosef Bacik 	di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
29356ef5ed0dSJosef Bacik 				   dir_id, "default", 7, 1);
2936cf1e99a4SDan Carpenter 	if (IS_ERR_OR_NULL(di)) {
29376ef5ed0dSJosef Bacik 		btrfs_free_path(path);
29386ef5ed0dSJosef Bacik 		btrfs_end_transaction(trans, root);
29396ef5ed0dSJosef Bacik 		printk(KERN_ERR "Umm, you don't have the default dir item, "
29406ef5ed0dSJosef Bacik 		       "this isn't going to work\n");
29413c04ce01SMiao Xie 		ret = -ENOENT;
29423c04ce01SMiao Xie 		goto out;
29436ef5ed0dSJosef Bacik 	}
29446ef5ed0dSJosef Bacik 
29456ef5ed0dSJosef Bacik 	btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
29466ef5ed0dSJosef Bacik 	btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
29476ef5ed0dSJosef Bacik 	btrfs_mark_buffer_dirty(path->nodes[0]);
29486ef5ed0dSJosef Bacik 	btrfs_free_path(path);
29496ef5ed0dSJosef Bacik 
29502b0ce2c2SMitch Harder 	btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
29516ef5ed0dSJosef Bacik 	btrfs_end_transaction(trans, root);
29523c04ce01SMiao Xie out:
29533c04ce01SMiao Xie 	mnt_drop_write_file(file);
29543c04ce01SMiao Xie 	return ret;
29556ef5ed0dSJosef Bacik }
29566ef5ed0dSJosef Bacik 
29575af3e8ccSStefan Behrens void btrfs_get_block_group_info(struct list_head *groups_list,
2958bf5fc093SJosef Bacik 				struct btrfs_ioctl_space_info *space)
2959bf5fc093SJosef Bacik {
2960bf5fc093SJosef Bacik 	struct btrfs_block_group_cache *block_group;
2961bf5fc093SJosef Bacik 
2962bf5fc093SJosef Bacik 	space->total_bytes = 0;
2963bf5fc093SJosef Bacik 	space->used_bytes = 0;
2964bf5fc093SJosef Bacik 	space->flags = 0;
2965bf5fc093SJosef Bacik 	list_for_each_entry(block_group, groups_list, list) {
2966bf5fc093SJosef Bacik 		space->flags = block_group->flags;
2967bf5fc093SJosef Bacik 		space->total_bytes += block_group->key.offset;
2968bf5fc093SJosef Bacik 		space->used_bytes +=
2969bf5fc093SJosef Bacik 			btrfs_block_group_used(&block_group->item);
2970bf5fc093SJosef Bacik 	}
2971bf5fc093SJosef Bacik }
2972bf5fc093SJosef Bacik 
29731406e432SJosef Bacik long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
29741406e432SJosef Bacik {
29751406e432SJosef Bacik 	struct btrfs_ioctl_space_args space_args;
29761406e432SJosef Bacik 	struct btrfs_ioctl_space_info space;
29771406e432SJosef Bacik 	struct btrfs_ioctl_space_info *dest;
29787fde62bfSChris Mason 	struct btrfs_ioctl_space_info *dest_orig;
297913f2696fSDaniel J Blueman 	struct btrfs_ioctl_space_info __user *user_dest;
29801406e432SJosef Bacik 	struct btrfs_space_info *info;
2981bf5fc093SJosef Bacik 	u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2982bf5fc093SJosef Bacik 		       BTRFS_BLOCK_GROUP_SYSTEM,
2983bf5fc093SJosef Bacik 		       BTRFS_BLOCK_GROUP_METADATA,
2984bf5fc093SJosef Bacik 		       BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2985bf5fc093SJosef Bacik 	int num_types = 4;
29867fde62bfSChris Mason 	int alloc_size;
29871406e432SJosef Bacik 	int ret = 0;
298851788b1bSDan Rosenberg 	u64 slot_count = 0;
2989bf5fc093SJosef Bacik 	int i, c;
29901406e432SJosef Bacik 
29911406e432SJosef Bacik 	if (copy_from_user(&space_args,
29921406e432SJosef Bacik 			   (struct btrfs_ioctl_space_args __user *)arg,
29931406e432SJosef Bacik 			   sizeof(space_args)))
29941406e432SJosef Bacik 		return -EFAULT;
29951406e432SJosef Bacik 
2996bf5fc093SJosef Bacik 	for (i = 0; i < num_types; i++) {
2997bf5fc093SJosef Bacik 		struct btrfs_space_info *tmp;
2998bf5fc093SJosef Bacik 
2999bf5fc093SJosef Bacik 		info = NULL;
30007fde62bfSChris Mason 		rcu_read_lock();
3001bf5fc093SJosef Bacik 		list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3002bf5fc093SJosef Bacik 					list) {
3003bf5fc093SJosef Bacik 			if (tmp->flags == types[i]) {
3004bf5fc093SJosef Bacik 				info = tmp;
3005bf5fc093SJosef Bacik 				break;
3006bf5fc093SJosef Bacik 			}
3007bf5fc093SJosef Bacik 		}
30087fde62bfSChris Mason 		rcu_read_unlock();
30091406e432SJosef Bacik 
3010bf5fc093SJosef Bacik 		if (!info)
3011bf5fc093SJosef Bacik 			continue;
3012bf5fc093SJosef Bacik 
3013bf5fc093SJosef Bacik 		down_read(&info->groups_sem);
3014bf5fc093SJosef Bacik 		for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3015bf5fc093SJosef Bacik 			if (!list_empty(&info->block_groups[c]))
3016bf5fc093SJosef Bacik 				slot_count++;
3017bf5fc093SJosef Bacik 		}
3018bf5fc093SJosef Bacik 		up_read(&info->groups_sem);
3019bf5fc093SJosef Bacik 	}
3020bf5fc093SJosef Bacik 
30217fde62bfSChris Mason 	/* space_slots == 0 means they are asking for a count */
30227fde62bfSChris Mason 	if (space_args.space_slots == 0) {
30237fde62bfSChris Mason 		space_args.total_spaces = slot_count;
30247fde62bfSChris Mason 		goto out;
30257fde62bfSChris Mason 	}
3026bf5fc093SJosef Bacik 
302751788b1bSDan Rosenberg 	slot_count = min_t(u64, space_args.space_slots, slot_count);
3028bf5fc093SJosef Bacik 
30297fde62bfSChris Mason 	alloc_size = sizeof(*dest) * slot_count;
3030bf5fc093SJosef Bacik 
30317fde62bfSChris Mason 	/* we generally have at most 6 or so space infos, one for each raid
30327fde62bfSChris Mason 	 * level.  So, a whole page should be more than enough for everyone
30337fde62bfSChris Mason 	 */
30347fde62bfSChris Mason 	if (alloc_size > PAGE_CACHE_SIZE)
30357fde62bfSChris Mason 		return -ENOMEM;
30367fde62bfSChris Mason 
30377fde62bfSChris Mason 	space_args.total_spaces = 0;
30387fde62bfSChris Mason 	dest = kmalloc(alloc_size, GFP_NOFS);
30397fde62bfSChris Mason 	if (!dest)
30407fde62bfSChris Mason 		return -ENOMEM;
30417fde62bfSChris Mason 	dest_orig = dest;
30427fde62bfSChris Mason 
30437fde62bfSChris Mason 	/* now we have a buffer to copy into */
3044bf5fc093SJosef Bacik 	for (i = 0; i < num_types; i++) {
3045bf5fc093SJosef Bacik 		struct btrfs_space_info *tmp;
3046bf5fc093SJosef Bacik 
304751788b1bSDan Rosenberg 		if (!slot_count)
304851788b1bSDan Rosenberg 			break;
304951788b1bSDan Rosenberg 
3050bf5fc093SJosef Bacik 		info = NULL;
30511406e432SJosef Bacik 		rcu_read_lock();
3052bf5fc093SJosef Bacik 		list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3053bf5fc093SJosef Bacik 					list) {
3054bf5fc093SJosef Bacik 			if (tmp->flags == types[i]) {
3055bf5fc093SJosef Bacik 				info = tmp;
30567fde62bfSChris Mason 				break;
3057bf5fc093SJosef Bacik 			}
3058bf5fc093SJosef Bacik 		}
3059bf5fc093SJosef Bacik 		rcu_read_unlock();
30607fde62bfSChris Mason 
3061bf5fc093SJosef Bacik 		if (!info)
3062bf5fc093SJosef Bacik 			continue;
3063bf5fc093SJosef Bacik 		down_read(&info->groups_sem);
3064bf5fc093SJosef Bacik 		for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3065bf5fc093SJosef Bacik 			if (!list_empty(&info->block_groups[c])) {
30665af3e8ccSStefan Behrens 				btrfs_get_block_group_info(
30675af3e8ccSStefan Behrens 					&info->block_groups[c], &space);
30687fde62bfSChris Mason 				memcpy(dest, &space, sizeof(space));
30691406e432SJosef Bacik 				dest++;
30701406e432SJosef Bacik 				space_args.total_spaces++;
307151788b1bSDan Rosenberg 				slot_count--;
30721406e432SJosef Bacik 			}
307351788b1bSDan Rosenberg 			if (!slot_count)
307451788b1bSDan Rosenberg 				break;
3075bf5fc093SJosef Bacik 		}
3076bf5fc093SJosef Bacik 		up_read(&info->groups_sem);
3077bf5fc093SJosef Bacik 	}
30781406e432SJosef Bacik 
30792eec6c81SDaniel J Blueman 	user_dest = (struct btrfs_ioctl_space_info __user *)
30807fde62bfSChris Mason 		(arg + sizeof(struct btrfs_ioctl_space_args));
30817fde62bfSChris Mason 
30827fde62bfSChris Mason 	if (copy_to_user(user_dest, dest_orig, alloc_size))
30837fde62bfSChris Mason 		ret = -EFAULT;
30847fde62bfSChris Mason 
30857fde62bfSChris Mason 	kfree(dest_orig);
30867fde62bfSChris Mason out:
30877fde62bfSChris Mason 	if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
30881406e432SJosef Bacik 		ret = -EFAULT;
30891406e432SJosef Bacik 
30901406e432SJosef Bacik 	return ret;
30911406e432SJosef Bacik }
30921406e432SJosef Bacik 
3093f46b5a66SChristoph Hellwig /*
3094f46b5a66SChristoph Hellwig  * there are many ways the trans_start and trans_end ioctls can lead
3095f46b5a66SChristoph Hellwig  * to deadlocks.  They should only be used by applications that
3096f46b5a66SChristoph Hellwig  * basically own the machine, and have a very in depth understanding
3097f46b5a66SChristoph Hellwig  * of all the possible deadlocks and enospc problems.
3098f46b5a66SChristoph Hellwig  */
3099f46b5a66SChristoph Hellwig long btrfs_ioctl_trans_end(struct file *file)
3100f46b5a66SChristoph Hellwig {
3101f46b5a66SChristoph Hellwig 	struct inode *inode = fdentry(file)->d_inode;
3102f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(inode)->root;
3103f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
3104f46b5a66SChristoph Hellwig 
3105f46b5a66SChristoph Hellwig 	trans = file->private_data;
31061ab86aedSSage Weil 	if (!trans)
31071ab86aedSSage Weil 		return -EINVAL;
3108b214107eSChristoph Hellwig 	file->private_data = NULL;
31099ca9ee09SSage Weil 
31101ab86aedSSage Weil 	btrfs_end_transaction(trans, root);
31111ab86aedSSage Weil 
3112a4abeea4SJosef Bacik 	atomic_dec(&root->fs_info->open_ioctl_trans);
31139ca9ee09SSage Weil 
31142a79f17eSAl Viro 	mnt_drop_write_file(file);
31151ab86aedSSage Weil 	return 0;
3116f46b5a66SChristoph Hellwig }
3117f46b5a66SChristoph Hellwig 
31189a8c28beSMiao Xie static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
31199a8c28beSMiao Xie 					    void __user *argp)
312046204592SSage Weil {
312146204592SSage Weil 	struct btrfs_trans_handle *trans;
312246204592SSage Weil 	u64 transid;
3123db5b493aSTsutomu Itoh 	int ret;
312446204592SSage Weil 
3125d4edf39bSMiao Xie 	trans = btrfs_attach_transaction_barrier(root);
3126ff7c1d33SMiao Xie 	if (IS_ERR(trans)) {
3127ff7c1d33SMiao Xie 		if (PTR_ERR(trans) != -ENOENT)
312898d5dc13STsutomu Itoh 			return PTR_ERR(trans);
3129ff7c1d33SMiao Xie 
3130ff7c1d33SMiao Xie 		/* No running transaction, don't bother */
3131ff7c1d33SMiao Xie 		transid = root->fs_info->last_trans_committed;
3132ff7c1d33SMiao Xie 		goto out;
3133ff7c1d33SMiao Xie 	}
313446204592SSage Weil 	transid = trans->transid;
3135db5b493aSTsutomu Itoh 	ret = btrfs_commit_transaction_async(trans, root, 0);
31368b2b2d3cSTsutomu Itoh 	if (ret) {
31378b2b2d3cSTsutomu Itoh 		btrfs_end_transaction(trans, root);
3138db5b493aSTsutomu Itoh 		return ret;
31398b2b2d3cSTsutomu Itoh 	}
3140ff7c1d33SMiao Xie out:
314146204592SSage Weil 	if (argp)
314246204592SSage Weil 		if (copy_to_user(argp, &transid, sizeof(transid)))
314346204592SSage Weil 			return -EFAULT;
314446204592SSage Weil 	return 0;
314546204592SSage Weil }
314646204592SSage Weil 
31479a8c28beSMiao Xie static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
31489a8c28beSMiao Xie 					   void __user *argp)
314946204592SSage Weil {
315046204592SSage Weil 	u64 transid;
315146204592SSage Weil 
315246204592SSage Weil 	if (argp) {
315346204592SSage Weil 		if (copy_from_user(&transid, argp, sizeof(transid)))
315446204592SSage Weil 			return -EFAULT;
315546204592SSage Weil 	} else {
315646204592SSage Weil 		transid = 0;  /* current trans */
315746204592SSage Weil 	}
315846204592SSage Weil 	return btrfs_wait_for_commit(root, transid);
315946204592SSage Weil }
316046204592SSage Weil 
3161b8e95489SMiao Xie static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
3162475f6387SJan Schmidt {
3163b8e95489SMiao Xie 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3164475f6387SJan Schmidt 	struct btrfs_ioctl_scrub_args *sa;
3165b8e95489SMiao Xie 	int ret;
3166475f6387SJan Schmidt 
3167475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
3168475f6387SJan Schmidt 		return -EPERM;
3169475f6387SJan Schmidt 
3170475f6387SJan Schmidt 	sa = memdup_user(arg, sizeof(*sa));
3171475f6387SJan Schmidt 	if (IS_ERR(sa))
3172475f6387SJan Schmidt 		return PTR_ERR(sa);
3173475f6387SJan Schmidt 
3174b8e95489SMiao Xie 	if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3175b8e95489SMiao Xie 		ret = mnt_want_write_file(file);
3176b8e95489SMiao Xie 		if (ret)
3177b8e95489SMiao Xie 			goto out;
3178b8e95489SMiao Xie 	}
3179b8e95489SMiao Xie 
3180aa1b8cd4SStefan Behrens 	ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
318163a212abSStefan Behrens 			      &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
318263a212abSStefan Behrens 			      0);
3183475f6387SJan Schmidt 
3184475f6387SJan Schmidt 	if (copy_to_user(arg, sa, sizeof(*sa)))
3185475f6387SJan Schmidt 		ret = -EFAULT;
3186475f6387SJan Schmidt 
3187b8e95489SMiao Xie 	if (!(sa->flags & BTRFS_SCRUB_READONLY))
3188b8e95489SMiao Xie 		mnt_drop_write_file(file);
3189b8e95489SMiao Xie out:
3190475f6387SJan Schmidt 	kfree(sa);
3191475f6387SJan Schmidt 	return ret;
3192475f6387SJan Schmidt }
3193475f6387SJan Schmidt 
3194475f6387SJan Schmidt static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3195475f6387SJan Schmidt {
3196475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
3197475f6387SJan Schmidt 		return -EPERM;
3198475f6387SJan Schmidt 
3199aa1b8cd4SStefan Behrens 	return btrfs_scrub_cancel(root->fs_info);
3200475f6387SJan Schmidt }
3201475f6387SJan Schmidt 
3202475f6387SJan Schmidt static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3203475f6387SJan Schmidt 				       void __user *arg)
3204475f6387SJan Schmidt {
3205475f6387SJan Schmidt 	struct btrfs_ioctl_scrub_args *sa;
3206475f6387SJan Schmidt 	int ret;
3207475f6387SJan Schmidt 
3208475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
3209475f6387SJan Schmidt 		return -EPERM;
3210475f6387SJan Schmidt 
3211475f6387SJan Schmidt 	sa = memdup_user(arg, sizeof(*sa));
3212475f6387SJan Schmidt 	if (IS_ERR(sa))
3213475f6387SJan Schmidt 		return PTR_ERR(sa);
3214475f6387SJan Schmidt 
3215475f6387SJan Schmidt 	ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3216475f6387SJan Schmidt 
3217475f6387SJan Schmidt 	if (copy_to_user(arg, sa, sizeof(*sa)))
3218475f6387SJan Schmidt 		ret = -EFAULT;
3219475f6387SJan Schmidt 
3220475f6387SJan Schmidt 	kfree(sa);
3221475f6387SJan Schmidt 	return ret;
3222475f6387SJan Schmidt }
3223475f6387SJan Schmidt 
3224c11d2c23SStefan Behrens static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
3225b27f7c0cSDavid Sterba 				      void __user *arg)
3226c11d2c23SStefan Behrens {
3227c11d2c23SStefan Behrens 	struct btrfs_ioctl_get_dev_stats *sa;
3228c11d2c23SStefan Behrens 	int ret;
3229c11d2c23SStefan Behrens 
3230c11d2c23SStefan Behrens 	sa = memdup_user(arg, sizeof(*sa));
3231c11d2c23SStefan Behrens 	if (IS_ERR(sa))
3232c11d2c23SStefan Behrens 		return PTR_ERR(sa);
3233c11d2c23SStefan Behrens 
3234b27f7c0cSDavid Sterba 	if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3235b27f7c0cSDavid Sterba 		kfree(sa);
3236b27f7c0cSDavid Sterba 		return -EPERM;
3237b27f7c0cSDavid Sterba 	}
3238b27f7c0cSDavid Sterba 
3239b27f7c0cSDavid Sterba 	ret = btrfs_get_dev_stats(root, sa);
3240c11d2c23SStefan Behrens 
3241c11d2c23SStefan Behrens 	if (copy_to_user(arg, sa, sizeof(*sa)))
3242c11d2c23SStefan Behrens 		ret = -EFAULT;
3243c11d2c23SStefan Behrens 
3244c11d2c23SStefan Behrens 	kfree(sa);
3245c11d2c23SStefan Behrens 	return ret;
3246c11d2c23SStefan Behrens }
3247c11d2c23SStefan Behrens 
32483f6bcfbdSStefan Behrens static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
32493f6bcfbdSStefan Behrens {
32503f6bcfbdSStefan Behrens 	struct btrfs_ioctl_dev_replace_args *p;
32513f6bcfbdSStefan Behrens 	int ret;
32523f6bcfbdSStefan Behrens 
32533f6bcfbdSStefan Behrens 	if (!capable(CAP_SYS_ADMIN))
32543f6bcfbdSStefan Behrens 		return -EPERM;
32553f6bcfbdSStefan Behrens 
32563f6bcfbdSStefan Behrens 	p = memdup_user(arg, sizeof(*p));
32573f6bcfbdSStefan Behrens 	if (IS_ERR(p))
32583f6bcfbdSStefan Behrens 		return PTR_ERR(p);
32593f6bcfbdSStefan Behrens 
32603f6bcfbdSStefan Behrens 	switch (p->cmd) {
32613f6bcfbdSStefan Behrens 	case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
32623f6bcfbdSStefan Behrens 		if (atomic_xchg(
32633f6bcfbdSStefan Behrens 			&root->fs_info->mutually_exclusive_operation_running,
32643f6bcfbdSStefan Behrens 			1)) {
32653f6bcfbdSStefan Behrens 			pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
32663f6bcfbdSStefan Behrens 			ret = -EINPROGRESS;
32673f6bcfbdSStefan Behrens 		} else {
32683f6bcfbdSStefan Behrens 			ret = btrfs_dev_replace_start(root, p);
32693f6bcfbdSStefan Behrens 			atomic_set(
32703f6bcfbdSStefan Behrens 			 &root->fs_info->mutually_exclusive_operation_running,
32713f6bcfbdSStefan Behrens 			 0);
32723f6bcfbdSStefan Behrens 		}
32733f6bcfbdSStefan Behrens 		break;
32743f6bcfbdSStefan Behrens 	case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
32753f6bcfbdSStefan Behrens 		btrfs_dev_replace_status(root->fs_info, p);
32763f6bcfbdSStefan Behrens 		ret = 0;
32773f6bcfbdSStefan Behrens 		break;
32783f6bcfbdSStefan Behrens 	case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
32793f6bcfbdSStefan Behrens 		ret = btrfs_dev_replace_cancel(root->fs_info, p);
32803f6bcfbdSStefan Behrens 		break;
32813f6bcfbdSStefan Behrens 	default:
32823f6bcfbdSStefan Behrens 		ret = -EINVAL;
32833f6bcfbdSStefan Behrens 		break;
32843f6bcfbdSStefan Behrens 	}
32853f6bcfbdSStefan Behrens 
32863f6bcfbdSStefan Behrens 	if (copy_to_user(arg, p, sizeof(*p)))
32873f6bcfbdSStefan Behrens 		ret = -EFAULT;
32883f6bcfbdSStefan Behrens 
32893f6bcfbdSStefan Behrens 	kfree(p);
32903f6bcfbdSStefan Behrens 	return ret;
32913f6bcfbdSStefan Behrens }
32923f6bcfbdSStefan Behrens 
3293d7728c96SJan Schmidt static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3294d7728c96SJan Schmidt {
3295d7728c96SJan Schmidt 	int ret = 0;
3296d7728c96SJan Schmidt 	int i;
3297740c3d22SChris Mason 	u64 rel_ptr;
3298d7728c96SJan Schmidt 	int size;
3299806468f8SChris Mason 	struct btrfs_ioctl_ino_path_args *ipa = NULL;
3300d7728c96SJan Schmidt 	struct inode_fs_paths *ipath = NULL;
3301d7728c96SJan Schmidt 	struct btrfs_path *path;
3302d7728c96SJan Schmidt 
330382b22ac8SKusanagi Kouichi 	if (!capable(CAP_DAC_READ_SEARCH))
3304d7728c96SJan Schmidt 		return -EPERM;
3305d7728c96SJan Schmidt 
3306d7728c96SJan Schmidt 	path = btrfs_alloc_path();
3307d7728c96SJan Schmidt 	if (!path) {
3308d7728c96SJan Schmidt 		ret = -ENOMEM;
3309d7728c96SJan Schmidt 		goto out;
3310d7728c96SJan Schmidt 	}
3311d7728c96SJan Schmidt 
3312d7728c96SJan Schmidt 	ipa = memdup_user(arg, sizeof(*ipa));
3313d7728c96SJan Schmidt 	if (IS_ERR(ipa)) {
3314d7728c96SJan Schmidt 		ret = PTR_ERR(ipa);
3315d7728c96SJan Schmidt 		ipa = NULL;
3316d7728c96SJan Schmidt 		goto out;
3317d7728c96SJan Schmidt 	}
3318d7728c96SJan Schmidt 
3319d7728c96SJan Schmidt 	size = min_t(u32, ipa->size, 4096);
3320d7728c96SJan Schmidt 	ipath = init_ipath(size, root, path);
3321d7728c96SJan Schmidt 	if (IS_ERR(ipath)) {
3322d7728c96SJan Schmidt 		ret = PTR_ERR(ipath);
3323d7728c96SJan Schmidt 		ipath = NULL;
3324d7728c96SJan Schmidt 		goto out;
3325d7728c96SJan Schmidt 	}
3326d7728c96SJan Schmidt 
3327d7728c96SJan Schmidt 	ret = paths_from_inode(ipa->inum, ipath);
3328d7728c96SJan Schmidt 	if (ret < 0)
3329d7728c96SJan Schmidt 		goto out;
3330d7728c96SJan Schmidt 
3331d7728c96SJan Schmidt 	for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
3332745c4d8eSJeff Mahoney 		rel_ptr = ipath->fspath->val[i] -
3333745c4d8eSJeff Mahoney 			  (u64)(unsigned long)ipath->fspath->val;
3334740c3d22SChris Mason 		ipath->fspath->val[i] = rel_ptr;
3335d7728c96SJan Schmidt 	}
3336d7728c96SJan Schmidt 
3337745c4d8eSJeff Mahoney 	ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3338745c4d8eSJeff Mahoney 			   (void *)(unsigned long)ipath->fspath, size);
3339d7728c96SJan Schmidt 	if (ret) {
3340d7728c96SJan Schmidt 		ret = -EFAULT;
3341d7728c96SJan Schmidt 		goto out;
3342d7728c96SJan Schmidt 	}
3343d7728c96SJan Schmidt 
3344d7728c96SJan Schmidt out:
3345d7728c96SJan Schmidt 	btrfs_free_path(path);
3346d7728c96SJan Schmidt 	free_ipath(ipath);
3347d7728c96SJan Schmidt 	kfree(ipa);
3348d7728c96SJan Schmidt 
3349d7728c96SJan Schmidt 	return ret;
3350d7728c96SJan Schmidt }
3351d7728c96SJan Schmidt 
3352d7728c96SJan Schmidt static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3353d7728c96SJan Schmidt {
3354d7728c96SJan Schmidt 	struct btrfs_data_container *inodes = ctx;
3355d7728c96SJan Schmidt 	const size_t c = 3 * sizeof(u64);
3356d7728c96SJan Schmidt 
3357d7728c96SJan Schmidt 	if (inodes->bytes_left >= c) {
3358d7728c96SJan Schmidt 		inodes->bytes_left -= c;
3359d7728c96SJan Schmidt 		inodes->val[inodes->elem_cnt] = inum;
3360d7728c96SJan Schmidt 		inodes->val[inodes->elem_cnt + 1] = offset;
3361d7728c96SJan Schmidt 		inodes->val[inodes->elem_cnt + 2] = root;
3362d7728c96SJan Schmidt 		inodes->elem_cnt += 3;
3363d7728c96SJan Schmidt 	} else {
3364d7728c96SJan Schmidt 		inodes->bytes_missing += c - inodes->bytes_left;
3365d7728c96SJan Schmidt 		inodes->bytes_left = 0;
3366d7728c96SJan Schmidt 		inodes->elem_missed += 3;
3367d7728c96SJan Schmidt 	}
3368d7728c96SJan Schmidt 
3369d7728c96SJan Schmidt 	return 0;
3370d7728c96SJan Schmidt }
3371d7728c96SJan Schmidt 
3372d7728c96SJan Schmidt static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3373d7728c96SJan Schmidt 					void __user *arg)
3374d7728c96SJan Schmidt {
3375d7728c96SJan Schmidt 	int ret = 0;
3376d7728c96SJan Schmidt 	int size;
3377d7728c96SJan Schmidt 	struct btrfs_ioctl_logical_ino_args *loi;
3378d7728c96SJan Schmidt 	struct btrfs_data_container *inodes = NULL;
3379d7728c96SJan Schmidt 	struct btrfs_path *path = NULL;
3380d7728c96SJan Schmidt 
3381d7728c96SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
3382d7728c96SJan Schmidt 		return -EPERM;
3383d7728c96SJan Schmidt 
3384d7728c96SJan Schmidt 	loi = memdup_user(arg, sizeof(*loi));
3385d7728c96SJan Schmidt 	if (IS_ERR(loi)) {
3386d7728c96SJan Schmidt 		ret = PTR_ERR(loi);
3387d7728c96SJan Schmidt 		loi = NULL;
3388d7728c96SJan Schmidt 		goto out;
3389d7728c96SJan Schmidt 	}
3390d7728c96SJan Schmidt 
3391d7728c96SJan Schmidt 	path = btrfs_alloc_path();
3392d7728c96SJan Schmidt 	if (!path) {
3393d7728c96SJan Schmidt 		ret = -ENOMEM;
3394d7728c96SJan Schmidt 		goto out;
3395d7728c96SJan Schmidt 	}
3396d7728c96SJan Schmidt 
3397425d17a2SLiu Bo 	size = min_t(u32, loi->size, 64 * 1024);
3398d7728c96SJan Schmidt 	inodes = init_data_container(size);
3399d7728c96SJan Schmidt 	if (IS_ERR(inodes)) {
3400d7728c96SJan Schmidt 		ret = PTR_ERR(inodes);
3401d7728c96SJan Schmidt 		inodes = NULL;
3402d7728c96SJan Schmidt 		goto out;
3403d7728c96SJan Schmidt 	}
3404d7728c96SJan Schmidt 
3405df031f07SLiu Bo 	ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
3406df031f07SLiu Bo 					  build_ino_list, inodes);
3407df031f07SLiu Bo 	if (ret == -EINVAL)
3408d7728c96SJan Schmidt 		ret = -ENOENT;
3409d7728c96SJan Schmidt 	if (ret < 0)
3410d7728c96SJan Schmidt 		goto out;
3411d7728c96SJan Schmidt 
3412745c4d8eSJeff Mahoney 	ret = copy_to_user((void *)(unsigned long)loi->inodes,
3413745c4d8eSJeff Mahoney 			   (void *)(unsigned long)inodes, size);
3414d7728c96SJan Schmidt 	if (ret)
3415d7728c96SJan Schmidt 		ret = -EFAULT;
3416d7728c96SJan Schmidt 
3417d7728c96SJan Schmidt out:
3418d7728c96SJan Schmidt 	btrfs_free_path(path);
3419425d17a2SLiu Bo 	vfree(inodes);
3420d7728c96SJan Schmidt 	kfree(loi);
3421d7728c96SJan Schmidt 
3422d7728c96SJan Schmidt 	return ret;
3423d7728c96SJan Schmidt }
3424d7728c96SJan Schmidt 
342519a39dceSIlya Dryomov void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
3426c9e9f97bSIlya Dryomov 			       struct btrfs_ioctl_balance_args *bargs)
3427c9e9f97bSIlya Dryomov {
3428c9e9f97bSIlya Dryomov 	struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3429c9e9f97bSIlya Dryomov 
3430c9e9f97bSIlya Dryomov 	bargs->flags = bctl->flags;
3431c9e9f97bSIlya Dryomov 
3432837d5b6eSIlya Dryomov 	if (atomic_read(&fs_info->balance_running))
3433837d5b6eSIlya Dryomov 		bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3434837d5b6eSIlya Dryomov 	if (atomic_read(&fs_info->balance_pause_req))
3435837d5b6eSIlya Dryomov 		bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
3436a7e99c69SIlya Dryomov 	if (atomic_read(&fs_info->balance_cancel_req))
3437a7e99c69SIlya Dryomov 		bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
3438837d5b6eSIlya Dryomov 
3439c9e9f97bSIlya Dryomov 	memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3440c9e9f97bSIlya Dryomov 	memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3441c9e9f97bSIlya Dryomov 	memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
344219a39dceSIlya Dryomov 
344319a39dceSIlya Dryomov 	if (lock) {
344419a39dceSIlya Dryomov 		spin_lock(&fs_info->balance_lock);
344519a39dceSIlya Dryomov 		memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
344619a39dceSIlya Dryomov 		spin_unlock(&fs_info->balance_lock);
344719a39dceSIlya Dryomov 	} else {
344819a39dceSIlya Dryomov 		memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
344919a39dceSIlya Dryomov 	}
3450c9e9f97bSIlya Dryomov }
3451c9e9f97bSIlya Dryomov 
34529ba1f6e4SLiu Bo static long btrfs_ioctl_balance(struct file *file, void __user *arg)
3453c9e9f97bSIlya Dryomov {
34549ba1f6e4SLiu Bo 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3455c9e9f97bSIlya Dryomov 	struct btrfs_fs_info *fs_info = root->fs_info;
3456c9e9f97bSIlya Dryomov 	struct btrfs_ioctl_balance_args *bargs;
3457c9e9f97bSIlya Dryomov 	struct btrfs_balance_control *bctl;
3458ed0fb78fSIlya Dryomov 	bool need_unlock; /* for mut. excl. ops lock */
3459c9e9f97bSIlya Dryomov 	int ret;
3460c9e9f97bSIlya Dryomov 
3461c9e9f97bSIlya Dryomov 	if (!capable(CAP_SYS_ADMIN))
3462c9e9f97bSIlya Dryomov 		return -EPERM;
3463c9e9f97bSIlya Dryomov 
3464e54bfa31SLiu Bo 	ret = mnt_want_write_file(file);
34659ba1f6e4SLiu Bo 	if (ret)
34669ba1f6e4SLiu Bo 		return ret;
34679ba1f6e4SLiu Bo 
3468ed0fb78fSIlya Dryomov again:
3469ed0fb78fSIlya Dryomov 	if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
3470c9e9f97bSIlya Dryomov 		mutex_lock(&fs_info->volume_mutex);
3471c9e9f97bSIlya Dryomov 		mutex_lock(&fs_info->balance_mutex);
3472ed0fb78fSIlya Dryomov 		need_unlock = true;
3473ed0fb78fSIlya Dryomov 		goto locked;
3474ed0fb78fSIlya Dryomov 	}
3475ed0fb78fSIlya Dryomov 
3476ed0fb78fSIlya Dryomov 	/*
3477ed0fb78fSIlya Dryomov 	 * mut. excl. ops lock is locked.  Three possibilites:
3478ed0fb78fSIlya Dryomov 	 *   (1) some other op is running
3479ed0fb78fSIlya Dryomov 	 *   (2) balance is running
3480ed0fb78fSIlya Dryomov 	 *   (3) balance is paused -- special case (think resume)
3481ed0fb78fSIlya Dryomov 	 */
3482ed0fb78fSIlya Dryomov 	mutex_lock(&fs_info->balance_mutex);
3483ed0fb78fSIlya Dryomov 	if (fs_info->balance_ctl) {
3484ed0fb78fSIlya Dryomov 		/* this is either (2) or (3) */
3485ed0fb78fSIlya Dryomov 		if (!atomic_read(&fs_info->balance_running)) {
3486ed0fb78fSIlya Dryomov 			mutex_unlock(&fs_info->balance_mutex);
3487ed0fb78fSIlya Dryomov 			if (!mutex_trylock(&fs_info->volume_mutex))
3488ed0fb78fSIlya Dryomov 				goto again;
3489ed0fb78fSIlya Dryomov 			mutex_lock(&fs_info->balance_mutex);
3490ed0fb78fSIlya Dryomov 
3491ed0fb78fSIlya Dryomov 			if (fs_info->balance_ctl &&
3492ed0fb78fSIlya Dryomov 			    !atomic_read(&fs_info->balance_running)) {
3493ed0fb78fSIlya Dryomov 				/* this is (3) */
3494ed0fb78fSIlya Dryomov 				need_unlock = false;
3495ed0fb78fSIlya Dryomov 				goto locked;
3496ed0fb78fSIlya Dryomov 			}
3497ed0fb78fSIlya Dryomov 
3498ed0fb78fSIlya Dryomov 			mutex_unlock(&fs_info->balance_mutex);
3499ed0fb78fSIlya Dryomov 			mutex_unlock(&fs_info->volume_mutex);
3500ed0fb78fSIlya Dryomov 			goto again;
3501ed0fb78fSIlya Dryomov 		} else {
3502ed0fb78fSIlya Dryomov 			/* this is (2) */
3503ed0fb78fSIlya Dryomov 			mutex_unlock(&fs_info->balance_mutex);
3504ed0fb78fSIlya Dryomov 			ret = -EINPROGRESS;
3505ed0fb78fSIlya Dryomov 			goto out;
3506ed0fb78fSIlya Dryomov 		}
3507ed0fb78fSIlya Dryomov 	} else {
3508ed0fb78fSIlya Dryomov 		/* this is (1) */
3509ed0fb78fSIlya Dryomov 		mutex_unlock(&fs_info->balance_mutex);
3510ed0fb78fSIlya Dryomov 		pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3511ed0fb78fSIlya Dryomov 		ret = -EINVAL;
3512ed0fb78fSIlya Dryomov 		goto out;
3513ed0fb78fSIlya Dryomov 	}
3514ed0fb78fSIlya Dryomov 
3515ed0fb78fSIlya Dryomov locked:
3516ed0fb78fSIlya Dryomov 	BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
3517c9e9f97bSIlya Dryomov 
3518c9e9f97bSIlya Dryomov 	if (arg) {
3519c9e9f97bSIlya Dryomov 		bargs = memdup_user(arg, sizeof(*bargs));
3520c9e9f97bSIlya Dryomov 		if (IS_ERR(bargs)) {
3521c9e9f97bSIlya Dryomov 			ret = PTR_ERR(bargs);
3522ed0fb78fSIlya Dryomov 			goto out_unlock;
3523c9e9f97bSIlya Dryomov 		}
3524de322263SIlya Dryomov 
3525de322263SIlya Dryomov 		if (bargs->flags & BTRFS_BALANCE_RESUME) {
3526de322263SIlya Dryomov 			if (!fs_info->balance_ctl) {
3527de322263SIlya Dryomov 				ret = -ENOTCONN;
3528de322263SIlya Dryomov 				goto out_bargs;
3529de322263SIlya Dryomov 			}
3530de322263SIlya Dryomov 
3531de322263SIlya Dryomov 			bctl = fs_info->balance_ctl;
3532de322263SIlya Dryomov 			spin_lock(&fs_info->balance_lock);
3533de322263SIlya Dryomov 			bctl->flags |= BTRFS_BALANCE_RESUME;
3534de322263SIlya Dryomov 			spin_unlock(&fs_info->balance_lock);
3535de322263SIlya Dryomov 
3536de322263SIlya Dryomov 			goto do_balance;
3537de322263SIlya Dryomov 		}
3538c9e9f97bSIlya Dryomov 	} else {
3539c9e9f97bSIlya Dryomov 		bargs = NULL;
3540c9e9f97bSIlya Dryomov 	}
3541c9e9f97bSIlya Dryomov 
3542ed0fb78fSIlya Dryomov 	if (fs_info->balance_ctl) {
3543837d5b6eSIlya Dryomov 		ret = -EINPROGRESS;
3544837d5b6eSIlya Dryomov 		goto out_bargs;
3545837d5b6eSIlya Dryomov 	}
3546837d5b6eSIlya Dryomov 
3547c9e9f97bSIlya Dryomov 	bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3548c9e9f97bSIlya Dryomov 	if (!bctl) {
3549c9e9f97bSIlya Dryomov 		ret = -ENOMEM;
3550c9e9f97bSIlya Dryomov 		goto out_bargs;
3551c9e9f97bSIlya Dryomov 	}
3552c9e9f97bSIlya Dryomov 
3553c9e9f97bSIlya Dryomov 	bctl->fs_info = fs_info;
3554c9e9f97bSIlya Dryomov 	if (arg) {
3555c9e9f97bSIlya Dryomov 		memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3556c9e9f97bSIlya Dryomov 		memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3557c9e9f97bSIlya Dryomov 		memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3558c9e9f97bSIlya Dryomov 
3559c9e9f97bSIlya Dryomov 		bctl->flags = bargs->flags;
3560f43ffb60SIlya Dryomov 	} else {
3561f43ffb60SIlya Dryomov 		/* balance everything - no filters */
3562f43ffb60SIlya Dryomov 		bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
3563c9e9f97bSIlya Dryomov 	}
3564c9e9f97bSIlya Dryomov 
3565de322263SIlya Dryomov do_balance:
3566c9e9f97bSIlya Dryomov 	/*
3567ed0fb78fSIlya Dryomov 	 * Ownership of bctl and mutually_exclusive_operation_running
3568ed0fb78fSIlya Dryomov 	 * goes to to btrfs_balance.  bctl is freed in __cancel_balance,
3569ed0fb78fSIlya Dryomov 	 * or, if restriper was paused all the way until unmount, in
3570ed0fb78fSIlya Dryomov 	 * free_fs_info.  mutually_exclusive_operation_running is
3571ed0fb78fSIlya Dryomov 	 * cleared in __cancel_balance.
3572c9e9f97bSIlya Dryomov 	 */
3573ed0fb78fSIlya Dryomov 	need_unlock = false;
3574ed0fb78fSIlya Dryomov 
3575ed0fb78fSIlya Dryomov 	ret = btrfs_balance(bctl, bargs);
3576ed0fb78fSIlya Dryomov 
3577c9e9f97bSIlya Dryomov 	if (arg) {
3578c9e9f97bSIlya Dryomov 		if (copy_to_user(arg, bargs, sizeof(*bargs)))
3579c9e9f97bSIlya Dryomov 			ret = -EFAULT;
3580c9e9f97bSIlya Dryomov 	}
3581c9e9f97bSIlya Dryomov 
3582c9e9f97bSIlya Dryomov out_bargs:
3583c9e9f97bSIlya Dryomov 	kfree(bargs);
3584ed0fb78fSIlya Dryomov out_unlock:
3585c9e9f97bSIlya Dryomov 	mutex_unlock(&fs_info->balance_mutex);
3586c9e9f97bSIlya Dryomov 	mutex_unlock(&fs_info->volume_mutex);
3587ed0fb78fSIlya Dryomov 	if (need_unlock)
3588ed0fb78fSIlya Dryomov 		atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3589ed0fb78fSIlya Dryomov out:
3590e54bfa31SLiu Bo 	mnt_drop_write_file(file);
3591c9e9f97bSIlya Dryomov 	return ret;
3592c9e9f97bSIlya Dryomov }
3593c9e9f97bSIlya Dryomov 
3594837d5b6eSIlya Dryomov static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3595837d5b6eSIlya Dryomov {
3596837d5b6eSIlya Dryomov 	if (!capable(CAP_SYS_ADMIN))
3597837d5b6eSIlya Dryomov 		return -EPERM;
3598837d5b6eSIlya Dryomov 
3599837d5b6eSIlya Dryomov 	switch (cmd) {
3600837d5b6eSIlya Dryomov 	case BTRFS_BALANCE_CTL_PAUSE:
3601837d5b6eSIlya Dryomov 		return btrfs_pause_balance(root->fs_info);
3602a7e99c69SIlya Dryomov 	case BTRFS_BALANCE_CTL_CANCEL:
3603a7e99c69SIlya Dryomov 		return btrfs_cancel_balance(root->fs_info);
3604837d5b6eSIlya Dryomov 	}
3605837d5b6eSIlya Dryomov 
3606837d5b6eSIlya Dryomov 	return -EINVAL;
3607837d5b6eSIlya Dryomov }
3608837d5b6eSIlya Dryomov 
360919a39dceSIlya Dryomov static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
361019a39dceSIlya Dryomov 					 void __user *arg)
361119a39dceSIlya Dryomov {
361219a39dceSIlya Dryomov 	struct btrfs_fs_info *fs_info = root->fs_info;
361319a39dceSIlya Dryomov 	struct btrfs_ioctl_balance_args *bargs;
361419a39dceSIlya Dryomov 	int ret = 0;
361519a39dceSIlya Dryomov 
361619a39dceSIlya Dryomov 	if (!capable(CAP_SYS_ADMIN))
361719a39dceSIlya Dryomov 		return -EPERM;
361819a39dceSIlya Dryomov 
361919a39dceSIlya Dryomov 	mutex_lock(&fs_info->balance_mutex);
362019a39dceSIlya Dryomov 	if (!fs_info->balance_ctl) {
362119a39dceSIlya Dryomov 		ret = -ENOTCONN;
362219a39dceSIlya Dryomov 		goto out;
362319a39dceSIlya Dryomov 	}
362419a39dceSIlya Dryomov 
362519a39dceSIlya Dryomov 	bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
362619a39dceSIlya Dryomov 	if (!bargs) {
362719a39dceSIlya Dryomov 		ret = -ENOMEM;
362819a39dceSIlya Dryomov 		goto out;
362919a39dceSIlya Dryomov 	}
363019a39dceSIlya Dryomov 
363119a39dceSIlya Dryomov 	update_ioctl_balance_args(fs_info, 1, bargs);
363219a39dceSIlya Dryomov 
363319a39dceSIlya Dryomov 	if (copy_to_user(arg, bargs, sizeof(*bargs)))
363419a39dceSIlya Dryomov 		ret = -EFAULT;
363519a39dceSIlya Dryomov 
363619a39dceSIlya Dryomov 	kfree(bargs);
363719a39dceSIlya Dryomov out:
363819a39dceSIlya Dryomov 	mutex_unlock(&fs_info->balance_mutex);
363919a39dceSIlya Dryomov 	return ret;
364019a39dceSIlya Dryomov }
364119a39dceSIlya Dryomov 
3642905b0ddaSMiao Xie static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
36435d13a37bSArne Jansen {
3644905b0ddaSMiao Xie 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
36455d13a37bSArne Jansen 	struct btrfs_ioctl_quota_ctl_args *sa;
36465d13a37bSArne Jansen 	struct btrfs_trans_handle *trans = NULL;
36475d13a37bSArne Jansen 	int ret;
36485d13a37bSArne Jansen 	int err;
36495d13a37bSArne Jansen 
36505d13a37bSArne Jansen 	if (!capable(CAP_SYS_ADMIN))
36515d13a37bSArne Jansen 		return -EPERM;
36525d13a37bSArne Jansen 
3653905b0ddaSMiao Xie 	ret = mnt_want_write_file(file);
3654905b0ddaSMiao Xie 	if (ret)
3655905b0ddaSMiao Xie 		return ret;
36565d13a37bSArne Jansen 
36575d13a37bSArne Jansen 	sa = memdup_user(arg, sizeof(*sa));
3658905b0ddaSMiao Xie 	if (IS_ERR(sa)) {
3659905b0ddaSMiao Xie 		ret = PTR_ERR(sa);
3660905b0ddaSMiao Xie 		goto drop_write;
3661905b0ddaSMiao Xie 	}
36625d13a37bSArne Jansen 
36635d13a37bSArne Jansen 	if (sa->cmd != BTRFS_QUOTA_CTL_RESCAN) {
36645d13a37bSArne Jansen 		trans = btrfs_start_transaction(root, 2);
36655d13a37bSArne Jansen 		if (IS_ERR(trans)) {
36665d13a37bSArne Jansen 			ret = PTR_ERR(trans);
36675d13a37bSArne Jansen 			goto out;
36685d13a37bSArne Jansen 		}
36695d13a37bSArne Jansen 	}
36705d13a37bSArne Jansen 
36715d13a37bSArne Jansen 	switch (sa->cmd) {
36725d13a37bSArne Jansen 	case BTRFS_QUOTA_CTL_ENABLE:
36735d13a37bSArne Jansen 		ret = btrfs_quota_enable(trans, root->fs_info);
36745d13a37bSArne Jansen 		break;
36755d13a37bSArne Jansen 	case BTRFS_QUOTA_CTL_DISABLE:
36765d13a37bSArne Jansen 		ret = btrfs_quota_disable(trans, root->fs_info);
36775d13a37bSArne Jansen 		break;
36785d13a37bSArne Jansen 	case BTRFS_QUOTA_CTL_RESCAN:
36795d13a37bSArne Jansen 		ret = btrfs_quota_rescan(root->fs_info);
36805d13a37bSArne Jansen 		break;
36815d13a37bSArne Jansen 	default:
36825d13a37bSArne Jansen 		ret = -EINVAL;
36835d13a37bSArne Jansen 		break;
36845d13a37bSArne Jansen 	}
36855d13a37bSArne Jansen 
36865d13a37bSArne Jansen 	if (copy_to_user(arg, sa, sizeof(*sa)))
36875d13a37bSArne Jansen 		ret = -EFAULT;
36885d13a37bSArne Jansen 
36895d13a37bSArne Jansen 	if (trans) {
36905d13a37bSArne Jansen 		err = btrfs_commit_transaction(trans, root);
36915d13a37bSArne Jansen 		if (err && !ret)
36925d13a37bSArne Jansen 			ret = err;
36935d13a37bSArne Jansen 	}
36945d13a37bSArne Jansen out:
36955d13a37bSArne Jansen 	kfree(sa);
3696905b0ddaSMiao Xie drop_write:
3697905b0ddaSMiao Xie 	mnt_drop_write_file(file);
36985d13a37bSArne Jansen 	return ret;
36995d13a37bSArne Jansen }
37005d13a37bSArne Jansen 
3701905b0ddaSMiao Xie static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
37025d13a37bSArne Jansen {
3703905b0ddaSMiao Xie 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
37045d13a37bSArne Jansen 	struct btrfs_ioctl_qgroup_assign_args *sa;
37055d13a37bSArne Jansen 	struct btrfs_trans_handle *trans;
37065d13a37bSArne Jansen 	int ret;
37075d13a37bSArne Jansen 	int err;
37085d13a37bSArne Jansen 
37095d13a37bSArne Jansen 	if (!capable(CAP_SYS_ADMIN))
37105d13a37bSArne Jansen 		return -EPERM;
37115d13a37bSArne Jansen 
3712905b0ddaSMiao Xie 	ret = mnt_want_write_file(file);
3713905b0ddaSMiao Xie 	if (ret)
3714905b0ddaSMiao Xie 		return ret;
37155d13a37bSArne Jansen 
37165d13a37bSArne Jansen 	sa = memdup_user(arg, sizeof(*sa));
3717905b0ddaSMiao Xie 	if (IS_ERR(sa)) {
3718905b0ddaSMiao Xie 		ret = PTR_ERR(sa);
3719905b0ddaSMiao Xie 		goto drop_write;
3720905b0ddaSMiao Xie 	}
37215d13a37bSArne Jansen 
37225d13a37bSArne Jansen 	trans = btrfs_join_transaction(root);
37235d13a37bSArne Jansen 	if (IS_ERR(trans)) {
37245d13a37bSArne Jansen 		ret = PTR_ERR(trans);
37255d13a37bSArne Jansen 		goto out;
37265d13a37bSArne Jansen 	}
37275d13a37bSArne Jansen 
37285d13a37bSArne Jansen 	/* FIXME: check if the IDs really exist */
37295d13a37bSArne Jansen 	if (sa->assign) {
37305d13a37bSArne Jansen 		ret = btrfs_add_qgroup_relation(trans, root->fs_info,
37315d13a37bSArne Jansen 						sa->src, sa->dst);
37325d13a37bSArne Jansen 	} else {
37335d13a37bSArne Jansen 		ret = btrfs_del_qgroup_relation(trans, root->fs_info,
37345d13a37bSArne Jansen 						sa->src, sa->dst);
37355d13a37bSArne Jansen 	}
37365d13a37bSArne Jansen 
37375d13a37bSArne Jansen 	err = btrfs_end_transaction(trans, root);
37385d13a37bSArne Jansen 	if (err && !ret)
37395d13a37bSArne Jansen 		ret = err;
37405d13a37bSArne Jansen 
37415d13a37bSArne Jansen out:
37425d13a37bSArne Jansen 	kfree(sa);
3743905b0ddaSMiao Xie drop_write:
3744905b0ddaSMiao Xie 	mnt_drop_write_file(file);
37455d13a37bSArne Jansen 	return ret;
37465d13a37bSArne Jansen }
37475d13a37bSArne Jansen 
3748905b0ddaSMiao Xie static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
37495d13a37bSArne Jansen {
3750905b0ddaSMiao Xie 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
37515d13a37bSArne Jansen 	struct btrfs_ioctl_qgroup_create_args *sa;
37525d13a37bSArne Jansen 	struct btrfs_trans_handle *trans;
37535d13a37bSArne Jansen 	int ret;
37545d13a37bSArne Jansen 	int err;
37555d13a37bSArne Jansen 
37565d13a37bSArne Jansen 	if (!capable(CAP_SYS_ADMIN))
37575d13a37bSArne Jansen 		return -EPERM;
37585d13a37bSArne Jansen 
3759905b0ddaSMiao Xie 	ret = mnt_want_write_file(file);
3760905b0ddaSMiao Xie 	if (ret)
3761905b0ddaSMiao Xie 		return ret;
37625d13a37bSArne Jansen 
37635d13a37bSArne Jansen 	sa = memdup_user(arg, sizeof(*sa));
3764905b0ddaSMiao Xie 	if (IS_ERR(sa)) {
3765905b0ddaSMiao Xie 		ret = PTR_ERR(sa);
3766905b0ddaSMiao Xie 		goto drop_write;
3767905b0ddaSMiao Xie 	}
37685d13a37bSArne Jansen 
3769d86e56cfSMiao Xie 	if (!sa->qgroupid) {
3770d86e56cfSMiao Xie 		ret = -EINVAL;
3771d86e56cfSMiao Xie 		goto out;
3772d86e56cfSMiao Xie 	}
3773d86e56cfSMiao Xie 
37745d13a37bSArne Jansen 	trans = btrfs_join_transaction(root);
37755d13a37bSArne Jansen 	if (IS_ERR(trans)) {
37765d13a37bSArne Jansen 		ret = PTR_ERR(trans);
37775d13a37bSArne Jansen 		goto out;
37785d13a37bSArne Jansen 	}
37795d13a37bSArne Jansen 
37805d13a37bSArne Jansen 	/* FIXME: check if the IDs really exist */
37815d13a37bSArne Jansen 	if (sa->create) {
37825d13a37bSArne Jansen 		ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
37835d13a37bSArne Jansen 					  NULL);
37845d13a37bSArne Jansen 	} else {
37855d13a37bSArne Jansen 		ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
37865d13a37bSArne Jansen 	}
37875d13a37bSArne Jansen 
37885d13a37bSArne Jansen 	err = btrfs_end_transaction(trans, root);
37895d13a37bSArne Jansen 	if (err && !ret)
37905d13a37bSArne Jansen 		ret = err;
37915d13a37bSArne Jansen 
37925d13a37bSArne Jansen out:
37935d13a37bSArne Jansen 	kfree(sa);
3794905b0ddaSMiao Xie drop_write:
3795905b0ddaSMiao Xie 	mnt_drop_write_file(file);
37965d13a37bSArne Jansen 	return ret;
37975d13a37bSArne Jansen }
37985d13a37bSArne Jansen 
3799905b0ddaSMiao Xie static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
38005d13a37bSArne Jansen {
3801905b0ddaSMiao Xie 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
38025d13a37bSArne Jansen 	struct btrfs_ioctl_qgroup_limit_args *sa;
38035d13a37bSArne Jansen 	struct btrfs_trans_handle *trans;
38045d13a37bSArne Jansen 	int ret;
38055d13a37bSArne Jansen 	int err;
38065d13a37bSArne Jansen 	u64 qgroupid;
38075d13a37bSArne Jansen 
38085d13a37bSArne Jansen 	if (!capable(CAP_SYS_ADMIN))
38095d13a37bSArne Jansen 		return -EPERM;
38105d13a37bSArne Jansen 
3811905b0ddaSMiao Xie 	ret = mnt_want_write_file(file);
3812905b0ddaSMiao Xie 	if (ret)
3813905b0ddaSMiao Xie 		return ret;
38145d13a37bSArne Jansen 
38155d13a37bSArne Jansen 	sa = memdup_user(arg, sizeof(*sa));
3816905b0ddaSMiao Xie 	if (IS_ERR(sa)) {
3817905b0ddaSMiao Xie 		ret = PTR_ERR(sa);
3818905b0ddaSMiao Xie 		goto drop_write;
3819905b0ddaSMiao Xie 	}
38205d13a37bSArne Jansen 
38215d13a37bSArne Jansen 	trans = btrfs_join_transaction(root);
38225d13a37bSArne Jansen 	if (IS_ERR(trans)) {
38235d13a37bSArne Jansen 		ret = PTR_ERR(trans);
38245d13a37bSArne Jansen 		goto out;
38255d13a37bSArne Jansen 	}
38265d13a37bSArne Jansen 
38275d13a37bSArne Jansen 	qgroupid = sa->qgroupid;
38285d13a37bSArne Jansen 	if (!qgroupid) {
38295d13a37bSArne Jansen 		/* take the current subvol as qgroup */
38305d13a37bSArne Jansen 		qgroupid = root->root_key.objectid;
38315d13a37bSArne Jansen 	}
38325d13a37bSArne Jansen 
38335d13a37bSArne Jansen 	/* FIXME: check if the IDs really exist */
38345d13a37bSArne Jansen 	ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
38355d13a37bSArne Jansen 
38365d13a37bSArne Jansen 	err = btrfs_end_transaction(trans, root);
38375d13a37bSArne Jansen 	if (err && !ret)
38385d13a37bSArne Jansen 		ret = err;
38395d13a37bSArne Jansen 
38405d13a37bSArne Jansen out:
38415d13a37bSArne Jansen 	kfree(sa);
3842905b0ddaSMiao Xie drop_write:
3843905b0ddaSMiao Xie 	mnt_drop_write_file(file);
38445d13a37bSArne Jansen 	return ret;
38455d13a37bSArne Jansen }
38465d13a37bSArne Jansen 
38478ea05e3aSAlexander Block static long btrfs_ioctl_set_received_subvol(struct file *file,
38488ea05e3aSAlexander Block 					    void __user *arg)
38498ea05e3aSAlexander Block {
38508ea05e3aSAlexander Block 	struct btrfs_ioctl_received_subvol_args *sa = NULL;
38518ea05e3aSAlexander Block 	struct inode *inode = fdentry(file)->d_inode;
38528ea05e3aSAlexander Block 	struct btrfs_root *root = BTRFS_I(inode)->root;
38538ea05e3aSAlexander Block 	struct btrfs_root_item *root_item = &root->root_item;
38548ea05e3aSAlexander Block 	struct btrfs_trans_handle *trans;
38558ea05e3aSAlexander Block 	struct timespec ct = CURRENT_TIME;
38568ea05e3aSAlexander Block 	int ret = 0;
38578ea05e3aSAlexander Block 
38588ea05e3aSAlexander Block 	ret = mnt_want_write_file(file);
38598ea05e3aSAlexander Block 	if (ret < 0)
38608ea05e3aSAlexander Block 		return ret;
38618ea05e3aSAlexander Block 
38628ea05e3aSAlexander Block 	down_write(&root->fs_info->subvol_sem);
38638ea05e3aSAlexander Block 
38648ea05e3aSAlexander Block 	if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
38658ea05e3aSAlexander Block 		ret = -EINVAL;
38668ea05e3aSAlexander Block 		goto out;
38678ea05e3aSAlexander Block 	}
38688ea05e3aSAlexander Block 
38698ea05e3aSAlexander Block 	if (btrfs_root_readonly(root)) {
38708ea05e3aSAlexander Block 		ret = -EROFS;
38718ea05e3aSAlexander Block 		goto out;
38728ea05e3aSAlexander Block 	}
38738ea05e3aSAlexander Block 
38748ea05e3aSAlexander Block 	if (!inode_owner_or_capable(inode)) {
38758ea05e3aSAlexander Block 		ret = -EACCES;
38768ea05e3aSAlexander Block 		goto out;
38778ea05e3aSAlexander Block 	}
38788ea05e3aSAlexander Block 
38798ea05e3aSAlexander Block 	sa = memdup_user(arg, sizeof(*sa));
38808ea05e3aSAlexander Block 	if (IS_ERR(sa)) {
38818ea05e3aSAlexander Block 		ret = PTR_ERR(sa);
38828ea05e3aSAlexander Block 		sa = NULL;
38838ea05e3aSAlexander Block 		goto out;
38848ea05e3aSAlexander Block 	}
38858ea05e3aSAlexander Block 
38868ea05e3aSAlexander Block 	trans = btrfs_start_transaction(root, 1);
38878ea05e3aSAlexander Block 	if (IS_ERR(trans)) {
38888ea05e3aSAlexander Block 		ret = PTR_ERR(trans);
38898ea05e3aSAlexander Block 		trans = NULL;
38908ea05e3aSAlexander Block 		goto out;
38918ea05e3aSAlexander Block 	}
38928ea05e3aSAlexander Block 
38938ea05e3aSAlexander Block 	sa->rtransid = trans->transid;
38948ea05e3aSAlexander Block 	sa->rtime.sec = ct.tv_sec;
38958ea05e3aSAlexander Block 	sa->rtime.nsec = ct.tv_nsec;
38968ea05e3aSAlexander Block 
38978ea05e3aSAlexander Block 	memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
38988ea05e3aSAlexander Block 	btrfs_set_root_stransid(root_item, sa->stransid);
38998ea05e3aSAlexander Block 	btrfs_set_root_rtransid(root_item, sa->rtransid);
39008ea05e3aSAlexander Block 	root_item->stime.sec = cpu_to_le64(sa->stime.sec);
39018ea05e3aSAlexander Block 	root_item->stime.nsec = cpu_to_le32(sa->stime.nsec);
39028ea05e3aSAlexander Block 	root_item->rtime.sec = cpu_to_le64(sa->rtime.sec);
39038ea05e3aSAlexander Block 	root_item->rtime.nsec = cpu_to_le32(sa->rtime.nsec);
39048ea05e3aSAlexander Block 
39058ea05e3aSAlexander Block 	ret = btrfs_update_root(trans, root->fs_info->tree_root,
39068ea05e3aSAlexander Block 				&root->root_key, &root->root_item);
39078ea05e3aSAlexander Block 	if (ret < 0) {
39088ea05e3aSAlexander Block 		btrfs_end_transaction(trans, root);
39098ea05e3aSAlexander Block 		trans = NULL;
39108ea05e3aSAlexander Block 		goto out;
39118ea05e3aSAlexander Block 	} else {
39128ea05e3aSAlexander Block 		ret = btrfs_commit_transaction(trans, root);
39138ea05e3aSAlexander Block 		if (ret < 0)
39148ea05e3aSAlexander Block 			goto out;
39158ea05e3aSAlexander Block 	}
39168ea05e3aSAlexander Block 
39178ea05e3aSAlexander Block 	ret = copy_to_user(arg, sa, sizeof(*sa));
39188ea05e3aSAlexander Block 	if (ret)
39198ea05e3aSAlexander Block 		ret = -EFAULT;
39208ea05e3aSAlexander Block 
39218ea05e3aSAlexander Block out:
39228ea05e3aSAlexander Block 	kfree(sa);
39238ea05e3aSAlexander Block 	up_write(&root->fs_info->subvol_sem);
39248ea05e3aSAlexander Block 	mnt_drop_write_file(file);
39258ea05e3aSAlexander Block 	return ret;
39268ea05e3aSAlexander Block }
39278ea05e3aSAlexander Block 
3928867ab667Sjeff.liu static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
3929867ab667Sjeff.liu {
3930867ab667Sjeff.liu 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3931867ab667Sjeff.liu 	const char *label = root->fs_info->super_copy->label;
3932867ab667Sjeff.liu 	size_t len = strnlen(label, BTRFS_LABEL_SIZE);
3933867ab667Sjeff.liu 	int ret;
3934867ab667Sjeff.liu 
3935867ab667Sjeff.liu 	if (len == BTRFS_LABEL_SIZE) {
3936867ab667Sjeff.liu 		pr_warn("btrfs: label is too long, return the first %zu bytes\n",
3937867ab667Sjeff.liu 			--len);
3938867ab667Sjeff.liu 	}
3939867ab667Sjeff.liu 
3940867ab667Sjeff.liu 	mutex_lock(&root->fs_info->volume_mutex);
3941867ab667Sjeff.liu 	ret = copy_to_user(arg, label, len);
3942867ab667Sjeff.liu 	mutex_unlock(&root->fs_info->volume_mutex);
3943867ab667Sjeff.liu 
3944867ab667Sjeff.liu 	return ret ? -EFAULT : 0;
3945867ab667Sjeff.liu }
3946867ab667Sjeff.liu 
3947a8bfd4abSjeff.liu static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
3948a8bfd4abSjeff.liu {
3949a8bfd4abSjeff.liu 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3950a8bfd4abSjeff.liu 	struct btrfs_super_block *super_block = root->fs_info->super_copy;
3951a8bfd4abSjeff.liu 	struct btrfs_trans_handle *trans;
3952a8bfd4abSjeff.liu 	char label[BTRFS_LABEL_SIZE];
3953a8bfd4abSjeff.liu 	int ret;
3954a8bfd4abSjeff.liu 
3955a8bfd4abSjeff.liu 	if (!capable(CAP_SYS_ADMIN))
3956a8bfd4abSjeff.liu 		return -EPERM;
3957a8bfd4abSjeff.liu 
3958a8bfd4abSjeff.liu 	if (copy_from_user(label, arg, sizeof(label)))
3959a8bfd4abSjeff.liu 		return -EFAULT;
3960a8bfd4abSjeff.liu 
3961a8bfd4abSjeff.liu 	if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
3962a8bfd4abSjeff.liu 		pr_err("btrfs: unable to set label with more than %d bytes\n",
3963a8bfd4abSjeff.liu 		       BTRFS_LABEL_SIZE - 1);
3964a8bfd4abSjeff.liu 		return -EINVAL;
3965a8bfd4abSjeff.liu 	}
3966a8bfd4abSjeff.liu 
3967a8bfd4abSjeff.liu 	ret = mnt_want_write_file(file);
3968a8bfd4abSjeff.liu 	if (ret)
3969a8bfd4abSjeff.liu 		return ret;
3970a8bfd4abSjeff.liu 
3971a8bfd4abSjeff.liu 	mutex_lock(&root->fs_info->volume_mutex);
3972a8bfd4abSjeff.liu 	trans = btrfs_start_transaction(root, 0);
3973a8bfd4abSjeff.liu 	if (IS_ERR(trans)) {
3974a8bfd4abSjeff.liu 		ret = PTR_ERR(trans);
3975a8bfd4abSjeff.liu 		goto out_unlock;
3976a8bfd4abSjeff.liu 	}
3977a8bfd4abSjeff.liu 
3978a8bfd4abSjeff.liu 	strcpy(super_block->label, label);
3979a8bfd4abSjeff.liu 	ret = btrfs_end_transaction(trans, root);
3980a8bfd4abSjeff.liu 
3981a8bfd4abSjeff.liu out_unlock:
3982a8bfd4abSjeff.liu 	mutex_unlock(&root->fs_info->volume_mutex);
3983a8bfd4abSjeff.liu 	mnt_drop_write_file(file);
3984a8bfd4abSjeff.liu 	return ret;
3985a8bfd4abSjeff.liu }
3986a8bfd4abSjeff.liu 
3987f46b5a66SChristoph Hellwig long btrfs_ioctl(struct file *file, unsigned int
3988f46b5a66SChristoph Hellwig 		cmd, unsigned long arg)
3989f46b5a66SChristoph Hellwig {
3990f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
39914bcabaa3SChristoph Hellwig 	void __user *argp = (void __user *)arg;
3992f46b5a66SChristoph Hellwig 
3993f46b5a66SChristoph Hellwig 	switch (cmd) {
39946cbff00fSChristoph Hellwig 	case FS_IOC_GETFLAGS:
39956cbff00fSChristoph Hellwig 		return btrfs_ioctl_getflags(file, argp);
39966cbff00fSChristoph Hellwig 	case FS_IOC_SETFLAGS:
39976cbff00fSChristoph Hellwig 		return btrfs_ioctl_setflags(file, argp);
39986cbff00fSChristoph Hellwig 	case FS_IOC_GETVERSION:
39996cbff00fSChristoph Hellwig 		return btrfs_ioctl_getversion(file, argp);
4000f7039b1dSLi Dongyang 	case FITRIM:
4001f7039b1dSLi Dongyang 		return btrfs_ioctl_fitrim(file, argp);
4002f46b5a66SChristoph Hellwig 	case BTRFS_IOC_SNAP_CREATE:
4003fa0d2b9bSLi Zefan 		return btrfs_ioctl_snap_create(file, argp, 0);
4004fdfb1e4fSLi Zefan 	case BTRFS_IOC_SNAP_CREATE_V2:
4005fa0d2b9bSLi Zefan 		return btrfs_ioctl_snap_create_v2(file, argp, 0);
40063de4586cSChris Mason 	case BTRFS_IOC_SUBVOL_CREATE:
4007fa0d2b9bSLi Zefan 		return btrfs_ioctl_snap_create(file, argp, 1);
40086f72c7e2SArne Jansen 	case BTRFS_IOC_SUBVOL_CREATE_V2:
40096f72c7e2SArne Jansen 		return btrfs_ioctl_snap_create_v2(file, argp, 1);
401076dda93cSYan, Zheng 	case BTRFS_IOC_SNAP_DESTROY:
401176dda93cSYan, Zheng 		return btrfs_ioctl_snap_destroy(file, argp);
40120caa102dSLi Zefan 	case BTRFS_IOC_SUBVOL_GETFLAGS:
40130caa102dSLi Zefan 		return btrfs_ioctl_subvol_getflags(file, argp);
40140caa102dSLi Zefan 	case BTRFS_IOC_SUBVOL_SETFLAGS:
40150caa102dSLi Zefan 		return btrfs_ioctl_subvol_setflags(file, argp);
40166ef5ed0dSJosef Bacik 	case BTRFS_IOC_DEFAULT_SUBVOL:
40176ef5ed0dSJosef Bacik 		return btrfs_ioctl_default_subvol(file, argp);
4018f46b5a66SChristoph Hellwig 	case BTRFS_IOC_DEFRAG:
40191e701a32SChris Mason 		return btrfs_ioctl_defrag(file, NULL);
40201e701a32SChris Mason 	case BTRFS_IOC_DEFRAG_RANGE:
40211e701a32SChris Mason 		return btrfs_ioctl_defrag(file, argp);
4022f46b5a66SChristoph Hellwig 	case BTRFS_IOC_RESIZE:
4023198605a8SMiao Xie 		return btrfs_ioctl_resize(file, argp);
4024f46b5a66SChristoph Hellwig 	case BTRFS_IOC_ADD_DEV:
40254bcabaa3SChristoph Hellwig 		return btrfs_ioctl_add_dev(root, argp);
4026f46b5a66SChristoph Hellwig 	case BTRFS_IOC_RM_DEV:
4027da24927bSMiao Xie 		return btrfs_ioctl_rm_dev(file, argp);
4028475f6387SJan Schmidt 	case BTRFS_IOC_FS_INFO:
4029475f6387SJan Schmidt 		return btrfs_ioctl_fs_info(root, argp);
4030475f6387SJan Schmidt 	case BTRFS_IOC_DEV_INFO:
4031475f6387SJan Schmidt 		return btrfs_ioctl_dev_info(root, argp);
4032f46b5a66SChristoph Hellwig 	case BTRFS_IOC_BALANCE:
40339ba1f6e4SLiu Bo 		return btrfs_ioctl_balance(file, NULL);
4034f46b5a66SChristoph Hellwig 	case BTRFS_IOC_CLONE:
4035c5c9cd4dSSage Weil 		return btrfs_ioctl_clone(file, arg, 0, 0, 0);
4036c5c9cd4dSSage Weil 	case BTRFS_IOC_CLONE_RANGE:
40377a865e8aSChristoph Hellwig 		return btrfs_ioctl_clone_range(file, argp);
4038f46b5a66SChristoph Hellwig 	case BTRFS_IOC_TRANS_START:
4039f46b5a66SChristoph Hellwig 		return btrfs_ioctl_trans_start(file);
4040f46b5a66SChristoph Hellwig 	case BTRFS_IOC_TRANS_END:
4041f46b5a66SChristoph Hellwig 		return btrfs_ioctl_trans_end(file);
4042ac8e9819SChris Mason 	case BTRFS_IOC_TREE_SEARCH:
4043ac8e9819SChris Mason 		return btrfs_ioctl_tree_search(file, argp);
4044ac8e9819SChris Mason 	case BTRFS_IOC_INO_LOOKUP:
4045ac8e9819SChris Mason 		return btrfs_ioctl_ino_lookup(file, argp);
4046d7728c96SJan Schmidt 	case BTRFS_IOC_INO_PATHS:
4047d7728c96SJan Schmidt 		return btrfs_ioctl_ino_to_path(root, argp);
4048d7728c96SJan Schmidt 	case BTRFS_IOC_LOGICAL_INO:
4049d7728c96SJan Schmidt 		return btrfs_ioctl_logical_to_ino(root, argp);
40501406e432SJosef Bacik 	case BTRFS_IOC_SPACE_INFO:
40511406e432SJosef Bacik 		return btrfs_ioctl_space_info(root, argp);
4052f46b5a66SChristoph Hellwig 	case BTRFS_IOC_SYNC:
4053f46b5a66SChristoph Hellwig 		btrfs_sync_fs(file->f_dentry->d_sb, 1);
4054f46b5a66SChristoph Hellwig 		return 0;
405546204592SSage Weil 	case BTRFS_IOC_START_SYNC:
40569a8c28beSMiao Xie 		return btrfs_ioctl_start_sync(root, argp);
405746204592SSage Weil 	case BTRFS_IOC_WAIT_SYNC:
40589a8c28beSMiao Xie 		return btrfs_ioctl_wait_sync(root, argp);
4059475f6387SJan Schmidt 	case BTRFS_IOC_SCRUB:
4060b8e95489SMiao Xie 		return btrfs_ioctl_scrub(file, argp);
4061475f6387SJan Schmidt 	case BTRFS_IOC_SCRUB_CANCEL:
4062475f6387SJan Schmidt 		return btrfs_ioctl_scrub_cancel(root, argp);
4063475f6387SJan Schmidt 	case BTRFS_IOC_SCRUB_PROGRESS:
4064475f6387SJan Schmidt 		return btrfs_ioctl_scrub_progress(root, argp);
4065c9e9f97bSIlya Dryomov 	case BTRFS_IOC_BALANCE_V2:
40669ba1f6e4SLiu Bo 		return btrfs_ioctl_balance(file, argp);
4067837d5b6eSIlya Dryomov 	case BTRFS_IOC_BALANCE_CTL:
4068837d5b6eSIlya Dryomov 		return btrfs_ioctl_balance_ctl(root, arg);
406919a39dceSIlya Dryomov 	case BTRFS_IOC_BALANCE_PROGRESS:
407019a39dceSIlya Dryomov 		return btrfs_ioctl_balance_progress(root, argp);
40718ea05e3aSAlexander Block 	case BTRFS_IOC_SET_RECEIVED_SUBVOL:
40728ea05e3aSAlexander Block 		return btrfs_ioctl_set_received_subvol(file, argp);
407331db9f7cSAlexander Block 	case BTRFS_IOC_SEND:
407431db9f7cSAlexander Block 		return btrfs_ioctl_send(file, argp);
4075c11d2c23SStefan Behrens 	case BTRFS_IOC_GET_DEV_STATS:
4076b27f7c0cSDavid Sterba 		return btrfs_ioctl_get_dev_stats(root, argp);
40775d13a37bSArne Jansen 	case BTRFS_IOC_QUOTA_CTL:
4078905b0ddaSMiao Xie 		return btrfs_ioctl_quota_ctl(file, argp);
40795d13a37bSArne Jansen 	case BTRFS_IOC_QGROUP_ASSIGN:
4080905b0ddaSMiao Xie 		return btrfs_ioctl_qgroup_assign(file, argp);
40815d13a37bSArne Jansen 	case BTRFS_IOC_QGROUP_CREATE:
4082905b0ddaSMiao Xie 		return btrfs_ioctl_qgroup_create(file, argp);
40835d13a37bSArne Jansen 	case BTRFS_IOC_QGROUP_LIMIT:
4084905b0ddaSMiao Xie 		return btrfs_ioctl_qgroup_limit(file, argp);
40853f6bcfbdSStefan Behrens 	case BTRFS_IOC_DEV_REPLACE:
40863f6bcfbdSStefan Behrens 		return btrfs_ioctl_dev_replace(root, argp);
4087867ab667Sjeff.liu 	case BTRFS_IOC_GET_FSLABEL:
4088867ab667Sjeff.liu 		return btrfs_ioctl_get_fslabel(file, argp);
4089a8bfd4abSjeff.liu 	case BTRFS_IOC_SET_FSLABEL:
4090a8bfd4abSjeff.liu 		return btrfs_ioctl_set_fslabel(file, argp);
4091f46b5a66SChristoph Hellwig 	}
4092f46b5a66SChristoph Hellwig 
4093f46b5a66SChristoph Hellwig 	return -ENOTTY;
4094f46b5a66SChristoph Hellwig }
4095