xref: /openbmc/linux/fs/btrfs/ioctl.c (revision 99ba55ad)
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>
444b4e25f2SChris Mason #include "compat.h"
45f46b5a66SChristoph Hellwig #include "ctree.h"
46f46b5a66SChristoph Hellwig #include "disk-io.h"
47f46b5a66SChristoph Hellwig #include "transaction.h"
48f46b5a66SChristoph Hellwig #include "btrfs_inode.h"
49f46b5a66SChristoph Hellwig #include "ioctl.h"
50f46b5a66SChristoph Hellwig #include "print-tree.h"
51f46b5a66SChristoph Hellwig #include "volumes.h"
52925baeddSChris Mason #include "locking.h"
53581bb050SLi Zefan #include "inode-map.h"
54d7728c96SJan Schmidt #include "backref.h"
55f46b5a66SChristoph Hellwig 
566cbff00fSChristoph Hellwig /* Mask out flags that are inappropriate for the given type of inode. */
576cbff00fSChristoph Hellwig static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
586cbff00fSChristoph Hellwig {
596cbff00fSChristoph Hellwig 	if (S_ISDIR(mode))
606cbff00fSChristoph Hellwig 		return flags;
616cbff00fSChristoph Hellwig 	else if (S_ISREG(mode))
626cbff00fSChristoph Hellwig 		return flags & ~FS_DIRSYNC_FL;
636cbff00fSChristoph Hellwig 	else
646cbff00fSChristoph Hellwig 		return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
656cbff00fSChristoph Hellwig }
66f46b5a66SChristoph Hellwig 
676cbff00fSChristoph Hellwig /*
686cbff00fSChristoph Hellwig  * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
696cbff00fSChristoph Hellwig  */
706cbff00fSChristoph Hellwig static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
716cbff00fSChristoph Hellwig {
726cbff00fSChristoph Hellwig 	unsigned int iflags = 0;
736cbff00fSChristoph Hellwig 
746cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_SYNC)
756cbff00fSChristoph Hellwig 		iflags |= FS_SYNC_FL;
766cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_IMMUTABLE)
776cbff00fSChristoph Hellwig 		iflags |= FS_IMMUTABLE_FL;
786cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_APPEND)
796cbff00fSChristoph Hellwig 		iflags |= FS_APPEND_FL;
806cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_NODUMP)
816cbff00fSChristoph Hellwig 		iflags |= FS_NODUMP_FL;
826cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_NOATIME)
836cbff00fSChristoph Hellwig 		iflags |= FS_NOATIME_FL;
846cbff00fSChristoph Hellwig 	if (flags & BTRFS_INODE_DIRSYNC)
856cbff00fSChristoph Hellwig 		iflags |= FS_DIRSYNC_FL;
86d0092bddSLi Zefan 	if (flags & BTRFS_INODE_NODATACOW)
87d0092bddSLi Zefan 		iflags |= FS_NOCOW_FL;
88d0092bddSLi Zefan 
89d0092bddSLi Zefan 	if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
90d0092bddSLi Zefan 		iflags |= FS_COMPR_FL;
91d0092bddSLi Zefan 	else if (flags & BTRFS_INODE_NOCOMPRESS)
92d0092bddSLi Zefan 		iflags |= FS_NOCOMP_FL;
936cbff00fSChristoph Hellwig 
946cbff00fSChristoph Hellwig 	return iflags;
956cbff00fSChristoph Hellwig }
966cbff00fSChristoph Hellwig 
976cbff00fSChristoph Hellwig /*
986cbff00fSChristoph Hellwig  * Update inode->i_flags based on the btrfs internal flags.
996cbff00fSChristoph Hellwig  */
1006cbff00fSChristoph Hellwig void btrfs_update_iflags(struct inode *inode)
1016cbff00fSChristoph Hellwig {
1026cbff00fSChristoph Hellwig 	struct btrfs_inode *ip = BTRFS_I(inode);
1036cbff00fSChristoph Hellwig 
1046cbff00fSChristoph Hellwig 	inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
1056cbff00fSChristoph Hellwig 
1066cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_SYNC)
1076cbff00fSChristoph Hellwig 		inode->i_flags |= S_SYNC;
1086cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_IMMUTABLE)
1096cbff00fSChristoph Hellwig 		inode->i_flags |= S_IMMUTABLE;
1106cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_APPEND)
1116cbff00fSChristoph Hellwig 		inode->i_flags |= S_APPEND;
1126cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_NOATIME)
1136cbff00fSChristoph Hellwig 		inode->i_flags |= S_NOATIME;
1146cbff00fSChristoph Hellwig 	if (ip->flags & BTRFS_INODE_DIRSYNC)
1156cbff00fSChristoph Hellwig 		inode->i_flags |= S_DIRSYNC;
1166cbff00fSChristoph Hellwig }
1176cbff00fSChristoph Hellwig 
1186cbff00fSChristoph Hellwig /*
1196cbff00fSChristoph Hellwig  * Inherit flags from the parent inode.
1206cbff00fSChristoph Hellwig  *
121e27425d6SJosef Bacik  * Currently only the compression flags and the cow flags are inherited.
1226cbff00fSChristoph Hellwig  */
1236cbff00fSChristoph Hellwig void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
1246cbff00fSChristoph Hellwig {
1250b4dcea5SChris Mason 	unsigned int flags;
1260b4dcea5SChris Mason 
1270b4dcea5SChris Mason 	if (!dir)
1280b4dcea5SChris Mason 		return;
1290b4dcea5SChris Mason 
1300b4dcea5SChris Mason 	flags = BTRFS_I(dir)->flags;
1316cbff00fSChristoph Hellwig 
132e27425d6SJosef Bacik 	if (flags & BTRFS_INODE_NOCOMPRESS) {
133e27425d6SJosef Bacik 		BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
134e27425d6SJosef Bacik 		BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
135e27425d6SJosef Bacik 	} else if (flags & BTRFS_INODE_COMPRESS) {
136e27425d6SJosef Bacik 		BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
137e27425d6SJosef Bacik 		BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
138e27425d6SJosef Bacik 	}
1396cbff00fSChristoph Hellwig 
140e27425d6SJosef Bacik 	if (flags & BTRFS_INODE_NODATACOW)
141e27425d6SJosef Bacik 		BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
142e27425d6SJosef Bacik 
1436cbff00fSChristoph Hellwig 	btrfs_update_iflags(inode);
1446cbff00fSChristoph Hellwig }
1456cbff00fSChristoph Hellwig 
1466cbff00fSChristoph Hellwig static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
1476cbff00fSChristoph Hellwig {
1486cbff00fSChristoph Hellwig 	struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
1496cbff00fSChristoph Hellwig 	unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
1506cbff00fSChristoph Hellwig 
1516cbff00fSChristoph Hellwig 	if (copy_to_user(arg, &flags, sizeof(flags)))
1526cbff00fSChristoph Hellwig 		return -EFAULT;
1536cbff00fSChristoph Hellwig 	return 0;
1546cbff00fSChristoph Hellwig }
1556cbff00fSChristoph Hellwig 
15675e7cb7fSLiu Bo static int check_flags(unsigned int flags)
15775e7cb7fSLiu Bo {
15875e7cb7fSLiu Bo 	if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
15975e7cb7fSLiu Bo 		      FS_NOATIME_FL | FS_NODUMP_FL | \
16075e7cb7fSLiu Bo 		      FS_SYNC_FL | FS_DIRSYNC_FL | \
161e1e8fb6aSLi Zefan 		      FS_NOCOMP_FL | FS_COMPR_FL |
162e1e8fb6aSLi Zefan 		      FS_NOCOW_FL))
16375e7cb7fSLiu Bo 		return -EOPNOTSUPP;
16475e7cb7fSLiu Bo 
16575e7cb7fSLiu Bo 	if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
16675e7cb7fSLiu Bo 		return -EINVAL;
16775e7cb7fSLiu Bo 
16875e7cb7fSLiu Bo 	return 0;
16975e7cb7fSLiu Bo }
17075e7cb7fSLiu Bo 
1716cbff00fSChristoph Hellwig static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
1726cbff00fSChristoph Hellwig {
1736cbff00fSChristoph Hellwig 	struct inode *inode = file->f_path.dentry->d_inode;
1746cbff00fSChristoph Hellwig 	struct btrfs_inode *ip = BTRFS_I(inode);
1756cbff00fSChristoph Hellwig 	struct btrfs_root *root = ip->root;
1766cbff00fSChristoph Hellwig 	struct btrfs_trans_handle *trans;
1776cbff00fSChristoph Hellwig 	unsigned int flags, oldflags;
1786cbff00fSChristoph Hellwig 	int ret;
179f062abf0SLi Zefan 	u64 ip_oldflags;
180f062abf0SLi Zefan 	unsigned int i_oldflags;
1816cbff00fSChristoph Hellwig 
182b83cc969SLi Zefan 	if (btrfs_root_readonly(root))
183b83cc969SLi Zefan 		return -EROFS;
184b83cc969SLi Zefan 
1856cbff00fSChristoph Hellwig 	if (copy_from_user(&flags, arg, sizeof(flags)))
1866cbff00fSChristoph Hellwig 		return -EFAULT;
1876cbff00fSChristoph Hellwig 
18875e7cb7fSLiu Bo 	ret = check_flags(flags);
18975e7cb7fSLiu Bo 	if (ret)
19075e7cb7fSLiu Bo 		return ret;
1916cbff00fSChristoph Hellwig 
1922e149670SSerge E. Hallyn 	if (!inode_owner_or_capable(inode))
1936cbff00fSChristoph Hellwig 		return -EACCES;
1946cbff00fSChristoph Hellwig 
1956cbff00fSChristoph Hellwig 	mutex_lock(&inode->i_mutex);
1966cbff00fSChristoph Hellwig 
197f062abf0SLi Zefan 	ip_oldflags = ip->flags;
198f062abf0SLi Zefan 	i_oldflags = inode->i_flags;
199f062abf0SLi Zefan 
2006cbff00fSChristoph Hellwig 	flags = btrfs_mask_flags(inode->i_mode, flags);
2016cbff00fSChristoph Hellwig 	oldflags = btrfs_flags_to_ioctl(ip->flags);
2026cbff00fSChristoph Hellwig 	if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
2036cbff00fSChristoph Hellwig 		if (!capable(CAP_LINUX_IMMUTABLE)) {
2046cbff00fSChristoph Hellwig 			ret = -EPERM;
2056cbff00fSChristoph Hellwig 			goto out_unlock;
2066cbff00fSChristoph Hellwig 		}
2076cbff00fSChristoph Hellwig 	}
2086cbff00fSChristoph Hellwig 
209a561be71SAl Viro 	ret = mnt_want_write_file(file);
2106cbff00fSChristoph Hellwig 	if (ret)
2116cbff00fSChristoph Hellwig 		goto out_unlock;
2126cbff00fSChristoph Hellwig 
2136cbff00fSChristoph Hellwig 	if (flags & FS_SYNC_FL)
2146cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_SYNC;
2156cbff00fSChristoph Hellwig 	else
2166cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_SYNC;
2176cbff00fSChristoph Hellwig 	if (flags & FS_IMMUTABLE_FL)
2186cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_IMMUTABLE;
2196cbff00fSChristoph Hellwig 	else
2206cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_IMMUTABLE;
2216cbff00fSChristoph Hellwig 	if (flags & FS_APPEND_FL)
2226cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_APPEND;
2236cbff00fSChristoph Hellwig 	else
2246cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_APPEND;
2256cbff00fSChristoph Hellwig 	if (flags & FS_NODUMP_FL)
2266cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_NODUMP;
2276cbff00fSChristoph Hellwig 	else
2286cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_NODUMP;
2296cbff00fSChristoph Hellwig 	if (flags & FS_NOATIME_FL)
2306cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_NOATIME;
2316cbff00fSChristoph Hellwig 	else
2326cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_NOATIME;
2336cbff00fSChristoph Hellwig 	if (flags & FS_DIRSYNC_FL)
2346cbff00fSChristoph Hellwig 		ip->flags |= BTRFS_INODE_DIRSYNC;
2356cbff00fSChristoph Hellwig 	else
2366cbff00fSChristoph Hellwig 		ip->flags &= ~BTRFS_INODE_DIRSYNC;
237e1e8fb6aSLi Zefan 	if (flags & FS_NOCOW_FL)
238e1e8fb6aSLi Zefan 		ip->flags |= BTRFS_INODE_NODATACOW;
239e1e8fb6aSLi Zefan 	else
240e1e8fb6aSLi Zefan 		ip->flags &= ~BTRFS_INODE_NODATACOW;
2416cbff00fSChristoph Hellwig 
24275e7cb7fSLiu Bo 	/*
24375e7cb7fSLiu Bo 	 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
24475e7cb7fSLiu Bo 	 * flag may be changed automatically if compression code won't make
24575e7cb7fSLiu Bo 	 * things smaller.
24675e7cb7fSLiu Bo 	 */
24775e7cb7fSLiu Bo 	if (flags & FS_NOCOMP_FL) {
24875e7cb7fSLiu Bo 		ip->flags &= ~BTRFS_INODE_COMPRESS;
24975e7cb7fSLiu Bo 		ip->flags |= BTRFS_INODE_NOCOMPRESS;
25075e7cb7fSLiu Bo 	} else if (flags & FS_COMPR_FL) {
25175e7cb7fSLiu Bo 		ip->flags |= BTRFS_INODE_COMPRESS;
25275e7cb7fSLiu Bo 		ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
253ebcb904dSLi Zefan 	} else {
254ebcb904dSLi Zefan 		ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
25575e7cb7fSLiu Bo 	}
2566cbff00fSChristoph Hellwig 
2574da6f1a3SLi Zefan 	trans = btrfs_start_transaction(root, 1);
258f062abf0SLi Zefan 	if (IS_ERR(trans)) {
259f062abf0SLi Zefan 		ret = PTR_ERR(trans);
260f062abf0SLi Zefan 		goto out_drop;
261f062abf0SLi Zefan 	}
2626cbff00fSChristoph Hellwig 
263306424ccSLi Zefan 	btrfs_update_iflags(inode);
264306424ccSLi Zefan 	inode->i_ctime = CURRENT_TIME;
2656cbff00fSChristoph Hellwig 	ret = btrfs_update_inode(trans, root, inode);
2666cbff00fSChristoph Hellwig 
2676cbff00fSChristoph Hellwig 	btrfs_end_transaction(trans, root);
268f062abf0SLi Zefan  out_drop:
269f062abf0SLi Zefan 	if (ret) {
270f062abf0SLi Zefan 		ip->flags = ip_oldflags;
271f062abf0SLi Zefan 		inode->i_flags = i_oldflags;
272f062abf0SLi Zefan 	}
2736cbff00fSChristoph Hellwig 
2742a79f17eSAl Viro 	mnt_drop_write_file(file);
2756cbff00fSChristoph Hellwig  out_unlock:
2766cbff00fSChristoph Hellwig 	mutex_unlock(&inode->i_mutex);
2772d4e6f6aSliubo 	return ret;
2786cbff00fSChristoph Hellwig }
2796cbff00fSChristoph Hellwig 
2806cbff00fSChristoph Hellwig static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
2816cbff00fSChristoph Hellwig {
2826cbff00fSChristoph Hellwig 	struct inode *inode = file->f_path.dentry->d_inode;
2836cbff00fSChristoph Hellwig 
2846cbff00fSChristoph Hellwig 	return put_user(inode->i_generation, arg);
2856cbff00fSChristoph Hellwig }
286f46b5a66SChristoph Hellwig 
287f7039b1dSLi Dongyang static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
288f7039b1dSLi Dongyang {
289815745cfSAl Viro 	struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
290f7039b1dSLi Dongyang 	struct btrfs_device *device;
291f7039b1dSLi Dongyang 	struct request_queue *q;
292f7039b1dSLi Dongyang 	struct fstrim_range range;
293f7039b1dSLi Dongyang 	u64 minlen = ULLONG_MAX;
294f7039b1dSLi Dongyang 	u64 num_devices = 0;
295815745cfSAl Viro 	u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
296f7039b1dSLi Dongyang 	int ret;
297f7039b1dSLi Dongyang 
298f7039b1dSLi Dongyang 	if (!capable(CAP_SYS_ADMIN))
299f7039b1dSLi Dongyang 		return -EPERM;
300f7039b1dSLi Dongyang 
3011f78160cSXiao Guangrong 	rcu_read_lock();
3021f78160cSXiao Guangrong 	list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
3031f78160cSXiao Guangrong 				dev_list) {
304f7039b1dSLi Dongyang 		if (!device->bdev)
305f7039b1dSLi Dongyang 			continue;
306f7039b1dSLi Dongyang 		q = bdev_get_queue(device->bdev);
307f7039b1dSLi Dongyang 		if (blk_queue_discard(q)) {
308f7039b1dSLi Dongyang 			num_devices++;
309f7039b1dSLi Dongyang 			minlen = min((u64)q->limits.discard_granularity,
310f7039b1dSLi Dongyang 				     minlen);
311f7039b1dSLi Dongyang 		}
312f7039b1dSLi Dongyang 	}
3131f78160cSXiao Guangrong 	rcu_read_unlock();
314f4c697e6SLukas Czerner 
315f7039b1dSLi Dongyang 	if (!num_devices)
316f7039b1dSLi Dongyang 		return -EOPNOTSUPP;
317f7039b1dSLi Dongyang 	if (copy_from_user(&range, arg, sizeof(range)))
318f7039b1dSLi Dongyang 		return -EFAULT;
319f4c697e6SLukas Czerner 	if (range.start > total_bytes)
320f4c697e6SLukas Czerner 		return -EINVAL;
321f7039b1dSLi Dongyang 
322f4c697e6SLukas Czerner 	range.len = min(range.len, total_bytes - range.start);
323f7039b1dSLi Dongyang 	range.minlen = max(range.minlen, minlen);
324815745cfSAl Viro 	ret = btrfs_trim_fs(fs_info->tree_root, &range);
325f7039b1dSLi Dongyang 	if (ret < 0)
326f7039b1dSLi Dongyang 		return ret;
327f7039b1dSLi Dongyang 
328f7039b1dSLi Dongyang 	if (copy_to_user(arg, &range, sizeof(range)))
329f7039b1dSLi Dongyang 		return -EFAULT;
330f7039b1dSLi Dongyang 
331f7039b1dSLi Dongyang 	return 0;
332f7039b1dSLi Dongyang }
333f7039b1dSLi Dongyang 
334cb8e7090SChristoph Hellwig static noinline int create_subvol(struct btrfs_root *root,
335cb8e7090SChristoph Hellwig 				  struct dentry *dentry,
33672fd032eSSage Weil 				  char *name, int namelen,
33772fd032eSSage Weil 				  u64 *async_transid)
338f46b5a66SChristoph Hellwig {
339f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
340f46b5a66SChristoph Hellwig 	struct btrfs_key key;
341f46b5a66SChristoph Hellwig 	struct btrfs_root_item root_item;
342f46b5a66SChristoph Hellwig 	struct btrfs_inode_item *inode_item;
343f46b5a66SChristoph Hellwig 	struct extent_buffer *leaf;
34476dda93cSYan, Zheng 	struct btrfs_root *new_root;
3452fbe8c8aSAl Viro 	struct dentry *parent = dentry->d_parent;
3466a912213SJosef Bacik 	struct inode *dir;
347f46b5a66SChristoph Hellwig 	int ret;
348f46b5a66SChristoph Hellwig 	int err;
349f46b5a66SChristoph Hellwig 	u64 objectid;
350f46b5a66SChristoph Hellwig 	u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
3513de4586cSChris Mason 	u64 index = 0;
352f46b5a66SChristoph Hellwig 
353581bb050SLi Zefan 	ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
3542fbe8c8aSAl Viro 	if (ret)
355a22285a6SYan, Zheng 		return ret;
3566a912213SJosef Bacik 
3576a912213SJosef Bacik 	dir = parent->d_inode;
3586a912213SJosef Bacik 
3599ed74f2dSJosef Bacik 	/*
3609ed74f2dSJosef Bacik 	 * 1 - inode item
3619ed74f2dSJosef Bacik 	 * 2 - refs
3629ed74f2dSJosef Bacik 	 * 1 - root item
3639ed74f2dSJosef Bacik 	 * 2 - dir items
3649ed74f2dSJosef Bacik 	 */
365a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root, 6);
3662fbe8c8aSAl Viro 	if (IS_ERR(trans))
367a22285a6SYan, Zheng 		return PTR_ERR(trans);
368f46b5a66SChristoph Hellwig 
3695d4f98a2SYan Zheng 	leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
37066d7e7f0SArne Jansen 				      0, objectid, NULL, 0, 0, 0, 0);
3718e8a1e31SJosef Bacik 	if (IS_ERR(leaf)) {
3728e8a1e31SJosef Bacik 		ret = PTR_ERR(leaf);
3738e8a1e31SJosef Bacik 		goto fail;
3748e8a1e31SJosef Bacik 	}
375f46b5a66SChristoph Hellwig 
3765d4f98a2SYan Zheng 	memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
377f46b5a66SChristoph Hellwig 	btrfs_set_header_bytenr(leaf, leaf->start);
378f46b5a66SChristoph Hellwig 	btrfs_set_header_generation(leaf, trans->transid);
3795d4f98a2SYan Zheng 	btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
380f46b5a66SChristoph Hellwig 	btrfs_set_header_owner(leaf, objectid);
381f46b5a66SChristoph Hellwig 
382f46b5a66SChristoph Hellwig 	write_extent_buffer(leaf, root->fs_info->fsid,
383f46b5a66SChristoph Hellwig 			    (unsigned long)btrfs_header_fsid(leaf),
384f46b5a66SChristoph Hellwig 			    BTRFS_FSID_SIZE);
3855d4f98a2SYan Zheng 	write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
3865d4f98a2SYan Zheng 			    (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
3875d4f98a2SYan Zheng 			    BTRFS_UUID_SIZE);
388f46b5a66SChristoph Hellwig 	btrfs_mark_buffer_dirty(leaf);
389f46b5a66SChristoph Hellwig 
390f46b5a66SChristoph Hellwig 	inode_item = &root_item.inode;
391f46b5a66SChristoph Hellwig 	memset(inode_item, 0, sizeof(*inode_item));
392f46b5a66SChristoph Hellwig 	inode_item->generation = cpu_to_le64(1);
393f46b5a66SChristoph Hellwig 	inode_item->size = cpu_to_le64(3);
394f46b5a66SChristoph Hellwig 	inode_item->nlink = cpu_to_le32(1);
395a76a3cd4SYan Zheng 	inode_item->nbytes = cpu_to_le64(root->leafsize);
396f46b5a66SChristoph Hellwig 	inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
397f46b5a66SChristoph Hellwig 
39808fe4db1SLi Zefan 	root_item.flags = 0;
39908fe4db1SLi Zefan 	root_item.byte_limit = 0;
40008fe4db1SLi Zefan 	inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
40108fe4db1SLi Zefan 
402f46b5a66SChristoph Hellwig 	btrfs_set_root_bytenr(&root_item, leaf->start);
40384234f3aSYan Zheng 	btrfs_set_root_generation(&root_item, trans->transid);
404f46b5a66SChristoph Hellwig 	btrfs_set_root_level(&root_item, 0);
405f46b5a66SChristoph Hellwig 	btrfs_set_root_refs(&root_item, 1);
40686b9f2ecSYan, Zheng 	btrfs_set_root_used(&root_item, leaf->len);
40780ff3856SYan Zheng 	btrfs_set_root_last_snapshot(&root_item, 0);
408f46b5a66SChristoph Hellwig 
409f46b5a66SChristoph Hellwig 	memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
410f46b5a66SChristoph Hellwig 	root_item.drop_level = 0;
411f46b5a66SChristoph Hellwig 
412925baeddSChris Mason 	btrfs_tree_unlock(leaf);
413f46b5a66SChristoph Hellwig 	free_extent_buffer(leaf);
414f46b5a66SChristoph Hellwig 	leaf = NULL;
415f46b5a66SChristoph Hellwig 
416f46b5a66SChristoph Hellwig 	btrfs_set_root_dirid(&root_item, new_dirid);
417f46b5a66SChristoph Hellwig 
418f46b5a66SChristoph Hellwig 	key.objectid = objectid;
4195d4f98a2SYan Zheng 	key.offset = 0;
420f46b5a66SChristoph Hellwig 	btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
421f46b5a66SChristoph Hellwig 	ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
422f46b5a66SChristoph Hellwig 				&root_item);
423f46b5a66SChristoph Hellwig 	if (ret)
424f46b5a66SChristoph Hellwig 		goto fail;
425f46b5a66SChristoph Hellwig 
42676dda93cSYan, Zheng 	key.offset = (u64)-1;
42776dda93cSYan, Zheng 	new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
42879787eaaSJeff Mahoney 	if (IS_ERR(new_root)) {
42979787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
43079787eaaSJeff Mahoney 		ret = PTR_ERR(new_root);
43179787eaaSJeff Mahoney 		goto fail;
43279787eaaSJeff Mahoney 	}
43376dda93cSYan, Zheng 
43476dda93cSYan, Zheng 	btrfs_record_root_in_trans(trans, new_root);
43576dda93cSYan, Zheng 
436d82a6f1dSJosef Bacik 	ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
437ce598979SMark Fasheh 	if (ret) {
438ce598979SMark Fasheh 		/* We potentially lose an unused inode item here */
43979787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, ret);
440ce598979SMark Fasheh 		goto fail;
441ce598979SMark Fasheh 	}
442ce598979SMark Fasheh 
443f46b5a66SChristoph Hellwig 	/*
444f46b5a66SChristoph Hellwig 	 * insert the directory item
445f46b5a66SChristoph Hellwig 	 */
4463de4586cSChris Mason 	ret = btrfs_set_inode_index(dir, &index);
44779787eaaSJeff Mahoney 	if (ret) {
44879787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, ret);
44979787eaaSJeff Mahoney 		goto fail;
45079787eaaSJeff Mahoney 	}
4513de4586cSChris Mason 
4523de4586cSChris Mason 	ret = btrfs_insert_dir_item(trans, root,
45316cdcec7SMiao Xie 				    name, namelen, dir, &key,
4543de4586cSChris Mason 				    BTRFS_FT_DIR, index);
45579787eaaSJeff Mahoney 	if (ret) {
45679787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, ret);
457f46b5a66SChristoph Hellwig 		goto fail;
45879787eaaSJeff Mahoney 	}
4590660b5afSChris Mason 
46052c26179SYan Zheng 	btrfs_i_size_write(dir, dir->i_size + namelen * 2);
46152c26179SYan Zheng 	ret = btrfs_update_inode(trans, root, dir);
46252c26179SYan Zheng 	BUG_ON(ret);
46352c26179SYan Zheng 
4640660b5afSChris Mason 	ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4654df27c4dSYan, Zheng 				 objectid, root->root_key.objectid,
46633345d01SLi Zefan 				 btrfs_ino(dir), index, name, namelen);
46776dda93cSYan, Zheng 
4680660b5afSChris Mason 	BUG_ON(ret);
4690660b5afSChris Mason 
47076dda93cSYan, Zheng 	d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
471f46b5a66SChristoph Hellwig fail:
47272fd032eSSage Weil 	if (async_transid) {
47372fd032eSSage Weil 		*async_transid = trans->transid;
47472fd032eSSage Weil 		err = btrfs_commit_transaction_async(trans, root, 1);
47572fd032eSSage Weil 	} else {
47676dda93cSYan, Zheng 		err = btrfs_commit_transaction(trans, root);
47772fd032eSSage Weil 	}
478f46b5a66SChristoph Hellwig 	if (err && !ret)
479f46b5a66SChristoph Hellwig 		ret = err;
480f46b5a66SChristoph Hellwig 	return ret;
481f46b5a66SChristoph Hellwig }
482f46b5a66SChristoph Hellwig 
48372fd032eSSage Weil static int create_snapshot(struct btrfs_root *root, struct dentry *dentry,
484b83cc969SLi Zefan 			   char *name, int namelen, u64 *async_transid,
485b83cc969SLi Zefan 			   bool readonly)
486f46b5a66SChristoph Hellwig {
4872e4bfab9SYan, Zheng 	struct inode *inode;
488f46b5a66SChristoph Hellwig 	struct btrfs_pending_snapshot *pending_snapshot;
489f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
4902e4bfab9SYan, Zheng 	int ret;
491f46b5a66SChristoph Hellwig 
492f46b5a66SChristoph Hellwig 	if (!root->ref_cows)
493f46b5a66SChristoph Hellwig 		return -EINVAL;
494f46b5a66SChristoph Hellwig 
495a22285a6SYan, Zheng 	pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
496a22285a6SYan, Zheng 	if (!pending_snapshot)
497a22285a6SYan, Zheng 		return -ENOMEM;
498a22285a6SYan, Zheng 
499a22285a6SYan, Zheng 	btrfs_init_block_rsv(&pending_snapshot->block_rsv);
500a22285a6SYan, Zheng 	pending_snapshot->dentry = dentry;
501a22285a6SYan, Zheng 	pending_snapshot->root = root;
502b83cc969SLi Zefan 	pending_snapshot->readonly = readonly;
503a22285a6SYan, Zheng 
504a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root->fs_info->extent_root, 5);
505a22285a6SYan, Zheng 	if (IS_ERR(trans)) {
506a22285a6SYan, Zheng 		ret = PTR_ERR(trans);
507a22285a6SYan, Zheng 		goto fail;
508a22285a6SYan, Zheng 	}
509a22285a6SYan, Zheng 
510a22285a6SYan, Zheng 	ret = btrfs_snap_reserve_metadata(trans, pending_snapshot);
511a22285a6SYan, Zheng 	BUG_ON(ret);
512a22285a6SYan, Zheng 
5138351583eSJosef Bacik 	spin_lock(&root->fs_info->trans_lock);
514a22285a6SYan, Zheng 	list_add(&pending_snapshot->list,
515a22285a6SYan, Zheng 		 &trans->transaction->pending_snapshots);
5168351583eSJosef Bacik 	spin_unlock(&root->fs_info->trans_lock);
51772fd032eSSage Weil 	if (async_transid) {
51872fd032eSSage Weil 		*async_transid = trans->transid;
51972fd032eSSage Weil 		ret = btrfs_commit_transaction_async(trans,
52072fd032eSSage Weil 				     root->fs_info->extent_root, 1);
52172fd032eSSage Weil 	} else {
52272fd032eSSage Weil 		ret = btrfs_commit_transaction(trans,
52372fd032eSSage Weil 					       root->fs_info->extent_root);
52472fd032eSSage Weil 	}
525a22285a6SYan, Zheng 	BUG_ON(ret);
526a22285a6SYan, Zheng 
527a22285a6SYan, Zheng 	ret = pending_snapshot->error;
528f46b5a66SChristoph Hellwig 	if (ret)
5292e4bfab9SYan, Zheng 		goto fail;
530f46b5a66SChristoph Hellwig 
53166b4ffd1SJosef Bacik 	ret = btrfs_orphan_cleanup(pending_snapshot->snap);
53266b4ffd1SJosef Bacik 	if (ret)
53366b4ffd1SJosef Bacik 		goto fail;
534f46b5a66SChristoph Hellwig 
5352fbe8c8aSAl Viro 	inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
5362e4bfab9SYan, Zheng 	if (IS_ERR(inode)) {
5372e4bfab9SYan, Zheng 		ret = PTR_ERR(inode);
5382e4bfab9SYan, Zheng 		goto fail;
5392e4bfab9SYan, Zheng 	}
5402e4bfab9SYan, Zheng 	BUG_ON(!inode);
5412e4bfab9SYan, Zheng 	d_instantiate(dentry, inode);
5422e4bfab9SYan, Zheng 	ret = 0;
5432e4bfab9SYan, Zheng fail:
544a22285a6SYan, Zheng 	kfree(pending_snapshot);
545f46b5a66SChristoph Hellwig 	return ret;
546f46b5a66SChristoph Hellwig }
547f46b5a66SChristoph Hellwig 
5484260f7c7SSage Weil /*  copy of check_sticky in fs/namei.c()
5494260f7c7SSage Weil * It's inline, so penalty for filesystems that don't use sticky bit is
5504260f7c7SSage Weil * minimal.
5514260f7c7SSage Weil */
5524260f7c7SSage Weil static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
5534260f7c7SSage Weil {
5544260f7c7SSage Weil 	uid_t fsuid = current_fsuid();
5554260f7c7SSage Weil 
5564260f7c7SSage Weil 	if (!(dir->i_mode & S_ISVTX))
5574260f7c7SSage Weil 		return 0;
5584260f7c7SSage Weil 	if (inode->i_uid == fsuid)
5594260f7c7SSage Weil 		return 0;
5604260f7c7SSage Weil 	if (dir->i_uid == fsuid)
5614260f7c7SSage Weil 		return 0;
5624260f7c7SSage Weil 	return !capable(CAP_FOWNER);
5634260f7c7SSage Weil }
5644260f7c7SSage Weil 
5654260f7c7SSage Weil /*  copy of may_delete in fs/namei.c()
5664260f7c7SSage Weil  *	Check whether we can remove a link victim from directory dir, check
5674260f7c7SSage Weil  *  whether the type of victim is right.
5684260f7c7SSage Weil  *  1. We can't do it if dir is read-only (done in permission())
5694260f7c7SSage Weil  *  2. We should have write and exec permissions on dir
5704260f7c7SSage Weil  *  3. We can't remove anything from append-only dir
5714260f7c7SSage Weil  *  4. We can't do anything with immutable dir (done in permission())
5724260f7c7SSage Weil  *  5. If the sticky bit on dir is set we should either
5734260f7c7SSage Weil  *	a. be owner of dir, or
5744260f7c7SSage Weil  *	b. be owner of victim, or
5754260f7c7SSage Weil  *	c. have CAP_FOWNER capability
5764260f7c7SSage Weil  *  6. If the victim is append-only or immutable we can't do antyhing with
5774260f7c7SSage Weil  *     links pointing to it.
5784260f7c7SSage Weil  *  7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
5794260f7c7SSage Weil  *  8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
5804260f7c7SSage Weil  *  9. We can't remove a root or mountpoint.
5814260f7c7SSage Weil  * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
5824260f7c7SSage Weil  *     nfs_async_unlink().
5834260f7c7SSage Weil  */
5844260f7c7SSage Weil 
5854260f7c7SSage Weil static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
5864260f7c7SSage Weil {
5874260f7c7SSage Weil 	int error;
5884260f7c7SSage Weil 
5894260f7c7SSage Weil 	if (!victim->d_inode)
5904260f7c7SSage Weil 		return -ENOENT;
5914260f7c7SSage Weil 
5924260f7c7SSage Weil 	BUG_ON(victim->d_parent->d_inode != dir);
5934260f7c7SSage Weil 	audit_inode_child(victim, dir);
5944260f7c7SSage Weil 
5954260f7c7SSage Weil 	error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
5964260f7c7SSage Weil 	if (error)
5974260f7c7SSage Weil 		return error;
5984260f7c7SSage Weil 	if (IS_APPEND(dir))
5994260f7c7SSage Weil 		return -EPERM;
6004260f7c7SSage Weil 	if (btrfs_check_sticky(dir, victim->d_inode)||
6014260f7c7SSage Weil 		IS_APPEND(victim->d_inode)||
6024260f7c7SSage Weil 	    IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
6034260f7c7SSage Weil 		return -EPERM;
6044260f7c7SSage Weil 	if (isdir) {
6054260f7c7SSage Weil 		if (!S_ISDIR(victim->d_inode->i_mode))
6064260f7c7SSage Weil 			return -ENOTDIR;
6074260f7c7SSage Weil 		if (IS_ROOT(victim))
6084260f7c7SSage Weil 			return -EBUSY;
6094260f7c7SSage Weil 	} else if (S_ISDIR(victim->d_inode->i_mode))
6104260f7c7SSage Weil 		return -EISDIR;
6114260f7c7SSage Weil 	if (IS_DEADDIR(dir))
6124260f7c7SSage Weil 		return -ENOENT;
6134260f7c7SSage Weil 	if (victim->d_flags & DCACHE_NFSFS_RENAMED)
6144260f7c7SSage Weil 		return -EBUSY;
6154260f7c7SSage Weil 	return 0;
6164260f7c7SSage Weil }
6174260f7c7SSage Weil 
618cb8e7090SChristoph Hellwig /* copy of may_create in fs/namei.c() */
619cb8e7090SChristoph Hellwig static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
620cb8e7090SChristoph Hellwig {
621cb8e7090SChristoph Hellwig 	if (child->d_inode)
622cb8e7090SChristoph Hellwig 		return -EEXIST;
623cb8e7090SChristoph Hellwig 	if (IS_DEADDIR(dir))
624cb8e7090SChristoph Hellwig 		return -ENOENT;
625cb8e7090SChristoph Hellwig 	return inode_permission(dir, MAY_WRITE | MAY_EXEC);
626cb8e7090SChristoph Hellwig }
627cb8e7090SChristoph Hellwig 
628cb8e7090SChristoph Hellwig /*
629cb8e7090SChristoph Hellwig  * Create a new subvolume below @parent.  This is largely modeled after
630cb8e7090SChristoph Hellwig  * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
631cb8e7090SChristoph Hellwig  * inside this filesystem so it's quite a bit simpler.
632cb8e7090SChristoph Hellwig  */
63376dda93cSYan, Zheng static noinline int btrfs_mksubvol(struct path *parent,
63476dda93cSYan, Zheng 				   char *name, int namelen,
63572fd032eSSage Weil 				   struct btrfs_root *snap_src,
636b83cc969SLi Zefan 				   u64 *async_transid, bool readonly)
637cb8e7090SChristoph Hellwig {
63876dda93cSYan, Zheng 	struct inode *dir  = parent->dentry->d_inode;
639cb8e7090SChristoph Hellwig 	struct dentry *dentry;
640cb8e7090SChristoph Hellwig 	int error;
641cb8e7090SChristoph Hellwig 
64276dda93cSYan, Zheng 	mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
643cb8e7090SChristoph Hellwig 
644cb8e7090SChristoph Hellwig 	dentry = lookup_one_len(name, parent->dentry, namelen);
645cb8e7090SChristoph Hellwig 	error = PTR_ERR(dentry);
646cb8e7090SChristoph Hellwig 	if (IS_ERR(dentry))
647cb8e7090SChristoph Hellwig 		goto out_unlock;
648cb8e7090SChristoph Hellwig 
649cb8e7090SChristoph Hellwig 	error = -EEXIST;
650cb8e7090SChristoph Hellwig 	if (dentry->d_inode)
651cb8e7090SChristoph Hellwig 		goto out_dput;
652cb8e7090SChristoph Hellwig 
653cb8e7090SChristoph Hellwig 	error = mnt_want_write(parent->mnt);
654cb8e7090SChristoph Hellwig 	if (error)
655cb8e7090SChristoph Hellwig 		goto out_dput;
656cb8e7090SChristoph Hellwig 
65776dda93cSYan, Zheng 	error = btrfs_may_create(dir, dentry);
658cb8e7090SChristoph Hellwig 	if (error)
659cb8e7090SChristoph Hellwig 		goto out_drop_write;
660cb8e7090SChristoph Hellwig 
66176dda93cSYan, Zheng 	down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
66276dda93cSYan, Zheng 
66376dda93cSYan, Zheng 	if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
66476dda93cSYan, Zheng 		goto out_up_read;
66576dda93cSYan, Zheng 
6663de4586cSChris Mason 	if (snap_src) {
66772fd032eSSage Weil 		error = create_snapshot(snap_src, dentry,
668b83cc969SLi Zefan 					name, namelen, async_transid, readonly);
6693de4586cSChris Mason 	} else {
67076dda93cSYan, Zheng 		error = create_subvol(BTRFS_I(dir)->root, dentry,
67172fd032eSSage Weil 				      name, namelen, async_transid);
6723de4586cSChris Mason 	}
67376dda93cSYan, Zheng 	if (!error)
67476dda93cSYan, Zheng 		fsnotify_mkdir(dir, dentry);
67576dda93cSYan, Zheng out_up_read:
67676dda93cSYan, Zheng 	up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
677cb8e7090SChristoph Hellwig out_drop_write:
678cb8e7090SChristoph Hellwig 	mnt_drop_write(parent->mnt);
679cb8e7090SChristoph Hellwig out_dput:
680cb8e7090SChristoph Hellwig 	dput(dentry);
681cb8e7090SChristoph Hellwig out_unlock:
68276dda93cSYan, Zheng 	mutex_unlock(&dir->i_mutex);
683cb8e7090SChristoph Hellwig 	return error;
684cb8e7090SChristoph Hellwig }
685cb8e7090SChristoph Hellwig 
6864cb5300bSChris Mason /*
6874cb5300bSChris Mason  * When we're defragging a range, we don't want to kick it off again
6884cb5300bSChris Mason  * if it is really just waiting for delalloc to send it down.
6894cb5300bSChris Mason  * If we find a nice big extent or delalloc range for the bytes in the
6904cb5300bSChris Mason  * file you want to defrag, we return 0 to let you know to skip this
6914cb5300bSChris Mason  * part of the file
6924cb5300bSChris Mason  */
6934cb5300bSChris Mason static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
6944cb5300bSChris Mason {
6954cb5300bSChris Mason 	struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
6964cb5300bSChris Mason 	struct extent_map *em = NULL;
6974cb5300bSChris Mason 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
6984cb5300bSChris Mason 	u64 end;
6994cb5300bSChris Mason 
7004cb5300bSChris Mason 	read_lock(&em_tree->lock);
7014cb5300bSChris Mason 	em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
7024cb5300bSChris Mason 	read_unlock(&em_tree->lock);
7034cb5300bSChris Mason 
7044cb5300bSChris Mason 	if (em) {
7054cb5300bSChris Mason 		end = extent_map_end(em);
7064cb5300bSChris Mason 		free_extent_map(em);
7074cb5300bSChris Mason 		if (end - offset > thresh)
7084cb5300bSChris Mason 			return 0;
7094cb5300bSChris Mason 	}
7104cb5300bSChris Mason 	/* if we already have a nice delalloc here, just stop */
7114cb5300bSChris Mason 	thresh /= 2;
7124cb5300bSChris Mason 	end = count_range_bits(io_tree, &offset, offset + thresh,
7134cb5300bSChris Mason 			       thresh, EXTENT_DELALLOC, 1);
7144cb5300bSChris Mason 	if (end >= thresh)
7154cb5300bSChris Mason 		return 0;
7164cb5300bSChris Mason 	return 1;
7174cb5300bSChris Mason }
7184cb5300bSChris Mason 
7194cb5300bSChris Mason /*
7204cb5300bSChris Mason  * helper function to walk through a file and find extents
7214cb5300bSChris Mason  * newer than a specific transid, and smaller than thresh.
7224cb5300bSChris Mason  *
7234cb5300bSChris Mason  * This is used by the defragging code to find new and small
7244cb5300bSChris Mason  * extents
7254cb5300bSChris Mason  */
7264cb5300bSChris Mason static int find_new_extents(struct btrfs_root *root,
7274cb5300bSChris Mason 			    struct inode *inode, u64 newer_than,
7284cb5300bSChris Mason 			    u64 *off, int thresh)
7294cb5300bSChris Mason {
7304cb5300bSChris Mason 	struct btrfs_path *path;
7314cb5300bSChris Mason 	struct btrfs_key min_key;
7324cb5300bSChris Mason 	struct btrfs_key max_key;
7334cb5300bSChris Mason 	struct extent_buffer *leaf;
7344cb5300bSChris Mason 	struct btrfs_file_extent_item *extent;
7354cb5300bSChris Mason 	int type;
7364cb5300bSChris Mason 	int ret;
737a4689d2bSDavid Sterba 	u64 ino = btrfs_ino(inode);
7384cb5300bSChris Mason 
7394cb5300bSChris Mason 	path = btrfs_alloc_path();
7404cb5300bSChris Mason 	if (!path)
7414cb5300bSChris Mason 		return -ENOMEM;
7424cb5300bSChris Mason 
743a4689d2bSDavid Sterba 	min_key.objectid = ino;
7444cb5300bSChris Mason 	min_key.type = BTRFS_EXTENT_DATA_KEY;
7454cb5300bSChris Mason 	min_key.offset = *off;
7464cb5300bSChris Mason 
747a4689d2bSDavid Sterba 	max_key.objectid = ino;
7484cb5300bSChris Mason 	max_key.type = (u8)-1;
7494cb5300bSChris Mason 	max_key.offset = (u64)-1;
7504cb5300bSChris Mason 
7514cb5300bSChris Mason 	path->keep_locks = 1;
7524cb5300bSChris Mason 
7534cb5300bSChris Mason 	while(1) {
7544cb5300bSChris Mason 		ret = btrfs_search_forward(root, &min_key, &max_key,
7554cb5300bSChris Mason 					   path, 0, newer_than);
7564cb5300bSChris Mason 		if (ret != 0)
7574cb5300bSChris Mason 			goto none;
758a4689d2bSDavid Sterba 		if (min_key.objectid != ino)
7594cb5300bSChris Mason 			goto none;
7604cb5300bSChris Mason 		if (min_key.type != BTRFS_EXTENT_DATA_KEY)
7614cb5300bSChris Mason 			goto none;
7624cb5300bSChris Mason 
7634cb5300bSChris Mason 		leaf = path->nodes[0];
7644cb5300bSChris Mason 		extent = btrfs_item_ptr(leaf, path->slots[0],
7654cb5300bSChris Mason 					struct btrfs_file_extent_item);
7664cb5300bSChris Mason 
7674cb5300bSChris Mason 		type = btrfs_file_extent_type(leaf, extent);
7684cb5300bSChris Mason 		if (type == BTRFS_FILE_EXTENT_REG &&
7694cb5300bSChris Mason 		    btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
7704cb5300bSChris Mason 		    check_defrag_in_cache(inode, min_key.offset, thresh)) {
7714cb5300bSChris Mason 			*off = min_key.offset;
7724cb5300bSChris Mason 			btrfs_free_path(path);
7734cb5300bSChris Mason 			return 0;
7744cb5300bSChris Mason 		}
7754cb5300bSChris Mason 
7764cb5300bSChris Mason 		if (min_key.offset == (u64)-1)
7774cb5300bSChris Mason 			goto none;
7784cb5300bSChris Mason 
7794cb5300bSChris Mason 		min_key.offset++;
7804cb5300bSChris Mason 		btrfs_release_path(path);
7814cb5300bSChris Mason 	}
7824cb5300bSChris Mason none:
7834cb5300bSChris Mason 	btrfs_free_path(path);
7844cb5300bSChris Mason 	return -ENOENT;
7854cb5300bSChris Mason }
7864cb5300bSChris Mason 
78717ce6ef8SLiu Bo /*
78817ce6ef8SLiu Bo  * Validaty check of prev em and next em:
78917ce6ef8SLiu Bo  * 1) no prev/next em
79017ce6ef8SLiu Bo  * 2) prev/next em is an hole/inline extent
79117ce6ef8SLiu Bo  */
79217ce6ef8SLiu Bo static int check_adjacent_extents(struct inode *inode, struct extent_map *em)
79317ce6ef8SLiu Bo {
79417ce6ef8SLiu Bo 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
79517ce6ef8SLiu Bo 	struct extent_map *prev = NULL, *next = NULL;
79617ce6ef8SLiu Bo 	int ret = 0;
79717ce6ef8SLiu Bo 
79817ce6ef8SLiu Bo 	read_lock(&em_tree->lock);
79917ce6ef8SLiu Bo 	prev = lookup_extent_mapping(em_tree, em->start - 1, (u64)-1);
80017ce6ef8SLiu Bo 	next = lookup_extent_mapping(em_tree, em->start + em->len, (u64)-1);
80117ce6ef8SLiu Bo 	read_unlock(&em_tree->lock);
80217ce6ef8SLiu Bo 
80317ce6ef8SLiu Bo 	if ((!prev || prev->block_start >= EXTENT_MAP_LAST_BYTE) &&
80417ce6ef8SLiu Bo 	    (!next || next->block_start >= EXTENT_MAP_LAST_BYTE))
80517ce6ef8SLiu Bo 		ret = 1;
80617ce6ef8SLiu Bo 	free_extent_map(prev);
80717ce6ef8SLiu Bo 	free_extent_map(next);
80817ce6ef8SLiu Bo 
80917ce6ef8SLiu Bo 	return ret;
81017ce6ef8SLiu Bo }
81117ce6ef8SLiu Bo 
812940100a4SChris Mason static int should_defrag_range(struct inode *inode, u64 start, u64 len,
8131e701a32SChris Mason 			       int thresh, u64 *last_len, u64 *skip,
8141e701a32SChris Mason 			       u64 *defrag_end)
815940100a4SChris Mason {
816940100a4SChris Mason 	struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
817940100a4SChris Mason 	struct extent_map *em = NULL;
818940100a4SChris Mason 	struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
819940100a4SChris Mason 	int ret = 1;
820940100a4SChris Mason 
821940100a4SChris Mason 	/*
822008873eaSLi Zefan 	 * make sure that once we start defragging an extent, we keep on
823940100a4SChris Mason 	 * defragging it
824940100a4SChris Mason 	 */
825940100a4SChris Mason 	if (start < *defrag_end)
826940100a4SChris Mason 		return 1;
827940100a4SChris Mason 
828940100a4SChris Mason 	*skip = 0;
829940100a4SChris Mason 
830940100a4SChris Mason 	/*
831940100a4SChris Mason 	 * hopefully we have this extent in the tree already, try without
832940100a4SChris Mason 	 * the full extent lock
833940100a4SChris Mason 	 */
834940100a4SChris Mason 	read_lock(&em_tree->lock);
835940100a4SChris Mason 	em = lookup_extent_mapping(em_tree, start, len);
836940100a4SChris Mason 	read_unlock(&em_tree->lock);
837940100a4SChris Mason 
838940100a4SChris Mason 	if (!em) {
839940100a4SChris Mason 		/* get the big lock and read metadata off disk */
840d0082371SJeff Mahoney 		lock_extent(io_tree, start, start + len - 1);
841940100a4SChris Mason 		em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
842d0082371SJeff Mahoney 		unlock_extent(io_tree, start, start + len - 1);
843940100a4SChris Mason 
8446cf8bfbfSDan Carpenter 		if (IS_ERR(em))
845940100a4SChris Mason 			return 0;
846940100a4SChris Mason 	}
847940100a4SChris Mason 
848940100a4SChris Mason 	/* this will cover holes, and inline extents */
84917ce6ef8SLiu Bo 	if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
850940100a4SChris Mason 		ret = 0;
85117ce6ef8SLiu Bo 		goto out;
85217ce6ef8SLiu Bo 	}
85317ce6ef8SLiu Bo 
85417ce6ef8SLiu Bo 	/* If we have nothing to merge with us, just skip. */
85517ce6ef8SLiu Bo 	if (check_adjacent_extents(inode, em)) {
85617ce6ef8SLiu Bo 		ret = 0;
85717ce6ef8SLiu Bo 		goto out;
85817ce6ef8SLiu Bo 	}
859940100a4SChris Mason 
860940100a4SChris Mason 	/*
861940100a4SChris Mason 	 * we hit a real extent, if it is big don't bother defragging it again
862940100a4SChris Mason 	 */
8631e701a32SChris Mason 	if ((*last_len == 0 || *last_len >= thresh) && em->len >= thresh)
864940100a4SChris Mason 		ret = 0;
865940100a4SChris Mason 
86617ce6ef8SLiu Bo out:
867940100a4SChris Mason 	/*
868940100a4SChris Mason 	 * last_len ends up being a counter of how many bytes we've defragged.
869940100a4SChris Mason 	 * every time we choose not to defrag an extent, we reset *last_len
870940100a4SChris Mason 	 * so that the next tiny extent will force a defrag.
871940100a4SChris Mason 	 *
872940100a4SChris Mason 	 * The end result of this is that tiny extents before a single big
873940100a4SChris Mason 	 * extent will force at least part of that big extent to be defragged.
874940100a4SChris Mason 	 */
875940100a4SChris Mason 	if (ret) {
876940100a4SChris Mason 		*defrag_end = extent_map_end(em);
877940100a4SChris Mason 	} else {
878940100a4SChris Mason 		*last_len = 0;
879940100a4SChris Mason 		*skip = extent_map_end(em);
880940100a4SChris Mason 		*defrag_end = 0;
881940100a4SChris Mason 	}
882940100a4SChris Mason 
883940100a4SChris Mason 	free_extent_map(em);
884940100a4SChris Mason 	return ret;
885940100a4SChris Mason }
886940100a4SChris Mason 
8874cb5300bSChris Mason /*
8884cb5300bSChris Mason  * it doesn't do much good to defrag one or two pages
8894cb5300bSChris Mason  * at a time.  This pulls in a nice chunk of pages
8904cb5300bSChris Mason  * to COW and defrag.
8914cb5300bSChris Mason  *
8924cb5300bSChris Mason  * It also makes sure the delalloc code has enough
8934cb5300bSChris Mason  * dirty data to avoid making new small extents as part
8944cb5300bSChris Mason  * of the defrag
8954cb5300bSChris Mason  *
8964cb5300bSChris Mason  * It's a good idea to start RA on this range
8974cb5300bSChris Mason  * before calling this.
8984cb5300bSChris Mason  */
8994cb5300bSChris Mason static int cluster_pages_for_defrag(struct inode *inode,
9004cb5300bSChris Mason 				    struct page **pages,
9014cb5300bSChris Mason 				    unsigned long start_index,
9024cb5300bSChris Mason 				    int num_pages)
903f46b5a66SChristoph Hellwig {
9044cb5300bSChris Mason 	unsigned long file_end;
9054cb5300bSChris Mason 	u64 isize = i_size_read(inode);
906f46b5a66SChristoph Hellwig 	u64 page_start;
907f46b5a66SChristoph Hellwig 	u64 page_end;
9081f12bd06SLiu Bo 	u64 page_cnt;
9094cb5300bSChris Mason 	int ret;
9104cb5300bSChris Mason 	int i;
9114cb5300bSChris Mason 	int i_done;
9124cb5300bSChris Mason 	struct btrfs_ordered_extent *ordered;
9134cb5300bSChris Mason 	struct extent_state *cached_state = NULL;
914600a45e1SMiao Xie 	struct extent_io_tree *tree;
9153b16a4e3SJosef Bacik 	gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
9164cb5300bSChris Mason 
9174cb5300bSChris Mason 	file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
9181f12bd06SLiu Bo 	if (!isize || start_index > file_end)
9191f12bd06SLiu Bo 		return 0;
9201f12bd06SLiu Bo 
9211f12bd06SLiu Bo 	page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
9224cb5300bSChris Mason 
9234cb5300bSChris Mason 	ret = btrfs_delalloc_reserve_space(inode,
9241f12bd06SLiu Bo 					   page_cnt << PAGE_CACHE_SHIFT);
9254cb5300bSChris Mason 	if (ret)
9264cb5300bSChris Mason 		return ret;
9274cb5300bSChris Mason 	i_done = 0;
928600a45e1SMiao Xie 	tree = &BTRFS_I(inode)->io_tree;
9294cb5300bSChris Mason 
9304cb5300bSChris Mason 	/* step one, lock all the pages */
9311f12bd06SLiu Bo 	for (i = 0; i < page_cnt; i++) {
9324cb5300bSChris Mason 		struct page *page;
933600a45e1SMiao Xie again:
934a94733d0SJosef Bacik 		page = find_or_create_page(inode->i_mapping,
9353b16a4e3SJosef Bacik 					   start_index + i, mask);
9364cb5300bSChris Mason 		if (!page)
9374cb5300bSChris Mason 			break;
9384cb5300bSChris Mason 
939600a45e1SMiao Xie 		page_start = page_offset(page);
940600a45e1SMiao Xie 		page_end = page_start + PAGE_CACHE_SIZE - 1;
941600a45e1SMiao Xie 		while (1) {
942d0082371SJeff Mahoney 			lock_extent(tree, page_start, page_end);
943600a45e1SMiao Xie 			ordered = btrfs_lookup_ordered_extent(inode,
944600a45e1SMiao Xie 							      page_start);
945d0082371SJeff Mahoney 			unlock_extent(tree, page_start, page_end);
946600a45e1SMiao Xie 			if (!ordered)
947600a45e1SMiao Xie 				break;
948600a45e1SMiao Xie 
949600a45e1SMiao Xie 			unlock_page(page);
950600a45e1SMiao Xie 			btrfs_start_ordered_extent(inode, ordered, 1);
951600a45e1SMiao Xie 			btrfs_put_ordered_extent(ordered);
952600a45e1SMiao Xie 			lock_page(page);
9531f12bd06SLiu Bo 			/*
9541f12bd06SLiu Bo 			 * we unlocked the page above, so we need check if
9551f12bd06SLiu Bo 			 * it was released or not.
9561f12bd06SLiu Bo 			 */
9571f12bd06SLiu Bo 			if (page->mapping != inode->i_mapping) {
9581f12bd06SLiu Bo 				unlock_page(page);
9591f12bd06SLiu Bo 				page_cache_release(page);
9601f12bd06SLiu Bo 				goto again;
9611f12bd06SLiu Bo 			}
962600a45e1SMiao Xie 		}
963600a45e1SMiao Xie 
9644cb5300bSChris Mason 		if (!PageUptodate(page)) {
9654cb5300bSChris Mason 			btrfs_readpage(NULL, page);
9664cb5300bSChris Mason 			lock_page(page);
9674cb5300bSChris Mason 			if (!PageUptodate(page)) {
9684cb5300bSChris Mason 				unlock_page(page);
9694cb5300bSChris Mason 				page_cache_release(page);
9704cb5300bSChris Mason 				ret = -EIO;
9714cb5300bSChris Mason 				break;
9724cb5300bSChris Mason 			}
9734cb5300bSChris Mason 		}
974600a45e1SMiao Xie 
975600a45e1SMiao Xie 		if (page->mapping != inode->i_mapping) {
976600a45e1SMiao Xie 			unlock_page(page);
977600a45e1SMiao Xie 			page_cache_release(page);
978600a45e1SMiao Xie 			goto again;
979600a45e1SMiao Xie 		}
980600a45e1SMiao Xie 
9814cb5300bSChris Mason 		pages[i] = page;
9824cb5300bSChris Mason 		i_done++;
9834cb5300bSChris Mason 	}
9844cb5300bSChris Mason 	if (!i_done || ret)
9854cb5300bSChris Mason 		goto out;
9864cb5300bSChris Mason 
9874cb5300bSChris Mason 	if (!(inode->i_sb->s_flags & MS_ACTIVE))
9884cb5300bSChris Mason 		goto out;
9894cb5300bSChris Mason 
9904cb5300bSChris Mason 	/*
9914cb5300bSChris Mason 	 * so now we have a nice long stream of locked
9924cb5300bSChris Mason 	 * and up to date pages, lets wait on them
9934cb5300bSChris Mason 	 */
9944cb5300bSChris Mason 	for (i = 0; i < i_done; i++)
9954cb5300bSChris Mason 		wait_on_page_writeback(pages[i]);
9964cb5300bSChris Mason 
9974cb5300bSChris Mason 	page_start = page_offset(pages[0]);
9984cb5300bSChris Mason 	page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
9994cb5300bSChris Mason 
10004cb5300bSChris Mason 	lock_extent_bits(&BTRFS_I(inode)->io_tree,
1001d0082371SJeff Mahoney 			 page_start, page_end - 1, 0, &cached_state);
10024cb5300bSChris Mason 	clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
10034cb5300bSChris Mason 			  page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
10044cb5300bSChris Mason 			  EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
10054cb5300bSChris Mason 			  GFP_NOFS);
10064cb5300bSChris Mason 
10071f12bd06SLiu Bo 	if (i_done != page_cnt) {
10089e0baf60SJosef Bacik 		spin_lock(&BTRFS_I(inode)->lock);
10099e0baf60SJosef Bacik 		BTRFS_I(inode)->outstanding_extents++;
10109e0baf60SJosef Bacik 		spin_unlock(&BTRFS_I(inode)->lock);
10114cb5300bSChris Mason 		btrfs_delalloc_release_space(inode,
10121f12bd06SLiu Bo 				     (page_cnt - i_done) << PAGE_CACHE_SHIFT);
10134cb5300bSChris Mason 	}
10144cb5300bSChris Mason 
10154cb5300bSChris Mason 
10164cb5300bSChris Mason 	btrfs_set_extent_delalloc(inode, page_start, page_end - 1,
10174cb5300bSChris Mason 				  &cached_state);
10184cb5300bSChris Mason 
10194cb5300bSChris Mason 	unlock_extent_cached(&BTRFS_I(inode)->io_tree,
10204cb5300bSChris Mason 			     page_start, page_end - 1, &cached_state,
10214cb5300bSChris Mason 			     GFP_NOFS);
10224cb5300bSChris Mason 
10234cb5300bSChris Mason 	for (i = 0; i < i_done; i++) {
10244cb5300bSChris Mason 		clear_page_dirty_for_io(pages[i]);
10254cb5300bSChris Mason 		ClearPageChecked(pages[i]);
10264cb5300bSChris Mason 		set_page_extent_mapped(pages[i]);
10274cb5300bSChris Mason 		set_page_dirty(pages[i]);
10284cb5300bSChris Mason 		unlock_page(pages[i]);
10294cb5300bSChris Mason 		page_cache_release(pages[i]);
10304cb5300bSChris Mason 	}
10314cb5300bSChris Mason 	return i_done;
10324cb5300bSChris Mason out:
10334cb5300bSChris Mason 	for (i = 0; i < i_done; i++) {
10344cb5300bSChris Mason 		unlock_page(pages[i]);
10354cb5300bSChris Mason 		page_cache_release(pages[i]);
10364cb5300bSChris Mason 	}
10371f12bd06SLiu Bo 	btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
10384cb5300bSChris Mason 	return ret;
10394cb5300bSChris Mason 
10404cb5300bSChris Mason }
10414cb5300bSChris Mason 
10424cb5300bSChris Mason int btrfs_defrag_file(struct inode *inode, struct file *file,
10434cb5300bSChris Mason 		      struct btrfs_ioctl_defrag_range_args *range,
10444cb5300bSChris Mason 		      u64 newer_than, unsigned long max_to_defrag)
10454cb5300bSChris Mason {
10464cb5300bSChris Mason 	struct btrfs_root *root = BTRFS_I(inode)->root;
10474cb5300bSChris Mason 	struct btrfs_super_block *disk_super;
10484cb5300bSChris Mason 	struct file_ra_state *ra = NULL;
10494cb5300bSChris Mason 	unsigned long last_index;
1050151a31b2SLi Zefan 	u64 isize = i_size_read(inode);
10514cb5300bSChris Mason 	u64 features;
1052940100a4SChris Mason 	u64 last_len = 0;
1053940100a4SChris Mason 	u64 skip = 0;
1054940100a4SChris Mason 	u64 defrag_end = 0;
10554cb5300bSChris Mason 	u64 newer_off = range->start;
1056f46b5a66SChristoph Hellwig 	unsigned long i;
1057008873eaSLi Zefan 	unsigned long ra_index = 0;
1058f46b5a66SChristoph Hellwig 	int ret;
10594cb5300bSChris Mason 	int defrag_count = 0;
10601a419d85SLi Zefan 	int compress_type = BTRFS_COMPRESS_ZLIB;
10614cb5300bSChris Mason 	int extent_thresh = range->extent_thresh;
1062008873eaSLi Zefan 	int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1063008873eaSLi Zefan 	int cluster = max_cluster;
10644cb5300bSChris Mason 	u64 new_align = ~((u64)128 * 1024 - 1);
10654cb5300bSChris Mason 	struct page **pages = NULL;
10664cb5300bSChris Mason 
10674cb5300bSChris Mason 	if (extent_thresh == 0)
10684cb5300bSChris Mason 		extent_thresh = 256 * 1024;
10691a419d85SLi Zefan 
10701a419d85SLi Zefan 	if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
10711a419d85SLi Zefan 		if (range->compress_type > BTRFS_COMPRESS_TYPES)
10721a419d85SLi Zefan 			return -EINVAL;
10731a419d85SLi Zefan 		if (range->compress_type)
10741a419d85SLi Zefan 			compress_type = range->compress_type;
10751a419d85SLi Zefan 	}
1076f46b5a66SChristoph Hellwig 
1077151a31b2SLi Zefan 	if (isize == 0)
1078940100a4SChris Mason 		return 0;
1079f46b5a66SChristoph Hellwig 
10804cb5300bSChris Mason 	/*
10814cb5300bSChris Mason 	 * if we were not given a file, allocate a readahead
10824cb5300bSChris Mason 	 * context
10834cb5300bSChris Mason 	 */
10844cb5300bSChris Mason 	if (!file) {
10854cb5300bSChris Mason 		ra = kzalloc(sizeof(*ra), GFP_NOFS);
10864cb5300bSChris Mason 		if (!ra)
10874cb5300bSChris Mason 			return -ENOMEM;
10884cb5300bSChris Mason 		file_ra_state_init(ra, inode->i_mapping);
10894cb5300bSChris Mason 	} else {
10904cb5300bSChris Mason 		ra = &file->f_ra;
10914cb5300bSChris Mason 	}
10924cb5300bSChris Mason 
1093008873eaSLi Zefan 	pages = kmalloc(sizeof(struct page *) * max_cluster,
10944cb5300bSChris Mason 			GFP_NOFS);
10954cb5300bSChris Mason 	if (!pages) {
10964cb5300bSChris Mason 		ret = -ENOMEM;
10974cb5300bSChris Mason 		goto out_ra;
10984cb5300bSChris Mason 	}
10994cb5300bSChris Mason 
11004cb5300bSChris Mason 	/* find the last page to defrag */
11011e701a32SChris Mason 	if (range->start + range->len > range->start) {
1102151a31b2SLi Zefan 		last_index = min_t(u64, isize - 1,
11031e701a32SChris Mason 			 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
11041e701a32SChris Mason 	} else {
1105151a31b2SLi Zefan 		last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
11061e701a32SChris Mason 	}
11071e701a32SChris Mason 
11084cb5300bSChris Mason 	if (newer_than) {
11094cb5300bSChris Mason 		ret = find_new_extents(root, inode, newer_than,
11104cb5300bSChris Mason 				       &newer_off, 64 * 1024);
11114cb5300bSChris Mason 		if (!ret) {
11124cb5300bSChris Mason 			range->start = newer_off;
11134cb5300bSChris Mason 			/*
11144cb5300bSChris Mason 			 * we always align our defrag to help keep
11154cb5300bSChris Mason 			 * the extents in the file evenly spaced
11164cb5300bSChris Mason 			 */
11174cb5300bSChris Mason 			i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
11184cb5300bSChris Mason 		} else
11194cb5300bSChris Mason 			goto out_ra;
11204cb5300bSChris Mason 	} else {
11211e701a32SChris Mason 		i = range->start >> PAGE_CACHE_SHIFT;
11224cb5300bSChris Mason 	}
11234cb5300bSChris Mason 	if (!max_to_defrag)
11247ec31b54SLiu Bo 		max_to_defrag = last_index + 1;
11254cb5300bSChris Mason 
11262a0f7f57SLi Zefan 	/*
11272a0f7f57SLi Zefan 	 * make writeback starts from i, so the defrag range can be
11282a0f7f57SLi Zefan 	 * written sequentially.
11292a0f7f57SLi Zefan 	 */
11302a0f7f57SLi Zefan 	if (i < inode->i_mapping->writeback_index)
11312a0f7f57SLi Zefan 		inode->i_mapping->writeback_index = i;
11322a0f7f57SLi Zefan 
1133f7f43cc8SChris Mason 	while (i <= last_index && defrag_count < max_to_defrag &&
1134f7f43cc8SChris Mason 	       (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1135f7f43cc8SChris Mason 		PAGE_CACHE_SHIFT)) {
11364cb5300bSChris Mason 		/*
11374cb5300bSChris Mason 		 * make sure we stop running if someone unmounts
11384cb5300bSChris Mason 		 * the FS
11394cb5300bSChris Mason 		 */
11404cb5300bSChris Mason 		if (!(inode->i_sb->s_flags & MS_ACTIVE))
11414cb5300bSChris Mason 			break;
11424cb5300bSChris Mason 
114366c26892SLiu Bo 		if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
114466c26892SLiu Bo 					 PAGE_CACHE_SIZE, extent_thresh,
114566c26892SLiu Bo 					 &last_len, &skip, &defrag_end)) {
1146940100a4SChris Mason 			unsigned long next;
1147940100a4SChris Mason 			/*
1148940100a4SChris Mason 			 * the should_defrag function tells us how much to skip
1149940100a4SChris Mason 			 * bump our counter by the suggested amount
1150940100a4SChris Mason 			 */
1151940100a4SChris Mason 			next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1152940100a4SChris Mason 			i = max(i + 1, next);
1153940100a4SChris Mason 			continue;
1154940100a4SChris Mason 		}
1155008873eaSLi Zefan 
1156008873eaSLi Zefan 		if (!newer_than) {
1157008873eaSLi Zefan 			cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1158008873eaSLi Zefan 				   PAGE_CACHE_SHIFT) - i;
1159008873eaSLi Zefan 			cluster = min(cluster, max_cluster);
1160008873eaSLi Zefan 		} else {
1161008873eaSLi Zefan 			cluster = max_cluster;
1162008873eaSLi Zefan 		}
1163008873eaSLi Zefan 
11641e701a32SChris Mason 		if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
11651a419d85SLi Zefan 			BTRFS_I(inode)->force_compress = compress_type;
1166940100a4SChris Mason 
1167008873eaSLi Zefan 		if (i + cluster > ra_index) {
1168008873eaSLi Zefan 			ra_index = max(i, ra_index);
1169008873eaSLi Zefan 			btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1170008873eaSLi Zefan 				       cluster);
1171008873eaSLi Zefan 			ra_index += max_cluster;
1172008873eaSLi Zefan 		}
11734cb5300bSChris Mason 
1174ecb8bea8SLiu Bo 		mutex_lock(&inode->i_mutex);
1175008873eaSLi Zefan 		ret = cluster_pages_for_defrag(inode, pages, i, cluster);
1176ecb8bea8SLiu Bo 		if (ret < 0) {
1177ecb8bea8SLiu Bo 			mutex_unlock(&inode->i_mutex);
11784cb5300bSChris Mason 			goto out_ra;
1179ecb8bea8SLiu Bo 		}
11804cb5300bSChris Mason 
11814cb5300bSChris Mason 		defrag_count += ret;
11824cb5300bSChris Mason 		balance_dirty_pages_ratelimited_nr(inode->i_mapping, ret);
1183ecb8bea8SLiu Bo 		mutex_unlock(&inode->i_mutex);
11844cb5300bSChris Mason 
11854cb5300bSChris Mason 		if (newer_than) {
11864cb5300bSChris Mason 			if (newer_off == (u64)-1)
11874cb5300bSChris Mason 				break;
11884cb5300bSChris Mason 
1189e1f041e1SLiu Bo 			if (ret > 0)
1190e1f041e1SLiu Bo 				i += ret;
1191e1f041e1SLiu Bo 
11924cb5300bSChris Mason 			newer_off = max(newer_off + 1,
11934cb5300bSChris Mason 					(u64)i << PAGE_CACHE_SHIFT);
11944cb5300bSChris Mason 
11954cb5300bSChris Mason 			ret = find_new_extents(root, inode,
11964cb5300bSChris Mason 					       newer_than, &newer_off,
11974cb5300bSChris Mason 					       64 * 1024);
11984cb5300bSChris Mason 			if (!ret) {
11994cb5300bSChris Mason 				range->start = newer_off;
12004cb5300bSChris Mason 				i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
12014cb5300bSChris Mason 			} else {
12024cb5300bSChris Mason 				break;
1203940100a4SChris Mason 			}
12044cb5300bSChris Mason 		} else {
1205008873eaSLi Zefan 			if (ret > 0) {
1206cbcc8326SLi Zefan 				i += ret;
1207008873eaSLi Zefan 				last_len += ret << PAGE_CACHE_SHIFT;
1208008873eaSLi Zefan 			} else {
1209940100a4SChris Mason 				i++;
1210008873eaSLi Zefan 				last_len = 0;
1211008873eaSLi Zefan 			}
1212f46b5a66SChristoph Hellwig 		}
12134cb5300bSChris Mason 	}
1214f46b5a66SChristoph Hellwig 
12151e701a32SChris Mason 	if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
12161e701a32SChris Mason 		filemap_flush(inode->i_mapping);
12171e701a32SChris Mason 
12181e701a32SChris Mason 	if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
12191e701a32SChris Mason 		/* the filemap_flush will queue IO into the worker threads, but
12201e701a32SChris Mason 		 * we have to make sure the IO is actually started and that
12211e701a32SChris Mason 		 * ordered extents get created before we return
12221e701a32SChris Mason 		 */
12231e701a32SChris Mason 		atomic_inc(&root->fs_info->async_submit_draining);
12241e701a32SChris Mason 		while (atomic_read(&root->fs_info->nr_async_submits) ||
12251e701a32SChris Mason 		      atomic_read(&root->fs_info->async_delalloc_pages)) {
12261e701a32SChris Mason 			wait_event(root->fs_info->async_submit_wait,
12271e701a32SChris Mason 			   (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
12281e701a32SChris Mason 			    atomic_read(&root->fs_info->async_delalloc_pages) == 0));
12291e701a32SChris Mason 		}
12301e701a32SChris Mason 		atomic_dec(&root->fs_info->async_submit_draining);
12311e701a32SChris Mason 
12321e701a32SChris Mason 		mutex_lock(&inode->i_mutex);
1233261507a0SLi Zefan 		BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
12341e701a32SChris Mason 		mutex_unlock(&inode->i_mutex);
12351e701a32SChris Mason 	}
12361e701a32SChris Mason 
12376c41761fSDavid Sterba 	disk_super = root->fs_info->super_copy;
12381a419d85SLi Zefan 	features = btrfs_super_incompat_flags(disk_super);
12391a419d85SLi Zefan 	if (range->compress_type == BTRFS_COMPRESS_LZO) {
12401a419d85SLi Zefan 		features |= BTRFS_FEATURE_INCOMPAT_COMPRESS_LZO;
12411a419d85SLi Zefan 		btrfs_set_super_incompat_flags(disk_super, features);
12421a419d85SLi Zefan 	}
12431a419d85SLi Zefan 
124460ccf82fSDiego Calleja 	ret = defrag_count;
1245940100a4SChris Mason 
12464cb5300bSChris Mason out_ra:
12474cb5300bSChris Mason 	if (!file)
12484cb5300bSChris Mason 		kfree(ra);
12494cb5300bSChris Mason 	kfree(pages);
1250940100a4SChris Mason 	return ret;
1251f46b5a66SChristoph Hellwig }
1252f46b5a66SChristoph Hellwig 
125376dda93cSYan, Zheng static noinline int btrfs_ioctl_resize(struct btrfs_root *root,
125476dda93cSYan, Zheng 					void __user *arg)
1255f46b5a66SChristoph Hellwig {
1256f46b5a66SChristoph Hellwig 	u64 new_size;
1257f46b5a66SChristoph Hellwig 	u64 old_size;
1258f46b5a66SChristoph Hellwig 	u64 devid = 1;
1259f46b5a66SChristoph Hellwig 	struct btrfs_ioctl_vol_args *vol_args;
1260f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
1261f46b5a66SChristoph Hellwig 	struct btrfs_device *device = NULL;
1262f46b5a66SChristoph Hellwig 	char *sizestr;
1263f46b5a66SChristoph Hellwig 	char *devstr = NULL;
1264f46b5a66SChristoph Hellwig 	int ret = 0;
1265f46b5a66SChristoph Hellwig 	int mod = 0;
1266f46b5a66SChristoph Hellwig 
1267c146afadSYan Zheng 	if (root->fs_info->sb->s_flags & MS_RDONLY)
1268c146afadSYan Zheng 		return -EROFS;
1269c146afadSYan Zheng 
1270e441d54dSChris Mason 	if (!capable(CAP_SYS_ADMIN))
1271e441d54dSChris Mason 		return -EPERM;
1272e441d54dSChris Mason 
1273c9e9f97bSIlya Dryomov 	mutex_lock(&root->fs_info->volume_mutex);
1274c9e9f97bSIlya Dryomov 	if (root->fs_info->balance_ctl) {
1275c9e9f97bSIlya Dryomov 		printk(KERN_INFO "btrfs: balance in progress\n");
1276c9e9f97bSIlya Dryomov 		ret = -EINVAL;
1277c9e9f97bSIlya Dryomov 		goto out;
1278c9e9f97bSIlya Dryomov 	}
1279c9e9f97bSIlya Dryomov 
1280dae7b665SLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
1281c9e9f97bSIlya Dryomov 	if (IS_ERR(vol_args)) {
1282c9e9f97bSIlya Dryomov 		ret = PTR_ERR(vol_args);
1283c9e9f97bSIlya Dryomov 		goto out;
1284c9e9f97bSIlya Dryomov 	}
12855516e595SMark Fasheh 
12865516e595SMark Fasheh 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1287f46b5a66SChristoph Hellwig 
1288f46b5a66SChristoph Hellwig 	sizestr = vol_args->name;
1289f46b5a66SChristoph Hellwig 	devstr = strchr(sizestr, ':');
1290f46b5a66SChristoph Hellwig 	if (devstr) {
1291f46b5a66SChristoph Hellwig 		char *end;
1292f46b5a66SChristoph Hellwig 		sizestr = devstr + 1;
1293f46b5a66SChristoph Hellwig 		*devstr = '\0';
1294f46b5a66SChristoph Hellwig 		devstr = vol_args->name;
1295f46b5a66SChristoph Hellwig 		devid = simple_strtoull(devstr, &end, 10);
12965bb14682SArnd Hannemann 		printk(KERN_INFO "btrfs: resizing devid %llu\n",
129721380931SJoel Becker 		       (unsigned long long)devid);
1298f46b5a66SChristoph Hellwig 	}
12992b82032cSYan Zheng 	device = btrfs_find_device(root, devid, NULL, NULL);
1300f46b5a66SChristoph Hellwig 	if (!device) {
13015bb14682SArnd Hannemann 		printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
130221380931SJoel Becker 		       (unsigned long long)devid);
1303f46b5a66SChristoph Hellwig 		ret = -EINVAL;
1304c9e9f97bSIlya Dryomov 		goto out_free;
1305f46b5a66SChristoph Hellwig 	}
1306f46b5a66SChristoph Hellwig 	if (!strcmp(sizestr, "max"))
1307f46b5a66SChristoph Hellwig 		new_size = device->bdev->bd_inode->i_size;
1308f46b5a66SChristoph Hellwig 	else {
1309f46b5a66SChristoph Hellwig 		if (sizestr[0] == '-') {
1310f46b5a66SChristoph Hellwig 			mod = -1;
1311f46b5a66SChristoph Hellwig 			sizestr++;
1312f46b5a66SChristoph Hellwig 		} else if (sizestr[0] == '+') {
1313f46b5a66SChristoph Hellwig 			mod = 1;
1314f46b5a66SChristoph Hellwig 			sizestr++;
1315f46b5a66SChristoph Hellwig 		}
131691748467SAkinobu Mita 		new_size = memparse(sizestr, NULL);
1317f46b5a66SChristoph Hellwig 		if (new_size == 0) {
1318f46b5a66SChristoph Hellwig 			ret = -EINVAL;
1319c9e9f97bSIlya Dryomov 			goto out_free;
1320f46b5a66SChristoph Hellwig 		}
1321f46b5a66SChristoph Hellwig 	}
1322f46b5a66SChristoph Hellwig 
1323f46b5a66SChristoph Hellwig 	old_size = device->total_bytes;
1324f46b5a66SChristoph Hellwig 
1325f46b5a66SChristoph Hellwig 	if (mod < 0) {
1326f46b5a66SChristoph Hellwig 		if (new_size > old_size) {
1327f46b5a66SChristoph Hellwig 			ret = -EINVAL;
1328c9e9f97bSIlya Dryomov 			goto out_free;
1329f46b5a66SChristoph Hellwig 		}
1330f46b5a66SChristoph Hellwig 		new_size = old_size - new_size;
1331f46b5a66SChristoph Hellwig 	} else if (mod > 0) {
1332f46b5a66SChristoph Hellwig 		new_size = old_size + new_size;
1333f46b5a66SChristoph Hellwig 	}
1334f46b5a66SChristoph Hellwig 
1335f46b5a66SChristoph Hellwig 	if (new_size < 256 * 1024 * 1024) {
1336f46b5a66SChristoph Hellwig 		ret = -EINVAL;
1337c9e9f97bSIlya Dryomov 		goto out_free;
1338f46b5a66SChristoph Hellwig 	}
1339f46b5a66SChristoph Hellwig 	if (new_size > device->bdev->bd_inode->i_size) {
1340f46b5a66SChristoph Hellwig 		ret = -EFBIG;
1341c9e9f97bSIlya Dryomov 		goto out_free;
1342f46b5a66SChristoph Hellwig 	}
1343f46b5a66SChristoph Hellwig 
1344f46b5a66SChristoph Hellwig 	do_div(new_size, root->sectorsize);
1345f46b5a66SChristoph Hellwig 	new_size *= root->sectorsize;
1346f46b5a66SChristoph Hellwig 
13475bb14682SArnd Hannemann 	printk(KERN_INFO "btrfs: new size for %s is %llu\n",
1348f46b5a66SChristoph Hellwig 		device->name, (unsigned long long)new_size);
1349f46b5a66SChristoph Hellwig 
1350f46b5a66SChristoph Hellwig 	if (new_size > old_size) {
1351a22285a6SYan, Zheng 		trans = btrfs_start_transaction(root, 0);
135298d5dc13STsutomu Itoh 		if (IS_ERR(trans)) {
135398d5dc13STsutomu Itoh 			ret = PTR_ERR(trans);
1354c9e9f97bSIlya Dryomov 			goto out_free;
135598d5dc13STsutomu Itoh 		}
1356f46b5a66SChristoph Hellwig 		ret = btrfs_grow_device(trans, device, new_size);
1357f46b5a66SChristoph Hellwig 		btrfs_commit_transaction(trans, root);
1358ece7d20eSMike Fleetwood 	} else if (new_size < old_size) {
1359f46b5a66SChristoph Hellwig 		ret = btrfs_shrink_device(device, new_size);
1360f46b5a66SChristoph Hellwig 	}
1361f46b5a66SChristoph Hellwig 
1362c9e9f97bSIlya Dryomov out_free:
1363f46b5a66SChristoph Hellwig 	kfree(vol_args);
1364c9e9f97bSIlya Dryomov out:
1365c9e9f97bSIlya Dryomov 	mutex_unlock(&root->fs_info->volume_mutex);
1366f46b5a66SChristoph Hellwig 	return ret;
1367f46b5a66SChristoph Hellwig }
1368f46b5a66SChristoph Hellwig 
136972fd032eSSage Weil static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
137072fd032eSSage Weil 						    char *name,
137172fd032eSSage Weil 						    unsigned long fd,
137272fd032eSSage Weil 						    int subvol,
1373b83cc969SLi Zefan 						    u64 *transid,
1374b83cc969SLi Zefan 						    bool readonly)
1375f46b5a66SChristoph Hellwig {
1376cb8e7090SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
13773de4586cSChris Mason 	struct file *src_file;
1378f46b5a66SChristoph Hellwig 	int namelen;
13793de4586cSChris Mason 	int ret = 0;
1380f46b5a66SChristoph Hellwig 
1381c146afadSYan Zheng 	if (root->fs_info->sb->s_flags & MS_RDONLY)
1382c146afadSYan Zheng 		return -EROFS;
1383c146afadSYan Zheng 
138472fd032eSSage Weil 	namelen = strlen(name);
138572fd032eSSage Weil 	if (strchr(name, '/')) {
1386f46b5a66SChristoph Hellwig 		ret = -EINVAL;
1387f46b5a66SChristoph Hellwig 		goto out;
1388f46b5a66SChristoph Hellwig 	}
1389f46b5a66SChristoph Hellwig 
139016780cabSChris Mason 	if (name[0] == '.' &&
139116780cabSChris Mason 	   (namelen == 1 || (name[1] == '.' && namelen == 2))) {
139216780cabSChris Mason 		ret = -EEXIST;
139316780cabSChris Mason 		goto out;
139416780cabSChris Mason 	}
139516780cabSChris Mason 
13963de4586cSChris Mason 	if (subvol) {
139772fd032eSSage Weil 		ret = btrfs_mksubvol(&file->f_path, name, namelen,
1398b83cc969SLi Zefan 				     NULL, transid, readonly);
1399cb8e7090SChristoph Hellwig 	} else {
14003de4586cSChris Mason 		struct inode *src_inode;
140172fd032eSSage Weil 		src_file = fget(fd);
14023de4586cSChris Mason 		if (!src_file) {
14033de4586cSChris Mason 			ret = -EINVAL;
14043de4586cSChris Mason 			goto out;
14053de4586cSChris Mason 		}
14063de4586cSChris Mason 
14073de4586cSChris Mason 		src_inode = src_file->f_path.dentry->d_inode;
14083de4586cSChris Mason 		if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
1409d397712bSChris Mason 			printk(KERN_INFO "btrfs: Snapshot src from "
1410d397712bSChris Mason 			       "another FS\n");
14113de4586cSChris Mason 			ret = -EINVAL;
14123de4586cSChris Mason 			fput(src_file);
14133de4586cSChris Mason 			goto out;
14143de4586cSChris Mason 		}
141572fd032eSSage Weil 		ret = btrfs_mksubvol(&file->f_path, name, namelen,
141672fd032eSSage Weil 				     BTRFS_I(src_inode)->root,
1417b83cc969SLi Zefan 				     transid, readonly);
14183de4586cSChris Mason 		fput(src_file);
1419cb8e7090SChristoph Hellwig 	}
1420f46b5a66SChristoph Hellwig out:
142172fd032eSSage Weil 	return ret;
142272fd032eSSage Weil }
142372fd032eSSage Weil 
142472fd032eSSage Weil static noinline int btrfs_ioctl_snap_create(struct file *file,
1425fa0d2b9bSLi Zefan 					    void __user *arg, int subvol)
142672fd032eSSage Weil {
1427fa0d2b9bSLi Zefan 	struct btrfs_ioctl_vol_args *vol_args;
142872fd032eSSage Weil 	int ret;
142972fd032eSSage Weil 
1430fa0d2b9bSLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
1431fa0d2b9bSLi Zefan 	if (IS_ERR(vol_args))
1432fa0d2b9bSLi Zefan 		return PTR_ERR(vol_args);
1433fa0d2b9bSLi Zefan 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1434fa0d2b9bSLi Zefan 
1435fa0d2b9bSLi Zefan 	ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
1436b83cc969SLi Zefan 					      vol_args->fd, subvol,
1437b83cc969SLi Zefan 					      NULL, false);
1438fa0d2b9bSLi Zefan 
1439fa0d2b9bSLi Zefan 	kfree(vol_args);
1440fa0d2b9bSLi Zefan 	return ret;
1441fa0d2b9bSLi Zefan }
1442fa0d2b9bSLi Zefan 
1443fa0d2b9bSLi Zefan static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1444fa0d2b9bSLi Zefan 					       void __user *arg, int subvol)
1445fa0d2b9bSLi Zefan {
1446fa0d2b9bSLi Zefan 	struct btrfs_ioctl_vol_args_v2 *vol_args;
1447fa0d2b9bSLi Zefan 	int ret;
1448fdfb1e4fSLi Zefan 	u64 transid = 0;
1449fdfb1e4fSLi Zefan 	u64 *ptr = NULL;
1450b83cc969SLi Zefan 	bool readonly = false;
145172fd032eSSage Weil 
1452fa0d2b9bSLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
1453fa0d2b9bSLi Zefan 	if (IS_ERR(vol_args))
1454fa0d2b9bSLi Zefan 		return PTR_ERR(vol_args);
1455fa0d2b9bSLi Zefan 	vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
1456fdfb1e4fSLi Zefan 
1457b83cc969SLi Zefan 	if (vol_args->flags &
1458b83cc969SLi Zefan 	    ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY)) {
1459b83cc969SLi Zefan 		ret = -EOPNOTSUPP;
1460fdfb1e4fSLi Zefan 		goto out;
1461fdfb1e4fSLi Zefan 	}
1462fdfb1e4fSLi Zefan 
1463fa0d2b9bSLi Zefan 	if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1464fdfb1e4fSLi Zefan 		ptr = &transid;
1465b83cc969SLi Zefan 	if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1466b83cc969SLi Zefan 		readonly = true;
146775eaa0e2SSage Weil 
1468fa0d2b9bSLi Zefan 	ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
1469b83cc969SLi Zefan 					      vol_args->fd, subvol,
1470b83cc969SLi Zefan 					      ptr, readonly);
147175eaa0e2SSage Weil 
1472fdfb1e4fSLi Zefan 	if (ret == 0 && ptr &&
147375eaa0e2SSage Weil 	    copy_to_user(arg +
1474fdfb1e4fSLi Zefan 			 offsetof(struct btrfs_ioctl_vol_args_v2,
1475fdfb1e4fSLi Zefan 				  transid), ptr, sizeof(*ptr)))
147675eaa0e2SSage Weil 		ret = -EFAULT;
1477fdfb1e4fSLi Zefan out:
1478f46b5a66SChristoph Hellwig 	kfree(vol_args);
1479f46b5a66SChristoph Hellwig 	return ret;
1480f46b5a66SChristoph Hellwig }
1481f46b5a66SChristoph Hellwig 
14820caa102dSLi Zefan static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
14830caa102dSLi Zefan 						void __user *arg)
14840caa102dSLi Zefan {
14850caa102dSLi Zefan 	struct inode *inode = fdentry(file)->d_inode;
14860caa102dSLi Zefan 	struct btrfs_root *root = BTRFS_I(inode)->root;
14870caa102dSLi Zefan 	int ret = 0;
14880caa102dSLi Zefan 	u64 flags = 0;
14890caa102dSLi Zefan 
149033345d01SLi Zefan 	if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
14910caa102dSLi Zefan 		return -EINVAL;
14920caa102dSLi Zefan 
14930caa102dSLi Zefan 	down_read(&root->fs_info->subvol_sem);
14940caa102dSLi Zefan 	if (btrfs_root_readonly(root))
14950caa102dSLi Zefan 		flags |= BTRFS_SUBVOL_RDONLY;
14960caa102dSLi Zefan 	up_read(&root->fs_info->subvol_sem);
14970caa102dSLi Zefan 
14980caa102dSLi Zefan 	if (copy_to_user(arg, &flags, sizeof(flags)))
14990caa102dSLi Zefan 		ret = -EFAULT;
15000caa102dSLi Zefan 
15010caa102dSLi Zefan 	return ret;
15020caa102dSLi Zefan }
15030caa102dSLi Zefan 
15040caa102dSLi Zefan static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
15050caa102dSLi Zefan 					      void __user *arg)
15060caa102dSLi Zefan {
15070caa102dSLi Zefan 	struct inode *inode = fdentry(file)->d_inode;
15080caa102dSLi Zefan 	struct btrfs_root *root = BTRFS_I(inode)->root;
15090caa102dSLi Zefan 	struct btrfs_trans_handle *trans;
15100caa102dSLi Zefan 	u64 root_flags;
15110caa102dSLi Zefan 	u64 flags;
15120caa102dSLi Zefan 	int ret = 0;
15130caa102dSLi Zefan 
15140caa102dSLi Zefan 	if (root->fs_info->sb->s_flags & MS_RDONLY)
15150caa102dSLi Zefan 		return -EROFS;
15160caa102dSLi Zefan 
151733345d01SLi Zefan 	if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
15180caa102dSLi Zefan 		return -EINVAL;
15190caa102dSLi Zefan 
15200caa102dSLi Zefan 	if (copy_from_user(&flags, arg, sizeof(flags)))
15210caa102dSLi Zefan 		return -EFAULT;
15220caa102dSLi Zefan 
1523b4dc2b8cSLi Zefan 	if (flags & BTRFS_SUBVOL_CREATE_ASYNC)
15240caa102dSLi Zefan 		return -EINVAL;
15250caa102dSLi Zefan 
15260caa102dSLi Zefan 	if (flags & ~BTRFS_SUBVOL_RDONLY)
15270caa102dSLi Zefan 		return -EOPNOTSUPP;
15280caa102dSLi Zefan 
15292e149670SSerge E. Hallyn 	if (!inode_owner_or_capable(inode))
1530b4dc2b8cSLi Zefan 		return -EACCES;
1531b4dc2b8cSLi Zefan 
15320caa102dSLi Zefan 	down_write(&root->fs_info->subvol_sem);
15330caa102dSLi Zefan 
15340caa102dSLi Zefan 	/* nothing to do */
15350caa102dSLi Zefan 	if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
15360caa102dSLi Zefan 		goto out;
15370caa102dSLi Zefan 
15380caa102dSLi Zefan 	root_flags = btrfs_root_flags(&root->root_item);
15390caa102dSLi Zefan 	if (flags & BTRFS_SUBVOL_RDONLY)
15400caa102dSLi Zefan 		btrfs_set_root_flags(&root->root_item,
15410caa102dSLi Zefan 				     root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
15420caa102dSLi Zefan 	else
15430caa102dSLi Zefan 		btrfs_set_root_flags(&root->root_item,
15440caa102dSLi Zefan 				     root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
15450caa102dSLi Zefan 
15460caa102dSLi Zefan 	trans = btrfs_start_transaction(root, 1);
15470caa102dSLi Zefan 	if (IS_ERR(trans)) {
15480caa102dSLi Zefan 		ret = PTR_ERR(trans);
15490caa102dSLi Zefan 		goto out_reset;
15500caa102dSLi Zefan 	}
15510caa102dSLi Zefan 
1552b4dc2b8cSLi Zefan 	ret = btrfs_update_root(trans, root->fs_info->tree_root,
15530caa102dSLi Zefan 				&root->root_key, &root->root_item);
15540caa102dSLi Zefan 
15550caa102dSLi Zefan 	btrfs_commit_transaction(trans, root);
15560caa102dSLi Zefan out_reset:
15570caa102dSLi Zefan 	if (ret)
15580caa102dSLi Zefan 		btrfs_set_root_flags(&root->root_item, root_flags);
15590caa102dSLi Zefan out:
15600caa102dSLi Zefan 	up_write(&root->fs_info->subvol_sem);
15610caa102dSLi Zefan 	return ret;
15620caa102dSLi Zefan }
15630caa102dSLi Zefan 
156476dda93cSYan, Zheng /*
156576dda93cSYan, Zheng  * helper to check if the subvolume references other subvolumes
156676dda93cSYan, Zheng  */
156776dda93cSYan, Zheng static noinline int may_destroy_subvol(struct btrfs_root *root)
156876dda93cSYan, Zheng {
156976dda93cSYan, Zheng 	struct btrfs_path *path;
157076dda93cSYan, Zheng 	struct btrfs_key key;
157176dda93cSYan, Zheng 	int ret;
157276dda93cSYan, Zheng 
157376dda93cSYan, Zheng 	path = btrfs_alloc_path();
157476dda93cSYan, Zheng 	if (!path)
157576dda93cSYan, Zheng 		return -ENOMEM;
157676dda93cSYan, Zheng 
157776dda93cSYan, Zheng 	key.objectid = root->root_key.objectid;
157876dda93cSYan, Zheng 	key.type = BTRFS_ROOT_REF_KEY;
157976dda93cSYan, Zheng 	key.offset = (u64)-1;
158076dda93cSYan, Zheng 
158176dda93cSYan, Zheng 	ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
158276dda93cSYan, Zheng 				&key, path, 0, 0);
158376dda93cSYan, Zheng 	if (ret < 0)
158476dda93cSYan, Zheng 		goto out;
158576dda93cSYan, Zheng 	BUG_ON(ret == 0);
158676dda93cSYan, Zheng 
158776dda93cSYan, Zheng 	ret = 0;
158876dda93cSYan, Zheng 	if (path->slots[0] > 0) {
158976dda93cSYan, Zheng 		path->slots[0]--;
159076dda93cSYan, Zheng 		btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
159176dda93cSYan, Zheng 		if (key.objectid == root->root_key.objectid &&
159276dda93cSYan, Zheng 		    key.type == BTRFS_ROOT_REF_KEY)
159376dda93cSYan, Zheng 			ret = -ENOTEMPTY;
159476dda93cSYan, Zheng 	}
159576dda93cSYan, Zheng out:
159676dda93cSYan, Zheng 	btrfs_free_path(path);
159776dda93cSYan, Zheng 	return ret;
159876dda93cSYan, Zheng }
159976dda93cSYan, Zheng 
1600ac8e9819SChris Mason static noinline int key_in_sk(struct btrfs_key *key,
1601ac8e9819SChris Mason 			      struct btrfs_ioctl_search_key *sk)
1602ac8e9819SChris Mason {
1603abc6e134SChris Mason 	struct btrfs_key test;
1604abc6e134SChris Mason 	int ret;
1605abc6e134SChris Mason 
1606abc6e134SChris Mason 	test.objectid = sk->min_objectid;
1607abc6e134SChris Mason 	test.type = sk->min_type;
1608abc6e134SChris Mason 	test.offset = sk->min_offset;
1609abc6e134SChris Mason 
1610abc6e134SChris Mason 	ret = btrfs_comp_cpu_keys(key, &test);
1611abc6e134SChris Mason 	if (ret < 0)
1612ac8e9819SChris Mason 		return 0;
1613abc6e134SChris Mason 
1614abc6e134SChris Mason 	test.objectid = sk->max_objectid;
1615abc6e134SChris Mason 	test.type = sk->max_type;
1616abc6e134SChris Mason 	test.offset = sk->max_offset;
1617abc6e134SChris Mason 
1618abc6e134SChris Mason 	ret = btrfs_comp_cpu_keys(key, &test);
1619abc6e134SChris Mason 	if (ret > 0)
1620ac8e9819SChris Mason 		return 0;
1621ac8e9819SChris Mason 	return 1;
1622ac8e9819SChris Mason }
1623ac8e9819SChris Mason 
1624ac8e9819SChris Mason static noinline int copy_to_sk(struct btrfs_root *root,
1625ac8e9819SChris Mason 			       struct btrfs_path *path,
1626ac8e9819SChris Mason 			       struct btrfs_key *key,
1627ac8e9819SChris Mason 			       struct btrfs_ioctl_search_key *sk,
1628ac8e9819SChris Mason 			       char *buf,
1629ac8e9819SChris Mason 			       unsigned long *sk_offset,
1630ac8e9819SChris Mason 			       int *num_found)
1631ac8e9819SChris Mason {
1632ac8e9819SChris Mason 	u64 found_transid;
1633ac8e9819SChris Mason 	struct extent_buffer *leaf;
1634ac8e9819SChris Mason 	struct btrfs_ioctl_search_header sh;
1635ac8e9819SChris Mason 	unsigned long item_off;
1636ac8e9819SChris Mason 	unsigned long item_len;
1637ac8e9819SChris Mason 	int nritems;
1638ac8e9819SChris Mason 	int i;
1639ac8e9819SChris Mason 	int slot;
1640ac8e9819SChris Mason 	int ret = 0;
1641ac8e9819SChris Mason 
1642ac8e9819SChris Mason 	leaf = path->nodes[0];
1643ac8e9819SChris Mason 	slot = path->slots[0];
1644ac8e9819SChris Mason 	nritems = btrfs_header_nritems(leaf);
1645ac8e9819SChris Mason 
1646ac8e9819SChris Mason 	if (btrfs_header_generation(leaf) > sk->max_transid) {
1647ac8e9819SChris Mason 		i = nritems;
1648ac8e9819SChris Mason 		goto advance_key;
1649ac8e9819SChris Mason 	}
1650ac8e9819SChris Mason 	found_transid = btrfs_header_generation(leaf);
1651ac8e9819SChris Mason 
1652ac8e9819SChris Mason 	for (i = slot; i < nritems; i++) {
1653ac8e9819SChris Mason 		item_off = btrfs_item_ptr_offset(leaf, i);
1654ac8e9819SChris Mason 		item_len = btrfs_item_size_nr(leaf, i);
1655ac8e9819SChris Mason 
1656ac8e9819SChris Mason 		if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1657ac8e9819SChris Mason 			item_len = 0;
1658ac8e9819SChris Mason 
1659ac8e9819SChris Mason 		if (sizeof(sh) + item_len + *sk_offset >
1660ac8e9819SChris Mason 		    BTRFS_SEARCH_ARGS_BUFSIZE) {
1661ac8e9819SChris Mason 			ret = 1;
1662ac8e9819SChris Mason 			goto overflow;
1663ac8e9819SChris Mason 		}
1664ac8e9819SChris Mason 
1665ac8e9819SChris Mason 		btrfs_item_key_to_cpu(leaf, key, i);
1666ac8e9819SChris Mason 		if (!key_in_sk(key, sk))
1667ac8e9819SChris Mason 			continue;
1668ac8e9819SChris Mason 
1669ac8e9819SChris Mason 		sh.objectid = key->objectid;
1670ac8e9819SChris Mason 		sh.offset = key->offset;
1671ac8e9819SChris Mason 		sh.type = key->type;
1672ac8e9819SChris Mason 		sh.len = item_len;
1673ac8e9819SChris Mason 		sh.transid = found_transid;
1674ac8e9819SChris Mason 
1675ac8e9819SChris Mason 		/* copy search result header */
1676ac8e9819SChris Mason 		memcpy(buf + *sk_offset, &sh, sizeof(sh));
1677ac8e9819SChris Mason 		*sk_offset += sizeof(sh);
1678ac8e9819SChris Mason 
1679ac8e9819SChris Mason 		if (item_len) {
1680ac8e9819SChris Mason 			char *p = buf + *sk_offset;
1681ac8e9819SChris Mason 			/* copy the item */
1682ac8e9819SChris Mason 			read_extent_buffer(leaf, p,
1683ac8e9819SChris Mason 					   item_off, item_len);
1684ac8e9819SChris Mason 			*sk_offset += item_len;
1685ac8e9819SChris Mason 		}
1686e2156867SHugo Mills 		(*num_found)++;
1687ac8e9819SChris Mason 
1688ac8e9819SChris Mason 		if (*num_found >= sk->nr_items)
1689ac8e9819SChris Mason 			break;
1690ac8e9819SChris Mason 	}
1691ac8e9819SChris Mason advance_key:
1692ac8e9819SChris Mason 	ret = 0;
1693abc6e134SChris Mason 	if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1694abc6e134SChris Mason 		key->offset++;
1695abc6e134SChris Mason 	else if (key->type < (u8)-1 && key->type < sk->max_type) {
1696abc6e134SChris Mason 		key->offset = 0;
1697abc6e134SChris Mason 		key->type++;
1698abc6e134SChris Mason 	} else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1699abc6e134SChris Mason 		key->offset = 0;
1700abc6e134SChris Mason 		key->type = 0;
1701abc6e134SChris Mason 		key->objectid++;
1702abc6e134SChris Mason 	} else
1703abc6e134SChris Mason 		ret = 1;
1704ac8e9819SChris Mason overflow:
1705ac8e9819SChris Mason 	return ret;
1706ac8e9819SChris Mason }
1707ac8e9819SChris Mason 
1708ac8e9819SChris Mason static noinline int search_ioctl(struct inode *inode,
1709ac8e9819SChris Mason 				 struct btrfs_ioctl_search_args *args)
1710ac8e9819SChris Mason {
1711ac8e9819SChris Mason 	struct btrfs_root *root;
1712ac8e9819SChris Mason 	struct btrfs_key key;
1713ac8e9819SChris Mason 	struct btrfs_key max_key;
1714ac8e9819SChris Mason 	struct btrfs_path *path;
1715ac8e9819SChris Mason 	struct btrfs_ioctl_search_key *sk = &args->key;
1716ac8e9819SChris Mason 	struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1717ac8e9819SChris Mason 	int ret;
1718ac8e9819SChris Mason 	int num_found = 0;
1719ac8e9819SChris Mason 	unsigned long sk_offset = 0;
1720ac8e9819SChris Mason 
1721ac8e9819SChris Mason 	path = btrfs_alloc_path();
1722ac8e9819SChris Mason 	if (!path)
1723ac8e9819SChris Mason 		return -ENOMEM;
1724ac8e9819SChris Mason 
1725ac8e9819SChris Mason 	if (sk->tree_id == 0) {
1726ac8e9819SChris Mason 		/* search the root of the inode that was passed */
1727ac8e9819SChris Mason 		root = BTRFS_I(inode)->root;
1728ac8e9819SChris Mason 	} else {
1729ac8e9819SChris Mason 		key.objectid = sk->tree_id;
1730ac8e9819SChris Mason 		key.type = BTRFS_ROOT_ITEM_KEY;
1731ac8e9819SChris Mason 		key.offset = (u64)-1;
1732ac8e9819SChris Mason 		root = btrfs_read_fs_root_no_name(info, &key);
1733ac8e9819SChris Mason 		if (IS_ERR(root)) {
1734ac8e9819SChris Mason 			printk(KERN_ERR "could not find root %llu\n",
1735ac8e9819SChris Mason 			       sk->tree_id);
1736ac8e9819SChris Mason 			btrfs_free_path(path);
1737ac8e9819SChris Mason 			return -ENOENT;
1738ac8e9819SChris Mason 		}
1739ac8e9819SChris Mason 	}
1740ac8e9819SChris Mason 
1741ac8e9819SChris Mason 	key.objectid = sk->min_objectid;
1742ac8e9819SChris Mason 	key.type = sk->min_type;
1743ac8e9819SChris Mason 	key.offset = sk->min_offset;
1744ac8e9819SChris Mason 
1745ac8e9819SChris Mason 	max_key.objectid = sk->max_objectid;
1746ac8e9819SChris Mason 	max_key.type = sk->max_type;
1747ac8e9819SChris Mason 	max_key.offset = sk->max_offset;
1748ac8e9819SChris Mason 
1749ac8e9819SChris Mason 	path->keep_locks = 1;
1750ac8e9819SChris Mason 
1751ac8e9819SChris Mason 	while(1) {
1752ac8e9819SChris Mason 		ret = btrfs_search_forward(root, &key, &max_key, path, 0,
1753ac8e9819SChris Mason 					   sk->min_transid);
1754ac8e9819SChris Mason 		if (ret != 0) {
1755ac8e9819SChris Mason 			if (ret > 0)
1756ac8e9819SChris Mason 				ret = 0;
1757ac8e9819SChris Mason 			goto err;
1758ac8e9819SChris Mason 		}
1759ac8e9819SChris Mason 		ret = copy_to_sk(root, path, &key, sk, args->buf,
1760ac8e9819SChris Mason 				 &sk_offset, &num_found);
1761b3b4aa74SDavid Sterba 		btrfs_release_path(path);
1762ac8e9819SChris Mason 		if (ret || num_found >= sk->nr_items)
1763ac8e9819SChris Mason 			break;
1764ac8e9819SChris Mason 
1765ac8e9819SChris Mason 	}
1766ac8e9819SChris Mason 	ret = 0;
1767ac8e9819SChris Mason err:
1768ac8e9819SChris Mason 	sk->nr_items = num_found;
1769ac8e9819SChris Mason 	btrfs_free_path(path);
1770ac8e9819SChris Mason 	return ret;
1771ac8e9819SChris Mason }
1772ac8e9819SChris Mason 
1773ac8e9819SChris Mason static noinline int btrfs_ioctl_tree_search(struct file *file,
1774ac8e9819SChris Mason 					   void __user *argp)
1775ac8e9819SChris Mason {
1776ac8e9819SChris Mason 	 struct btrfs_ioctl_search_args *args;
1777ac8e9819SChris Mason 	 struct inode *inode;
1778ac8e9819SChris Mason 	 int ret;
1779ac8e9819SChris Mason 
1780ac8e9819SChris Mason 	if (!capable(CAP_SYS_ADMIN))
1781ac8e9819SChris Mason 		return -EPERM;
1782ac8e9819SChris Mason 
17832354d08fSJulia Lawall 	args = memdup_user(argp, sizeof(*args));
17842354d08fSJulia Lawall 	if (IS_ERR(args))
17852354d08fSJulia Lawall 		return PTR_ERR(args);
1786ac8e9819SChris Mason 
1787ac8e9819SChris Mason 	inode = fdentry(file)->d_inode;
1788ac8e9819SChris Mason 	ret = search_ioctl(inode, args);
1789ac8e9819SChris Mason 	if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1790ac8e9819SChris Mason 		ret = -EFAULT;
1791ac8e9819SChris Mason 	kfree(args);
1792ac8e9819SChris Mason 	return ret;
1793ac8e9819SChris Mason }
1794ac8e9819SChris Mason 
179598d377a0STARUISI Hiroaki /*
1796ac8e9819SChris Mason  * Search INODE_REFs to identify path name of 'dirid' directory
1797ac8e9819SChris Mason  * in a 'tree_id' tree. and sets path name to 'name'.
179898d377a0STARUISI Hiroaki  */
179998d377a0STARUISI Hiroaki static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
180098d377a0STARUISI Hiroaki 				u64 tree_id, u64 dirid, char *name)
180198d377a0STARUISI Hiroaki {
180298d377a0STARUISI Hiroaki 	struct btrfs_root *root;
180398d377a0STARUISI Hiroaki 	struct btrfs_key key;
1804ac8e9819SChris Mason 	char *ptr;
180598d377a0STARUISI Hiroaki 	int ret = -1;
180698d377a0STARUISI Hiroaki 	int slot;
180798d377a0STARUISI Hiroaki 	int len;
180898d377a0STARUISI Hiroaki 	int total_len = 0;
180998d377a0STARUISI Hiroaki 	struct btrfs_inode_ref *iref;
181098d377a0STARUISI Hiroaki 	struct extent_buffer *l;
181198d377a0STARUISI Hiroaki 	struct btrfs_path *path;
181298d377a0STARUISI Hiroaki 
181398d377a0STARUISI Hiroaki 	if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
181498d377a0STARUISI Hiroaki 		name[0]='\0';
181598d377a0STARUISI Hiroaki 		return 0;
181698d377a0STARUISI Hiroaki 	}
181798d377a0STARUISI Hiroaki 
181898d377a0STARUISI Hiroaki 	path = btrfs_alloc_path();
181998d377a0STARUISI Hiroaki 	if (!path)
182098d377a0STARUISI Hiroaki 		return -ENOMEM;
182198d377a0STARUISI Hiroaki 
1822ac8e9819SChris Mason 	ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
182398d377a0STARUISI Hiroaki 
182498d377a0STARUISI Hiroaki 	key.objectid = tree_id;
182598d377a0STARUISI Hiroaki 	key.type = BTRFS_ROOT_ITEM_KEY;
182698d377a0STARUISI Hiroaki 	key.offset = (u64)-1;
182798d377a0STARUISI Hiroaki 	root = btrfs_read_fs_root_no_name(info, &key);
182898d377a0STARUISI Hiroaki 	if (IS_ERR(root)) {
182998d377a0STARUISI Hiroaki 		printk(KERN_ERR "could not find root %llu\n", tree_id);
18308ad6fcabSChris Mason 		ret = -ENOENT;
18318ad6fcabSChris Mason 		goto out;
183298d377a0STARUISI Hiroaki 	}
183398d377a0STARUISI Hiroaki 
183498d377a0STARUISI Hiroaki 	key.objectid = dirid;
183598d377a0STARUISI Hiroaki 	key.type = BTRFS_INODE_REF_KEY;
18368ad6fcabSChris Mason 	key.offset = (u64)-1;
183798d377a0STARUISI Hiroaki 
183898d377a0STARUISI Hiroaki 	while(1) {
183998d377a0STARUISI Hiroaki 		ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
184098d377a0STARUISI Hiroaki 		if (ret < 0)
184198d377a0STARUISI Hiroaki 			goto out;
184298d377a0STARUISI Hiroaki 
184398d377a0STARUISI Hiroaki 		l = path->nodes[0];
184498d377a0STARUISI Hiroaki 		slot = path->slots[0];
18458ad6fcabSChris Mason 		if (ret > 0 && slot > 0)
18468ad6fcabSChris Mason 			slot--;
184798d377a0STARUISI Hiroaki 		btrfs_item_key_to_cpu(l, &key, slot);
184898d377a0STARUISI Hiroaki 
184998d377a0STARUISI Hiroaki 		if (ret > 0 && (key.objectid != dirid ||
1850ac8e9819SChris Mason 				key.type != BTRFS_INODE_REF_KEY)) {
1851ac8e9819SChris Mason 			ret = -ENOENT;
185298d377a0STARUISI Hiroaki 			goto out;
1853ac8e9819SChris Mason 		}
185498d377a0STARUISI Hiroaki 
185598d377a0STARUISI Hiroaki 		iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
185698d377a0STARUISI Hiroaki 		len = btrfs_inode_ref_name_len(l, iref);
185798d377a0STARUISI Hiroaki 		ptr -= len + 1;
185898d377a0STARUISI Hiroaki 		total_len += len + 1;
1859ac8e9819SChris Mason 		if (ptr < name)
186098d377a0STARUISI Hiroaki 			goto out;
186198d377a0STARUISI Hiroaki 
186298d377a0STARUISI Hiroaki 		*(ptr + len) = '/';
186398d377a0STARUISI Hiroaki 		read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
186498d377a0STARUISI Hiroaki 
186598d377a0STARUISI Hiroaki 		if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
186698d377a0STARUISI Hiroaki 			break;
186798d377a0STARUISI Hiroaki 
1868b3b4aa74SDavid Sterba 		btrfs_release_path(path);
186998d377a0STARUISI Hiroaki 		key.objectid = key.offset;
18708ad6fcabSChris Mason 		key.offset = (u64)-1;
187198d377a0STARUISI Hiroaki 		dirid = key.objectid;
187298d377a0STARUISI Hiroaki 	}
1873ac8e9819SChris Mason 	if (ptr < name)
187498d377a0STARUISI Hiroaki 		goto out;
187577906a50SLi Zefan 	memmove(name, ptr, total_len);
187698d377a0STARUISI Hiroaki 	name[total_len]='\0';
187798d377a0STARUISI Hiroaki 	ret = 0;
187898d377a0STARUISI Hiroaki out:
187998d377a0STARUISI Hiroaki 	btrfs_free_path(path);
1880ac8e9819SChris Mason 	return ret;
1881ac8e9819SChris Mason }
1882ac8e9819SChris Mason 
1883ac8e9819SChris Mason static noinline int btrfs_ioctl_ino_lookup(struct file *file,
1884ac8e9819SChris Mason 					   void __user *argp)
1885ac8e9819SChris Mason {
1886ac8e9819SChris Mason 	 struct btrfs_ioctl_ino_lookup_args *args;
1887ac8e9819SChris Mason 	 struct inode *inode;
1888ac8e9819SChris Mason 	 int ret;
1889ac8e9819SChris Mason 
1890ac8e9819SChris Mason 	if (!capable(CAP_SYS_ADMIN))
1891ac8e9819SChris Mason 		return -EPERM;
1892ac8e9819SChris Mason 
18932354d08fSJulia Lawall 	args = memdup_user(argp, sizeof(*args));
18942354d08fSJulia Lawall 	if (IS_ERR(args))
18952354d08fSJulia Lawall 		return PTR_ERR(args);
1896c2b96929SDan Carpenter 
1897ac8e9819SChris Mason 	inode = fdentry(file)->d_inode;
1898ac8e9819SChris Mason 
18991b53ac4dSChris Mason 	if (args->treeid == 0)
19001b53ac4dSChris Mason 		args->treeid = BTRFS_I(inode)->root->root_key.objectid;
19011b53ac4dSChris Mason 
1902ac8e9819SChris Mason 	ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
1903ac8e9819SChris Mason 					args->treeid, args->objectid,
1904ac8e9819SChris Mason 					args->name);
1905ac8e9819SChris Mason 
1906ac8e9819SChris Mason 	if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1907ac8e9819SChris Mason 		ret = -EFAULT;
1908ac8e9819SChris Mason 
1909ac8e9819SChris Mason 	kfree(args);
191098d377a0STARUISI Hiroaki 	return ret;
191198d377a0STARUISI Hiroaki }
191298d377a0STARUISI Hiroaki 
191376dda93cSYan, Zheng static noinline int btrfs_ioctl_snap_destroy(struct file *file,
191476dda93cSYan, Zheng 					     void __user *arg)
191576dda93cSYan, Zheng {
191676dda93cSYan, Zheng 	struct dentry *parent = fdentry(file);
191776dda93cSYan, Zheng 	struct dentry *dentry;
191876dda93cSYan, Zheng 	struct inode *dir = parent->d_inode;
191976dda93cSYan, Zheng 	struct inode *inode;
192076dda93cSYan, Zheng 	struct btrfs_root *root = BTRFS_I(dir)->root;
192176dda93cSYan, Zheng 	struct btrfs_root *dest = NULL;
192276dda93cSYan, Zheng 	struct btrfs_ioctl_vol_args *vol_args;
192376dda93cSYan, Zheng 	struct btrfs_trans_handle *trans;
192476dda93cSYan, Zheng 	int namelen;
192576dda93cSYan, Zheng 	int ret;
192676dda93cSYan, Zheng 	int err = 0;
192776dda93cSYan, Zheng 
192876dda93cSYan, Zheng 	vol_args = memdup_user(arg, sizeof(*vol_args));
192976dda93cSYan, Zheng 	if (IS_ERR(vol_args))
193076dda93cSYan, Zheng 		return PTR_ERR(vol_args);
193176dda93cSYan, Zheng 
193276dda93cSYan, Zheng 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
193376dda93cSYan, Zheng 	namelen = strlen(vol_args->name);
193476dda93cSYan, Zheng 	if (strchr(vol_args->name, '/') ||
193576dda93cSYan, Zheng 	    strncmp(vol_args->name, "..", namelen) == 0) {
193676dda93cSYan, Zheng 		err = -EINVAL;
193776dda93cSYan, Zheng 		goto out;
193876dda93cSYan, Zheng 	}
193976dda93cSYan, Zheng 
1940a561be71SAl Viro 	err = mnt_want_write_file(file);
194176dda93cSYan, Zheng 	if (err)
194276dda93cSYan, Zheng 		goto out;
194376dda93cSYan, Zheng 
194476dda93cSYan, Zheng 	mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
194576dda93cSYan, Zheng 	dentry = lookup_one_len(vol_args->name, parent, namelen);
194676dda93cSYan, Zheng 	if (IS_ERR(dentry)) {
194776dda93cSYan, Zheng 		err = PTR_ERR(dentry);
194876dda93cSYan, Zheng 		goto out_unlock_dir;
194976dda93cSYan, Zheng 	}
195076dda93cSYan, Zheng 
195176dda93cSYan, Zheng 	if (!dentry->d_inode) {
195276dda93cSYan, Zheng 		err = -ENOENT;
195376dda93cSYan, Zheng 		goto out_dput;
195476dda93cSYan, Zheng 	}
195576dda93cSYan, Zheng 
195676dda93cSYan, Zheng 	inode = dentry->d_inode;
19574260f7c7SSage Weil 	dest = BTRFS_I(inode)->root;
19584260f7c7SSage Weil 	if (!capable(CAP_SYS_ADMIN)){
19594260f7c7SSage Weil 		/*
19604260f7c7SSage Weil 		 * Regular user.  Only allow this with a special mount
19614260f7c7SSage Weil 		 * option, when the user has write+exec access to the
19624260f7c7SSage Weil 		 * subvol root, and when rmdir(2) would have been
19634260f7c7SSage Weil 		 * allowed.
19644260f7c7SSage Weil 		 *
19654260f7c7SSage Weil 		 * Note that this is _not_ check that the subvol is
19664260f7c7SSage Weil 		 * empty or doesn't contain data that we wouldn't
19674260f7c7SSage Weil 		 * otherwise be able to delete.
19684260f7c7SSage Weil 		 *
19694260f7c7SSage Weil 		 * Users who want to delete empty subvols should try
19704260f7c7SSage Weil 		 * rmdir(2).
19714260f7c7SSage Weil 		 */
19724260f7c7SSage Weil 		err = -EPERM;
19734260f7c7SSage Weil 		if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
19744260f7c7SSage Weil 			goto out_dput;
19754260f7c7SSage Weil 
19764260f7c7SSage Weil 		/*
19774260f7c7SSage Weil 		 * Do not allow deletion if the parent dir is the same
19784260f7c7SSage Weil 		 * as the dir to be deleted.  That means the ioctl
19794260f7c7SSage Weil 		 * must be called on the dentry referencing the root
19804260f7c7SSage Weil 		 * of the subvol, not a random directory contained
19814260f7c7SSage Weil 		 * within it.
19824260f7c7SSage Weil 		 */
19834260f7c7SSage Weil 		err = -EINVAL;
19844260f7c7SSage Weil 		if (root == dest)
19854260f7c7SSage Weil 			goto out_dput;
19864260f7c7SSage Weil 
19874260f7c7SSage Weil 		err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
19884260f7c7SSage Weil 		if (err)
19894260f7c7SSage Weil 			goto out_dput;
19904260f7c7SSage Weil 
19914260f7c7SSage Weil 		/* check if subvolume may be deleted by a non-root user */
19924260f7c7SSage Weil 		err = btrfs_may_delete(dir, dentry, 1);
19934260f7c7SSage Weil 		if (err)
19944260f7c7SSage Weil 			goto out_dput;
19954260f7c7SSage Weil 	}
19964260f7c7SSage Weil 
199733345d01SLi Zefan 	if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
199876dda93cSYan, Zheng 		err = -EINVAL;
199976dda93cSYan, Zheng 		goto out_dput;
200076dda93cSYan, Zheng 	}
200176dda93cSYan, Zheng 
200276dda93cSYan, Zheng 	mutex_lock(&inode->i_mutex);
200376dda93cSYan, Zheng 	err = d_invalidate(dentry);
200476dda93cSYan, Zheng 	if (err)
200576dda93cSYan, Zheng 		goto out_unlock;
200676dda93cSYan, Zheng 
200776dda93cSYan, Zheng 	down_write(&root->fs_info->subvol_sem);
200876dda93cSYan, Zheng 
200976dda93cSYan, Zheng 	err = may_destroy_subvol(dest);
201076dda93cSYan, Zheng 	if (err)
201176dda93cSYan, Zheng 		goto out_up_write;
201276dda93cSYan, Zheng 
2013a22285a6SYan, Zheng 	trans = btrfs_start_transaction(root, 0);
2014a22285a6SYan, Zheng 	if (IS_ERR(trans)) {
2015a22285a6SYan, Zheng 		err = PTR_ERR(trans);
2016d327099aSDan Carpenter 		goto out_up_write;
2017a22285a6SYan, Zheng 	}
2018a22285a6SYan, Zheng 	trans->block_rsv = &root->fs_info->global_block_rsv;
2019a22285a6SYan, Zheng 
202076dda93cSYan, Zheng 	ret = btrfs_unlink_subvol(trans, root, dir,
202176dda93cSYan, Zheng 				dest->root_key.objectid,
202276dda93cSYan, Zheng 				dentry->d_name.name,
202376dda93cSYan, Zheng 				dentry->d_name.len);
202479787eaaSJeff Mahoney 	if (ret) {
202579787eaaSJeff Mahoney 		err = ret;
202679787eaaSJeff Mahoney 		btrfs_abort_transaction(trans, root, ret);
202779787eaaSJeff Mahoney 		goto out_end_trans;
202879787eaaSJeff Mahoney 	}
202976dda93cSYan, Zheng 
203076dda93cSYan, Zheng 	btrfs_record_root_in_trans(trans, dest);
203176dda93cSYan, Zheng 
203276dda93cSYan, Zheng 	memset(&dest->root_item.drop_progress, 0,
203376dda93cSYan, Zheng 		sizeof(dest->root_item.drop_progress));
203476dda93cSYan, Zheng 	dest->root_item.drop_level = 0;
203576dda93cSYan, Zheng 	btrfs_set_root_refs(&dest->root_item, 0);
203676dda93cSYan, Zheng 
2037d68fc57bSYan, Zheng 	if (!xchg(&dest->orphan_item_inserted, 1)) {
203876dda93cSYan, Zheng 		ret = btrfs_insert_orphan_item(trans,
203976dda93cSYan, Zheng 					root->fs_info->tree_root,
204076dda93cSYan, Zheng 					dest->root_key.objectid);
204179787eaaSJeff Mahoney 		if (ret) {
204279787eaaSJeff Mahoney 			btrfs_abort_transaction(trans, root, ret);
204379787eaaSJeff Mahoney 			err = ret;
204479787eaaSJeff Mahoney 			goto out_end_trans;
2045d68fc57bSYan, Zheng 		}
204679787eaaSJeff Mahoney 	}
204779787eaaSJeff Mahoney out_end_trans:
2048531cb13fSSage Weil 	ret = btrfs_end_transaction(trans, root);
204979787eaaSJeff Mahoney 	if (ret && !err)
205079787eaaSJeff Mahoney 		err = ret;
205176dda93cSYan, Zheng 	inode->i_flags |= S_DEAD;
205276dda93cSYan, Zheng out_up_write:
205376dda93cSYan, Zheng 	up_write(&root->fs_info->subvol_sem);
205476dda93cSYan, Zheng out_unlock:
205576dda93cSYan, Zheng 	mutex_unlock(&inode->i_mutex);
205676dda93cSYan, Zheng 	if (!err) {
2057efefb143SYan, Zheng 		shrink_dcache_sb(root->fs_info->sb);
205876dda93cSYan, Zheng 		btrfs_invalidate_inodes(dest);
205976dda93cSYan, Zheng 		d_delete(dentry);
206076dda93cSYan, Zheng 	}
206176dda93cSYan, Zheng out_dput:
206276dda93cSYan, Zheng 	dput(dentry);
206376dda93cSYan, Zheng out_unlock_dir:
206476dda93cSYan, Zheng 	mutex_unlock(&dir->i_mutex);
20652a79f17eSAl Viro 	mnt_drop_write_file(file);
206676dda93cSYan, Zheng out:
206776dda93cSYan, Zheng 	kfree(vol_args);
206876dda93cSYan, Zheng 	return err;
206976dda93cSYan, Zheng }
207076dda93cSYan, Zheng 
20711e701a32SChris Mason static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
2072f46b5a66SChristoph Hellwig {
2073f46b5a66SChristoph Hellwig 	struct inode *inode = fdentry(file)->d_inode;
2074f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(inode)->root;
20751e701a32SChris Mason 	struct btrfs_ioctl_defrag_range_args *range;
2076c146afadSYan Zheng 	int ret;
2077c146afadSYan Zheng 
2078b83cc969SLi Zefan 	if (btrfs_root_readonly(root))
2079b83cc969SLi Zefan 		return -EROFS;
2080b83cc969SLi Zefan 
2081a561be71SAl Viro 	ret = mnt_want_write_file(file);
2082c146afadSYan Zheng 	if (ret)
2083c146afadSYan Zheng 		return ret;
2084f46b5a66SChristoph Hellwig 
2085f46b5a66SChristoph Hellwig 	switch (inode->i_mode & S_IFMT) {
2086f46b5a66SChristoph Hellwig 	case S_IFDIR:
2087e441d54dSChris Mason 		if (!capable(CAP_SYS_ADMIN)) {
2088e441d54dSChris Mason 			ret = -EPERM;
2089e441d54dSChris Mason 			goto out;
2090e441d54dSChris Mason 		}
20918929ecfaSYan, Zheng 		ret = btrfs_defrag_root(root, 0);
20928929ecfaSYan, Zheng 		if (ret)
20938929ecfaSYan, Zheng 			goto out;
20948929ecfaSYan, Zheng 		ret = btrfs_defrag_root(root->fs_info->extent_root, 0);
2095f46b5a66SChristoph Hellwig 		break;
2096f46b5a66SChristoph Hellwig 	case S_IFREG:
2097e441d54dSChris Mason 		if (!(file->f_mode & FMODE_WRITE)) {
2098e441d54dSChris Mason 			ret = -EINVAL;
2099e441d54dSChris Mason 			goto out;
2100e441d54dSChris Mason 		}
21011e701a32SChris Mason 
21021e701a32SChris Mason 		range = kzalloc(sizeof(*range), GFP_KERNEL);
21031e701a32SChris Mason 		if (!range) {
21041e701a32SChris Mason 			ret = -ENOMEM;
21051e701a32SChris Mason 			goto out;
21061e701a32SChris Mason 		}
21071e701a32SChris Mason 
21081e701a32SChris Mason 		if (argp) {
21091e701a32SChris Mason 			if (copy_from_user(range, argp,
21101e701a32SChris Mason 					   sizeof(*range))) {
21111e701a32SChris Mason 				ret = -EFAULT;
21121e701a32SChris Mason 				kfree(range);
2113683be16eSDan Carpenter 				goto out;
21141e701a32SChris Mason 			}
21151e701a32SChris Mason 			/* compression requires us to start the IO */
21161e701a32SChris Mason 			if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
21171e701a32SChris Mason 				range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
21181e701a32SChris Mason 				range->extent_thresh = (u32)-1;
21191e701a32SChris Mason 			}
21201e701a32SChris Mason 		} else {
21211e701a32SChris Mason 			/* the rest are all set to zero by kzalloc */
21221e701a32SChris Mason 			range->len = (u64)-1;
21231e701a32SChris Mason 		}
21244cb5300bSChris Mason 		ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
21254cb5300bSChris Mason 					range, 0, 0);
21264cb5300bSChris Mason 		if (ret > 0)
21274cb5300bSChris Mason 			ret = 0;
21281e701a32SChris Mason 		kfree(range);
2129f46b5a66SChristoph Hellwig 		break;
21308929ecfaSYan, Zheng 	default:
21318929ecfaSYan, Zheng 		ret = -EINVAL;
2132f46b5a66SChristoph Hellwig 	}
2133e441d54dSChris Mason out:
21342a79f17eSAl Viro 	mnt_drop_write_file(file);
2135e441d54dSChris Mason 	return ret;
2136f46b5a66SChristoph Hellwig }
2137f46b5a66SChristoph Hellwig 
2138b2950863SChristoph Hellwig static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
2139f46b5a66SChristoph Hellwig {
2140f46b5a66SChristoph Hellwig 	struct btrfs_ioctl_vol_args *vol_args;
2141f46b5a66SChristoph Hellwig 	int ret;
2142f46b5a66SChristoph Hellwig 
2143e441d54dSChris Mason 	if (!capable(CAP_SYS_ADMIN))
2144e441d54dSChris Mason 		return -EPERM;
2145e441d54dSChris Mason 
2146c9e9f97bSIlya Dryomov 	mutex_lock(&root->fs_info->volume_mutex);
2147c9e9f97bSIlya Dryomov 	if (root->fs_info->balance_ctl) {
2148c9e9f97bSIlya Dryomov 		printk(KERN_INFO "btrfs: balance in progress\n");
2149c9e9f97bSIlya Dryomov 		ret = -EINVAL;
2150c9e9f97bSIlya Dryomov 		goto out;
2151c9e9f97bSIlya Dryomov 	}
2152c9e9f97bSIlya Dryomov 
2153dae7b665SLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
2154c9e9f97bSIlya Dryomov 	if (IS_ERR(vol_args)) {
2155c9e9f97bSIlya Dryomov 		ret = PTR_ERR(vol_args);
2156c9e9f97bSIlya Dryomov 		goto out;
2157c9e9f97bSIlya Dryomov 	}
2158f46b5a66SChristoph Hellwig 
21595516e595SMark Fasheh 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2160f46b5a66SChristoph Hellwig 	ret = btrfs_init_new_device(root, vol_args->name);
2161f46b5a66SChristoph Hellwig 
2162f46b5a66SChristoph Hellwig 	kfree(vol_args);
2163c9e9f97bSIlya Dryomov out:
2164c9e9f97bSIlya Dryomov 	mutex_unlock(&root->fs_info->volume_mutex);
2165f46b5a66SChristoph Hellwig 	return ret;
2166f46b5a66SChristoph Hellwig }
2167f46b5a66SChristoph Hellwig 
2168b2950863SChristoph Hellwig static long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
2169f46b5a66SChristoph Hellwig {
2170f46b5a66SChristoph Hellwig 	struct btrfs_ioctl_vol_args *vol_args;
2171f46b5a66SChristoph Hellwig 	int ret;
2172f46b5a66SChristoph Hellwig 
2173e441d54dSChris Mason 	if (!capable(CAP_SYS_ADMIN))
2174e441d54dSChris Mason 		return -EPERM;
2175e441d54dSChris Mason 
2176c146afadSYan Zheng 	if (root->fs_info->sb->s_flags & MS_RDONLY)
2177c146afadSYan Zheng 		return -EROFS;
2178c146afadSYan Zheng 
2179c9e9f97bSIlya Dryomov 	mutex_lock(&root->fs_info->volume_mutex);
2180c9e9f97bSIlya Dryomov 	if (root->fs_info->balance_ctl) {
2181c9e9f97bSIlya Dryomov 		printk(KERN_INFO "btrfs: balance in progress\n");
2182c9e9f97bSIlya Dryomov 		ret = -EINVAL;
2183c9e9f97bSIlya Dryomov 		goto out;
2184c9e9f97bSIlya Dryomov 	}
2185c9e9f97bSIlya Dryomov 
2186dae7b665SLi Zefan 	vol_args = memdup_user(arg, sizeof(*vol_args));
2187c9e9f97bSIlya Dryomov 	if (IS_ERR(vol_args)) {
2188c9e9f97bSIlya Dryomov 		ret = PTR_ERR(vol_args);
2189c9e9f97bSIlya Dryomov 		goto out;
2190c9e9f97bSIlya Dryomov 	}
2191f46b5a66SChristoph Hellwig 
21925516e595SMark Fasheh 	vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2193f46b5a66SChristoph Hellwig 	ret = btrfs_rm_device(root, vol_args->name);
2194f46b5a66SChristoph Hellwig 
2195f46b5a66SChristoph Hellwig 	kfree(vol_args);
2196c9e9f97bSIlya Dryomov out:
2197c9e9f97bSIlya Dryomov 	mutex_unlock(&root->fs_info->volume_mutex);
2198f46b5a66SChristoph Hellwig 	return ret;
2199f46b5a66SChristoph Hellwig }
2200f46b5a66SChristoph Hellwig 
2201475f6387SJan Schmidt static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2202475f6387SJan Schmidt {
2203027ed2f0SLi Zefan 	struct btrfs_ioctl_fs_info_args *fi_args;
2204475f6387SJan Schmidt 	struct btrfs_device *device;
2205475f6387SJan Schmidt 	struct btrfs_device *next;
2206475f6387SJan Schmidt 	struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2207027ed2f0SLi Zefan 	int ret = 0;
2208475f6387SJan Schmidt 
2209475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
2210475f6387SJan Schmidt 		return -EPERM;
2211475f6387SJan Schmidt 
2212027ed2f0SLi Zefan 	fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2213027ed2f0SLi Zefan 	if (!fi_args)
2214027ed2f0SLi Zefan 		return -ENOMEM;
2215027ed2f0SLi Zefan 
2216027ed2f0SLi Zefan 	fi_args->num_devices = fs_devices->num_devices;
2217027ed2f0SLi Zefan 	memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
2218475f6387SJan Schmidt 
2219475f6387SJan Schmidt 	mutex_lock(&fs_devices->device_list_mutex);
2220475f6387SJan Schmidt 	list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
2221027ed2f0SLi Zefan 		if (device->devid > fi_args->max_id)
2222027ed2f0SLi Zefan 			fi_args->max_id = device->devid;
2223475f6387SJan Schmidt 	}
2224475f6387SJan Schmidt 	mutex_unlock(&fs_devices->device_list_mutex);
2225475f6387SJan Schmidt 
2226027ed2f0SLi Zefan 	if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2227027ed2f0SLi Zefan 		ret = -EFAULT;
2228475f6387SJan Schmidt 
2229027ed2f0SLi Zefan 	kfree(fi_args);
2230027ed2f0SLi Zefan 	return ret;
2231475f6387SJan Schmidt }
2232475f6387SJan Schmidt 
2233475f6387SJan Schmidt static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2234475f6387SJan Schmidt {
2235475f6387SJan Schmidt 	struct btrfs_ioctl_dev_info_args *di_args;
2236475f6387SJan Schmidt 	struct btrfs_device *dev;
2237475f6387SJan Schmidt 	struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2238475f6387SJan Schmidt 	int ret = 0;
2239475f6387SJan Schmidt 	char *s_uuid = NULL;
2240475f6387SJan Schmidt 	char empty_uuid[BTRFS_UUID_SIZE] = {0};
2241475f6387SJan Schmidt 
2242475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
2243475f6387SJan Schmidt 		return -EPERM;
2244475f6387SJan Schmidt 
2245475f6387SJan Schmidt 	di_args = memdup_user(arg, sizeof(*di_args));
2246475f6387SJan Schmidt 	if (IS_ERR(di_args))
2247475f6387SJan Schmidt 		return PTR_ERR(di_args);
2248475f6387SJan Schmidt 
2249475f6387SJan Schmidt 	if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2250475f6387SJan Schmidt 		s_uuid = di_args->uuid;
2251475f6387SJan Schmidt 
2252475f6387SJan Schmidt 	mutex_lock(&fs_devices->device_list_mutex);
2253475f6387SJan Schmidt 	dev = btrfs_find_device(root, di_args->devid, s_uuid, NULL);
2254475f6387SJan Schmidt 	mutex_unlock(&fs_devices->device_list_mutex);
2255475f6387SJan Schmidt 
2256475f6387SJan Schmidt 	if (!dev) {
2257475f6387SJan Schmidt 		ret = -ENODEV;
2258475f6387SJan Schmidt 		goto out;
2259475f6387SJan Schmidt 	}
2260475f6387SJan Schmidt 
2261475f6387SJan Schmidt 	di_args->devid = dev->devid;
2262475f6387SJan Schmidt 	di_args->bytes_used = dev->bytes_used;
2263475f6387SJan Schmidt 	di_args->total_bytes = dev->total_bytes;
2264475f6387SJan Schmidt 	memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
226599ba55adSStefan Behrens 	if (dev->name)
2266475f6387SJan Schmidt 		strncpy(di_args->path, dev->name, sizeof(di_args->path));
226799ba55adSStefan Behrens 	else
226899ba55adSStefan Behrens 		di_args->path[0] = '\0';
2269475f6387SJan Schmidt 
2270475f6387SJan Schmidt out:
2271475f6387SJan Schmidt 	if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2272475f6387SJan Schmidt 		ret = -EFAULT;
2273475f6387SJan Schmidt 
2274475f6387SJan Schmidt 	kfree(di_args);
2275475f6387SJan Schmidt 	return ret;
2276475f6387SJan Schmidt }
2277475f6387SJan Schmidt 
227876dda93cSYan, Zheng static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2279b2950863SChristoph Hellwig 				       u64 off, u64 olen, u64 destoff)
2280f46b5a66SChristoph Hellwig {
2281f46b5a66SChristoph Hellwig 	struct inode *inode = fdentry(file)->d_inode;
2282f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(inode)->root;
2283f46b5a66SChristoph Hellwig 	struct file *src_file;
2284f46b5a66SChristoph Hellwig 	struct inode *src;
2285f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
2286f46b5a66SChristoph Hellwig 	struct btrfs_path *path;
2287f46b5a66SChristoph Hellwig 	struct extent_buffer *leaf;
2288ae01a0abSYan Zheng 	char *buf;
2289ae01a0abSYan Zheng 	struct btrfs_key key;
2290f46b5a66SChristoph Hellwig 	u32 nritems;
2291f46b5a66SChristoph Hellwig 	int slot;
2292ae01a0abSYan Zheng 	int ret;
2293c5c9cd4dSSage Weil 	u64 len = olen;
2294c5c9cd4dSSage Weil 	u64 bs = root->fs_info->sb->s_blocksize;
2295c5c9cd4dSSage Weil 	u64 hint_byte;
2296d20f7043SChris Mason 
2297c5c9cd4dSSage Weil 	/*
2298c5c9cd4dSSage Weil 	 * TODO:
2299c5c9cd4dSSage Weil 	 * - split compressed inline extents.  annoying: we need to
2300c5c9cd4dSSage Weil 	 *   decompress into destination's address_space (the file offset
2301c5c9cd4dSSage Weil 	 *   may change, so source mapping won't do), then recompress (or
2302c5c9cd4dSSage Weil 	 *   otherwise reinsert) a subrange.
2303c5c9cd4dSSage Weil 	 * - allow ranges within the same file to be cloned (provided
2304c5c9cd4dSSage Weil 	 *   they don't overlap)?
2305c5c9cd4dSSage Weil 	 */
2306c5c9cd4dSSage Weil 
2307e441d54dSChris Mason 	/* the destination must be opened for writing */
23082ebc3464SDan Rosenberg 	if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
2309e441d54dSChris Mason 		return -EINVAL;
2310e441d54dSChris Mason 
2311b83cc969SLi Zefan 	if (btrfs_root_readonly(root))
2312b83cc969SLi Zefan 		return -EROFS;
2313b83cc969SLi Zefan 
2314a561be71SAl Viro 	ret = mnt_want_write_file(file);
2315c146afadSYan Zheng 	if (ret)
2316c146afadSYan Zheng 		return ret;
2317c146afadSYan Zheng 
2318c5c9cd4dSSage Weil 	src_file = fget(srcfd);
2319ab67b7c1SYan Zheng 	if (!src_file) {
2320ab67b7c1SYan Zheng 		ret = -EBADF;
2321ab67b7c1SYan Zheng 		goto out_drop_write;
2322ab67b7c1SYan Zheng 	}
23235dc64164SDan Rosenberg 
2324f46b5a66SChristoph Hellwig 	src = src_file->f_dentry->d_inode;
2325f46b5a66SChristoph Hellwig 
2326c5c9cd4dSSage Weil 	ret = -EINVAL;
2327c5c9cd4dSSage Weil 	if (src == inode)
2328c5c9cd4dSSage Weil 		goto out_fput;
2329c5c9cd4dSSage Weil 
23305dc64164SDan Rosenberg 	/* the src must be open for reading */
23315dc64164SDan Rosenberg 	if (!(src_file->f_mode & FMODE_READ))
23325dc64164SDan Rosenberg 		goto out_fput;
23335dc64164SDan Rosenberg 
23340e7b824cSLi Zefan 	/* don't make the dst file partly checksummed */
23350e7b824cSLi Zefan 	if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
23360e7b824cSLi Zefan 	    (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
23370e7b824cSLi Zefan 		goto out_fput;
23380e7b824cSLi Zefan 
2339ae01a0abSYan Zheng 	ret = -EISDIR;
2340ae01a0abSYan Zheng 	if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
2341f46b5a66SChristoph Hellwig 		goto out_fput;
2342f46b5a66SChristoph Hellwig 
2343ae01a0abSYan Zheng 	ret = -EXDEV;
2344ae01a0abSYan Zheng 	if (src->i_sb != inode->i_sb || BTRFS_I(src)->root != root)
2345ae01a0abSYan Zheng 		goto out_fput;
2346ae01a0abSYan Zheng 
2347ae01a0abSYan Zheng 	ret = -ENOMEM;
2348ae01a0abSYan Zheng 	buf = vmalloc(btrfs_level_size(root, 0));
2349ae01a0abSYan Zheng 	if (!buf)
2350ae01a0abSYan Zheng 		goto out_fput;
2351ae01a0abSYan Zheng 
2352ae01a0abSYan Zheng 	path = btrfs_alloc_path();
2353ae01a0abSYan Zheng 	if (!path) {
2354ae01a0abSYan Zheng 		vfree(buf);
2355ae01a0abSYan Zheng 		goto out_fput;
2356ae01a0abSYan Zheng 	}
2357ae01a0abSYan Zheng 	path->reada = 2;
2358ae01a0abSYan Zheng 
2359f46b5a66SChristoph Hellwig 	if (inode < src) {
2360fccdae43SSage Weil 		mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2361fccdae43SSage Weil 		mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
2362f46b5a66SChristoph Hellwig 	} else {
2363fccdae43SSage Weil 		mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2364fccdae43SSage Weil 		mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
2365f46b5a66SChristoph Hellwig 	}
2366f46b5a66SChristoph Hellwig 
2367c5c9cd4dSSage Weil 	/* determine range to clone */
2368c5c9cd4dSSage Weil 	ret = -EINVAL;
23692ebc3464SDan Rosenberg 	if (off + len > src->i_size || off + len < off)
2370f46b5a66SChristoph Hellwig 		goto out_unlock;
2371c5c9cd4dSSage Weil 	if (len == 0)
2372c5c9cd4dSSage Weil 		olen = len = src->i_size - off;
2373c5c9cd4dSSage Weil 	/* if we extend to eof, continue to block boundary */
2374c5c9cd4dSSage Weil 	if (off + len == src->i_size)
23752a6b8daeSLi Zefan 		len = ALIGN(src->i_size, bs) - off;
2376c5c9cd4dSSage Weil 
2377c5c9cd4dSSage Weil 	/* verify the end result is block aligned */
23782a6b8daeSLi Zefan 	if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
23792a6b8daeSLi Zefan 	    !IS_ALIGNED(destoff, bs))
2380c5c9cd4dSSage Weil 		goto out_unlock;
2381c5c9cd4dSSage Weil 
2382d525e8abSLi Zefan 	if (destoff > inode->i_size) {
2383d525e8abSLi Zefan 		ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2384d525e8abSLi Zefan 		if (ret)
2385d525e8abSLi Zefan 			goto out_unlock;
2386d525e8abSLi Zefan 	}
2387d525e8abSLi Zefan 
238871ef0786SLi Zefan 	/* truncate page cache pages from target inode range */
238971ef0786SLi Zefan 	truncate_inode_pages_range(&inode->i_data, destoff,
239071ef0786SLi Zefan 				   PAGE_CACHE_ALIGN(destoff + len) - 1);
239171ef0786SLi Zefan 
2392f46b5a66SChristoph Hellwig 	/* do any pending delalloc/csum calc on src, one way or
2393f46b5a66SChristoph Hellwig 	   another, and lock file content */
2394f46b5a66SChristoph Hellwig 	while (1) {
239531840ae1SZheng Yan 		struct btrfs_ordered_extent *ordered;
2396d0082371SJeff Mahoney 		lock_extent(&BTRFS_I(src)->io_tree, off, off+len);
23979a019196SSage Weil 		ordered = btrfs_lookup_first_ordered_extent(src, off+len);
23989a019196SSage Weil 		if (!ordered &&
23999a019196SSage Weil 		    !test_range_bit(&BTRFS_I(src)->io_tree, off, off+len,
24009a019196SSage Weil 				   EXTENT_DELALLOC, 0, NULL))
2401f46b5a66SChristoph Hellwig 			break;
2402d0082371SJeff Mahoney 		unlock_extent(&BTRFS_I(src)->io_tree, off, off+len);
2403ae01a0abSYan Zheng 		if (ordered)
2404ae01a0abSYan Zheng 			btrfs_put_ordered_extent(ordered);
24059a019196SSage Weil 		btrfs_wait_ordered_range(src, off, len);
2406f46b5a66SChristoph Hellwig 	}
2407f46b5a66SChristoph Hellwig 
2408c5c9cd4dSSage Weil 	/* clone data */
240933345d01SLi Zefan 	key.objectid = btrfs_ino(src);
2410ae01a0abSYan Zheng 	key.type = BTRFS_EXTENT_DATA_KEY;
2411ae01a0abSYan Zheng 	key.offset = 0;
2412f46b5a66SChristoph Hellwig 
2413f46b5a66SChristoph Hellwig 	while (1) {
2414f46b5a66SChristoph Hellwig 		/*
2415f46b5a66SChristoph Hellwig 		 * note the key will change type as we walk through the
2416f46b5a66SChristoph Hellwig 		 * tree.
2417f46b5a66SChristoph Hellwig 		 */
2418a22285a6SYan, Zheng 		ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2419f46b5a66SChristoph Hellwig 		if (ret < 0)
2420f46b5a66SChristoph Hellwig 			goto out;
2421f46b5a66SChristoph Hellwig 
2422ae01a0abSYan Zheng 		nritems = btrfs_header_nritems(path->nodes[0]);
2423ae01a0abSYan Zheng 		if (path->slots[0] >= nritems) {
2424f46b5a66SChristoph Hellwig 			ret = btrfs_next_leaf(root, path);
2425f46b5a66SChristoph Hellwig 			if (ret < 0)
2426f46b5a66SChristoph Hellwig 				goto out;
2427f46b5a66SChristoph Hellwig 			if (ret > 0)
2428f46b5a66SChristoph Hellwig 				break;
2429ae01a0abSYan Zheng 			nritems = btrfs_header_nritems(path->nodes[0]);
2430f46b5a66SChristoph Hellwig 		}
2431f46b5a66SChristoph Hellwig 		leaf = path->nodes[0];
2432f46b5a66SChristoph Hellwig 		slot = path->slots[0];
2433f46b5a66SChristoph Hellwig 
2434ae01a0abSYan Zheng 		btrfs_item_key_to_cpu(leaf, &key, slot);
2435d20f7043SChris Mason 		if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
243633345d01SLi Zefan 		    key.objectid != btrfs_ino(src))
2437f46b5a66SChristoph Hellwig 			break;
2438f46b5a66SChristoph Hellwig 
2439c5c9cd4dSSage Weil 		if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2440c5c9cd4dSSage Weil 			struct btrfs_file_extent_item *extent;
2441c5c9cd4dSSage Weil 			int type;
244231840ae1SZheng Yan 			u32 size;
244331840ae1SZheng Yan 			struct btrfs_key new_key;
2444c5c9cd4dSSage Weil 			u64 disko = 0, diskl = 0;
2445c5c9cd4dSSage Weil 			u64 datao = 0, datal = 0;
2446c5c9cd4dSSage Weil 			u8 comp;
2447b5384d48SSage Weil 			u64 endoff;
244831840ae1SZheng Yan 
244931840ae1SZheng Yan 			size = btrfs_item_size_nr(leaf, slot);
245031840ae1SZheng Yan 			read_extent_buffer(leaf, buf,
245131840ae1SZheng Yan 					   btrfs_item_ptr_offset(leaf, slot),
245231840ae1SZheng Yan 					   size);
2453c5c9cd4dSSage Weil 
2454c5c9cd4dSSage Weil 			extent = btrfs_item_ptr(leaf, slot,
2455c5c9cd4dSSage Weil 						struct btrfs_file_extent_item);
2456c5c9cd4dSSage Weil 			comp = btrfs_file_extent_compression(leaf, extent);
2457c5c9cd4dSSage Weil 			type = btrfs_file_extent_type(leaf, extent);
2458c8a894d7SChris Mason 			if (type == BTRFS_FILE_EXTENT_REG ||
2459c8a894d7SChris Mason 			    type == BTRFS_FILE_EXTENT_PREALLOC) {
2460d397712bSChris Mason 				disko = btrfs_file_extent_disk_bytenr(leaf,
2461d397712bSChris Mason 								      extent);
2462d397712bSChris Mason 				diskl = btrfs_file_extent_disk_num_bytes(leaf,
2463d397712bSChris Mason 								 extent);
2464c5c9cd4dSSage Weil 				datao = btrfs_file_extent_offset(leaf, extent);
2465d397712bSChris Mason 				datal = btrfs_file_extent_num_bytes(leaf,
2466d397712bSChris Mason 								    extent);
2467c5c9cd4dSSage Weil 			} else if (type == BTRFS_FILE_EXTENT_INLINE) {
2468c5c9cd4dSSage Weil 				/* take upper bound, may be compressed */
2469c5c9cd4dSSage Weil 				datal = btrfs_file_extent_ram_bytes(leaf,
2470c5c9cd4dSSage Weil 								    extent);
2471c5c9cd4dSSage Weil 			}
2472b3b4aa74SDavid Sterba 			btrfs_release_path(path);
247331840ae1SZheng Yan 
2474050006a7SSage Weil 			if (key.offset + datal <= off ||
2475c5c9cd4dSSage Weil 			    key.offset >= off+len)
2476c5c9cd4dSSage Weil 				goto next;
2477c5c9cd4dSSage Weil 
247831840ae1SZheng Yan 			memcpy(&new_key, &key, sizeof(new_key));
247933345d01SLi Zefan 			new_key.objectid = btrfs_ino(inode);
24804d728ec7SLi Zefan 			if (off <= key.offset)
2481c5c9cd4dSSage Weil 				new_key.offset = key.offset + destoff - off;
24824d728ec7SLi Zefan 			else
24834d728ec7SLi Zefan 				new_key.offset = destoff;
2484c5c9cd4dSSage Weil 
2485b6f3409bSSage Weil 			/*
2486b6f3409bSSage Weil 			 * 1 - adjusting old extent (we may have to split it)
2487b6f3409bSSage Weil 			 * 1 - add new extent
2488b6f3409bSSage Weil 			 * 1 - inode update
2489b6f3409bSSage Weil 			 */
2490b6f3409bSSage Weil 			trans = btrfs_start_transaction(root, 3);
2491a22285a6SYan, Zheng 			if (IS_ERR(trans)) {
2492a22285a6SYan, Zheng 				ret = PTR_ERR(trans);
2493a22285a6SYan, Zheng 				goto out;
2494a22285a6SYan, Zheng 			}
2495a22285a6SYan, Zheng 
2496c8a894d7SChris Mason 			if (type == BTRFS_FILE_EXTENT_REG ||
2497c8a894d7SChris Mason 			    type == BTRFS_FILE_EXTENT_PREALLOC) {
2498d72c0842SLi Zefan 				/*
2499d72c0842SLi Zefan 				 *    a  | --- range to clone ---|  b
2500d72c0842SLi Zefan 				 * | ------------- extent ------------- |
2501d72c0842SLi Zefan 				 */
2502d72c0842SLi Zefan 
2503d72c0842SLi Zefan 				/* substract range b */
2504d72c0842SLi Zefan 				if (key.offset + datal > off + len)
2505d72c0842SLi Zefan 					datal = off + len - key.offset;
2506d72c0842SLi Zefan 
2507d72c0842SLi Zefan 				/* substract range a */
2508a22285a6SYan, Zheng 				if (off > key.offset) {
2509a22285a6SYan, Zheng 					datao += off - key.offset;
2510a22285a6SYan, Zheng 					datal -= off - key.offset;
2511a22285a6SYan, Zheng 				}
2512a22285a6SYan, Zheng 
2513a22285a6SYan, Zheng 				ret = btrfs_drop_extents(trans, inode,
2514a22285a6SYan, Zheng 							 new_key.offset,
2515a22285a6SYan, Zheng 							 new_key.offset + datal,
2516a22285a6SYan, Zheng 							 &hint_byte, 1);
251779787eaaSJeff Mahoney 				if (ret) {
251879787eaaSJeff Mahoney 					btrfs_abort_transaction(trans, root,
251979787eaaSJeff Mahoney 								ret);
252079787eaaSJeff Mahoney 					btrfs_end_transaction(trans, root);
252179787eaaSJeff Mahoney 					goto out;
252279787eaaSJeff Mahoney 				}
2523a22285a6SYan, Zheng 
252431840ae1SZheng Yan 				ret = btrfs_insert_empty_item(trans, root, path,
252531840ae1SZheng Yan 							      &new_key, size);
252679787eaaSJeff Mahoney 				if (ret) {
252779787eaaSJeff Mahoney 					btrfs_abort_transaction(trans, root,
252879787eaaSJeff Mahoney 								ret);
252979787eaaSJeff Mahoney 					btrfs_end_transaction(trans, root);
253079787eaaSJeff Mahoney 					goto out;
253179787eaaSJeff Mahoney 				}
253231840ae1SZheng Yan 
253331840ae1SZheng Yan 				leaf = path->nodes[0];
253431840ae1SZheng Yan 				slot = path->slots[0];
253531840ae1SZheng Yan 				write_extent_buffer(leaf, buf,
253631840ae1SZheng Yan 					    btrfs_item_ptr_offset(leaf, slot),
253731840ae1SZheng Yan 					    size);
2538ae01a0abSYan Zheng 
2539f46b5a66SChristoph Hellwig 				extent = btrfs_item_ptr(leaf, slot,
2540f46b5a66SChristoph Hellwig 						struct btrfs_file_extent_item);
2541c5c9cd4dSSage Weil 
2542c5c9cd4dSSage Weil 				/* disko == 0 means it's a hole */
2543c5c9cd4dSSage Weil 				if (!disko)
2544c5c9cd4dSSage Weil 					datao = 0;
2545c5c9cd4dSSage Weil 
2546c5c9cd4dSSage Weil 				btrfs_set_file_extent_offset(leaf, extent,
2547c5c9cd4dSSage Weil 							     datao);
2548c5c9cd4dSSage Weil 				btrfs_set_file_extent_num_bytes(leaf, extent,
2549c5c9cd4dSSage Weil 								datal);
2550c5c9cd4dSSage Weil 				if (disko) {
2551c5c9cd4dSSage Weil 					inode_add_bytes(inode, datal);
2552ae01a0abSYan Zheng 					ret = btrfs_inc_extent_ref(trans, root,
25535d4f98a2SYan Zheng 							disko, diskl, 0,
2554f46b5a66SChristoph Hellwig 							root->root_key.objectid,
255533345d01SLi Zefan 							btrfs_ino(inode),
255666d7e7f0SArne Jansen 							new_key.offset - datao,
255766d7e7f0SArne Jansen 							0);
255879787eaaSJeff Mahoney 					if (ret) {
255979787eaaSJeff Mahoney 						btrfs_abort_transaction(trans,
256079787eaaSJeff Mahoney 									root,
256179787eaaSJeff Mahoney 									ret);
256279787eaaSJeff Mahoney 						btrfs_end_transaction(trans,
256379787eaaSJeff Mahoney 								      root);
256479787eaaSJeff Mahoney 						goto out;
256579787eaaSJeff Mahoney 
256679787eaaSJeff Mahoney 					}
2567f46b5a66SChristoph Hellwig 				}
2568c5c9cd4dSSage Weil 			} else if (type == BTRFS_FILE_EXTENT_INLINE) {
2569c5c9cd4dSSage Weil 				u64 skip = 0;
2570c5c9cd4dSSage Weil 				u64 trim = 0;
2571c5c9cd4dSSage Weil 				if (off > key.offset) {
2572c5c9cd4dSSage Weil 					skip = off - key.offset;
2573c5c9cd4dSSage Weil 					new_key.offset += skip;
257431840ae1SZheng Yan 				}
2575d397712bSChris Mason 
2576c5c9cd4dSSage Weil 				if (key.offset + datal > off+len)
2577c5c9cd4dSSage Weil 					trim = key.offset + datal - (off+len);
2578d397712bSChris Mason 
2579c5c9cd4dSSage Weil 				if (comp && (skip || trim)) {
2580c5c9cd4dSSage Weil 					ret = -EINVAL;
2581a22285a6SYan, Zheng 					btrfs_end_transaction(trans, root);
2582c5c9cd4dSSage Weil 					goto out;
258331840ae1SZheng Yan 				}
2584c5c9cd4dSSage Weil 				size -= skip + trim;
2585c5c9cd4dSSage Weil 				datal -= skip + trim;
2586a22285a6SYan, Zheng 
2587a22285a6SYan, Zheng 				ret = btrfs_drop_extents(trans, inode,
2588a22285a6SYan, Zheng 							 new_key.offset,
2589a22285a6SYan, Zheng 							 new_key.offset + datal,
2590a22285a6SYan, Zheng 							 &hint_byte, 1);
259179787eaaSJeff Mahoney 				if (ret) {
259279787eaaSJeff Mahoney 					btrfs_abort_transaction(trans, root,
259379787eaaSJeff Mahoney 								ret);
259479787eaaSJeff Mahoney 					btrfs_end_transaction(trans, root);
259579787eaaSJeff Mahoney 					goto out;
259679787eaaSJeff Mahoney 				}
2597a22285a6SYan, Zheng 
2598c5c9cd4dSSage Weil 				ret = btrfs_insert_empty_item(trans, root, path,
2599c5c9cd4dSSage Weil 							      &new_key, size);
260079787eaaSJeff Mahoney 				if (ret) {
260179787eaaSJeff Mahoney 					btrfs_abort_transaction(trans, root,
260279787eaaSJeff Mahoney 								ret);
260379787eaaSJeff Mahoney 					btrfs_end_transaction(trans, root);
260479787eaaSJeff Mahoney 					goto out;
260579787eaaSJeff Mahoney 				}
2606c5c9cd4dSSage Weil 
2607c5c9cd4dSSage Weil 				if (skip) {
2608d397712bSChris Mason 					u32 start =
2609d397712bSChris Mason 					  btrfs_file_extent_calc_inline_size(0);
2610c5c9cd4dSSage Weil 					memmove(buf+start, buf+start+skip,
2611c5c9cd4dSSage Weil 						datal);
2612c5c9cd4dSSage Weil 				}
2613c5c9cd4dSSage Weil 
2614c5c9cd4dSSage Weil 				leaf = path->nodes[0];
2615c5c9cd4dSSage Weil 				slot = path->slots[0];
2616c5c9cd4dSSage Weil 				write_extent_buffer(leaf, buf,
2617c5c9cd4dSSage Weil 					    btrfs_item_ptr_offset(leaf, slot),
2618c5c9cd4dSSage Weil 					    size);
2619c5c9cd4dSSage Weil 				inode_add_bytes(inode, datal);
2620c5c9cd4dSSage Weil 			}
2621c5c9cd4dSSage Weil 
2622c5c9cd4dSSage Weil 			btrfs_mark_buffer_dirty(leaf);
2623b3b4aa74SDavid Sterba 			btrfs_release_path(path);
2624c5c9cd4dSSage Weil 
2625a22285a6SYan, Zheng 			inode->i_mtime = inode->i_ctime = CURRENT_TIME;
2626b5384d48SSage Weil 
2627b5384d48SSage Weil 			/*
2628b5384d48SSage Weil 			 * we round up to the block size at eof when
2629b5384d48SSage Weil 			 * determining which extents to clone above,
2630b5384d48SSage Weil 			 * but shouldn't round up the file size
2631b5384d48SSage Weil 			 */
2632b5384d48SSage Weil 			endoff = new_key.offset + datal;
26335f3888ffSLi Zefan 			if (endoff > destoff+olen)
26345f3888ffSLi Zefan 				endoff = destoff+olen;
2635b5384d48SSage Weil 			if (endoff > inode->i_size)
2636b5384d48SSage Weil 				btrfs_i_size_write(inode, endoff);
2637b5384d48SSage Weil 
2638a22285a6SYan, Zheng 			ret = btrfs_update_inode(trans, root, inode);
263979787eaaSJeff Mahoney 			if (ret) {
264079787eaaSJeff Mahoney 				btrfs_abort_transaction(trans, root, ret);
2641a22285a6SYan, Zheng 				btrfs_end_transaction(trans, root);
264279787eaaSJeff Mahoney 				goto out;
264379787eaaSJeff Mahoney 			}
264479787eaaSJeff Mahoney 			ret = btrfs_end_transaction(trans, root);
2645a22285a6SYan, Zheng 		}
2646c5c9cd4dSSage Weil next:
2647b3b4aa74SDavid Sterba 		btrfs_release_path(path);
2648ae01a0abSYan Zheng 		key.offset++;
2649ae01a0abSYan Zheng 	}
2650f46b5a66SChristoph Hellwig 	ret = 0;
2651f46b5a66SChristoph Hellwig out:
2652b3b4aa74SDavid Sterba 	btrfs_release_path(path);
2653d0082371SJeff Mahoney 	unlock_extent(&BTRFS_I(src)->io_tree, off, off+len);
2654f46b5a66SChristoph Hellwig out_unlock:
2655f46b5a66SChristoph Hellwig 	mutex_unlock(&src->i_mutex);
2656f46b5a66SChristoph Hellwig 	mutex_unlock(&inode->i_mutex);
2657ae01a0abSYan Zheng 	vfree(buf);
2658ae01a0abSYan Zheng 	btrfs_free_path(path);
2659f46b5a66SChristoph Hellwig out_fput:
2660f46b5a66SChristoph Hellwig 	fput(src_file);
2661ab67b7c1SYan Zheng out_drop_write:
26622a79f17eSAl Viro 	mnt_drop_write_file(file);
2663f46b5a66SChristoph Hellwig 	return ret;
2664f46b5a66SChristoph Hellwig }
2665f46b5a66SChristoph Hellwig 
26667a865e8aSChristoph Hellwig static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
2667c5c9cd4dSSage Weil {
2668c5c9cd4dSSage Weil 	struct btrfs_ioctl_clone_range_args args;
2669c5c9cd4dSSage Weil 
26707a865e8aSChristoph Hellwig 	if (copy_from_user(&args, argp, sizeof(args)))
2671c5c9cd4dSSage Weil 		return -EFAULT;
2672c5c9cd4dSSage Weil 	return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2673c5c9cd4dSSage Weil 				 args.src_length, args.dest_offset);
2674c5c9cd4dSSage Weil }
2675c5c9cd4dSSage Weil 
2676f46b5a66SChristoph Hellwig /*
2677f46b5a66SChristoph Hellwig  * there are many ways the trans_start and trans_end ioctls can lead
2678f46b5a66SChristoph Hellwig  * to deadlocks.  They should only be used by applications that
2679f46b5a66SChristoph Hellwig  * basically own the machine, and have a very in depth understanding
2680f46b5a66SChristoph Hellwig  * of all the possible deadlocks and enospc problems.
2681f46b5a66SChristoph Hellwig  */
2682b2950863SChristoph Hellwig static long btrfs_ioctl_trans_start(struct file *file)
2683f46b5a66SChristoph Hellwig {
2684f46b5a66SChristoph Hellwig 	struct inode *inode = fdentry(file)->d_inode;
2685f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(inode)->root;
2686f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
26871ab86aedSSage Weil 	int ret;
2688f46b5a66SChristoph Hellwig 
26891ab86aedSSage Weil 	ret = -EPERM;
2690df5b5520SChristoph Hellwig 	if (!capable(CAP_SYS_ADMIN))
2691f46b5a66SChristoph Hellwig 		goto out;
26921ab86aedSSage Weil 
26931ab86aedSSage Weil 	ret = -EINPROGRESS;
26941ab86aedSSage Weil 	if (file->private_data)
26951ab86aedSSage Weil 		goto out;
26969ca9ee09SSage Weil 
2697b83cc969SLi Zefan 	ret = -EROFS;
2698b83cc969SLi Zefan 	if (btrfs_root_readonly(root))
2699b83cc969SLi Zefan 		goto out;
2700b83cc969SLi Zefan 
2701a561be71SAl Viro 	ret = mnt_want_write_file(file);
2702c146afadSYan Zheng 	if (ret)
2703c146afadSYan Zheng 		goto out;
2704c146afadSYan Zheng 
2705a4abeea4SJosef Bacik 	atomic_inc(&root->fs_info->open_ioctl_trans);
27069ca9ee09SSage Weil 
2707f46b5a66SChristoph Hellwig 	ret = -ENOMEM;
27087a7eaa40SJosef Bacik 	trans = btrfs_start_ioctl_transaction(root);
2709abd30bb0STsutomu Itoh 	if (IS_ERR(trans))
27101ab86aedSSage Weil 		goto out_drop;
27111ab86aedSSage Weil 
27121ab86aedSSage Weil 	file->private_data = trans;
27131ab86aedSSage Weil 	return 0;
27141ab86aedSSage Weil 
27151ab86aedSSage Weil out_drop:
2716a4abeea4SJosef Bacik 	atomic_dec(&root->fs_info->open_ioctl_trans);
27172a79f17eSAl Viro 	mnt_drop_write_file(file);
2718f46b5a66SChristoph Hellwig out:
2719f46b5a66SChristoph Hellwig 	return ret;
2720f46b5a66SChristoph Hellwig }
2721f46b5a66SChristoph Hellwig 
27226ef5ed0dSJosef Bacik static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
27236ef5ed0dSJosef Bacik {
27246ef5ed0dSJosef Bacik 	struct inode *inode = fdentry(file)->d_inode;
27256ef5ed0dSJosef Bacik 	struct btrfs_root *root = BTRFS_I(inode)->root;
27266ef5ed0dSJosef Bacik 	struct btrfs_root *new_root;
27276ef5ed0dSJosef Bacik 	struct btrfs_dir_item *di;
27286ef5ed0dSJosef Bacik 	struct btrfs_trans_handle *trans;
27296ef5ed0dSJosef Bacik 	struct btrfs_path *path;
27306ef5ed0dSJosef Bacik 	struct btrfs_key location;
27316ef5ed0dSJosef Bacik 	struct btrfs_disk_key disk_key;
27326ef5ed0dSJosef Bacik 	struct btrfs_super_block *disk_super;
27336ef5ed0dSJosef Bacik 	u64 features;
27346ef5ed0dSJosef Bacik 	u64 objectid = 0;
27356ef5ed0dSJosef Bacik 	u64 dir_id;
27366ef5ed0dSJosef Bacik 
27376ef5ed0dSJosef Bacik 	if (!capable(CAP_SYS_ADMIN))
27386ef5ed0dSJosef Bacik 		return -EPERM;
27396ef5ed0dSJosef Bacik 
27406ef5ed0dSJosef Bacik 	if (copy_from_user(&objectid, argp, sizeof(objectid)))
27416ef5ed0dSJosef Bacik 		return -EFAULT;
27426ef5ed0dSJosef Bacik 
27436ef5ed0dSJosef Bacik 	if (!objectid)
27446ef5ed0dSJosef Bacik 		objectid = root->root_key.objectid;
27456ef5ed0dSJosef Bacik 
27466ef5ed0dSJosef Bacik 	location.objectid = objectid;
27476ef5ed0dSJosef Bacik 	location.type = BTRFS_ROOT_ITEM_KEY;
27486ef5ed0dSJosef Bacik 	location.offset = (u64)-1;
27496ef5ed0dSJosef Bacik 
27506ef5ed0dSJosef Bacik 	new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
27516ef5ed0dSJosef Bacik 	if (IS_ERR(new_root))
27526ef5ed0dSJosef Bacik 		return PTR_ERR(new_root);
27536ef5ed0dSJosef Bacik 
27546ef5ed0dSJosef Bacik 	if (btrfs_root_refs(&new_root->root_item) == 0)
27556ef5ed0dSJosef Bacik 		return -ENOENT;
27566ef5ed0dSJosef Bacik 
27576ef5ed0dSJosef Bacik 	path = btrfs_alloc_path();
27586ef5ed0dSJosef Bacik 	if (!path)
27596ef5ed0dSJosef Bacik 		return -ENOMEM;
27606ef5ed0dSJosef Bacik 	path->leave_spinning = 1;
27616ef5ed0dSJosef Bacik 
27626ef5ed0dSJosef Bacik 	trans = btrfs_start_transaction(root, 1);
276398d5dc13STsutomu Itoh 	if (IS_ERR(trans)) {
27646ef5ed0dSJosef Bacik 		btrfs_free_path(path);
276598d5dc13STsutomu Itoh 		return PTR_ERR(trans);
27666ef5ed0dSJosef Bacik 	}
27676ef5ed0dSJosef Bacik 
27686c41761fSDavid Sterba 	dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
27696ef5ed0dSJosef Bacik 	di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
27706ef5ed0dSJosef Bacik 				   dir_id, "default", 7, 1);
2771cf1e99a4SDan Carpenter 	if (IS_ERR_OR_NULL(di)) {
27726ef5ed0dSJosef Bacik 		btrfs_free_path(path);
27736ef5ed0dSJosef Bacik 		btrfs_end_transaction(trans, root);
27746ef5ed0dSJosef Bacik 		printk(KERN_ERR "Umm, you don't have the default dir item, "
27756ef5ed0dSJosef Bacik 		       "this isn't going to work\n");
27766ef5ed0dSJosef Bacik 		return -ENOENT;
27776ef5ed0dSJosef Bacik 	}
27786ef5ed0dSJosef Bacik 
27796ef5ed0dSJosef Bacik 	btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
27806ef5ed0dSJosef Bacik 	btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
27816ef5ed0dSJosef Bacik 	btrfs_mark_buffer_dirty(path->nodes[0]);
27826ef5ed0dSJosef Bacik 	btrfs_free_path(path);
27836ef5ed0dSJosef Bacik 
27846c41761fSDavid Sterba 	disk_super = root->fs_info->super_copy;
27856ef5ed0dSJosef Bacik 	features = btrfs_super_incompat_flags(disk_super);
27866ef5ed0dSJosef Bacik 	if (!(features & BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL)) {
27876ef5ed0dSJosef Bacik 		features |= BTRFS_FEATURE_INCOMPAT_DEFAULT_SUBVOL;
27886ef5ed0dSJosef Bacik 		btrfs_set_super_incompat_flags(disk_super, features);
27896ef5ed0dSJosef Bacik 	}
27906ef5ed0dSJosef Bacik 	btrfs_end_transaction(trans, root);
27916ef5ed0dSJosef Bacik 
27926ef5ed0dSJosef Bacik 	return 0;
27936ef5ed0dSJosef Bacik }
27946ef5ed0dSJosef Bacik 
2795bf5fc093SJosef Bacik static void get_block_group_info(struct list_head *groups_list,
2796bf5fc093SJosef Bacik 				 struct btrfs_ioctl_space_info *space)
2797bf5fc093SJosef Bacik {
2798bf5fc093SJosef Bacik 	struct btrfs_block_group_cache *block_group;
2799bf5fc093SJosef Bacik 
2800bf5fc093SJosef Bacik 	space->total_bytes = 0;
2801bf5fc093SJosef Bacik 	space->used_bytes = 0;
2802bf5fc093SJosef Bacik 	space->flags = 0;
2803bf5fc093SJosef Bacik 	list_for_each_entry(block_group, groups_list, list) {
2804bf5fc093SJosef Bacik 		space->flags = block_group->flags;
2805bf5fc093SJosef Bacik 		space->total_bytes += block_group->key.offset;
2806bf5fc093SJosef Bacik 		space->used_bytes +=
2807bf5fc093SJosef Bacik 			btrfs_block_group_used(&block_group->item);
2808bf5fc093SJosef Bacik 	}
2809bf5fc093SJosef Bacik }
2810bf5fc093SJosef Bacik 
28111406e432SJosef Bacik long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
28121406e432SJosef Bacik {
28131406e432SJosef Bacik 	struct btrfs_ioctl_space_args space_args;
28141406e432SJosef Bacik 	struct btrfs_ioctl_space_info space;
28151406e432SJosef Bacik 	struct btrfs_ioctl_space_info *dest;
28167fde62bfSChris Mason 	struct btrfs_ioctl_space_info *dest_orig;
281713f2696fSDaniel J Blueman 	struct btrfs_ioctl_space_info __user *user_dest;
28181406e432SJosef Bacik 	struct btrfs_space_info *info;
2819bf5fc093SJosef Bacik 	u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
2820bf5fc093SJosef Bacik 		       BTRFS_BLOCK_GROUP_SYSTEM,
2821bf5fc093SJosef Bacik 		       BTRFS_BLOCK_GROUP_METADATA,
2822bf5fc093SJosef Bacik 		       BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
2823bf5fc093SJosef Bacik 	int num_types = 4;
28247fde62bfSChris Mason 	int alloc_size;
28251406e432SJosef Bacik 	int ret = 0;
282651788b1bSDan Rosenberg 	u64 slot_count = 0;
2827bf5fc093SJosef Bacik 	int i, c;
28281406e432SJosef Bacik 
28291406e432SJosef Bacik 	if (copy_from_user(&space_args,
28301406e432SJosef Bacik 			   (struct btrfs_ioctl_space_args __user *)arg,
28311406e432SJosef Bacik 			   sizeof(space_args)))
28321406e432SJosef Bacik 		return -EFAULT;
28331406e432SJosef Bacik 
2834bf5fc093SJosef Bacik 	for (i = 0; i < num_types; i++) {
2835bf5fc093SJosef Bacik 		struct btrfs_space_info *tmp;
2836bf5fc093SJosef Bacik 
2837bf5fc093SJosef Bacik 		info = NULL;
28387fde62bfSChris Mason 		rcu_read_lock();
2839bf5fc093SJosef Bacik 		list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2840bf5fc093SJosef Bacik 					list) {
2841bf5fc093SJosef Bacik 			if (tmp->flags == types[i]) {
2842bf5fc093SJosef Bacik 				info = tmp;
2843bf5fc093SJosef Bacik 				break;
2844bf5fc093SJosef Bacik 			}
2845bf5fc093SJosef Bacik 		}
28467fde62bfSChris Mason 		rcu_read_unlock();
28471406e432SJosef Bacik 
2848bf5fc093SJosef Bacik 		if (!info)
2849bf5fc093SJosef Bacik 			continue;
2850bf5fc093SJosef Bacik 
2851bf5fc093SJosef Bacik 		down_read(&info->groups_sem);
2852bf5fc093SJosef Bacik 		for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2853bf5fc093SJosef Bacik 			if (!list_empty(&info->block_groups[c]))
2854bf5fc093SJosef Bacik 				slot_count++;
2855bf5fc093SJosef Bacik 		}
2856bf5fc093SJosef Bacik 		up_read(&info->groups_sem);
2857bf5fc093SJosef Bacik 	}
2858bf5fc093SJosef Bacik 
28597fde62bfSChris Mason 	/* space_slots == 0 means they are asking for a count */
28607fde62bfSChris Mason 	if (space_args.space_slots == 0) {
28617fde62bfSChris Mason 		space_args.total_spaces = slot_count;
28627fde62bfSChris Mason 		goto out;
28637fde62bfSChris Mason 	}
2864bf5fc093SJosef Bacik 
286551788b1bSDan Rosenberg 	slot_count = min_t(u64, space_args.space_slots, slot_count);
2866bf5fc093SJosef Bacik 
28677fde62bfSChris Mason 	alloc_size = sizeof(*dest) * slot_count;
2868bf5fc093SJosef Bacik 
28697fde62bfSChris Mason 	/* we generally have at most 6 or so space infos, one for each raid
28707fde62bfSChris Mason 	 * level.  So, a whole page should be more than enough for everyone
28717fde62bfSChris Mason 	 */
28727fde62bfSChris Mason 	if (alloc_size > PAGE_CACHE_SIZE)
28737fde62bfSChris Mason 		return -ENOMEM;
28747fde62bfSChris Mason 
28757fde62bfSChris Mason 	space_args.total_spaces = 0;
28767fde62bfSChris Mason 	dest = kmalloc(alloc_size, GFP_NOFS);
28777fde62bfSChris Mason 	if (!dest)
28787fde62bfSChris Mason 		return -ENOMEM;
28797fde62bfSChris Mason 	dest_orig = dest;
28807fde62bfSChris Mason 
28817fde62bfSChris Mason 	/* now we have a buffer to copy into */
2882bf5fc093SJosef Bacik 	for (i = 0; i < num_types; i++) {
2883bf5fc093SJosef Bacik 		struct btrfs_space_info *tmp;
2884bf5fc093SJosef Bacik 
288551788b1bSDan Rosenberg 		if (!slot_count)
288651788b1bSDan Rosenberg 			break;
288751788b1bSDan Rosenberg 
2888bf5fc093SJosef Bacik 		info = NULL;
28891406e432SJosef Bacik 		rcu_read_lock();
2890bf5fc093SJosef Bacik 		list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
2891bf5fc093SJosef Bacik 					list) {
2892bf5fc093SJosef Bacik 			if (tmp->flags == types[i]) {
2893bf5fc093SJosef Bacik 				info = tmp;
28947fde62bfSChris Mason 				break;
2895bf5fc093SJosef Bacik 			}
2896bf5fc093SJosef Bacik 		}
2897bf5fc093SJosef Bacik 		rcu_read_unlock();
28987fde62bfSChris Mason 
2899bf5fc093SJosef Bacik 		if (!info)
2900bf5fc093SJosef Bacik 			continue;
2901bf5fc093SJosef Bacik 		down_read(&info->groups_sem);
2902bf5fc093SJosef Bacik 		for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
2903bf5fc093SJosef Bacik 			if (!list_empty(&info->block_groups[c])) {
2904bf5fc093SJosef Bacik 				get_block_group_info(&info->block_groups[c],
2905bf5fc093SJosef Bacik 						     &space);
29067fde62bfSChris Mason 				memcpy(dest, &space, sizeof(space));
29071406e432SJosef Bacik 				dest++;
29081406e432SJosef Bacik 				space_args.total_spaces++;
290951788b1bSDan Rosenberg 				slot_count--;
29101406e432SJosef Bacik 			}
291151788b1bSDan Rosenberg 			if (!slot_count)
291251788b1bSDan Rosenberg 				break;
2913bf5fc093SJosef Bacik 		}
2914bf5fc093SJosef Bacik 		up_read(&info->groups_sem);
2915bf5fc093SJosef Bacik 	}
29161406e432SJosef Bacik 
29177fde62bfSChris Mason 	user_dest = (struct btrfs_ioctl_space_info *)
29187fde62bfSChris Mason 		(arg + sizeof(struct btrfs_ioctl_space_args));
29197fde62bfSChris Mason 
29207fde62bfSChris Mason 	if (copy_to_user(user_dest, dest_orig, alloc_size))
29217fde62bfSChris Mason 		ret = -EFAULT;
29227fde62bfSChris Mason 
29237fde62bfSChris Mason 	kfree(dest_orig);
29247fde62bfSChris Mason out:
29257fde62bfSChris Mason 	if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
29261406e432SJosef Bacik 		ret = -EFAULT;
29271406e432SJosef Bacik 
29281406e432SJosef Bacik 	return ret;
29291406e432SJosef Bacik }
29301406e432SJosef Bacik 
2931f46b5a66SChristoph Hellwig /*
2932f46b5a66SChristoph Hellwig  * there are many ways the trans_start and trans_end ioctls can lead
2933f46b5a66SChristoph Hellwig  * to deadlocks.  They should only be used by applications that
2934f46b5a66SChristoph Hellwig  * basically own the machine, and have a very in depth understanding
2935f46b5a66SChristoph Hellwig  * of all the possible deadlocks and enospc problems.
2936f46b5a66SChristoph Hellwig  */
2937f46b5a66SChristoph Hellwig long btrfs_ioctl_trans_end(struct file *file)
2938f46b5a66SChristoph Hellwig {
2939f46b5a66SChristoph Hellwig 	struct inode *inode = fdentry(file)->d_inode;
2940f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(inode)->root;
2941f46b5a66SChristoph Hellwig 	struct btrfs_trans_handle *trans;
2942f46b5a66SChristoph Hellwig 
2943f46b5a66SChristoph Hellwig 	trans = file->private_data;
29441ab86aedSSage Weil 	if (!trans)
29451ab86aedSSage Weil 		return -EINVAL;
2946b214107eSChristoph Hellwig 	file->private_data = NULL;
29479ca9ee09SSage Weil 
29481ab86aedSSage Weil 	btrfs_end_transaction(trans, root);
29491ab86aedSSage Weil 
2950a4abeea4SJosef Bacik 	atomic_dec(&root->fs_info->open_ioctl_trans);
29519ca9ee09SSage Weil 
29522a79f17eSAl Viro 	mnt_drop_write_file(file);
29531ab86aedSSage Weil 	return 0;
2954f46b5a66SChristoph Hellwig }
2955f46b5a66SChristoph Hellwig 
295646204592SSage Weil static noinline long btrfs_ioctl_start_sync(struct file *file, void __user *argp)
295746204592SSage Weil {
295846204592SSage Weil 	struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
295946204592SSage Weil 	struct btrfs_trans_handle *trans;
296046204592SSage Weil 	u64 transid;
2961db5b493aSTsutomu Itoh 	int ret;
296246204592SSage Weil 
296346204592SSage Weil 	trans = btrfs_start_transaction(root, 0);
296498d5dc13STsutomu Itoh 	if (IS_ERR(trans))
296598d5dc13STsutomu Itoh 		return PTR_ERR(trans);
296646204592SSage Weil 	transid = trans->transid;
2967db5b493aSTsutomu Itoh 	ret = btrfs_commit_transaction_async(trans, root, 0);
29688b2b2d3cSTsutomu Itoh 	if (ret) {
29698b2b2d3cSTsutomu Itoh 		btrfs_end_transaction(trans, root);
2970db5b493aSTsutomu Itoh 		return ret;
29718b2b2d3cSTsutomu Itoh 	}
297246204592SSage Weil 
297346204592SSage Weil 	if (argp)
297446204592SSage Weil 		if (copy_to_user(argp, &transid, sizeof(transid)))
297546204592SSage Weil 			return -EFAULT;
297646204592SSage Weil 	return 0;
297746204592SSage Weil }
297846204592SSage Weil 
297946204592SSage Weil static noinline long btrfs_ioctl_wait_sync(struct file *file, void __user *argp)
298046204592SSage Weil {
298146204592SSage Weil 	struct btrfs_root *root = BTRFS_I(file->f_dentry->d_inode)->root;
298246204592SSage Weil 	u64 transid;
298346204592SSage Weil 
298446204592SSage Weil 	if (argp) {
298546204592SSage Weil 		if (copy_from_user(&transid, argp, sizeof(transid)))
298646204592SSage Weil 			return -EFAULT;
298746204592SSage Weil 	} else {
298846204592SSage Weil 		transid = 0;  /* current trans */
298946204592SSage Weil 	}
299046204592SSage Weil 	return btrfs_wait_for_commit(root, transid);
299146204592SSage Weil }
299246204592SSage Weil 
2993475f6387SJan Schmidt static long btrfs_ioctl_scrub(struct btrfs_root *root, void __user *arg)
2994475f6387SJan Schmidt {
2995475f6387SJan Schmidt 	int ret;
2996475f6387SJan Schmidt 	struct btrfs_ioctl_scrub_args *sa;
2997475f6387SJan Schmidt 
2998475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
2999475f6387SJan Schmidt 		return -EPERM;
3000475f6387SJan Schmidt 
3001475f6387SJan Schmidt 	sa = memdup_user(arg, sizeof(*sa));
3002475f6387SJan Schmidt 	if (IS_ERR(sa))
3003475f6387SJan Schmidt 		return PTR_ERR(sa);
3004475f6387SJan Schmidt 
3005475f6387SJan Schmidt 	ret = btrfs_scrub_dev(root, sa->devid, sa->start, sa->end,
30068628764eSArne Jansen 			      &sa->progress, sa->flags & BTRFS_SCRUB_READONLY);
3007475f6387SJan Schmidt 
3008475f6387SJan Schmidt 	if (copy_to_user(arg, sa, sizeof(*sa)))
3009475f6387SJan Schmidt 		ret = -EFAULT;
3010475f6387SJan Schmidt 
3011475f6387SJan Schmidt 	kfree(sa);
3012475f6387SJan Schmidt 	return ret;
3013475f6387SJan Schmidt }
3014475f6387SJan Schmidt 
3015475f6387SJan Schmidt static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3016475f6387SJan Schmidt {
3017475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
3018475f6387SJan Schmidt 		return -EPERM;
3019475f6387SJan Schmidt 
3020475f6387SJan Schmidt 	return btrfs_scrub_cancel(root);
3021475f6387SJan Schmidt }
3022475f6387SJan Schmidt 
3023475f6387SJan Schmidt static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3024475f6387SJan Schmidt 				       void __user *arg)
3025475f6387SJan Schmidt {
3026475f6387SJan Schmidt 	struct btrfs_ioctl_scrub_args *sa;
3027475f6387SJan Schmidt 	int ret;
3028475f6387SJan Schmidt 
3029475f6387SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
3030475f6387SJan Schmidt 		return -EPERM;
3031475f6387SJan Schmidt 
3032475f6387SJan Schmidt 	sa = memdup_user(arg, sizeof(*sa));
3033475f6387SJan Schmidt 	if (IS_ERR(sa))
3034475f6387SJan Schmidt 		return PTR_ERR(sa);
3035475f6387SJan Schmidt 
3036475f6387SJan Schmidt 	ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3037475f6387SJan Schmidt 
3038475f6387SJan Schmidt 	if (copy_to_user(arg, sa, sizeof(*sa)))
3039475f6387SJan Schmidt 		ret = -EFAULT;
3040475f6387SJan Schmidt 
3041475f6387SJan Schmidt 	kfree(sa);
3042475f6387SJan Schmidt 	return ret;
3043475f6387SJan Schmidt }
3044475f6387SJan Schmidt 
3045d7728c96SJan Schmidt static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3046d7728c96SJan Schmidt {
3047d7728c96SJan Schmidt 	int ret = 0;
3048d7728c96SJan Schmidt 	int i;
3049740c3d22SChris Mason 	u64 rel_ptr;
3050d7728c96SJan Schmidt 	int size;
3051806468f8SChris Mason 	struct btrfs_ioctl_ino_path_args *ipa = NULL;
3052d7728c96SJan Schmidt 	struct inode_fs_paths *ipath = NULL;
3053d7728c96SJan Schmidt 	struct btrfs_path *path;
3054d7728c96SJan Schmidt 
3055d7728c96SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
3056d7728c96SJan Schmidt 		return -EPERM;
3057d7728c96SJan Schmidt 
3058d7728c96SJan Schmidt 	path = btrfs_alloc_path();
3059d7728c96SJan Schmidt 	if (!path) {
3060d7728c96SJan Schmidt 		ret = -ENOMEM;
3061d7728c96SJan Schmidt 		goto out;
3062d7728c96SJan Schmidt 	}
3063d7728c96SJan Schmidt 
3064d7728c96SJan Schmidt 	ipa = memdup_user(arg, sizeof(*ipa));
3065d7728c96SJan Schmidt 	if (IS_ERR(ipa)) {
3066d7728c96SJan Schmidt 		ret = PTR_ERR(ipa);
3067d7728c96SJan Schmidt 		ipa = NULL;
3068d7728c96SJan Schmidt 		goto out;
3069d7728c96SJan Schmidt 	}
3070d7728c96SJan Schmidt 
3071d7728c96SJan Schmidt 	size = min_t(u32, ipa->size, 4096);
3072d7728c96SJan Schmidt 	ipath = init_ipath(size, root, path);
3073d7728c96SJan Schmidt 	if (IS_ERR(ipath)) {
3074d7728c96SJan Schmidt 		ret = PTR_ERR(ipath);
3075d7728c96SJan Schmidt 		ipath = NULL;
3076d7728c96SJan Schmidt 		goto out;
3077d7728c96SJan Schmidt 	}
3078d7728c96SJan Schmidt 
3079d7728c96SJan Schmidt 	ret = paths_from_inode(ipa->inum, ipath);
3080d7728c96SJan Schmidt 	if (ret < 0)
3081d7728c96SJan Schmidt 		goto out;
3082d7728c96SJan Schmidt 
3083d7728c96SJan Schmidt 	for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
3084745c4d8eSJeff Mahoney 		rel_ptr = ipath->fspath->val[i] -
3085745c4d8eSJeff Mahoney 			  (u64)(unsigned long)ipath->fspath->val;
3086740c3d22SChris Mason 		ipath->fspath->val[i] = rel_ptr;
3087d7728c96SJan Schmidt 	}
3088d7728c96SJan Schmidt 
3089745c4d8eSJeff Mahoney 	ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3090745c4d8eSJeff Mahoney 			   (void *)(unsigned long)ipath->fspath, size);
3091d7728c96SJan Schmidt 	if (ret) {
3092d7728c96SJan Schmidt 		ret = -EFAULT;
3093d7728c96SJan Schmidt 		goto out;
3094d7728c96SJan Schmidt 	}
3095d7728c96SJan Schmidt 
3096d7728c96SJan Schmidt out:
3097d7728c96SJan Schmidt 	btrfs_free_path(path);
3098d7728c96SJan Schmidt 	free_ipath(ipath);
3099d7728c96SJan Schmidt 	kfree(ipa);
3100d7728c96SJan Schmidt 
3101d7728c96SJan Schmidt 	return ret;
3102d7728c96SJan Schmidt }
3103d7728c96SJan Schmidt 
3104d7728c96SJan Schmidt static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3105d7728c96SJan Schmidt {
3106d7728c96SJan Schmidt 	struct btrfs_data_container *inodes = ctx;
3107d7728c96SJan Schmidt 	const size_t c = 3 * sizeof(u64);
3108d7728c96SJan Schmidt 
3109d7728c96SJan Schmidt 	if (inodes->bytes_left >= c) {
3110d7728c96SJan Schmidt 		inodes->bytes_left -= c;
3111d7728c96SJan Schmidt 		inodes->val[inodes->elem_cnt] = inum;
3112d7728c96SJan Schmidt 		inodes->val[inodes->elem_cnt + 1] = offset;
3113d7728c96SJan Schmidt 		inodes->val[inodes->elem_cnt + 2] = root;
3114d7728c96SJan Schmidt 		inodes->elem_cnt += 3;
3115d7728c96SJan Schmidt 	} else {
3116d7728c96SJan Schmidt 		inodes->bytes_missing += c - inodes->bytes_left;
3117d7728c96SJan Schmidt 		inodes->bytes_left = 0;
3118d7728c96SJan Schmidt 		inodes->elem_missed += 3;
3119d7728c96SJan Schmidt 	}
3120d7728c96SJan Schmidt 
3121d7728c96SJan Schmidt 	return 0;
3122d7728c96SJan Schmidt }
3123d7728c96SJan Schmidt 
3124d7728c96SJan Schmidt static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3125d7728c96SJan Schmidt 					void __user *arg)
3126d7728c96SJan Schmidt {
3127d7728c96SJan Schmidt 	int ret = 0;
3128d7728c96SJan Schmidt 	int size;
31294692cf58SJan Schmidt 	u64 extent_item_pos;
3130d7728c96SJan Schmidt 	struct btrfs_ioctl_logical_ino_args *loi;
3131d7728c96SJan Schmidt 	struct btrfs_data_container *inodes = NULL;
3132d7728c96SJan Schmidt 	struct btrfs_path *path = NULL;
3133d7728c96SJan Schmidt 	struct btrfs_key key;
3134d7728c96SJan Schmidt 
3135d7728c96SJan Schmidt 	if (!capable(CAP_SYS_ADMIN))
3136d7728c96SJan Schmidt 		return -EPERM;
3137d7728c96SJan Schmidt 
3138d7728c96SJan Schmidt 	loi = memdup_user(arg, sizeof(*loi));
3139d7728c96SJan Schmidt 	if (IS_ERR(loi)) {
3140d7728c96SJan Schmidt 		ret = PTR_ERR(loi);
3141d7728c96SJan Schmidt 		loi = NULL;
3142d7728c96SJan Schmidt 		goto out;
3143d7728c96SJan Schmidt 	}
3144d7728c96SJan Schmidt 
3145d7728c96SJan Schmidt 	path = btrfs_alloc_path();
3146d7728c96SJan Schmidt 	if (!path) {
3147d7728c96SJan Schmidt 		ret = -ENOMEM;
3148d7728c96SJan Schmidt 		goto out;
3149d7728c96SJan Schmidt 	}
3150d7728c96SJan Schmidt 
3151d7728c96SJan Schmidt 	size = min_t(u32, loi->size, 4096);
3152d7728c96SJan Schmidt 	inodes = init_data_container(size);
3153d7728c96SJan Schmidt 	if (IS_ERR(inodes)) {
3154d7728c96SJan Schmidt 		ret = PTR_ERR(inodes);
3155d7728c96SJan Schmidt 		inodes = NULL;
3156d7728c96SJan Schmidt 		goto out;
3157d7728c96SJan Schmidt 	}
3158d7728c96SJan Schmidt 
3159d7728c96SJan Schmidt 	ret = extent_from_logical(root->fs_info, loi->logical, path, &key);
31604692cf58SJan Schmidt 	btrfs_release_path(path);
3161d7728c96SJan Schmidt 
3162d7728c96SJan Schmidt 	if (ret & BTRFS_EXTENT_FLAG_TREE_BLOCK)
3163d7728c96SJan Schmidt 		ret = -ENOENT;
3164d7728c96SJan Schmidt 	if (ret < 0)
3165d7728c96SJan Schmidt 		goto out;
3166d7728c96SJan Schmidt 
31674692cf58SJan Schmidt 	extent_item_pos = loi->logical - key.objectid;
31687a3ae2f8SJan Schmidt 	ret = iterate_extent_inodes(root->fs_info, key.objectid,
31697a3ae2f8SJan Schmidt 					extent_item_pos, 0, build_ino_list,
31704692cf58SJan Schmidt 					inodes);
3171d7728c96SJan Schmidt 
3172d7728c96SJan Schmidt 	if (ret < 0)
3173d7728c96SJan Schmidt 		goto out;
3174d7728c96SJan Schmidt 
3175745c4d8eSJeff Mahoney 	ret = copy_to_user((void *)(unsigned long)loi->inodes,
3176745c4d8eSJeff Mahoney 			   (void *)(unsigned long)inodes, size);
3177d7728c96SJan Schmidt 	if (ret)
3178d7728c96SJan Schmidt 		ret = -EFAULT;
3179d7728c96SJan Schmidt 
3180d7728c96SJan Schmidt out:
3181d7728c96SJan Schmidt 	btrfs_free_path(path);
3182d7728c96SJan Schmidt 	kfree(inodes);
3183d7728c96SJan Schmidt 	kfree(loi);
3184d7728c96SJan Schmidt 
3185d7728c96SJan Schmidt 	return ret;
3186d7728c96SJan Schmidt }
3187d7728c96SJan Schmidt 
318819a39dceSIlya Dryomov void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
3189c9e9f97bSIlya Dryomov 			       struct btrfs_ioctl_balance_args *bargs)
3190c9e9f97bSIlya Dryomov {
3191c9e9f97bSIlya Dryomov 	struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3192c9e9f97bSIlya Dryomov 
3193c9e9f97bSIlya Dryomov 	bargs->flags = bctl->flags;
3194c9e9f97bSIlya Dryomov 
3195837d5b6eSIlya Dryomov 	if (atomic_read(&fs_info->balance_running))
3196837d5b6eSIlya Dryomov 		bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3197837d5b6eSIlya Dryomov 	if (atomic_read(&fs_info->balance_pause_req))
3198837d5b6eSIlya Dryomov 		bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
3199a7e99c69SIlya Dryomov 	if (atomic_read(&fs_info->balance_cancel_req))
3200a7e99c69SIlya Dryomov 		bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
3201837d5b6eSIlya Dryomov 
3202c9e9f97bSIlya Dryomov 	memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3203c9e9f97bSIlya Dryomov 	memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3204c9e9f97bSIlya Dryomov 	memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
320519a39dceSIlya Dryomov 
320619a39dceSIlya Dryomov 	if (lock) {
320719a39dceSIlya Dryomov 		spin_lock(&fs_info->balance_lock);
320819a39dceSIlya Dryomov 		memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
320919a39dceSIlya Dryomov 		spin_unlock(&fs_info->balance_lock);
321019a39dceSIlya Dryomov 	} else {
321119a39dceSIlya Dryomov 		memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
321219a39dceSIlya Dryomov 	}
3213c9e9f97bSIlya Dryomov }
3214c9e9f97bSIlya Dryomov 
3215c9e9f97bSIlya Dryomov static long btrfs_ioctl_balance(struct btrfs_root *root, void __user *arg)
3216c9e9f97bSIlya Dryomov {
3217c9e9f97bSIlya Dryomov 	struct btrfs_fs_info *fs_info = root->fs_info;
3218c9e9f97bSIlya Dryomov 	struct btrfs_ioctl_balance_args *bargs;
3219c9e9f97bSIlya Dryomov 	struct btrfs_balance_control *bctl;
3220c9e9f97bSIlya Dryomov 	int ret;
3221c9e9f97bSIlya Dryomov 
3222c9e9f97bSIlya Dryomov 	if (!capable(CAP_SYS_ADMIN))
3223c9e9f97bSIlya Dryomov 		return -EPERM;
3224c9e9f97bSIlya Dryomov 
3225c9e9f97bSIlya Dryomov 	if (fs_info->sb->s_flags & MS_RDONLY)
3226c9e9f97bSIlya Dryomov 		return -EROFS;
3227c9e9f97bSIlya Dryomov 
3228c9e9f97bSIlya Dryomov 	mutex_lock(&fs_info->volume_mutex);
3229c9e9f97bSIlya Dryomov 	mutex_lock(&fs_info->balance_mutex);
3230c9e9f97bSIlya Dryomov 
3231c9e9f97bSIlya Dryomov 	if (arg) {
3232c9e9f97bSIlya Dryomov 		bargs = memdup_user(arg, sizeof(*bargs));
3233c9e9f97bSIlya Dryomov 		if (IS_ERR(bargs)) {
3234c9e9f97bSIlya Dryomov 			ret = PTR_ERR(bargs);
3235c9e9f97bSIlya Dryomov 			goto out;
3236c9e9f97bSIlya Dryomov 		}
3237de322263SIlya Dryomov 
3238de322263SIlya Dryomov 		if (bargs->flags & BTRFS_BALANCE_RESUME) {
3239de322263SIlya Dryomov 			if (!fs_info->balance_ctl) {
3240de322263SIlya Dryomov 				ret = -ENOTCONN;
3241de322263SIlya Dryomov 				goto out_bargs;
3242de322263SIlya Dryomov 			}
3243de322263SIlya Dryomov 
3244de322263SIlya Dryomov 			bctl = fs_info->balance_ctl;
3245de322263SIlya Dryomov 			spin_lock(&fs_info->balance_lock);
3246de322263SIlya Dryomov 			bctl->flags |= BTRFS_BALANCE_RESUME;
3247de322263SIlya Dryomov 			spin_unlock(&fs_info->balance_lock);
3248de322263SIlya Dryomov 
3249de322263SIlya Dryomov 			goto do_balance;
3250de322263SIlya Dryomov 		}
3251c9e9f97bSIlya Dryomov 	} else {
3252c9e9f97bSIlya Dryomov 		bargs = NULL;
3253c9e9f97bSIlya Dryomov 	}
3254c9e9f97bSIlya Dryomov 
3255837d5b6eSIlya Dryomov 	if (fs_info->balance_ctl) {
3256837d5b6eSIlya Dryomov 		ret = -EINPROGRESS;
3257837d5b6eSIlya Dryomov 		goto out_bargs;
3258837d5b6eSIlya Dryomov 	}
3259837d5b6eSIlya Dryomov 
3260c9e9f97bSIlya Dryomov 	bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3261c9e9f97bSIlya Dryomov 	if (!bctl) {
3262c9e9f97bSIlya Dryomov 		ret = -ENOMEM;
3263c9e9f97bSIlya Dryomov 		goto out_bargs;
3264c9e9f97bSIlya Dryomov 	}
3265c9e9f97bSIlya Dryomov 
3266c9e9f97bSIlya Dryomov 	bctl->fs_info = fs_info;
3267c9e9f97bSIlya Dryomov 	if (arg) {
3268c9e9f97bSIlya Dryomov 		memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3269c9e9f97bSIlya Dryomov 		memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3270c9e9f97bSIlya Dryomov 		memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3271c9e9f97bSIlya Dryomov 
3272c9e9f97bSIlya Dryomov 		bctl->flags = bargs->flags;
3273f43ffb60SIlya Dryomov 	} else {
3274f43ffb60SIlya Dryomov 		/* balance everything - no filters */
3275f43ffb60SIlya Dryomov 		bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
3276c9e9f97bSIlya Dryomov 	}
3277c9e9f97bSIlya Dryomov 
3278de322263SIlya Dryomov do_balance:
3279c9e9f97bSIlya Dryomov 	ret = btrfs_balance(bctl, bargs);
3280c9e9f97bSIlya Dryomov 	/*
3281837d5b6eSIlya Dryomov 	 * bctl is freed in __cancel_balance or in free_fs_info if
3282837d5b6eSIlya Dryomov 	 * restriper was paused all the way until unmount
3283c9e9f97bSIlya Dryomov 	 */
3284c9e9f97bSIlya Dryomov 	if (arg) {
3285c9e9f97bSIlya Dryomov 		if (copy_to_user(arg, bargs, sizeof(*bargs)))
3286c9e9f97bSIlya Dryomov 			ret = -EFAULT;
3287c9e9f97bSIlya Dryomov 	}
3288c9e9f97bSIlya Dryomov 
3289c9e9f97bSIlya Dryomov out_bargs:
3290c9e9f97bSIlya Dryomov 	kfree(bargs);
3291c9e9f97bSIlya Dryomov out:
3292c9e9f97bSIlya Dryomov 	mutex_unlock(&fs_info->balance_mutex);
3293c9e9f97bSIlya Dryomov 	mutex_unlock(&fs_info->volume_mutex);
3294c9e9f97bSIlya Dryomov 	return ret;
3295c9e9f97bSIlya Dryomov }
3296c9e9f97bSIlya Dryomov 
3297837d5b6eSIlya Dryomov static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3298837d5b6eSIlya Dryomov {
3299837d5b6eSIlya Dryomov 	if (!capable(CAP_SYS_ADMIN))
3300837d5b6eSIlya Dryomov 		return -EPERM;
3301837d5b6eSIlya Dryomov 
3302837d5b6eSIlya Dryomov 	switch (cmd) {
3303837d5b6eSIlya Dryomov 	case BTRFS_BALANCE_CTL_PAUSE:
3304837d5b6eSIlya Dryomov 		return btrfs_pause_balance(root->fs_info);
3305a7e99c69SIlya Dryomov 	case BTRFS_BALANCE_CTL_CANCEL:
3306a7e99c69SIlya Dryomov 		return btrfs_cancel_balance(root->fs_info);
3307837d5b6eSIlya Dryomov 	}
3308837d5b6eSIlya Dryomov 
3309837d5b6eSIlya Dryomov 	return -EINVAL;
3310837d5b6eSIlya Dryomov }
3311837d5b6eSIlya Dryomov 
331219a39dceSIlya Dryomov static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
331319a39dceSIlya Dryomov 					 void __user *arg)
331419a39dceSIlya Dryomov {
331519a39dceSIlya Dryomov 	struct btrfs_fs_info *fs_info = root->fs_info;
331619a39dceSIlya Dryomov 	struct btrfs_ioctl_balance_args *bargs;
331719a39dceSIlya Dryomov 	int ret = 0;
331819a39dceSIlya Dryomov 
331919a39dceSIlya Dryomov 	if (!capable(CAP_SYS_ADMIN))
332019a39dceSIlya Dryomov 		return -EPERM;
332119a39dceSIlya Dryomov 
332219a39dceSIlya Dryomov 	mutex_lock(&fs_info->balance_mutex);
332319a39dceSIlya Dryomov 	if (!fs_info->balance_ctl) {
332419a39dceSIlya Dryomov 		ret = -ENOTCONN;
332519a39dceSIlya Dryomov 		goto out;
332619a39dceSIlya Dryomov 	}
332719a39dceSIlya Dryomov 
332819a39dceSIlya Dryomov 	bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
332919a39dceSIlya Dryomov 	if (!bargs) {
333019a39dceSIlya Dryomov 		ret = -ENOMEM;
333119a39dceSIlya Dryomov 		goto out;
333219a39dceSIlya Dryomov 	}
333319a39dceSIlya Dryomov 
333419a39dceSIlya Dryomov 	update_ioctl_balance_args(fs_info, 1, bargs);
333519a39dceSIlya Dryomov 
333619a39dceSIlya Dryomov 	if (copy_to_user(arg, bargs, sizeof(*bargs)))
333719a39dceSIlya Dryomov 		ret = -EFAULT;
333819a39dceSIlya Dryomov 
333919a39dceSIlya Dryomov 	kfree(bargs);
334019a39dceSIlya Dryomov out:
334119a39dceSIlya Dryomov 	mutex_unlock(&fs_info->balance_mutex);
334219a39dceSIlya Dryomov 	return ret;
334319a39dceSIlya Dryomov }
334419a39dceSIlya Dryomov 
3345f46b5a66SChristoph Hellwig long btrfs_ioctl(struct file *file, unsigned int
3346f46b5a66SChristoph Hellwig 		cmd, unsigned long arg)
3347f46b5a66SChristoph Hellwig {
3348f46b5a66SChristoph Hellwig 	struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
33494bcabaa3SChristoph Hellwig 	void __user *argp = (void __user *)arg;
3350f46b5a66SChristoph Hellwig 
3351f46b5a66SChristoph Hellwig 	switch (cmd) {
33526cbff00fSChristoph Hellwig 	case FS_IOC_GETFLAGS:
33536cbff00fSChristoph Hellwig 		return btrfs_ioctl_getflags(file, argp);
33546cbff00fSChristoph Hellwig 	case FS_IOC_SETFLAGS:
33556cbff00fSChristoph Hellwig 		return btrfs_ioctl_setflags(file, argp);
33566cbff00fSChristoph Hellwig 	case FS_IOC_GETVERSION:
33576cbff00fSChristoph Hellwig 		return btrfs_ioctl_getversion(file, argp);
3358f7039b1dSLi Dongyang 	case FITRIM:
3359f7039b1dSLi Dongyang 		return btrfs_ioctl_fitrim(file, argp);
3360f46b5a66SChristoph Hellwig 	case BTRFS_IOC_SNAP_CREATE:
3361fa0d2b9bSLi Zefan 		return btrfs_ioctl_snap_create(file, argp, 0);
3362fdfb1e4fSLi Zefan 	case BTRFS_IOC_SNAP_CREATE_V2:
3363fa0d2b9bSLi Zefan 		return btrfs_ioctl_snap_create_v2(file, argp, 0);
33643de4586cSChris Mason 	case BTRFS_IOC_SUBVOL_CREATE:
3365fa0d2b9bSLi Zefan 		return btrfs_ioctl_snap_create(file, argp, 1);
336676dda93cSYan, Zheng 	case BTRFS_IOC_SNAP_DESTROY:
336776dda93cSYan, Zheng 		return btrfs_ioctl_snap_destroy(file, argp);
33680caa102dSLi Zefan 	case BTRFS_IOC_SUBVOL_GETFLAGS:
33690caa102dSLi Zefan 		return btrfs_ioctl_subvol_getflags(file, argp);
33700caa102dSLi Zefan 	case BTRFS_IOC_SUBVOL_SETFLAGS:
33710caa102dSLi Zefan 		return btrfs_ioctl_subvol_setflags(file, argp);
33726ef5ed0dSJosef Bacik 	case BTRFS_IOC_DEFAULT_SUBVOL:
33736ef5ed0dSJosef Bacik 		return btrfs_ioctl_default_subvol(file, argp);
3374f46b5a66SChristoph Hellwig 	case BTRFS_IOC_DEFRAG:
33751e701a32SChris Mason 		return btrfs_ioctl_defrag(file, NULL);
33761e701a32SChris Mason 	case BTRFS_IOC_DEFRAG_RANGE:
33771e701a32SChris Mason 		return btrfs_ioctl_defrag(file, argp);
3378f46b5a66SChristoph Hellwig 	case BTRFS_IOC_RESIZE:
33794bcabaa3SChristoph Hellwig 		return btrfs_ioctl_resize(root, argp);
3380f46b5a66SChristoph Hellwig 	case BTRFS_IOC_ADD_DEV:
33814bcabaa3SChristoph Hellwig 		return btrfs_ioctl_add_dev(root, argp);
3382f46b5a66SChristoph Hellwig 	case BTRFS_IOC_RM_DEV:
33834bcabaa3SChristoph Hellwig 		return btrfs_ioctl_rm_dev(root, argp);
3384475f6387SJan Schmidt 	case BTRFS_IOC_FS_INFO:
3385475f6387SJan Schmidt 		return btrfs_ioctl_fs_info(root, argp);
3386475f6387SJan Schmidt 	case BTRFS_IOC_DEV_INFO:
3387475f6387SJan Schmidt 		return btrfs_ioctl_dev_info(root, argp);
3388f46b5a66SChristoph Hellwig 	case BTRFS_IOC_BALANCE:
3389c9e9f97bSIlya Dryomov 		return btrfs_ioctl_balance(root, NULL);
3390f46b5a66SChristoph Hellwig 	case BTRFS_IOC_CLONE:
3391c5c9cd4dSSage Weil 		return btrfs_ioctl_clone(file, arg, 0, 0, 0);
3392c5c9cd4dSSage Weil 	case BTRFS_IOC_CLONE_RANGE:
33937a865e8aSChristoph Hellwig 		return btrfs_ioctl_clone_range(file, argp);
3394f46b5a66SChristoph Hellwig 	case BTRFS_IOC_TRANS_START:
3395f46b5a66SChristoph Hellwig 		return btrfs_ioctl_trans_start(file);
3396f46b5a66SChristoph Hellwig 	case BTRFS_IOC_TRANS_END:
3397f46b5a66SChristoph Hellwig 		return btrfs_ioctl_trans_end(file);
3398ac8e9819SChris Mason 	case BTRFS_IOC_TREE_SEARCH:
3399ac8e9819SChris Mason 		return btrfs_ioctl_tree_search(file, argp);
3400ac8e9819SChris Mason 	case BTRFS_IOC_INO_LOOKUP:
3401ac8e9819SChris Mason 		return btrfs_ioctl_ino_lookup(file, argp);
3402d7728c96SJan Schmidt 	case BTRFS_IOC_INO_PATHS:
3403d7728c96SJan Schmidt 		return btrfs_ioctl_ino_to_path(root, argp);
3404d7728c96SJan Schmidt 	case BTRFS_IOC_LOGICAL_INO:
3405d7728c96SJan Schmidt 		return btrfs_ioctl_logical_to_ino(root, argp);
34061406e432SJosef Bacik 	case BTRFS_IOC_SPACE_INFO:
34071406e432SJosef Bacik 		return btrfs_ioctl_space_info(root, argp);
3408f46b5a66SChristoph Hellwig 	case BTRFS_IOC_SYNC:
3409f46b5a66SChristoph Hellwig 		btrfs_sync_fs(file->f_dentry->d_sb, 1);
3410f46b5a66SChristoph Hellwig 		return 0;
341146204592SSage Weil 	case BTRFS_IOC_START_SYNC:
341246204592SSage Weil 		return btrfs_ioctl_start_sync(file, argp);
341346204592SSage Weil 	case BTRFS_IOC_WAIT_SYNC:
341446204592SSage Weil 		return btrfs_ioctl_wait_sync(file, argp);
3415475f6387SJan Schmidt 	case BTRFS_IOC_SCRUB:
3416475f6387SJan Schmidt 		return btrfs_ioctl_scrub(root, argp);
3417475f6387SJan Schmidt 	case BTRFS_IOC_SCRUB_CANCEL:
3418475f6387SJan Schmidt 		return btrfs_ioctl_scrub_cancel(root, argp);
3419475f6387SJan Schmidt 	case BTRFS_IOC_SCRUB_PROGRESS:
3420475f6387SJan Schmidt 		return btrfs_ioctl_scrub_progress(root, argp);
3421c9e9f97bSIlya Dryomov 	case BTRFS_IOC_BALANCE_V2:
3422c9e9f97bSIlya Dryomov 		return btrfs_ioctl_balance(root, argp);
3423837d5b6eSIlya Dryomov 	case BTRFS_IOC_BALANCE_CTL:
3424837d5b6eSIlya Dryomov 		return btrfs_ioctl_balance_ctl(root, arg);
342519a39dceSIlya Dryomov 	case BTRFS_IOC_BALANCE_PROGRESS:
342619a39dceSIlya Dryomov 		return btrfs_ioctl_balance_progress(root, argp);
3427f46b5a66SChristoph Hellwig 	}
3428f46b5a66SChristoph Hellwig 
3429f46b5a66SChristoph Hellwig 	return -ENOTTY;
3430f46b5a66SChristoph Hellwig }
3431