blob: 56d92549389c61af18421aa5470821e55ce7c8c6 [file] [log] [blame]
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/kernel.h>
20#include <linux/bio.h>
21#include <linux/buffer_head.h>
22#include <linux/file.h>
23#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040024#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040025#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040030#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040031#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040032#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040033#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include <linux/swap.h>
35#include <linux/writeback.h>
36#include <linux/statfs.h>
37#include <linux/compat.h>
38#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040039#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040040#include <linux/xattr.h>
Yan Zheng7ea394f2008-08-05 13:05:02 -040041#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000043#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020044#include <linux/uuid.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000045#include <linux/btrfs.h>
Chris Mason4b4e25f2008-11-20 10:22:27 -050046#include "compat.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040047#include "ctree.h"
48#include "disk-io.h"
49#include "transaction.h"
50#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040051#include "print-tree.h"
52#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040053#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080054#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020055#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040056#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020057#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010058#include "dev-replace.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040059
Christoph Hellwig6cbff002009-04-17 10:37:41 +020060/* Mask out flags that are inappropriate for the given type of inode. */
61static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
62{
63 if (S_ISDIR(mode))
64 return flags;
65 else if (S_ISREG(mode))
66 return flags & ~FS_DIRSYNC_FL;
67 else
68 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
69}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040070
Christoph Hellwig6cbff002009-04-17 10:37:41 +020071/*
72 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
73 */
74static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
75{
76 unsigned int iflags = 0;
77
78 if (flags & BTRFS_INODE_SYNC)
79 iflags |= FS_SYNC_FL;
80 if (flags & BTRFS_INODE_IMMUTABLE)
81 iflags |= FS_IMMUTABLE_FL;
82 if (flags & BTRFS_INODE_APPEND)
83 iflags |= FS_APPEND_FL;
84 if (flags & BTRFS_INODE_NODUMP)
85 iflags |= FS_NODUMP_FL;
86 if (flags & BTRFS_INODE_NOATIME)
87 iflags |= FS_NOATIME_FL;
88 if (flags & BTRFS_INODE_DIRSYNC)
89 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +000090 if (flags & BTRFS_INODE_NODATACOW)
91 iflags |= FS_NOCOW_FL;
92
93 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
94 iflags |= FS_COMPR_FL;
95 else if (flags & BTRFS_INODE_NOCOMPRESS)
96 iflags |= FS_NOCOMP_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +020097
98 return iflags;
99}
100
101/*
102 * Update inode->i_flags based on the btrfs internal flags.
103 */
104void btrfs_update_iflags(struct inode *inode)
105{
106 struct btrfs_inode *ip = BTRFS_I(inode);
107
108 inode->i_flags &= ~(S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
109
110 if (ip->flags & BTRFS_INODE_SYNC)
111 inode->i_flags |= S_SYNC;
112 if (ip->flags & BTRFS_INODE_IMMUTABLE)
113 inode->i_flags |= S_IMMUTABLE;
114 if (ip->flags & BTRFS_INODE_APPEND)
115 inode->i_flags |= S_APPEND;
116 if (ip->flags & BTRFS_INODE_NOATIME)
117 inode->i_flags |= S_NOATIME;
118 if (ip->flags & BTRFS_INODE_DIRSYNC)
119 inode->i_flags |= S_DIRSYNC;
120}
121
122/*
123 * Inherit flags from the parent inode.
124 *
Josef Bacike27425d2011-09-27 11:01:30 -0400125 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200126 */
127void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
128{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400129 unsigned int flags;
130
131 if (!dir)
132 return;
133
134 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200135
Josef Bacike27425d2011-09-27 11:01:30 -0400136 if (flags & BTRFS_INODE_NOCOMPRESS) {
137 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
138 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
139 } else if (flags & BTRFS_INODE_COMPRESS) {
140 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
141 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
142 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200143
Liu Bo213490b2012-09-11 08:33:50 -0600144 if (flags & BTRFS_INODE_NODATACOW) {
Josef Bacike27425d2011-09-27 11:01:30 -0400145 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
Liu Bo213490b2012-09-11 08:33:50 -0600146 if (S_ISREG(inode->i_mode))
147 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
148 }
Josef Bacike27425d2011-09-27 11:01:30 -0400149
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200150 btrfs_update_iflags(inode);
151}
152
153static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
154{
155 struct btrfs_inode *ip = BTRFS_I(file->f_path.dentry->d_inode);
156 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
157
158 if (copy_to_user(arg, &flags, sizeof(flags)))
159 return -EFAULT;
160 return 0;
161}
162
Liu Bo75e7cb72011-03-22 10:12:20 +0000163static int check_flags(unsigned int flags)
164{
165 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
166 FS_NOATIME_FL | FS_NODUMP_FL | \
167 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000168 FS_NOCOMP_FL | FS_COMPR_FL |
169 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000170 return -EOPNOTSUPP;
171
172 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
173 return -EINVAL;
174
Liu Bo75e7cb72011-03-22 10:12:20 +0000175 return 0;
176}
177
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200178static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
179{
180 struct inode *inode = file->f_path.dentry->d_inode;
181 struct btrfs_inode *ip = BTRFS_I(inode);
182 struct btrfs_root *root = ip->root;
183 struct btrfs_trans_handle *trans;
184 unsigned int flags, oldflags;
185 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800186 u64 ip_oldflags;
187 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600188 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200189
Li Zefanb83cc962010-12-20 16:04:08 +0800190 if (btrfs_root_readonly(root))
191 return -EROFS;
192
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200193 if (copy_from_user(&flags, arg, sizeof(flags)))
194 return -EFAULT;
195
Liu Bo75e7cb72011-03-22 10:12:20 +0000196 ret = check_flags(flags);
197 if (ret)
198 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200199
Serge E. Hallyn2e149672011-03-23 16:43:26 -0700200 if (!inode_owner_or_capable(inode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200201 return -EACCES;
202
Jan Karae7848682012-06-12 16:20:32 +0200203 ret = mnt_want_write_file(file);
204 if (ret)
205 return ret;
206
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200207 mutex_lock(&inode->i_mutex);
208
Li Zefanf062abf2011-12-29 13:36:45 +0800209 ip_oldflags = ip->flags;
210 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600211 mode = inode->i_mode;
Li Zefanf062abf2011-12-29 13:36:45 +0800212
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200213 flags = btrfs_mask_flags(inode->i_mode, flags);
214 oldflags = btrfs_flags_to_ioctl(ip->flags);
215 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
216 if (!capable(CAP_LINUX_IMMUTABLE)) {
217 ret = -EPERM;
218 goto out_unlock;
219 }
220 }
221
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200222 if (flags & FS_SYNC_FL)
223 ip->flags |= BTRFS_INODE_SYNC;
224 else
225 ip->flags &= ~BTRFS_INODE_SYNC;
226 if (flags & FS_IMMUTABLE_FL)
227 ip->flags |= BTRFS_INODE_IMMUTABLE;
228 else
229 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
230 if (flags & FS_APPEND_FL)
231 ip->flags |= BTRFS_INODE_APPEND;
232 else
233 ip->flags &= ~BTRFS_INODE_APPEND;
234 if (flags & FS_NODUMP_FL)
235 ip->flags |= BTRFS_INODE_NODUMP;
236 else
237 ip->flags &= ~BTRFS_INODE_NODUMP;
238 if (flags & FS_NOATIME_FL)
239 ip->flags |= BTRFS_INODE_NOATIME;
240 else
241 ip->flags &= ~BTRFS_INODE_NOATIME;
242 if (flags & FS_DIRSYNC_FL)
243 ip->flags |= BTRFS_INODE_DIRSYNC;
244 else
245 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600246 if (flags & FS_NOCOW_FL) {
247 if (S_ISREG(mode)) {
248 /*
249 * It's safe to turn csums off here, no extents exist.
250 * Otherwise we want the flag to reflect the real COW
251 * status of the file and will not set it.
252 */
253 if (inode->i_size == 0)
254 ip->flags |= BTRFS_INODE_NODATACOW
255 | BTRFS_INODE_NODATASUM;
256 } else {
257 ip->flags |= BTRFS_INODE_NODATACOW;
258 }
259 } else {
260 /*
261 * Revert back under same assuptions as above
262 */
263 if (S_ISREG(mode)) {
264 if (inode->i_size == 0)
265 ip->flags &= ~(BTRFS_INODE_NODATACOW
266 | BTRFS_INODE_NODATASUM);
267 } else {
268 ip->flags &= ~BTRFS_INODE_NODATACOW;
269 }
270 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200271
Liu Bo75e7cb72011-03-22 10:12:20 +0000272 /*
273 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
274 * flag may be changed automatically if compression code won't make
275 * things smaller.
276 */
277 if (flags & FS_NOCOMP_FL) {
278 ip->flags &= ~BTRFS_INODE_COMPRESS;
279 ip->flags |= BTRFS_INODE_NOCOMPRESS;
280 } else if (flags & FS_COMPR_FL) {
281 ip->flags |= BTRFS_INODE_COMPRESS;
282 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Li Zefanebcb9042011-04-15 03:03:17 +0000283 } else {
284 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000285 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200286
Li Zefan4da6f1a2011-12-29 13:39:50 +0800287 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800288 if (IS_ERR(trans)) {
289 ret = PTR_ERR(trans);
290 goto out_drop;
291 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200292
Li Zefan306424cc2011-12-14 20:12:02 -0500293 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400294 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500295 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200296 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200297
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200298 btrfs_end_transaction(trans, root);
Li Zefanf062abf2011-12-29 13:36:45 +0800299 out_drop:
300 if (ret) {
301 ip->flags = ip_oldflags;
302 inode->i_flags = i_oldflags;
303 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200304
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200305 out_unlock:
306 mutex_unlock(&inode->i_mutex);
Jan Karae7848682012-06-12 16:20:32 +0200307 mnt_drop_write_file(file);
liubo2d4e6f62011-02-24 09:38:16 +0000308 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200309}
310
311static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
312{
313 struct inode *inode = file->f_path.dentry->d_inode;
314
315 return put_user(inode->i_generation, arg);
316}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400317
Li Dongyangf7039b12011-03-24 10:24:28 +0000318static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
319{
Al Viro815745c2011-11-17 15:40:49 -0500320 struct btrfs_fs_info *fs_info = btrfs_sb(fdentry(file)->d_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000321 struct btrfs_device *device;
322 struct request_queue *q;
323 struct fstrim_range range;
324 u64 minlen = ULLONG_MAX;
325 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500326 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000327 int ret;
328
329 if (!capable(CAP_SYS_ADMIN))
330 return -EPERM;
331
Xiao Guangrong1f781602011-04-20 10:09:16 +0000332 rcu_read_lock();
333 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
334 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000335 if (!device->bdev)
336 continue;
337 q = bdev_get_queue(device->bdev);
338 if (blk_queue_discard(q)) {
339 num_devices++;
340 minlen = min((u64)q->limits.discard_granularity,
341 minlen);
342 }
343 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000344 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200345
Li Dongyangf7039b12011-03-24 10:24:28 +0000346 if (!num_devices)
347 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000348 if (copy_from_user(&range, arg, sizeof(range)))
349 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000350 if (range.start > total_bytes ||
351 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200352 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000353
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200354 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000355 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500356 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000357 if (ret < 0)
358 return ret;
359
360 if (copy_to_user(arg, &range, sizeof(range)))
361 return -EFAULT;
362
363 return 0;
364}
365
Miao Xied5c12072013-02-28 10:04:33 +0000366static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400367 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400368 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200369 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000370 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400371{
372 struct btrfs_trans_handle *trans;
373 struct btrfs_key key;
374 struct btrfs_root_item root_item;
375 struct btrfs_inode_item *inode_item;
376 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000377 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400378 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000379 struct btrfs_block_rsv block_rsv;
Alexander Block8ea05e32012-07-25 17:35:53 +0200380 struct timespec cur_time = CURRENT_TIME;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400381 int ret;
382 int err;
383 u64 objectid;
384 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500385 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000386 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200387 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400388
Li Zefan581bb052011-04-20 10:06:11 +0800389 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400390 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400391 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000392
Miao Xied5c12072013-02-28 10:04:33 +0000393 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400394 /*
Miao Xied5c12072013-02-28 10:04:33 +0000395 * The same as the snapshot creation, please see the comment
396 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400397 */
Miao Xied5c12072013-02-28 10:04:33 +0000398 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
399 7, &qgroup_reserved);
400 if (ret)
401 return ret;
402
403 trans = btrfs_start_transaction(root, 0);
404 if (IS_ERR(trans)) {
405 ret = PTR_ERR(trans);
406 goto out;
407 }
408 trans->block_rsv = &block_rsv;
409 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400410
Miao Xie8696c532013-02-07 06:02:44 +0000411 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200412 if (ret)
413 goto fail;
414
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400415 leaf = btrfs_alloc_free_block(trans, root, root->leafsize,
Jan Schmidt5581a512012-05-16 17:04:52 +0200416 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400417 if (IS_ERR(leaf)) {
418 ret = PTR_ERR(leaf);
419 goto fail;
420 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400421
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400422 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400423 btrfs_set_header_bytenr(leaf, leaf->start);
424 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400425 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400426 btrfs_set_header_owner(leaf, objectid);
427
428 write_extent_buffer(leaf, root->fs_info->fsid,
429 (unsigned long)btrfs_header_fsid(leaf),
430 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400431 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
432 (unsigned long)btrfs_header_chunk_tree_uuid(leaf),
433 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400434 btrfs_mark_buffer_dirty(leaf);
435
Alexander Block8ea05e32012-07-25 17:35:53 +0200436 memset(&root_item, 0, sizeof(root_item));
437
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400438 inode_item = &root_item.inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400439 inode_item->generation = cpu_to_le64(1);
440 inode_item->size = cpu_to_le64(3);
441 inode_item->nlink = cpu_to_le32(1);
Yan Zhenga76a3cd2008-10-09 11:46:29 -0400442 inode_item->nbytes = cpu_to_le64(root->leafsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400443 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
444
Li Zefan08fe4db2011-03-28 02:01:25 +0000445 root_item.flags = 0;
446 root_item.byte_limit = 0;
447 inode_item->flags = cpu_to_le64(BTRFS_INODE_ROOT_ITEM_INIT);
448
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400449 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400450 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400451 btrfs_set_root_level(&root_item, 0);
452 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000453 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400454 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400455
Alexander Block8ea05e32012-07-25 17:35:53 +0200456 btrfs_set_root_generation_v2(&root_item,
457 btrfs_root_generation(&root_item));
458 uuid_le_gen(&new_uuid);
459 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
460 root_item.otime.sec = cpu_to_le64(cur_time.tv_sec);
Dan Carpenterdadd1102012-07-30 02:10:44 -0600461 root_item.otime.nsec = cpu_to_le32(cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200462 root_item.ctime = root_item.otime;
463 btrfs_set_root_ctransid(&root_item, trans->transid);
464 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400465
Chris Mason925baed2008-06-25 16:01:30 -0400466 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400467 free_extent_buffer(leaf);
468 leaf = NULL;
469
470 btrfs_set_root_dirid(&root_item, new_dirid);
471
472 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400473 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400474 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
475 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
476 &root_item);
477 if (ret)
478 goto fail;
479
Yan, Zheng76dda932009-09-21 16:00:26 -0400480 key.offset = (u64)-1;
481 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100482 if (IS_ERR(new_root)) {
483 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
484 ret = PTR_ERR(new_root);
485 goto fail;
486 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400487
488 btrfs_record_root_in_trans(trans, new_root);
489
Josef Bacikd82a6f12011-05-11 15:26:06 -0400490 ret = btrfs_create_subvol_root(trans, new_root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700491 if (ret) {
492 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100493 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700494 goto fail;
495 }
496
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400497 /*
498 * insert the directory item
499 */
Chris Mason3de45862008-11-17 21:02:50 -0500500 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100501 if (ret) {
502 btrfs_abort_transaction(trans, root, ret);
503 goto fail;
504 }
Chris Mason3de45862008-11-17 21:02:50 -0500505
506 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800507 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500508 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100509 if (ret) {
510 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400511 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100512 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500513
Yan Zheng52c26172009-01-05 15:43:43 -0500514 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
515 ret = btrfs_update_inode(trans, root, dir);
516 BUG_ON(ret);
517
Chris Mason0660b5a2008-11-17 20:37:39 -0500518 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400519 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800520 btrfs_ino(dir), index, name, namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -0400521
Chris Mason0660b5a2008-11-17 20:37:39 -0500522 BUG_ON(ret);
523
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400524fail:
Miao Xied5c12072013-02-28 10:04:33 +0000525 trans->block_rsv = NULL;
526 trans->bytes_reserved = 0;
Sage Weil72fd0322010-10-29 15:41:32 -0400527 if (async_transid) {
528 *async_transid = trans->transid;
529 err = btrfs_commit_transaction_async(trans, root, 1);
530 } else {
531 err = btrfs_commit_transaction(trans, root);
532 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400533 if (err && !ret)
534 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500535
536 if (!ret)
537 d_instantiate(dentry, btrfs_lookup_dentry(dir, dentry));
Miao Xied5c12072013-02-28 10:04:33 +0000538out:
539 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400540 return ret;
541}
542
Miao Xiee9662f72013-02-28 10:01:15 +0000543static int create_snapshot(struct btrfs_root *root, struct inode *dir,
544 struct dentry *dentry, char *name, int namelen,
545 u64 *async_transid, bool readonly,
546 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400547{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000548 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400549 struct btrfs_pending_snapshot *pending_snapshot;
550 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000551 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400552
553 if (!root->ref_cows)
554 return -EINVAL;
555
Yan, Zhenga22285a2010-05-16 10:48:46 -0400556 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
557 if (!pending_snapshot)
558 return -ENOMEM;
559
Miao Xie66d8f3d2012-09-06 04:02:28 -0600560 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
561 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000562 /*
563 * 1 - parent dir inode
564 * 2 - dir entries
565 * 1 - root item
566 * 2 - root ref/backref
567 * 1 - root of snapshot
568 */
569 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
570 &pending_snapshot->block_rsv, 7,
571 &pending_snapshot->qgroup_reserved);
572 if (ret)
573 goto out;
574
Yan, Zhenga22285a2010-05-16 10:48:46 -0400575 pending_snapshot->dentry = dentry;
576 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800577 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000578 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000579 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400580
Miao Xied5c12072013-02-28 10:04:33 +0000581 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400582 if (IS_ERR(trans)) {
583 ret = PTR_ERR(trans);
584 goto fail;
585 }
586
Josef Bacik83515832011-06-14 15:16:14 -0400587 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400588 list_add(&pending_snapshot->list,
589 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400590 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400591 if (async_transid) {
592 *async_transid = trans->transid;
593 ret = btrfs_commit_transaction_async(trans,
594 root->fs_info->extent_root, 1);
595 } else {
596 ret = btrfs_commit_transaction(trans,
597 root->fs_info->extent_root);
598 }
Liu Bo109f2362012-11-05 12:42:09 +0000599 if (ret) {
600 /* cleanup_transaction has freed this for us */
601 if (trans->aborted)
602 pending_snapshot = NULL;
Josef Bacikc37b2b62012-10-22 15:51:44 -0400603 goto fail;
Liu Bo109f2362012-11-05 12:42:09 +0000604 }
Yan, Zhenga22285a2010-05-16 10:48:46 -0400605
606 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400607 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000608 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400609
Josef Bacik66b4ffd2011-01-31 16:22:42 -0500610 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
611 if (ret)
612 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400613
Al Viro2fbe8c82011-07-16 21:38:06 -0400614 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000615 if (IS_ERR(inode)) {
616 ret = PTR_ERR(inode);
617 goto fail;
618 }
619 BUG_ON(!inode);
620 d_instantiate(dentry, inode);
621 ret = 0;
622fail:
Miao Xied5c12072013-02-28 10:04:33 +0000623 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
624 &pending_snapshot->block_rsv,
625 pending_snapshot->qgroup_reserved);
626out:
Yan, Zhenga22285a2010-05-16 10:48:46 -0400627 kfree(pending_snapshot);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400628 return ret;
629}
630
Sage Weil4260f7c2010-10-29 15:46:43 -0400631/* copy of check_sticky in fs/namei.c()
632* It's inline, so penalty for filesystems that don't use sticky bit is
633* minimal.
634*/
635static inline int btrfs_check_sticky(struct inode *dir, struct inode *inode)
636{
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800637 kuid_t fsuid = current_fsuid();
Sage Weil4260f7c2010-10-29 15:46:43 -0400638
639 if (!(dir->i_mode & S_ISVTX))
640 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800641 if (uid_eq(inode->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400642 return 0;
Eric W. Biederman2f2f43d2012-02-10 11:05:07 -0800643 if (uid_eq(dir->i_uid, fsuid))
Sage Weil4260f7c2010-10-29 15:46:43 -0400644 return 0;
645 return !capable(CAP_FOWNER);
646}
647
648/* copy of may_delete in fs/namei.c()
649 * Check whether we can remove a link victim from directory dir, check
650 * whether the type of victim is right.
651 * 1. We can't do it if dir is read-only (done in permission())
652 * 2. We should have write and exec permissions on dir
653 * 3. We can't remove anything from append-only dir
654 * 4. We can't do anything with immutable dir (done in permission())
655 * 5. If the sticky bit on dir is set we should either
656 * a. be owner of dir, or
657 * b. be owner of victim, or
658 * c. have CAP_FOWNER capability
659 * 6. If the victim is append-only or immutable we can't do antyhing with
660 * links pointing to it.
661 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
662 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
663 * 9. We can't remove a root or mountpoint.
664 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
665 * nfs_async_unlink().
666 */
667
668static int btrfs_may_delete(struct inode *dir,struct dentry *victim,int isdir)
669{
670 int error;
671
672 if (!victim->d_inode)
673 return -ENOENT;
674
675 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400676 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400677
678 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
679 if (error)
680 return error;
681 if (IS_APPEND(dir))
682 return -EPERM;
683 if (btrfs_check_sticky(dir, victim->d_inode)||
684 IS_APPEND(victim->d_inode)||
685 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
686 return -EPERM;
687 if (isdir) {
688 if (!S_ISDIR(victim->d_inode->i_mode))
689 return -ENOTDIR;
690 if (IS_ROOT(victim))
691 return -EBUSY;
692 } else if (S_ISDIR(victim->d_inode->i_mode))
693 return -EISDIR;
694 if (IS_DEADDIR(dir))
695 return -ENOENT;
696 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
697 return -EBUSY;
698 return 0;
699}
700
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400701/* copy of may_create in fs/namei.c() */
702static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
703{
704 if (child->d_inode)
705 return -EEXIST;
706 if (IS_DEADDIR(dir))
707 return -ENOENT;
708 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
709}
710
711/*
712 * Create a new subvolume below @parent. This is largely modeled after
713 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
714 * inside this filesystem so it's quite a bit simpler.
715 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400716static noinline int btrfs_mksubvol(struct path *parent,
717 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400718 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200719 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000720 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400721{
Yan, Zheng76dda932009-09-21 16:00:26 -0400722 struct inode *dir = parent->dentry->d_inode;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400723 struct dentry *dentry;
724 int error;
725
Yan, Zheng76dda932009-09-21 16:00:26 -0400726 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400727
728 dentry = lookup_one_len(name, parent->dentry, namelen);
729 error = PTR_ERR(dentry);
730 if (IS_ERR(dentry))
731 goto out_unlock;
732
733 error = -EEXIST;
734 if (dentry->d_inode)
735 goto out_dput;
736
Yan, Zheng76dda932009-09-21 16:00:26 -0400737 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400738 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600739 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400740
Chris Mason9c520572012-12-17 14:26:57 -0500741 /*
742 * even if this name doesn't exist, we may get hash collisions.
743 * check for them now when we can safely fail
744 */
745 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
746 dir->i_ino, name,
747 namelen);
748 if (error)
749 goto out_dput;
750
Yan, Zheng76dda932009-09-21 16:00:26 -0400751 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
752
753 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
754 goto out_up_read;
755
Chris Mason3de45862008-11-17 21:02:50 -0500756 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000757 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200758 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500759 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000760 error = create_subvol(dir, dentry, name, namelen,
761 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500762 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400763 if (!error)
764 fsnotify_mkdir(dir, dentry);
765out_up_read:
766 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400767out_dput:
768 dput(dentry);
769out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400770 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400771 return error;
772}
773
Chris Mason4cb53002011-05-24 15:35:30 -0400774/*
775 * When we're defragging a range, we don't want to kick it off again
776 * if it is really just waiting for delalloc to send it down.
777 * If we find a nice big extent or delalloc range for the bytes in the
778 * file you want to defrag, we return 0 to let you know to skip this
779 * part of the file
780 */
781static int check_defrag_in_cache(struct inode *inode, u64 offset, int thresh)
782{
783 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
784 struct extent_map *em = NULL;
785 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
786 u64 end;
787
788 read_lock(&em_tree->lock);
789 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
790 read_unlock(&em_tree->lock);
791
792 if (em) {
793 end = extent_map_end(em);
794 free_extent_map(em);
795 if (end - offset > thresh)
796 return 0;
797 }
798 /* if we already have a nice delalloc here, just stop */
799 thresh /= 2;
800 end = count_range_bits(io_tree, &offset, offset + thresh,
801 thresh, EXTENT_DELALLOC, 1);
802 if (end >= thresh)
803 return 0;
804 return 1;
805}
806
807/*
808 * helper function to walk through a file and find extents
809 * newer than a specific transid, and smaller than thresh.
810 *
811 * This is used by the defragging code to find new and small
812 * extents
813 */
814static int find_new_extents(struct btrfs_root *root,
815 struct inode *inode, u64 newer_than,
816 u64 *off, int thresh)
817{
818 struct btrfs_path *path;
819 struct btrfs_key min_key;
820 struct btrfs_key max_key;
821 struct extent_buffer *leaf;
822 struct btrfs_file_extent_item *extent;
823 int type;
824 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000825 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400826
827 path = btrfs_alloc_path();
828 if (!path)
829 return -ENOMEM;
830
David Sterbaa4689d22011-05-31 17:08:14 +0000831 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400832 min_key.type = BTRFS_EXTENT_DATA_KEY;
833 min_key.offset = *off;
834
David Sterbaa4689d22011-05-31 17:08:14 +0000835 max_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400836 max_key.type = (u8)-1;
837 max_key.offset = (u64)-1;
838
839 path->keep_locks = 1;
840
841 while(1) {
842 ret = btrfs_search_forward(root, &min_key, &max_key,
Eric Sandeende78b512013-01-31 18:21:12 +0000843 path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400844 if (ret != 0)
845 goto none;
David Sterbaa4689d22011-05-31 17:08:14 +0000846 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400847 goto none;
848 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
849 goto none;
850
851 leaf = path->nodes[0];
852 extent = btrfs_item_ptr(leaf, path->slots[0],
853 struct btrfs_file_extent_item);
854
855 type = btrfs_file_extent_type(leaf, extent);
856 if (type == BTRFS_FILE_EXTENT_REG &&
857 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
858 check_defrag_in_cache(inode, min_key.offset, thresh)) {
859 *off = min_key.offset;
860 btrfs_free_path(path);
861 return 0;
862 }
863
864 if (min_key.offset == (u64)-1)
865 goto none;
866
867 min_key.offset++;
868 btrfs_release_path(path);
869 }
870none:
871 btrfs_free_path(path);
872 return -ENOENT;
873}
874
Li Zefan6c282eb2012-06-11 16:03:35 +0800875static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400876{
877 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500878 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800879 struct extent_map *em;
880 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500881
882 /*
883 * hopefully we have this extent in the tree already, try without
884 * the full extent lock
885 */
886 read_lock(&em_tree->lock);
887 em = lookup_extent_mapping(em_tree, start, len);
888 read_unlock(&em_tree->lock);
889
890 if (!em) {
891 /* get the big lock and read metadata off disk */
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100892 lock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500893 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Jeff Mahoneyd0082372012-03-01 14:57:19 +0100894 unlock_extent(io_tree, start, start + len - 1);
Chris Mason940100a2010-03-10 10:52:59 -0500895
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000896 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800897 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500898 }
899
Li Zefan6c282eb2012-06-11 16:03:35 +0800900 return em;
901}
902
903static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
904{
905 struct extent_map *next;
906 bool ret = true;
907
908 /* this is the last extent */
909 if (em->start + em->len >= i_size_read(inode))
910 return false;
911
912 next = defrag_lookup_extent(inode, em->start + em->len);
913 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
914 ret = false;
915
916 free_extent_map(next);
917 return ret;
918}
919
920static int should_defrag_range(struct inode *inode, u64 start, int thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400921 u64 *last_len, u64 *skip, u64 *defrag_end,
922 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +0800923{
924 struct extent_map *em;
925 int ret = 1;
926 bool next_mergeable = true;
927
928 /*
929 * make sure that once we start defragging an extent, we keep on
930 * defragging it
931 */
932 if (start < *defrag_end)
933 return 1;
934
935 *skip = 0;
936
937 em = defrag_lookup_extent(inode, start);
938 if (!em)
939 return 0;
940
Chris Mason940100a2010-03-10 10:52:59 -0500941 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -0400942 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -0500943 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400944 goto out;
945 }
946
Li Zefan6c282eb2012-06-11 16:03:35 +0800947 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -0500948
949 /*
Li Zefan6c282eb2012-06-11 16:03:35 +0800950 * we hit a real extent, if it is big or the next extent is not a
951 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -0500952 */
Andrew Mahonea43a2112012-06-19 21:08:32 -0400953 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Li Zefan6c282eb2012-06-11 16:03:35 +0800954 (em->len >= thresh || !next_mergeable))
Chris Mason940100a2010-03-10 10:52:59 -0500955 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -0400956out:
Chris Mason940100a2010-03-10 10:52:59 -0500957 /*
958 * last_len ends up being a counter of how many bytes we've defragged.
959 * every time we choose not to defrag an extent, we reset *last_len
960 * so that the next tiny extent will force a defrag.
961 *
962 * The end result of this is that tiny extents before a single big
963 * extent will force at least part of that big extent to be defragged.
964 */
965 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -0500966 *defrag_end = extent_map_end(em);
967 } else {
968 *last_len = 0;
969 *skip = extent_map_end(em);
970 *defrag_end = 0;
971 }
972
973 free_extent_map(em);
974 return ret;
975}
976
Chris Mason4cb53002011-05-24 15:35:30 -0400977/*
978 * it doesn't do much good to defrag one or two pages
979 * at a time. This pulls in a nice chunk of pages
980 * to COW and defrag.
981 *
982 * It also makes sure the delalloc code has enough
983 * dirty data to avoid making new small extents as part
984 * of the defrag
985 *
986 * It's a good idea to start RA on this range
987 * before calling this.
988 */
989static int cluster_pages_for_defrag(struct inode *inode,
990 struct page **pages,
991 unsigned long start_index,
992 int num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400993{
Chris Mason4cb53002011-05-24 15:35:30 -0400994 unsigned long file_end;
995 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400996 u64 page_start;
997 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -0400998 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -0400999 int ret;
1000 int i;
1001 int i_done;
1002 struct btrfs_ordered_extent *ordered;
1003 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001004 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001005 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001006
Chris Mason4cb53002011-05-24 15:35:30 -04001007 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001008 if (!isize || start_index > file_end)
1009 return 0;
1010
1011 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001012
1013 ret = btrfs_delalloc_reserve_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001014 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001015 if (ret)
1016 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001017 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001018 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001019
1020 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001021 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001022 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001023again:
Josef Bacika94733d2011-07-11 10:47:06 -04001024 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001025 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001026 if (!page)
1027 break;
1028
Miao Xie600a45e2012-02-16 15:01:24 +08001029 page_start = page_offset(page);
1030 page_end = page_start + PAGE_CACHE_SIZE - 1;
1031 while (1) {
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001032 lock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001033 ordered = btrfs_lookup_ordered_extent(inode,
1034 page_start);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001035 unlock_extent(tree, page_start, page_end);
Miao Xie600a45e2012-02-16 15:01:24 +08001036 if (!ordered)
1037 break;
1038
1039 unlock_page(page);
1040 btrfs_start_ordered_extent(inode, ordered, 1);
1041 btrfs_put_ordered_extent(ordered);
1042 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001043 /*
1044 * we unlocked the page above, so we need check if
1045 * it was released or not.
1046 */
1047 if (page->mapping != inode->i_mapping) {
1048 unlock_page(page);
1049 page_cache_release(page);
1050 goto again;
1051 }
Miao Xie600a45e2012-02-16 15:01:24 +08001052 }
1053
Chris Mason4cb53002011-05-24 15:35:30 -04001054 if (!PageUptodate(page)) {
1055 btrfs_readpage(NULL, page);
1056 lock_page(page);
1057 if (!PageUptodate(page)) {
1058 unlock_page(page);
1059 page_cache_release(page);
1060 ret = -EIO;
1061 break;
1062 }
1063 }
Miao Xie600a45e2012-02-16 15:01:24 +08001064
Miao Xie600a45e2012-02-16 15:01:24 +08001065 if (page->mapping != inode->i_mapping) {
1066 unlock_page(page);
1067 page_cache_release(page);
1068 goto again;
1069 }
1070
Chris Mason4cb53002011-05-24 15:35:30 -04001071 pages[i] = page;
1072 i_done++;
1073 }
1074 if (!i_done || ret)
1075 goto out;
1076
1077 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1078 goto out;
1079
1080 /*
1081 * so now we have a nice long stream of locked
1082 * and up to date pages, lets wait on them
1083 */
1084 for (i = 0; i < i_done; i++)
1085 wait_on_page_writeback(pages[i]);
1086
1087 page_start = page_offset(pages[0]);
1088 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1089
1090 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001091 page_start, page_end - 1, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001092 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1093 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001094 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1095 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001096
Liu Bo1f12bd02012-03-29 09:57:44 -04001097 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001098 spin_lock(&BTRFS_I(inode)->lock);
1099 BTRFS_I(inode)->outstanding_extents++;
1100 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001101 btrfs_delalloc_release_space(inode,
Liu Bo1f12bd02012-03-29 09:57:44 -04001102 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001103 }
1104
1105
Liu Bo9e8a4a82012-09-05 19:10:51 -06001106 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1107 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001108
1109 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1110 page_start, page_end - 1, &cached_state,
1111 GFP_NOFS);
1112
1113 for (i = 0; i < i_done; i++) {
1114 clear_page_dirty_for_io(pages[i]);
1115 ClearPageChecked(pages[i]);
1116 set_page_extent_mapped(pages[i]);
1117 set_page_dirty(pages[i]);
1118 unlock_page(pages[i]);
1119 page_cache_release(pages[i]);
1120 }
1121 return i_done;
1122out:
1123 for (i = 0; i < i_done; i++) {
1124 unlock_page(pages[i]);
1125 page_cache_release(pages[i]);
1126 }
Liu Bo1f12bd02012-03-29 09:57:44 -04001127 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001128 return ret;
1129
1130}
1131
1132int btrfs_defrag_file(struct inode *inode, struct file *file,
1133 struct btrfs_ioctl_defrag_range_args *range,
1134 u64 newer_than, unsigned long max_to_defrag)
1135{
1136 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001137 struct file_ra_state *ra = NULL;
1138 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001139 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001140 u64 last_len = 0;
1141 u64 skip = 0;
1142 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001143 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001144 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001145 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001146 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001147 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001148 int compress_type = BTRFS_COMPRESS_ZLIB;
Chris Mason4cb53002011-05-24 15:35:30 -04001149 int extent_thresh = range->extent_thresh;
Li Zefan008873e2011-09-02 15:57:07 +08001150 int max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1151 int cluster = max_cluster;
Chris Mason4cb53002011-05-24 15:35:30 -04001152 u64 new_align = ~((u64)128 * 1024 - 1);
1153 struct page **pages = NULL;
1154
1155 if (extent_thresh == 0)
1156 extent_thresh = 256 * 1024;
Li Zefan1a419d82010-10-25 15:12:50 +08001157
1158 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1159 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1160 return -EINVAL;
1161 if (range->compress_type)
1162 compress_type = range->compress_type;
1163 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001164
Li Zefan151a31b2011-09-02 15:56:39 +08001165 if (isize == 0)
Chris Mason940100a2010-03-10 10:52:59 -05001166 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001167
Chris Mason4cb53002011-05-24 15:35:30 -04001168 /*
1169 * if we were not given a file, allocate a readahead
1170 * context
1171 */
1172 if (!file) {
1173 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1174 if (!ra)
1175 return -ENOMEM;
1176 file_ra_state_init(ra, inode->i_mapping);
1177 } else {
1178 ra = &file->f_ra;
1179 }
1180
Li Zefan008873e2011-09-02 15:57:07 +08001181 pages = kmalloc(sizeof(struct page *) * max_cluster,
Chris Mason4cb53002011-05-24 15:35:30 -04001182 GFP_NOFS);
1183 if (!pages) {
1184 ret = -ENOMEM;
1185 goto out_ra;
1186 }
1187
1188 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001189 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001190 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001191 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1192 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001193 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001194 }
1195
Chris Mason4cb53002011-05-24 15:35:30 -04001196 if (newer_than) {
1197 ret = find_new_extents(root, inode, newer_than,
1198 &newer_off, 64 * 1024);
1199 if (!ret) {
1200 range->start = newer_off;
1201 /*
1202 * we always align our defrag to help keep
1203 * the extents in the file evenly spaced
1204 */
1205 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001206 } else
1207 goto out_ra;
1208 } else {
1209 i = range->start >> PAGE_CACHE_SHIFT;
1210 }
1211 if (!max_to_defrag)
Liu Bo7ec31b52012-01-26 15:01:12 -05001212 max_to_defrag = last_index + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001213
Li Zefan2a0f7f52011-10-10 15:43:34 -04001214 /*
1215 * make writeback starts from i, so the defrag range can be
1216 * written sequentially.
1217 */
1218 if (i < inode->i_mapping->writeback_index)
1219 inode->i_mapping->writeback_index = i;
1220
Chris Masonf7f43cc2011-10-11 11:41:40 -04001221 while (i <= last_index && defrag_count < max_to_defrag &&
1222 (i < (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >>
1223 PAGE_CACHE_SHIFT)) {
Chris Mason4cb53002011-05-24 15:35:30 -04001224 /*
1225 * make sure we stop running if someone unmounts
1226 * the FS
1227 */
1228 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1229 break;
1230
David Sterba210549e2013-02-09 23:38:06 +00001231 if (btrfs_defrag_cancelled(root->fs_info)) {
1232 printk(KERN_DEBUG "btrfs: defrag_file cancelled\n");
1233 ret = -EAGAIN;
1234 break;
1235 }
1236
Liu Bo66c26892012-03-29 09:57:45 -04001237 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001238 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001239 &defrag_end, range->flags &
1240 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001241 unsigned long next;
1242 /*
1243 * the should_defrag function tells us how much to skip
1244 * bump our counter by the suggested amount
1245 */
1246 next = (skip + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1247 i = max(i + 1, next);
1248 continue;
1249 }
Li Zefan008873e2011-09-02 15:57:07 +08001250
1251 if (!newer_than) {
1252 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1253 PAGE_CACHE_SHIFT) - i;
1254 cluster = min(cluster, max_cluster);
1255 } else {
1256 cluster = max_cluster;
1257 }
1258
Chris Mason1e701a32010-03-11 09:42:04 -05001259 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
Li Zefan1a419d82010-10-25 15:12:50 +08001260 BTRFS_I(inode)->force_compress = compress_type;
Chris Mason940100a2010-03-10 10:52:59 -05001261
Li Zefan008873e2011-09-02 15:57:07 +08001262 if (i + cluster > ra_index) {
1263 ra_index = max(i, ra_index);
1264 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1265 cluster);
1266 ra_index += max_cluster;
1267 }
Chris Mason940100a2010-03-10 10:52:59 -05001268
Liu Boecb8bea2012-03-29 09:57:44 -04001269 mutex_lock(&inode->i_mutex);
Li Zefan008873e2011-09-02 15:57:07 +08001270 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001271 if (ret < 0) {
1272 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001273 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001274 }
Chris Mason940100a2010-03-10 10:52:59 -05001275
Chris Mason4cb53002011-05-24 15:35:30 -04001276 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001277 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001278 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001279
1280 if (newer_than) {
1281 if (newer_off == (u64)-1)
1282 break;
1283
Liu Boe1f041e2012-03-29 09:57:45 -04001284 if (ret > 0)
1285 i += ret;
1286
Chris Mason4cb53002011-05-24 15:35:30 -04001287 newer_off = max(newer_off + 1,
1288 (u64)i << PAGE_CACHE_SHIFT);
1289
1290 ret = find_new_extents(root, inode,
1291 newer_than, &newer_off,
1292 64 * 1024);
1293 if (!ret) {
1294 range->start = newer_off;
1295 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001296 } else {
1297 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001298 }
Chris Mason4cb53002011-05-24 15:35:30 -04001299 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001300 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001301 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001302 last_len += ret << PAGE_CACHE_SHIFT;
1303 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001304 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001305 last_len = 0;
1306 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001307 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001308 }
1309
Chris Mason1e701a32010-03-11 09:42:04 -05001310 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO))
1311 filemap_flush(inode->i_mapping);
1312
1313 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1314 /* the filemap_flush will queue IO into the worker threads, but
1315 * we have to make sure the IO is actually started and that
1316 * ordered extents get created before we return
1317 */
1318 atomic_inc(&root->fs_info->async_submit_draining);
1319 while (atomic_read(&root->fs_info->nr_async_submits) ||
1320 atomic_read(&root->fs_info->async_delalloc_pages)) {
1321 wait_event(root->fs_info->async_submit_wait,
1322 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1323 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1324 }
1325 atomic_dec(&root->fs_info->async_submit_draining);
1326
1327 mutex_lock(&inode->i_mutex);
Li Zefan261507a02010-12-17 14:21:50 +08001328 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Chris Mason1e701a32010-03-11 09:42:04 -05001329 mutex_unlock(&inode->i_mutex);
1330 }
1331
Li Zefan1a419d82010-10-25 15:12:50 +08001332 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001333 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001334 }
1335
Diego Calleja60ccf822011-09-01 16:33:57 +02001336 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001337
Chris Mason4cb53002011-05-24 15:35:30 -04001338out_ra:
1339 if (!file)
1340 kfree(ra);
1341 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001342 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001343}
1344
Miao Xie198605a2012-11-26 08:43:45 +00001345static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001346 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001347{
1348 u64 new_size;
1349 u64 old_size;
1350 u64 devid = 1;
Miao Xie198605a2012-11-26 08:43:45 +00001351 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001352 struct btrfs_ioctl_vol_args *vol_args;
1353 struct btrfs_trans_handle *trans;
1354 struct btrfs_device *device = NULL;
1355 char *sizestr;
1356 char *devstr = NULL;
1357 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001358 int mod = 0;
1359
Chris Masone441d542009-01-05 16:57:23 -05001360 if (!capable(CAP_SYS_ADMIN))
1361 return -EPERM;
1362
Miao Xie198605a2012-11-26 08:43:45 +00001363 ret = mnt_want_write_file(file);
1364 if (ret)
1365 return ret;
1366
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001367 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1368 1)) {
1369 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Miao Xie97547672012-12-21 10:38:50 +00001370 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02001371 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001372 }
1373
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001374 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001375 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001376 if (IS_ERR(vol_args)) {
1377 ret = PTR_ERR(vol_args);
1378 goto out;
1379 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001380
1381 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001382
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001383 sizestr = vol_args->name;
1384 devstr = strchr(sizestr, ':');
1385 if (devstr) {
1386 char *end;
1387 sizestr = devstr + 1;
1388 *devstr = '\0';
1389 devstr = vol_args->name;
1390 devid = simple_strtoull(devstr, &end, 10);
Miao Xiedfd79822012-12-21 09:21:30 +00001391 if (!devid) {
1392 ret = -EINVAL;
1393 goto out_free;
1394 }
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001395 printk(KERN_INFO "btrfs: resizing devid %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001396 (unsigned long long)devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001397 }
Miao Xiedba60f32012-12-21 09:19:51 +00001398
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001399 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001400 if (!device) {
Arnd Hannemann5bb14682011-11-20 07:33:38 -05001401 printk(KERN_INFO "btrfs: resizer unable to find device %llu\n",
Joel Becker21380932009-04-21 12:38:29 -07001402 (unsigned long long)devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001403 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001404 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001405 }
Miao Xiedba60f32012-12-21 09:19:51 +00001406
1407 if (!device->writeable) {
Liu Bo4e42ae12012-06-14 02:23:19 -06001408 printk(KERN_INFO "btrfs: resizer unable to apply on "
Miao Xiedba60f32012-12-21 09:19:51 +00001409 "readonly device %llu\n",
Chris Masona8c4a332012-06-15 20:07:17 -04001410 (unsigned long long)devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001411 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001412 goto out_free;
1413 }
1414
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001415 if (!strcmp(sizestr, "max"))
1416 new_size = device->bdev->bd_inode->i_size;
1417 else {
1418 if (sizestr[0] == '-') {
1419 mod = -1;
1420 sizestr++;
1421 } else if (sizestr[0] == '+') {
1422 mod = 1;
1423 sizestr++;
1424 }
Akinobu Mita91748462010-02-28 10:59:11 +00001425 new_size = memparse(sizestr, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001426 if (new_size == 0) {
1427 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001428 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001429 }
1430 }
1431
Stefan Behrens63a212a2012-11-05 18:29:28 +01001432 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001433 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001434 goto out_free;
1435 }
1436
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001437 old_size = device->total_bytes;
1438
1439 if (mod < 0) {
1440 if (new_size > old_size) {
1441 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001442 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001443 }
1444 new_size = old_size - new_size;
1445 } else if (mod > 0) {
1446 new_size = old_size + new_size;
1447 }
1448
1449 if (new_size < 256 * 1024 * 1024) {
1450 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001451 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001452 }
1453 if (new_size > device->bdev->bd_inode->i_size) {
1454 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001455 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001456 }
1457
1458 do_div(new_size, root->sectorsize);
1459 new_size *= root->sectorsize;
1460
Josef Bacik606686e2012-06-04 14:03:51 -04001461 printk_in_rcu(KERN_INFO "btrfs: new size for %s is %llu\n",
1462 rcu_str_deref(device->name),
1463 (unsigned long long)new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001464
1465 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001466 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001467 if (IS_ERR(trans)) {
1468 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001469 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001470 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001471 ret = btrfs_grow_device(trans, device, new_size);
1472 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001473 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001474 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001475 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001476
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001477out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001478 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001479out:
1480 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001481 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001482 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001483 return ret;
1484}
1485
Sage Weil72fd0322010-10-29 15:41:32 -04001486static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001487 char *name, unsigned long fd, int subvol,
1488 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001489 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001490{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001491 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001492 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001493
Liu Boa874a632012-06-29 03:58:46 -06001494 ret = mnt_want_write_file(file);
1495 if (ret)
1496 goto out;
1497
Sage Weil72fd0322010-10-29 15:41:32 -04001498 namelen = strlen(name);
1499 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001500 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001501 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001502 }
1503
Chris Mason16780ca2012-02-20 22:14:55 -05001504 if (name[0] == '.' &&
1505 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1506 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001507 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001508 }
1509
Chris Mason3de45862008-11-17 21:02:50 -05001510 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001511 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001512 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001513 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001514 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001515 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001516 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001517 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001518 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001519 }
1520
Al Viro2903ff02012-08-28 12:52:22 -04001521 src_inode = src.file->f_path.dentry->d_inode;
Chris Mason3de45862008-11-17 21:02:50 -05001522 if (src_inode->i_sb != file->f_path.dentry->d_inode->i_sb) {
Chris Masond3977122009-01-05 21:25:51 -05001523 printk(KERN_INFO "btrfs: Snapshot src from "
1524 "another FS\n");
Chris Mason3de45862008-11-17 21:02:50 -05001525 ret = -EINVAL;
Al Viroecd18812012-08-26 21:20:24 -04001526 } else {
1527 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1528 BTRFS_I(src_inode)->root,
1529 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001530 }
Al Viro2903ff02012-08-28 12:52:22 -04001531 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001532 }
Liu Boa874a632012-06-29 03:58:46 -06001533out_drop_write:
1534 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001535out:
Sage Weil72fd0322010-10-29 15:41:32 -04001536 return ret;
1537}
1538
1539static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001540 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001541{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001542 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001543 int ret;
1544
Li Zefanfa0d2b92010-12-20 15:53:28 +08001545 vol_args = memdup_user(arg, sizeof(*vol_args));
1546 if (IS_ERR(vol_args))
1547 return PTR_ERR(vol_args);
1548 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001549
Li Zefanfa0d2b92010-12-20 15:53:28 +08001550 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001551 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001552 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001553
Li Zefanfa0d2b92010-12-20 15:53:28 +08001554 kfree(vol_args);
1555 return ret;
1556}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001557
Li Zefanfa0d2b92010-12-20 15:53:28 +08001558static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1559 void __user *arg, int subvol)
1560{
1561 struct btrfs_ioctl_vol_args_v2 *vol_args;
1562 int ret;
1563 u64 transid = 0;
1564 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001565 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001566 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001567
Li Zefanfa0d2b92010-12-20 15:53:28 +08001568 vol_args = memdup_user(arg, sizeof(*vol_args));
1569 if (IS_ERR(vol_args))
1570 return PTR_ERR(vol_args);
1571 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001572
Li Zefanb83cc962010-12-20 16:04:08 +08001573 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001574 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1575 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001576 ret = -EOPNOTSUPP;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001577 goto out;
Sage Weil72fd0322010-10-29 15:41:32 -04001578 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001579
1580 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1581 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001582 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1583 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001584 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1585 if (vol_args->size > PAGE_CACHE_SIZE) {
1586 ret = -EINVAL;
1587 goto out;
1588 }
1589 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1590 if (IS_ERR(inherit)) {
1591 ret = PTR_ERR(inherit);
1592 goto out;
1593 }
1594 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001595
1596 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001597 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001598 readonly, inherit);
Li Zefanfa0d2b92010-12-20 15:53:28 +08001599
1600 if (ret == 0 && ptr &&
1601 copy_to_user(arg +
1602 offsetof(struct btrfs_ioctl_vol_args_v2,
1603 transid), ptr, sizeof(*ptr)))
1604 ret = -EFAULT;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001605out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001606 kfree(vol_args);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001607 kfree(inherit);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001608 return ret;
1609}
1610
Li Zefan0caa1022010-12-20 16:30:25 +08001611static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1612 void __user *arg)
1613{
1614 struct inode *inode = fdentry(file)->d_inode;
1615 struct btrfs_root *root = BTRFS_I(inode)->root;
1616 int ret = 0;
1617 u64 flags = 0;
1618
Li Zefan33345d012011-04-20 10:31:50 +08001619 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001620 return -EINVAL;
1621
1622 down_read(&root->fs_info->subvol_sem);
1623 if (btrfs_root_readonly(root))
1624 flags |= BTRFS_SUBVOL_RDONLY;
1625 up_read(&root->fs_info->subvol_sem);
1626
1627 if (copy_to_user(arg, &flags, sizeof(flags)))
1628 ret = -EFAULT;
1629
1630 return ret;
1631}
1632
1633static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1634 void __user *arg)
1635{
1636 struct inode *inode = fdentry(file)->d_inode;
1637 struct btrfs_root *root = BTRFS_I(inode)->root;
1638 struct btrfs_trans_handle *trans;
1639 u64 root_flags;
1640 u64 flags;
1641 int ret = 0;
1642
Liu Bob9ca0662012-06-29 03:58:49 -06001643 ret = mnt_want_write_file(file);
1644 if (ret)
1645 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001646
Liu Bob9ca0662012-06-29 03:58:49 -06001647 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1648 ret = -EINVAL;
1649 goto out_drop_write;
1650 }
Li Zefan0caa1022010-12-20 16:30:25 +08001651
Liu Bob9ca0662012-06-29 03:58:49 -06001652 if (copy_from_user(&flags, arg, sizeof(flags))) {
1653 ret = -EFAULT;
1654 goto out_drop_write;
1655 }
Li Zefan0caa1022010-12-20 16:30:25 +08001656
Liu Bob9ca0662012-06-29 03:58:49 -06001657 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1658 ret = -EINVAL;
1659 goto out_drop_write;
1660 }
Li Zefan0caa1022010-12-20 16:30:25 +08001661
Liu Bob9ca0662012-06-29 03:58:49 -06001662 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1663 ret = -EOPNOTSUPP;
1664 goto out_drop_write;
1665 }
Li Zefan0caa1022010-12-20 16:30:25 +08001666
Liu Bob9ca0662012-06-29 03:58:49 -06001667 if (!inode_owner_or_capable(inode)) {
1668 ret = -EACCES;
1669 goto out_drop_write;
1670 }
Li Zefanb4dc2b82011-02-16 06:06:34 +00001671
Li Zefan0caa1022010-12-20 16:30:25 +08001672 down_write(&root->fs_info->subvol_sem);
1673
1674 /* nothing to do */
1675 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001676 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001677
1678 root_flags = btrfs_root_flags(&root->root_item);
1679 if (flags & BTRFS_SUBVOL_RDONLY)
1680 btrfs_set_root_flags(&root->root_item,
1681 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
1682 else
1683 btrfs_set_root_flags(&root->root_item,
1684 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
1685
1686 trans = btrfs_start_transaction(root, 1);
1687 if (IS_ERR(trans)) {
1688 ret = PTR_ERR(trans);
1689 goto out_reset;
1690 }
1691
Li Zefanb4dc2b82011-02-16 06:06:34 +00001692 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001693 &root->root_key, &root->root_item);
1694
1695 btrfs_commit_transaction(trans, root);
1696out_reset:
1697 if (ret)
1698 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001699out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001700 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001701out_drop_write:
1702 mnt_drop_write_file(file);
1703out:
Li Zefan0caa1022010-12-20 16:30:25 +08001704 return ret;
1705}
1706
Yan, Zheng76dda932009-09-21 16:00:26 -04001707/*
1708 * helper to check if the subvolume references other subvolumes
1709 */
1710static noinline int may_destroy_subvol(struct btrfs_root *root)
1711{
1712 struct btrfs_path *path;
1713 struct btrfs_key key;
1714 int ret;
1715
1716 path = btrfs_alloc_path();
1717 if (!path)
1718 return -ENOMEM;
1719
1720 key.objectid = root->root_key.objectid;
1721 key.type = BTRFS_ROOT_REF_KEY;
1722 key.offset = (u64)-1;
1723
1724 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1725 &key, path, 0, 0);
1726 if (ret < 0)
1727 goto out;
1728 BUG_ON(ret == 0);
1729
1730 ret = 0;
1731 if (path->slots[0] > 0) {
1732 path->slots[0]--;
1733 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1734 if (key.objectid == root->root_key.objectid &&
1735 key.type == BTRFS_ROOT_REF_KEY)
1736 ret = -ENOTEMPTY;
1737 }
1738out:
1739 btrfs_free_path(path);
1740 return ret;
1741}
1742
Chris Masonac8e9812010-02-28 15:39:26 -05001743static noinline int key_in_sk(struct btrfs_key *key,
1744 struct btrfs_ioctl_search_key *sk)
1745{
Chris Masonabc6e132010-03-18 12:10:08 -04001746 struct btrfs_key test;
1747 int ret;
1748
1749 test.objectid = sk->min_objectid;
1750 test.type = sk->min_type;
1751 test.offset = sk->min_offset;
1752
1753 ret = btrfs_comp_cpu_keys(key, &test);
1754 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001755 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001756
1757 test.objectid = sk->max_objectid;
1758 test.type = sk->max_type;
1759 test.offset = sk->max_offset;
1760
1761 ret = btrfs_comp_cpu_keys(key, &test);
1762 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001763 return 0;
1764 return 1;
1765}
1766
1767static noinline int copy_to_sk(struct btrfs_root *root,
1768 struct btrfs_path *path,
1769 struct btrfs_key *key,
1770 struct btrfs_ioctl_search_key *sk,
1771 char *buf,
1772 unsigned long *sk_offset,
1773 int *num_found)
1774{
1775 u64 found_transid;
1776 struct extent_buffer *leaf;
1777 struct btrfs_ioctl_search_header sh;
1778 unsigned long item_off;
1779 unsigned long item_len;
1780 int nritems;
1781 int i;
1782 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001783 int ret = 0;
1784
1785 leaf = path->nodes[0];
1786 slot = path->slots[0];
1787 nritems = btrfs_header_nritems(leaf);
1788
1789 if (btrfs_header_generation(leaf) > sk->max_transid) {
1790 i = nritems;
1791 goto advance_key;
1792 }
1793 found_transid = btrfs_header_generation(leaf);
1794
1795 for (i = slot; i < nritems; i++) {
1796 item_off = btrfs_item_ptr_offset(leaf, i);
1797 item_len = btrfs_item_size_nr(leaf, i);
1798
1799 if (item_len > BTRFS_SEARCH_ARGS_BUFSIZE)
1800 item_len = 0;
1801
1802 if (sizeof(sh) + item_len + *sk_offset >
1803 BTRFS_SEARCH_ARGS_BUFSIZE) {
1804 ret = 1;
1805 goto overflow;
1806 }
1807
1808 btrfs_item_key_to_cpu(leaf, key, i);
1809 if (!key_in_sk(key, sk))
1810 continue;
1811
1812 sh.objectid = key->objectid;
1813 sh.offset = key->offset;
1814 sh.type = key->type;
1815 sh.len = item_len;
1816 sh.transid = found_transid;
1817
1818 /* copy search result header */
1819 memcpy(buf + *sk_offset, &sh, sizeof(sh));
1820 *sk_offset += sizeof(sh);
1821
1822 if (item_len) {
1823 char *p = buf + *sk_offset;
1824 /* copy the item */
1825 read_extent_buffer(leaf, p,
1826 item_off, item_len);
1827 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001828 }
Hugo Millse2156862011-05-14 17:43:41 +00001829 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001830
1831 if (*num_found >= sk->nr_items)
1832 break;
1833 }
1834advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001835 ret = 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001836 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
1837 key->offset++;
1838 else if (key->type < (u8)-1 && key->type < sk->max_type) {
1839 key->offset = 0;
1840 key->type++;
1841 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
1842 key->offset = 0;
1843 key->type = 0;
1844 key->objectid++;
1845 } else
1846 ret = 1;
Chris Masonac8e9812010-02-28 15:39:26 -05001847overflow:
Chris Masonac8e9812010-02-28 15:39:26 -05001848 return ret;
1849}
1850
1851static noinline int search_ioctl(struct inode *inode,
1852 struct btrfs_ioctl_search_args *args)
1853{
1854 struct btrfs_root *root;
1855 struct btrfs_key key;
1856 struct btrfs_key max_key;
1857 struct btrfs_path *path;
1858 struct btrfs_ioctl_search_key *sk = &args->key;
1859 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
1860 int ret;
1861 int num_found = 0;
1862 unsigned long sk_offset = 0;
1863
1864 path = btrfs_alloc_path();
1865 if (!path)
1866 return -ENOMEM;
1867
1868 if (sk->tree_id == 0) {
1869 /* search the root of the inode that was passed */
1870 root = BTRFS_I(inode)->root;
1871 } else {
1872 key.objectid = sk->tree_id;
1873 key.type = BTRFS_ROOT_ITEM_KEY;
1874 key.offset = (u64)-1;
1875 root = btrfs_read_fs_root_no_name(info, &key);
1876 if (IS_ERR(root)) {
1877 printk(KERN_ERR "could not find root %llu\n",
1878 sk->tree_id);
1879 btrfs_free_path(path);
1880 return -ENOENT;
1881 }
1882 }
1883
1884 key.objectid = sk->min_objectid;
1885 key.type = sk->min_type;
1886 key.offset = sk->min_offset;
1887
1888 max_key.objectid = sk->max_objectid;
1889 max_key.type = sk->max_type;
1890 max_key.offset = sk->max_offset;
1891
1892 path->keep_locks = 1;
1893
1894 while(1) {
Eric Sandeende78b512013-01-31 18:21:12 +00001895 ret = btrfs_search_forward(root, &key, &max_key, path,
Chris Masonac8e9812010-02-28 15:39:26 -05001896 sk->min_transid);
1897 if (ret != 0) {
1898 if (ret > 0)
1899 ret = 0;
1900 goto err;
1901 }
1902 ret = copy_to_sk(root, path, &key, sk, args->buf,
1903 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02001904 btrfs_release_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05001905 if (ret || num_found >= sk->nr_items)
1906 break;
1907
1908 }
1909 ret = 0;
1910err:
1911 sk->nr_items = num_found;
1912 btrfs_free_path(path);
1913 return ret;
1914}
1915
1916static noinline int btrfs_ioctl_tree_search(struct file *file,
1917 void __user *argp)
1918{
1919 struct btrfs_ioctl_search_args *args;
1920 struct inode *inode;
1921 int ret;
1922
1923 if (!capable(CAP_SYS_ADMIN))
1924 return -EPERM;
1925
Julia Lawall2354d082010-10-29 15:14:18 -04001926 args = memdup_user(argp, sizeof(*args));
1927 if (IS_ERR(args))
1928 return PTR_ERR(args);
Chris Masonac8e9812010-02-28 15:39:26 -05001929
Chris Masonac8e9812010-02-28 15:39:26 -05001930 inode = fdentry(file)->d_inode;
1931 ret = search_ioctl(inode, args);
1932 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
1933 ret = -EFAULT;
1934 kfree(args);
1935 return ret;
1936}
1937
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001938/*
Chris Masonac8e9812010-02-28 15:39:26 -05001939 * Search INODE_REFs to identify path name of 'dirid' directory
1940 * in a 'tree_id' tree. and sets path name to 'name'.
1941 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001942static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
1943 u64 tree_id, u64 dirid, char *name)
1944{
1945 struct btrfs_root *root;
1946 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001947 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001948 int ret = -1;
1949 int slot;
1950 int len;
1951 int total_len = 0;
1952 struct btrfs_inode_ref *iref;
1953 struct extent_buffer *l;
1954 struct btrfs_path *path;
1955
1956 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
1957 name[0]='\0';
1958 return 0;
1959 }
1960
1961 path = btrfs_alloc_path();
1962 if (!path)
1963 return -ENOMEM;
1964
Chris Masonac8e9812010-02-28 15:39:26 -05001965 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001966
1967 key.objectid = tree_id;
1968 key.type = BTRFS_ROOT_ITEM_KEY;
1969 key.offset = (u64)-1;
1970 root = btrfs_read_fs_root_no_name(info, &key);
1971 if (IS_ERR(root)) {
1972 printk(KERN_ERR "could not find root %llu\n", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04001973 ret = -ENOENT;
1974 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001975 }
1976
1977 key.objectid = dirid;
1978 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04001979 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001980
1981 while(1) {
1982 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1983 if (ret < 0)
1984 goto out;
1985
1986 l = path->nodes[0];
1987 slot = path->slots[0];
Chris Mason8ad6fca2010-03-18 12:23:10 -04001988 if (ret > 0 && slot > 0)
1989 slot--;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001990 btrfs_item_key_to_cpu(l, &key, slot);
1991
1992 if (ret > 0 && (key.objectid != dirid ||
Chris Masonac8e9812010-02-28 15:39:26 -05001993 key.type != BTRFS_INODE_REF_KEY)) {
1994 ret = -ENOENT;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001995 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001996 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00001997
1998 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
1999 len = btrfs_inode_ref_name_len(l, iref);
2000 ptr -= len + 1;
2001 total_len += len + 1;
Chris Masonac8e9812010-02-28 15:39:26 -05002002 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002003 goto out;
2004
2005 *(ptr + len) = '/';
2006 read_extent_buffer(l, ptr,(unsigned long)(iref + 1), len);
2007
2008 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2009 break;
2010
David Sterbab3b4aa72011-04-21 01:20:15 +02002011 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002012 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002013 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002014 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002015 }
Chris Masonac8e9812010-02-28 15:39:26 -05002016 if (ptr < name)
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002017 goto out;
Li Zefan77906a502011-07-14 03:16:00 +00002018 memmove(name, ptr, total_len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002019 name[total_len]='\0';
2020 ret = 0;
2021out:
2022 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002023 return ret;
2024}
2025
2026static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2027 void __user *argp)
2028{
2029 struct btrfs_ioctl_ino_lookup_args *args;
2030 struct inode *inode;
2031 int ret;
2032
2033 if (!capable(CAP_SYS_ADMIN))
2034 return -EPERM;
2035
Julia Lawall2354d082010-10-29 15:14:18 -04002036 args = memdup_user(argp, sizeof(*args));
2037 if (IS_ERR(args))
2038 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002039
Chris Masonac8e9812010-02-28 15:39:26 -05002040 inode = fdentry(file)->d_inode;
2041
Chris Mason1b53ac42010-03-18 12:17:05 -04002042 if (args->treeid == 0)
2043 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2044
Chris Masonac8e9812010-02-28 15:39:26 -05002045 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2046 args->treeid, args->objectid,
2047 args->name);
2048
2049 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2050 ret = -EFAULT;
2051
2052 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002053 return ret;
2054}
2055
Yan, Zheng76dda932009-09-21 16:00:26 -04002056static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2057 void __user *arg)
2058{
2059 struct dentry *parent = fdentry(file);
2060 struct dentry *dentry;
2061 struct inode *dir = parent->d_inode;
2062 struct inode *inode;
2063 struct btrfs_root *root = BTRFS_I(dir)->root;
2064 struct btrfs_root *dest = NULL;
2065 struct btrfs_ioctl_vol_args *vol_args;
2066 struct btrfs_trans_handle *trans;
2067 int namelen;
2068 int ret;
2069 int err = 0;
2070
Yan, Zheng76dda932009-09-21 16:00:26 -04002071 vol_args = memdup_user(arg, sizeof(*vol_args));
2072 if (IS_ERR(vol_args))
2073 return PTR_ERR(vol_args);
2074
2075 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2076 namelen = strlen(vol_args->name);
2077 if (strchr(vol_args->name, '/') ||
2078 strncmp(vol_args->name, "..", namelen) == 0) {
2079 err = -EINVAL;
2080 goto out;
2081 }
2082
Al Viroa561be72011-11-23 11:57:51 -05002083 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002084 if (err)
2085 goto out;
2086
2087 mutex_lock_nested(&dir->i_mutex, I_MUTEX_PARENT);
2088 dentry = lookup_one_len(vol_args->name, parent, namelen);
2089 if (IS_ERR(dentry)) {
2090 err = PTR_ERR(dentry);
2091 goto out_unlock_dir;
2092 }
2093
2094 if (!dentry->d_inode) {
2095 err = -ENOENT;
2096 goto out_dput;
2097 }
2098
2099 inode = dentry->d_inode;
Sage Weil4260f7c2010-10-29 15:46:43 -04002100 dest = BTRFS_I(inode)->root;
2101 if (!capable(CAP_SYS_ADMIN)){
2102 /*
2103 * Regular user. Only allow this with a special mount
2104 * option, when the user has write+exec access to the
2105 * subvol root, and when rmdir(2) would have been
2106 * allowed.
2107 *
2108 * Note that this is _not_ check that the subvol is
2109 * empty or doesn't contain data that we wouldn't
2110 * otherwise be able to delete.
2111 *
2112 * Users who want to delete empty subvols should try
2113 * rmdir(2).
2114 */
2115 err = -EPERM;
2116 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2117 goto out_dput;
2118
2119 /*
2120 * Do not allow deletion if the parent dir is the same
2121 * as the dir to be deleted. That means the ioctl
2122 * must be called on the dentry referencing the root
2123 * of the subvol, not a random directory contained
2124 * within it.
2125 */
2126 err = -EINVAL;
2127 if (root == dest)
2128 goto out_dput;
2129
2130 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2131 if (err)
2132 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002133 }
2134
Miao Xie5c39da52012-10-22 11:39:53 +00002135 /* check if subvolume may be deleted by a user */
2136 err = btrfs_may_delete(dir, dentry, 1);
2137 if (err)
2138 goto out_dput;
2139
Li Zefan33345d012011-04-20 10:31:50 +08002140 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002141 err = -EINVAL;
2142 goto out_dput;
2143 }
2144
Yan, Zheng76dda932009-09-21 16:00:26 -04002145 mutex_lock(&inode->i_mutex);
2146 err = d_invalidate(dentry);
2147 if (err)
2148 goto out_unlock;
2149
2150 down_write(&root->fs_info->subvol_sem);
2151
2152 err = may_destroy_subvol(dest);
2153 if (err)
2154 goto out_up_write;
2155
Yan, Zhenga22285a2010-05-16 10:48:46 -04002156 trans = btrfs_start_transaction(root, 0);
2157 if (IS_ERR(trans)) {
2158 err = PTR_ERR(trans);
Dan Carpenterd3270992010-05-29 09:46:47 +00002159 goto out_up_write;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002160 }
2161 trans->block_rsv = &root->fs_info->global_block_rsv;
2162
Yan, Zheng76dda932009-09-21 16:00:26 -04002163 ret = btrfs_unlink_subvol(trans, root, dir,
2164 dest->root_key.objectid,
2165 dentry->d_name.name,
2166 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002167 if (ret) {
2168 err = ret;
2169 btrfs_abort_transaction(trans, root, ret);
2170 goto out_end_trans;
2171 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002172
2173 btrfs_record_root_in_trans(trans, dest);
2174
2175 memset(&dest->root_item.drop_progress, 0,
2176 sizeof(dest->root_item.drop_progress));
2177 dest->root_item.drop_level = 0;
2178 btrfs_set_root_refs(&dest->root_item, 0);
2179
Yan, Zhengd68fc572010-05-16 10:49:58 -04002180 if (!xchg(&dest->orphan_item_inserted, 1)) {
2181 ret = btrfs_insert_orphan_item(trans,
2182 root->fs_info->tree_root,
2183 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002184 if (ret) {
2185 btrfs_abort_transaction(trans, root, ret);
2186 err = ret;
2187 goto out_end_trans;
2188 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002189 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002190out_end_trans:
Sage Weil531cb132010-10-29 15:41:32 -04002191 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002192 if (ret && !err)
2193 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002194 inode->i_flags |= S_DEAD;
2195out_up_write:
2196 up_write(&root->fs_info->subvol_sem);
2197out_unlock:
2198 mutex_unlock(&inode->i_mutex);
2199 if (!err) {
Yan, Zhengefefb142009-10-09 09:25:16 -04002200 shrink_dcache_sb(root->fs_info->sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002201 btrfs_invalidate_inodes(dest);
2202 d_delete(dentry);
Liu Bofa6ac872013-02-20 14:10:23 +00002203
2204 /* the last ref */
2205 if (dest->cache_inode) {
2206 iput(dest->cache_inode);
2207 dest->cache_inode = NULL;
2208 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002209 }
2210out_dput:
2211 dput(dentry);
2212out_unlock_dir:
2213 mutex_unlock(&dir->i_mutex);
Al Viro2a79f172011-12-09 08:06:57 -05002214 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002215out:
2216 kfree(vol_args);
2217 return err;
2218}
2219
Chris Mason1e701a32010-03-11 09:42:04 -05002220static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002221{
2222 struct inode *inode = fdentry(file)->d_inode;
2223 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002224 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002225 int ret;
2226
Ilya Dryomov25122d12013-01-20 15:57:57 +02002227 ret = mnt_want_write_file(file);
2228 if (ret)
2229 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002230
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002231 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2232 1)) {
2233 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Ilya Dryomov25122d12013-01-20 15:57:57 +02002234 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002235 return -EINVAL;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002236 }
Ilya Dryomov25122d12013-01-20 15:57:57 +02002237
2238 if (btrfs_root_readonly(root)) {
2239 ret = -EROFS;
2240 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002241 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002242
2243 switch (inode->i_mode & S_IFMT) {
2244 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002245 if (!capable(CAP_SYS_ADMIN)) {
2246 ret = -EPERM;
2247 goto out;
2248 }
Eric Sandeende78b512013-01-31 18:21:12 +00002249 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002250 if (ret)
2251 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002252 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002253 break;
2254 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002255 if (!(file->f_mode & FMODE_WRITE)) {
2256 ret = -EINVAL;
2257 goto out;
2258 }
Chris Mason1e701a32010-03-11 09:42:04 -05002259
2260 range = kzalloc(sizeof(*range), GFP_KERNEL);
2261 if (!range) {
2262 ret = -ENOMEM;
2263 goto out;
2264 }
2265
2266 if (argp) {
2267 if (copy_from_user(range, argp,
2268 sizeof(*range))) {
2269 ret = -EFAULT;
2270 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002271 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002272 }
2273 /* compression requires us to start the IO */
2274 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2275 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2276 range->extent_thresh = (u32)-1;
2277 }
2278 } else {
2279 /* the rest are all set to zero by kzalloc */
2280 range->len = (u64)-1;
2281 }
Chris Mason4cb53002011-05-24 15:35:30 -04002282 ret = btrfs_defrag_file(fdentry(file)->d_inode, file,
2283 range, 0, 0);
2284 if (ret > 0)
2285 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002286 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002287 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002288 default:
2289 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002290 }
Chris Masone441d542009-01-05 16:57:23 -05002291out:
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002292 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov25122d12013-01-20 15:57:57 +02002293 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002294 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002295}
2296
Christoph Hellwigb2950862008-12-02 09:54:17 -05002297static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002298{
2299 struct btrfs_ioctl_vol_args *vol_args;
2300 int ret;
2301
Chris Masone441d542009-01-05 16:57:23 -05002302 if (!capable(CAP_SYS_ADMIN))
2303 return -EPERM;
2304
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002305 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2306 1)) {
2307 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002308 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002309 }
2310
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002311 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002312 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002313 if (IS_ERR(vol_args)) {
2314 ret = PTR_ERR(vol_args);
2315 goto out;
2316 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002317
Mark Fasheh5516e592008-07-24 12:20:14 -04002318 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002319 ret = btrfs_init_new_device(root, vol_args->name);
2320
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002321 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002322out:
2323 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002324 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002325 return ret;
2326}
2327
Miao Xieda249272012-11-26 08:44:50 +00002328static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002329{
Miao Xieda249272012-11-26 08:44:50 +00002330 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002331 struct btrfs_ioctl_vol_args *vol_args;
2332 int ret;
2333
Chris Masone441d542009-01-05 16:57:23 -05002334 if (!capable(CAP_SYS_ADMIN))
2335 return -EPERM;
2336
Miao Xieda249272012-11-26 08:44:50 +00002337 ret = mnt_want_write_file(file);
2338 if (ret)
2339 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002340
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002341 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2342 1)) {
2343 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
Miao Xieda249272012-11-26 08:44:50 +00002344 mnt_drop_write_file(file);
Ilya Dryomov2c0c9da2013-01-20 15:57:57 +02002345 return -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002346 }
2347
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002348 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002349 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002350 if (IS_ERR(vol_args)) {
2351 ret = PTR_ERR(vol_args);
2352 goto out;
2353 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002354
Mark Fasheh5516e592008-07-24 12:20:14 -04002355 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002356 ret = btrfs_rm_device(root, vol_args->name);
2357
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002358 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002359out:
2360 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002361 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002362 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002363 return ret;
2364}
2365
Jan Schmidt475f6382011-03-11 15:41:01 +01002366static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2367{
Li Zefan027ed2f2011-06-08 08:27:56 +00002368 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002369 struct btrfs_device *device;
2370 struct btrfs_device *next;
2371 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002372 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002373
2374 if (!capable(CAP_SYS_ADMIN))
2375 return -EPERM;
2376
Li Zefan027ed2f2011-06-08 08:27:56 +00002377 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2378 if (!fi_args)
2379 return -ENOMEM;
2380
2381 fi_args->num_devices = fs_devices->num_devices;
2382 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002383
2384 mutex_lock(&fs_devices->device_list_mutex);
2385 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002386 if (device->devid > fi_args->max_id)
2387 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002388 }
2389 mutex_unlock(&fs_devices->device_list_mutex);
2390
Li Zefan027ed2f2011-06-08 08:27:56 +00002391 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2392 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002393
Li Zefan027ed2f2011-06-08 08:27:56 +00002394 kfree(fi_args);
2395 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002396}
2397
2398static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2399{
2400 struct btrfs_ioctl_dev_info_args *di_args;
2401 struct btrfs_device *dev;
2402 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2403 int ret = 0;
2404 char *s_uuid = NULL;
2405 char empty_uuid[BTRFS_UUID_SIZE] = {0};
2406
2407 if (!capable(CAP_SYS_ADMIN))
2408 return -EPERM;
2409
2410 di_args = memdup_user(arg, sizeof(*di_args));
2411 if (IS_ERR(di_args))
2412 return PTR_ERR(di_args);
2413
2414 if (memcmp(empty_uuid, di_args->uuid, BTRFS_UUID_SIZE) != 0)
2415 s_uuid = di_args->uuid;
2416
2417 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002418 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002419 mutex_unlock(&fs_devices->device_list_mutex);
2420
2421 if (!dev) {
2422 ret = -ENODEV;
2423 goto out;
2424 }
2425
2426 di_args->devid = dev->devid;
2427 di_args->bytes_used = dev->bytes_used;
2428 di_args->total_bytes = dev->total_bytes;
2429 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002430 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002431 struct rcu_string *name;
2432
2433 rcu_read_lock();
2434 name = rcu_dereference(dev->name);
2435 strncpy(di_args->path, name->str, sizeof(di_args->path));
2436 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002437 di_args->path[sizeof(di_args->path) - 1] = 0;
2438 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002439 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002440 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002441
2442out:
2443 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2444 ret = -EFAULT;
2445
2446 kfree(di_args);
2447 return ret;
2448}
2449
Yan, Zheng76dda932009-09-21 16:00:26 -04002450static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
2451 u64 off, u64 olen, u64 destoff)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002452{
2453 struct inode *inode = fdentry(file)->d_inode;
2454 struct btrfs_root *root = BTRFS_I(inode)->root;
Al Viro2903ff02012-08-28 12:52:22 -04002455 struct fd src_file;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002456 struct inode *src;
2457 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002458 struct btrfs_path *path;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002459 struct extent_buffer *leaf;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002460 char *buf;
2461 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002462 u32 nritems;
2463 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002464 int ret;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002465 u64 len = olen;
2466 u64 bs = root->fs_info->sb->s_blocksize;
Chris Masond20f7042008-12-08 16:58:54 -05002467
Sage Weilc5c9cd42008-11-12 14:32:25 -05002468 /*
2469 * TODO:
2470 * - split compressed inline extents. annoying: we need to
2471 * decompress into destination's address_space (the file offset
2472 * may change, so source mapping won't do), then recompress (or
2473 * otherwise reinsert) a subrange.
2474 * - allow ranges within the same file to be cloned (provided
2475 * they don't overlap)?
2476 */
2477
Chris Masone441d542009-01-05 16:57:23 -05002478 /* the destination must be opened for writing */
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002479 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
Chris Masone441d542009-01-05 16:57:23 -05002480 return -EINVAL;
2481
Li Zefanb83cc962010-12-20 16:04:08 +08002482 if (btrfs_root_readonly(root))
2483 return -EROFS;
2484
Al Viroa561be72011-11-23 11:57:51 -05002485 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002486 if (ret)
2487 return ret;
2488
Al Viro2903ff02012-08-28 12:52:22 -04002489 src_file = fdget(srcfd);
2490 if (!src_file.file) {
Yan Zhengab67b7c2008-12-19 10:58:39 -05002491 ret = -EBADF;
2492 goto out_drop_write;
2493 }
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002494
David Sterba362a20c2011-08-01 18:11:57 +02002495 ret = -EXDEV;
Al Viro2903ff02012-08-28 12:52:22 -04002496 if (src_file.file->f_path.mnt != file->f_path.mnt)
David Sterba362a20c2011-08-01 18:11:57 +02002497 goto out_fput;
2498
Al Viro2903ff02012-08-28 12:52:22 -04002499 src = src_file.file->f_dentry->d_inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002500
Sage Weilc5c9cd42008-11-12 14:32:25 -05002501 ret = -EINVAL;
2502 if (src == inode)
2503 goto out_fput;
2504
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002505 /* the src must be open for reading */
Al Viro2903ff02012-08-28 12:52:22 -04002506 if (!(src_file.file->f_mode & FMODE_READ))
Dan Rosenberg5dc64162010-05-15 11:27:37 -04002507 goto out_fput;
2508
Li Zefan0e7b8242011-09-18 10:20:46 -04002509 /* don't make the dst file partly checksummed */
2510 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2511 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
2512 goto out_fput;
2513
Yan Zhengae01a0a2008-08-04 23:23:47 -04002514 ret = -EISDIR;
2515 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002516 goto out_fput;
2517
Yan Zhengae01a0a2008-08-04 23:23:47 -04002518 ret = -EXDEV;
David Sterba362a20c2011-08-01 18:11:57 +02002519 if (src->i_sb != inode->i_sb)
Yan Zhengae01a0a2008-08-04 23:23:47 -04002520 goto out_fput;
2521
2522 ret = -ENOMEM;
2523 buf = vmalloc(btrfs_level_size(root, 0));
2524 if (!buf)
2525 goto out_fput;
2526
2527 path = btrfs_alloc_path();
2528 if (!path) {
2529 vfree(buf);
2530 goto out_fput;
2531 }
2532 path->reada = 2;
2533
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002534 if (inode < src) {
Sage Weilfccdae42010-10-29 15:37:33 -04002535 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
2536 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002537 } else {
Sage Weilfccdae42010-10-29 15:37:33 -04002538 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
2539 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002540 }
2541
Sage Weilc5c9cd42008-11-12 14:32:25 -05002542 /* determine range to clone */
2543 ret = -EINVAL;
Dan Rosenberg2ebc3462010-07-19 16:58:20 -04002544 if (off + len > src->i_size || off + len < off)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002545 goto out_unlock;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002546 if (len == 0)
2547 olen = len = src->i_size - off;
2548 /* if we extend to eof, continue to block boundary */
2549 if (off + len == src->i_size)
Li Zefan2a6b8da2010-11-19 01:36:10 +00002550 len = ALIGN(src->i_size, bs) - off;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002551
2552 /* verify the end result is block aligned */
Li Zefan2a6b8da2010-11-19 01:36:10 +00002553 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
2554 !IS_ALIGNED(destoff, bs))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002555 goto out_unlock;
2556
Li Zefand525e8a2011-09-11 10:52:25 -04002557 if (destoff > inode->i_size) {
2558 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
2559 if (ret)
2560 goto out_unlock;
2561 }
2562
Li Zefan71ef0782011-09-18 10:20:46 -04002563 /* truncate page cache pages from target inode range */
2564 truncate_inode_pages_range(&inode->i_data, destoff,
2565 PAGE_CACHE_ALIGN(destoff + len) - 1);
2566
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002567 /* do any pending delalloc/csum calc on src, one way or
2568 another, and lock file content */
2569 while (1) {
Zheng Yan31840ae2008-09-23 13:14:14 -04002570 struct btrfs_ordered_extent *ordered;
Liu Boaa42ffd2012-09-18 03:52:23 -06002571 lock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
2572 ordered = btrfs_lookup_first_ordered_extent(src, off + len - 1);
Sage Weil9a019192010-10-29 15:37:33 -04002573 if (!ordered &&
Liu Boaa42ffd2012-09-18 03:52:23 -06002574 !test_range_bit(&BTRFS_I(src)->io_tree, off, off + len - 1,
2575 EXTENT_DELALLOC, 0, NULL))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002576 break;
Liu Boaa42ffd2012-09-18 03:52:23 -06002577 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002578 if (ordered)
2579 btrfs_put_ordered_extent(ordered);
Sage Weil9a019192010-10-29 15:37:33 -04002580 btrfs_wait_ordered_range(src, off, len);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002581 }
2582
Sage Weilc5c9cd42008-11-12 14:32:25 -05002583 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08002584 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002585 key.type = BTRFS_EXTENT_DATA_KEY;
2586 key.offset = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002587
2588 while (1) {
2589 /*
2590 * note the key will change type as we walk through the
2591 * tree.
2592 */
David Sterba362a20c2011-08-01 18:11:57 +02002593 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
2594 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002595 if (ret < 0)
2596 goto out;
2597
Yan Zhengae01a0a2008-08-04 23:23:47 -04002598 nritems = btrfs_header_nritems(path->nodes[0]);
2599 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02002600 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002601 if (ret < 0)
2602 goto out;
2603 if (ret > 0)
2604 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04002605 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002606 }
2607 leaf = path->nodes[0];
2608 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002609
Yan Zhengae01a0a2008-08-04 23:23:47 -04002610 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Masond20f7042008-12-08 16:58:54 -05002611 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08002612 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002613 break;
2614
Sage Weilc5c9cd42008-11-12 14:32:25 -05002615 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
2616 struct btrfs_file_extent_item *extent;
2617 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04002618 u32 size;
2619 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002620 u64 disko = 0, diskl = 0;
2621 u64 datao = 0, datal = 0;
2622 u8 comp;
Sage Weilb5384d42010-06-12 22:31:14 +00002623 u64 endoff;
Zheng Yan31840ae2008-09-23 13:14:14 -04002624
2625 size = btrfs_item_size_nr(leaf, slot);
2626 read_extent_buffer(leaf, buf,
2627 btrfs_item_ptr_offset(leaf, slot),
2628 size);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002629
2630 extent = btrfs_item_ptr(leaf, slot,
2631 struct btrfs_file_extent_item);
2632 comp = btrfs_file_extent_compression(leaf, extent);
2633 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04002634 if (type == BTRFS_FILE_EXTENT_REG ||
2635 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05002636 disko = btrfs_file_extent_disk_bytenr(leaf,
2637 extent);
2638 diskl = btrfs_file_extent_disk_num_bytes(leaf,
2639 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002640 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05002641 datal = btrfs_file_extent_num_bytes(leaf,
2642 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002643 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2644 /* take upper bound, may be compressed */
2645 datal = btrfs_file_extent_ram_bytes(leaf,
2646 extent);
2647 }
David Sterbab3b4aa72011-04-21 01:20:15 +02002648 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04002649
Sage Weil050006a2010-10-29 15:37:33 -04002650 if (key.offset + datal <= off ||
Liu Boaa42ffd2012-09-18 03:52:23 -06002651 key.offset >= off + len - 1)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002652 goto next;
2653
Zheng Yan31840ae2008-09-23 13:14:14 -04002654 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08002655 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08002656 if (off <= key.offset)
2657 new_key.offset = key.offset + destoff - off;
2658 else
2659 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002660
Sage Weilb6f34092011-09-20 14:48:51 -04002661 /*
2662 * 1 - adjusting old extent (we may have to split it)
2663 * 1 - add new extent
2664 * 1 - inode update
2665 */
2666 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002667 if (IS_ERR(trans)) {
2668 ret = PTR_ERR(trans);
2669 goto out;
2670 }
2671
Chris Masonc8a894d2009-06-27 21:07:03 -04002672 if (type == BTRFS_FILE_EXTENT_REG ||
2673 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04002674 /*
2675 * a | --- range to clone ---| b
2676 * | ------------- extent ------------- |
2677 */
2678
2679 /* substract range b */
2680 if (key.offset + datal > off + len)
2681 datal = off + len - key.offset;
2682
2683 /* substract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04002684 if (off > key.offset) {
2685 datao += off - key.offset;
2686 datal -= off - key.offset;
2687 }
2688
Josef Bacik5dc562c2012-08-17 13:14:17 -04002689 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002690 new_key.offset,
2691 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002692 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002693 if (ret) {
2694 btrfs_abort_transaction(trans, root,
2695 ret);
2696 btrfs_end_transaction(trans, root);
2697 goto out;
2698 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002699
Sage Weilc5c9cd42008-11-12 14:32:25 -05002700 ret = btrfs_insert_empty_item(trans, root, path,
2701 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002702 if (ret) {
2703 btrfs_abort_transaction(trans, root,
2704 ret);
2705 btrfs_end_transaction(trans, root);
2706 goto out;
2707 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002708
2709 leaf = path->nodes[0];
2710 slot = path->slots[0];
2711 write_extent_buffer(leaf, buf,
2712 btrfs_item_ptr_offset(leaf, slot),
2713 size);
2714
2715 extent = btrfs_item_ptr(leaf, slot,
2716 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002717
Sage Weilc5c9cd42008-11-12 14:32:25 -05002718 /* disko == 0 means it's a hole */
2719 if (!disko)
2720 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05002721
2722 btrfs_set_file_extent_offset(leaf, extent,
2723 datao);
2724 btrfs_set_file_extent_num_bytes(leaf, extent,
2725 datal);
2726 if (disko) {
2727 inode_add_bytes(inode, datal);
2728 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002729 disko, diskl, 0,
2730 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08002731 btrfs_ino(inode),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002732 new_key.offset - datao,
2733 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002734 if (ret) {
2735 btrfs_abort_transaction(trans,
2736 root,
2737 ret);
2738 btrfs_end_transaction(trans,
2739 root);
2740 goto out;
2741
2742 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002743 }
2744 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
2745 u64 skip = 0;
2746 u64 trim = 0;
2747 if (off > key.offset) {
2748 skip = off - key.offset;
2749 new_key.offset += skip;
2750 }
Chris Masond3977122009-01-05 21:25:51 -05002751
Liu Boaa42ffd2012-09-18 03:52:23 -06002752 if (key.offset + datal > off + len)
2753 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05002754
Sage Weilc5c9cd42008-11-12 14:32:25 -05002755 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05002756 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002757 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002758 goto out;
2759 }
2760 size -= skip + trim;
2761 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002762
Josef Bacik5dc562c2012-08-17 13:14:17 -04002763 ret = btrfs_drop_extents(trans, root, inode,
Yan, Zhenga22285a2010-05-16 10:48:46 -04002764 new_key.offset,
2765 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04002766 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002767 if (ret) {
2768 btrfs_abort_transaction(trans, root,
2769 ret);
2770 btrfs_end_transaction(trans, root);
2771 goto out;
2772 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04002773
Sage Weilc5c9cd42008-11-12 14:32:25 -05002774 ret = btrfs_insert_empty_item(trans, root, path,
2775 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002776 if (ret) {
2777 btrfs_abort_transaction(trans, root,
2778 ret);
2779 btrfs_end_transaction(trans, root);
2780 goto out;
2781 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05002782
2783 if (skip) {
Chris Masond3977122009-01-05 21:25:51 -05002784 u32 start =
2785 btrfs_file_extent_calc_inline_size(0);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002786 memmove(buf+start, buf+start+skip,
2787 datal);
2788 }
2789
2790 leaf = path->nodes[0];
2791 slot = path->slots[0];
2792 write_extent_buffer(leaf, buf,
2793 btrfs_item_ptr_offset(leaf, slot),
2794 size);
2795 inode_add_bytes(inode, datal);
2796 }
2797
2798 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002799 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05002800
Josef Bacik0c4d2d92012-04-05 15:03:02 -04002801 inode_inc_iversion(inode);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002802 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Sage Weilb5384d42010-06-12 22:31:14 +00002803
2804 /*
2805 * we round up to the block size at eof when
2806 * determining which extents to clone above,
2807 * but shouldn't round up the file size
2808 */
2809 endoff = new_key.offset + datal;
Li Zefan5f3888f2010-11-19 01:36:34 +00002810 if (endoff > destoff+olen)
2811 endoff = destoff+olen;
Sage Weilb5384d42010-06-12 22:31:14 +00002812 if (endoff > inode->i_size)
2813 btrfs_i_size_write(inode, endoff);
2814
Yan, Zhenga22285a2010-05-16 10:48:46 -04002815 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002816 if (ret) {
2817 btrfs_abort_transaction(trans, root, ret);
2818 btrfs_end_transaction(trans, root);
2819 goto out;
2820 }
2821 ret = btrfs_end_transaction(trans, root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04002822 }
Chris Masond3977122009-01-05 21:25:51 -05002823next:
David Sterbab3b4aa72011-04-21 01:20:15 +02002824 btrfs_release_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002825 key.offset++;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002826 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002827 ret = 0;
2828out:
David Sterbab3b4aa72011-04-21 01:20:15 +02002829 btrfs_release_path(path);
Liu Boaa42ffd2012-09-18 03:52:23 -06002830 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002831out_unlock:
2832 mutex_unlock(&src->i_mutex);
2833 mutex_unlock(&inode->i_mutex);
Yan Zhengae01a0a2008-08-04 23:23:47 -04002834 vfree(buf);
2835 btrfs_free_path(path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002836out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04002837 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05002838out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002839 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002840 return ret;
2841}
2842
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002843static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05002844{
2845 struct btrfs_ioctl_clone_range_args args;
2846
Christoph Hellwig7a865e82008-12-02 09:52:24 -05002847 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05002848 return -EFAULT;
2849 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
2850 args.src_length, args.dest_offset);
2851}
2852
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002853/*
2854 * there are many ways the trans_start and trans_end ioctls can lead
2855 * to deadlocks. They should only be used by applications that
2856 * basically own the machine, and have a very in depth understanding
2857 * of all the possible deadlocks and enospc problems.
2858 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05002859static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002860{
2861 struct inode *inode = fdentry(file)->d_inode;
2862 struct btrfs_root *root = BTRFS_I(inode)->root;
2863 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002864 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002865
Sage Weil1ab86ae2009-09-29 18:38:44 -04002866 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04002867 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002868 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04002869
2870 ret = -EINPROGRESS;
2871 if (file->private_data)
2872 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04002873
Li Zefanb83cc962010-12-20 16:04:08 +08002874 ret = -EROFS;
2875 if (btrfs_root_readonly(root))
2876 goto out;
2877
Al Viroa561be72011-11-23 11:57:51 -05002878 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05002879 if (ret)
2880 goto out;
2881
Josef Bacika4abeea2011-04-11 17:25:13 -04002882 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04002883
Sage Weil1ab86ae2009-09-29 18:38:44 -04002884 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002885 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00002886 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04002887 goto out_drop;
2888
2889 file->private_data = trans;
2890 return 0;
2891
2892out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04002893 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05002894 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002895out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002896 return ret;
2897}
2898
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002899static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
2900{
2901 struct inode *inode = fdentry(file)->d_inode;
2902 struct btrfs_root *root = BTRFS_I(inode)->root;
2903 struct btrfs_root *new_root;
2904 struct btrfs_dir_item *di;
2905 struct btrfs_trans_handle *trans;
2906 struct btrfs_path *path;
2907 struct btrfs_key location;
2908 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002909 u64 objectid = 0;
2910 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00002911 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002912
2913 if (!capable(CAP_SYS_ADMIN))
2914 return -EPERM;
2915
Miao Xie3c04ce02012-11-26 08:43:07 +00002916 ret = mnt_want_write_file(file);
2917 if (ret)
2918 return ret;
2919
2920 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
2921 ret = -EFAULT;
2922 goto out;
2923 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002924
2925 if (!objectid)
2926 objectid = root->root_key.objectid;
2927
2928 location.objectid = objectid;
2929 location.type = BTRFS_ROOT_ITEM_KEY;
2930 location.offset = (u64)-1;
2931
2932 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00002933 if (IS_ERR(new_root)) {
2934 ret = PTR_ERR(new_root);
2935 goto out;
2936 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002937
Miao Xie3c04ce02012-11-26 08:43:07 +00002938 if (btrfs_root_refs(&new_root->root_item) == 0) {
2939 ret = -ENOENT;
2940 goto out;
2941 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002942
2943 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00002944 if (!path) {
2945 ret = -ENOMEM;
2946 goto out;
2947 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002948 path->leave_spinning = 1;
2949
2950 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002951 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002952 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00002953 ret = PTR_ERR(trans);
2954 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002955 }
2956
David Sterba6c417612011-04-13 15:41:04 +02002957 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002958 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
2959 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00002960 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002961 btrfs_free_path(path);
2962 btrfs_end_transaction(trans, root);
2963 printk(KERN_ERR "Umm, you don't have the default dir item, "
2964 "this isn't going to work\n");
Miao Xie3c04ce02012-11-26 08:43:07 +00002965 ret = -ENOENT;
2966 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002967 }
2968
2969 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
2970 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
2971 btrfs_mark_buffer_dirty(path->nodes[0]);
2972 btrfs_free_path(path);
2973
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06002974 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002975 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00002976out:
2977 mnt_drop_write_file(file);
2978 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00002979}
2980
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02002981void btrfs_get_block_group_info(struct list_head *groups_list,
2982 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04002983{
2984 struct btrfs_block_group_cache *block_group;
2985
2986 space->total_bytes = 0;
2987 space->used_bytes = 0;
2988 space->flags = 0;
2989 list_for_each_entry(block_group, groups_list, list) {
2990 space->flags = block_group->flags;
2991 space->total_bytes += block_group->key.offset;
2992 space->used_bytes +=
2993 btrfs_block_group_used(&block_group->item);
2994 }
2995}
2996
Josef Bacik1406e432010-01-13 18:19:06 +00002997long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
2998{
2999 struct btrfs_ioctl_space_args space_args;
3000 struct btrfs_ioctl_space_info space;
3001 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003002 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003003 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003004 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003005 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3006 BTRFS_BLOCK_GROUP_SYSTEM,
3007 BTRFS_BLOCK_GROUP_METADATA,
3008 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3009 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003010 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003011 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003012 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003013 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003014
3015 if (copy_from_user(&space_args,
3016 (struct btrfs_ioctl_space_args __user *)arg,
3017 sizeof(space_args)))
3018 return -EFAULT;
3019
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003020 for (i = 0; i < num_types; i++) {
3021 struct btrfs_space_info *tmp;
3022
3023 info = NULL;
3024 rcu_read_lock();
3025 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3026 list) {
3027 if (tmp->flags == types[i]) {
3028 info = tmp;
3029 break;
3030 }
3031 }
3032 rcu_read_unlock();
3033
3034 if (!info)
3035 continue;
3036
3037 down_read(&info->groups_sem);
3038 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3039 if (!list_empty(&info->block_groups[c]))
3040 slot_count++;
3041 }
3042 up_read(&info->groups_sem);
3043 }
Josef Bacik1406e432010-01-13 18:19:06 +00003044
Chris Mason7fde62b2010-03-16 15:40:10 -04003045 /* space_slots == 0 means they are asking for a count */
3046 if (space_args.space_slots == 0) {
3047 space_args.total_spaces = slot_count;
3048 goto out;
3049 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003050
Dan Rosenberg51788b12011-02-14 16:04:23 -05003051 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003052
Chris Mason7fde62b2010-03-16 15:40:10 -04003053 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003054
Chris Mason7fde62b2010-03-16 15:40:10 -04003055 /* we generally have at most 6 or so space infos, one for each raid
3056 * level. So, a whole page should be more than enough for everyone
3057 */
3058 if (alloc_size > PAGE_CACHE_SIZE)
3059 return -ENOMEM;
3060
3061 space_args.total_spaces = 0;
3062 dest = kmalloc(alloc_size, GFP_NOFS);
3063 if (!dest)
3064 return -ENOMEM;
3065 dest_orig = dest;
3066
3067 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003068 for (i = 0; i < num_types; i++) {
3069 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003070
Dan Rosenberg51788b12011-02-14 16:04:23 -05003071 if (!slot_count)
3072 break;
3073
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003074 info = NULL;
3075 rcu_read_lock();
3076 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3077 list) {
3078 if (tmp->flags == types[i]) {
3079 info = tmp;
3080 break;
3081 }
3082 }
3083 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003084
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003085 if (!info)
3086 continue;
3087 down_read(&info->groups_sem);
3088 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3089 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02003090 btrfs_get_block_group_info(
3091 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003092 memcpy(dest, &space, sizeof(space));
3093 dest++;
3094 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003095 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003096 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003097 if (!slot_count)
3098 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003099 }
3100 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003101 }
Josef Bacik1406e432010-01-13 18:19:06 +00003102
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003103 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003104 (arg + sizeof(struct btrfs_ioctl_space_args));
3105
3106 if (copy_to_user(user_dest, dest_orig, alloc_size))
3107 ret = -EFAULT;
3108
3109 kfree(dest_orig);
3110out:
3111 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003112 ret = -EFAULT;
3113
3114 return ret;
3115}
3116
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003117/*
3118 * there are many ways the trans_start and trans_end ioctls can lead
3119 * to deadlocks. They should only be used by applications that
3120 * basically own the machine, and have a very in depth understanding
3121 * of all the possible deadlocks and enospc problems.
3122 */
3123long btrfs_ioctl_trans_end(struct file *file)
3124{
3125 struct inode *inode = fdentry(file)->d_inode;
3126 struct btrfs_root *root = BTRFS_I(inode)->root;
3127 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003128
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003129 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003130 if (!trans)
3131 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04003132 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04003133
Sage Weil1ab86ae2009-09-29 18:38:44 -04003134 btrfs_end_transaction(trans, root);
3135
Josef Bacika4abeea2011-04-11 17:25:13 -04003136 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003137
Al Viro2a79f172011-12-09 08:06:57 -05003138 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04003139 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003140}
3141
Miao Xie9a8c28b2012-11-26 08:40:43 +00003142static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3143 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003144{
Sage Weil46204592010-10-29 15:41:32 -04003145 struct btrfs_trans_handle *trans;
3146 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003147 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003148
Miao Xied4edf392013-02-20 09:17:06 +00003149 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00003150 if (IS_ERR(trans)) {
3151 if (PTR_ERR(trans) != -ENOENT)
3152 return PTR_ERR(trans);
3153
3154 /* No running transaction, don't bother */
3155 transid = root->fs_info->last_trans_committed;
3156 goto out;
3157 }
Sage Weil46204592010-10-29 15:41:32 -04003158 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003159 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003160 if (ret) {
3161 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003162 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003163 }
Miao Xieff7c1d32012-11-26 08:41:29 +00003164out:
Sage Weil46204592010-10-29 15:41:32 -04003165 if (argp)
3166 if (copy_to_user(argp, &transid, sizeof(transid)))
3167 return -EFAULT;
3168 return 0;
3169}
3170
Miao Xie9a8c28b2012-11-26 08:40:43 +00003171static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
3172 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003173{
Sage Weil46204592010-10-29 15:41:32 -04003174 u64 transid;
3175
3176 if (argp) {
3177 if (copy_from_user(&transid, argp, sizeof(transid)))
3178 return -EFAULT;
3179 } else {
3180 transid = 0; /* current trans */
3181 }
3182 return btrfs_wait_for_commit(root, transid);
3183}
3184
Miao Xieb8e95482012-11-26 08:48:01 +00003185static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003186{
Miao Xieb8e95482012-11-26 08:48:01 +00003187 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01003188 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00003189 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003190
3191 if (!capable(CAP_SYS_ADMIN))
3192 return -EPERM;
3193
3194 sa = memdup_user(arg, sizeof(*sa));
3195 if (IS_ERR(sa))
3196 return PTR_ERR(sa);
3197
Miao Xieb8e95482012-11-26 08:48:01 +00003198 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3199 ret = mnt_want_write_file(file);
3200 if (ret)
3201 goto out;
3202 }
3203
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003204 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003205 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3206 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01003207
3208 if (copy_to_user(arg, sa, sizeof(*sa)))
3209 ret = -EFAULT;
3210
Miao Xieb8e95482012-11-26 08:48:01 +00003211 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3212 mnt_drop_write_file(file);
3213out:
Jan Schmidt475f6382011-03-11 15:41:01 +01003214 kfree(sa);
3215 return ret;
3216}
3217
3218static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
3219{
3220 if (!capable(CAP_SYS_ADMIN))
3221 return -EPERM;
3222
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01003223 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01003224}
3225
3226static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
3227 void __user *arg)
3228{
3229 struct btrfs_ioctl_scrub_args *sa;
3230 int ret;
3231
3232 if (!capable(CAP_SYS_ADMIN))
3233 return -EPERM;
3234
3235 sa = memdup_user(arg, sizeof(*sa));
3236 if (IS_ERR(sa))
3237 return PTR_ERR(sa);
3238
3239 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
3240
3241 if (copy_to_user(arg, sa, sizeof(*sa)))
3242 ret = -EFAULT;
3243
3244 kfree(sa);
3245 return ret;
3246}
3247
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003248static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06003249 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003250{
3251 struct btrfs_ioctl_get_dev_stats *sa;
3252 int ret;
3253
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003254 sa = memdup_user(arg, sizeof(*sa));
3255 if (IS_ERR(sa))
3256 return PTR_ERR(sa);
3257
David Sterbab27f7c02012-06-22 06:30:39 -06003258 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3259 kfree(sa);
3260 return -EPERM;
3261 }
3262
3263 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003264
3265 if (copy_to_user(arg, sa, sizeof(*sa)))
3266 ret = -EFAULT;
3267
3268 kfree(sa);
3269 return ret;
3270}
3271
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003272static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
3273{
3274 struct btrfs_ioctl_dev_replace_args *p;
3275 int ret;
3276
3277 if (!capable(CAP_SYS_ADMIN))
3278 return -EPERM;
3279
3280 p = memdup_user(arg, sizeof(*p));
3281 if (IS_ERR(p))
3282 return PTR_ERR(p);
3283
3284 switch (p->cmd) {
3285 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
3286 if (atomic_xchg(
3287 &root->fs_info->mutually_exclusive_operation_running,
3288 1)) {
3289 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3290 ret = -EINPROGRESS;
3291 } else {
3292 ret = btrfs_dev_replace_start(root, p);
3293 atomic_set(
3294 &root->fs_info->mutually_exclusive_operation_running,
3295 0);
3296 }
3297 break;
3298 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
3299 btrfs_dev_replace_status(root->fs_info, p);
3300 ret = 0;
3301 break;
3302 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
3303 ret = btrfs_dev_replace_cancel(root->fs_info, p);
3304 break;
3305 default:
3306 ret = -EINVAL;
3307 break;
3308 }
3309
3310 if (copy_to_user(arg, p, sizeof(*p)))
3311 ret = -EFAULT;
3312
3313 kfree(p);
3314 return ret;
3315}
3316
Jan Schmidtd7728c92011-07-07 16:48:38 +02003317static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3318{
3319 int ret = 0;
3320 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003321 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003322 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003323 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003324 struct inode_fs_paths *ipath = NULL;
3325 struct btrfs_path *path;
3326
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00003327 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02003328 return -EPERM;
3329
3330 path = btrfs_alloc_path();
3331 if (!path) {
3332 ret = -ENOMEM;
3333 goto out;
3334 }
3335
3336 ipa = memdup_user(arg, sizeof(*ipa));
3337 if (IS_ERR(ipa)) {
3338 ret = PTR_ERR(ipa);
3339 ipa = NULL;
3340 goto out;
3341 }
3342
3343 size = min_t(u32, ipa->size, 4096);
3344 ipath = init_ipath(size, root, path);
3345 if (IS_ERR(ipath)) {
3346 ret = PTR_ERR(ipath);
3347 ipath = NULL;
3348 goto out;
3349 }
3350
3351 ret = paths_from_inode(ipa->inum, ipath);
3352 if (ret < 0)
3353 goto out;
3354
3355 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003356 rel_ptr = ipath->fspath->val[i] -
3357 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003358 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003359 }
3360
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003361 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
3362 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003363 if (ret) {
3364 ret = -EFAULT;
3365 goto out;
3366 }
3367
3368out:
3369 btrfs_free_path(path);
3370 free_ipath(ipath);
3371 kfree(ipa);
3372
3373 return ret;
3374}
3375
3376static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3377{
3378 struct btrfs_data_container *inodes = ctx;
3379 const size_t c = 3 * sizeof(u64);
3380
3381 if (inodes->bytes_left >= c) {
3382 inodes->bytes_left -= c;
3383 inodes->val[inodes->elem_cnt] = inum;
3384 inodes->val[inodes->elem_cnt + 1] = offset;
3385 inodes->val[inodes->elem_cnt + 2] = root;
3386 inodes->elem_cnt += 3;
3387 } else {
3388 inodes->bytes_missing += c - inodes->bytes_left;
3389 inodes->bytes_left = 0;
3390 inodes->elem_missed += 3;
3391 }
3392
3393 return 0;
3394}
3395
3396static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
3397 void __user *arg)
3398{
3399 int ret = 0;
3400 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003401 struct btrfs_ioctl_logical_ino_args *loi;
3402 struct btrfs_data_container *inodes = NULL;
3403 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003404
3405 if (!capable(CAP_SYS_ADMIN))
3406 return -EPERM;
3407
3408 loi = memdup_user(arg, sizeof(*loi));
3409 if (IS_ERR(loi)) {
3410 ret = PTR_ERR(loi);
3411 loi = NULL;
3412 goto out;
3413 }
3414
3415 path = btrfs_alloc_path();
3416 if (!path) {
3417 ret = -ENOMEM;
3418 goto out;
3419 }
3420
Liu Bo425d17a2012-09-07 20:01:30 -06003421 size = min_t(u32, loi->size, 64 * 1024);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003422 inodes = init_data_container(size);
3423 if (IS_ERR(inodes)) {
3424 ret = PTR_ERR(inodes);
3425 inodes = NULL;
3426 goto out;
3427 }
3428
Liu Bodf031f02012-09-07 20:01:29 -06003429 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
3430 build_ino_list, inodes);
3431 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003432 ret = -ENOENT;
3433 if (ret < 0)
3434 goto out;
3435
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003436 ret = copy_to_user((void *)(unsigned long)loi->inodes,
3437 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003438 if (ret)
3439 ret = -EFAULT;
3440
3441out:
3442 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06003443 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003444 kfree(loi);
3445
3446 return ret;
3447}
3448
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003449void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003450 struct btrfs_ioctl_balance_args *bargs)
3451{
3452 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3453
3454 bargs->flags = bctl->flags;
3455
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003456 if (atomic_read(&fs_info->balance_running))
3457 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3458 if (atomic_read(&fs_info->balance_pause_req))
3459 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003460 if (atomic_read(&fs_info->balance_cancel_req))
3461 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003462
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003463 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3464 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3465 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003466
3467 if (lock) {
3468 spin_lock(&fs_info->balance_lock);
3469 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3470 spin_unlock(&fs_info->balance_lock);
3471 } else {
3472 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3473 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003474}
3475
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003476static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003477{
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003478 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003479 struct btrfs_fs_info *fs_info = root->fs_info;
3480 struct btrfs_ioctl_balance_args *bargs;
3481 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003482 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003483 int ret;
3484
3485 if (!capable(CAP_SYS_ADMIN))
3486 return -EPERM;
3487
Liu Boe54bfa32012-06-29 03:58:48 -06003488 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08003489 if (ret)
3490 return ret;
3491
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003492again:
3493 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
3494 mutex_lock(&fs_info->volume_mutex);
3495 mutex_lock(&fs_info->balance_mutex);
3496 need_unlock = true;
3497 goto locked;
3498 }
3499
3500 /*
3501 * mut. excl. ops lock is locked. Three possibilites:
3502 * (1) some other op is running
3503 * (2) balance is running
3504 * (3) balance is paused -- special case (think resume)
3505 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003506 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003507 if (fs_info->balance_ctl) {
3508 /* this is either (2) or (3) */
3509 if (!atomic_read(&fs_info->balance_running)) {
3510 mutex_unlock(&fs_info->balance_mutex);
3511 if (!mutex_trylock(&fs_info->volume_mutex))
3512 goto again;
3513 mutex_lock(&fs_info->balance_mutex);
3514
3515 if (fs_info->balance_ctl &&
3516 !atomic_read(&fs_info->balance_running)) {
3517 /* this is (3) */
3518 need_unlock = false;
3519 goto locked;
3520 }
3521
3522 mutex_unlock(&fs_info->balance_mutex);
3523 mutex_unlock(&fs_info->volume_mutex);
3524 goto again;
3525 } else {
3526 /* this is (2) */
3527 mutex_unlock(&fs_info->balance_mutex);
3528 ret = -EINPROGRESS;
3529 goto out;
3530 }
3531 } else {
3532 /* this is (1) */
3533 mutex_unlock(&fs_info->balance_mutex);
3534 pr_info("btrfs: dev add/delete/balance/replace/resize operation in progress\n");
3535 ret = -EINVAL;
3536 goto out;
3537 }
3538
3539locked:
3540 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003541
3542 if (arg) {
3543 bargs = memdup_user(arg, sizeof(*bargs));
3544 if (IS_ERR(bargs)) {
3545 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003546 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003547 }
Ilya Dryomovde322262012-01-16 22:04:49 +02003548
3549 if (bargs->flags & BTRFS_BALANCE_RESUME) {
3550 if (!fs_info->balance_ctl) {
3551 ret = -ENOTCONN;
3552 goto out_bargs;
3553 }
3554
3555 bctl = fs_info->balance_ctl;
3556 spin_lock(&fs_info->balance_lock);
3557 bctl->flags |= BTRFS_BALANCE_RESUME;
3558 spin_unlock(&fs_info->balance_lock);
3559
3560 goto do_balance;
3561 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003562 } else {
3563 bargs = NULL;
3564 }
3565
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003566 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003567 ret = -EINPROGRESS;
3568 goto out_bargs;
3569 }
3570
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003571 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
3572 if (!bctl) {
3573 ret = -ENOMEM;
3574 goto out_bargs;
3575 }
3576
3577 bctl->fs_info = fs_info;
3578 if (arg) {
3579 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
3580 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
3581 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
3582
3583 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02003584 } else {
3585 /* balance everything - no filters */
3586 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003587 }
3588
Ilya Dryomovde322262012-01-16 22:04:49 +02003589do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003590 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003591 * Ownership of bctl and mutually_exclusive_operation_running
3592 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
3593 * or, if restriper was paused all the way until unmount, in
3594 * free_fs_info. mutually_exclusive_operation_running is
3595 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003596 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003597 need_unlock = false;
3598
3599 ret = btrfs_balance(bctl, bargs);
3600
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003601 if (arg) {
3602 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3603 ret = -EFAULT;
3604 }
3605
3606out_bargs:
3607 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003608out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003609 mutex_unlock(&fs_info->balance_mutex);
3610 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02003611 if (need_unlock)
3612 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
3613out:
Liu Boe54bfa32012-06-29 03:58:48 -06003614 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003615 return ret;
3616}
3617
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003618static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
3619{
3620 if (!capable(CAP_SYS_ADMIN))
3621 return -EPERM;
3622
3623 switch (cmd) {
3624 case BTRFS_BALANCE_CTL_PAUSE:
3625 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003626 case BTRFS_BALANCE_CTL_CANCEL:
3627 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003628 }
3629
3630 return -EINVAL;
3631}
3632
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003633static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
3634 void __user *arg)
3635{
3636 struct btrfs_fs_info *fs_info = root->fs_info;
3637 struct btrfs_ioctl_balance_args *bargs;
3638 int ret = 0;
3639
3640 if (!capable(CAP_SYS_ADMIN))
3641 return -EPERM;
3642
3643 mutex_lock(&fs_info->balance_mutex);
3644 if (!fs_info->balance_ctl) {
3645 ret = -ENOTCONN;
3646 goto out;
3647 }
3648
3649 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
3650 if (!bargs) {
3651 ret = -ENOMEM;
3652 goto out;
3653 }
3654
3655 update_ioctl_balance_args(fs_info, 1, bargs);
3656
3657 if (copy_to_user(arg, bargs, sizeof(*bargs)))
3658 ret = -EFAULT;
3659
3660 kfree(bargs);
3661out:
3662 mutex_unlock(&fs_info->balance_mutex);
3663 return ret;
3664}
3665
Miao Xie905b0dd2012-11-26 08:50:11 +00003666static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003667{
Miao Xie905b0dd2012-11-26 08:50:11 +00003668 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003669 struct btrfs_ioctl_quota_ctl_args *sa;
3670 struct btrfs_trans_handle *trans = NULL;
3671 int ret;
3672 int err;
3673
3674 if (!capable(CAP_SYS_ADMIN))
3675 return -EPERM;
3676
Miao Xie905b0dd2012-11-26 08:50:11 +00003677 ret = mnt_want_write_file(file);
3678 if (ret)
3679 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003680
3681 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003682 if (IS_ERR(sa)) {
3683 ret = PTR_ERR(sa);
3684 goto drop_write;
3685 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003686
3687 if (sa->cmd != BTRFS_QUOTA_CTL_RESCAN) {
3688 trans = btrfs_start_transaction(root, 2);
3689 if (IS_ERR(trans)) {
3690 ret = PTR_ERR(trans);
3691 goto out;
3692 }
3693 }
3694
3695 switch (sa->cmd) {
3696 case BTRFS_QUOTA_CTL_ENABLE:
3697 ret = btrfs_quota_enable(trans, root->fs_info);
3698 break;
3699 case BTRFS_QUOTA_CTL_DISABLE:
3700 ret = btrfs_quota_disable(trans, root->fs_info);
3701 break;
3702 case BTRFS_QUOTA_CTL_RESCAN:
3703 ret = btrfs_quota_rescan(root->fs_info);
3704 break;
3705 default:
3706 ret = -EINVAL;
3707 break;
3708 }
3709
3710 if (copy_to_user(arg, sa, sizeof(*sa)))
3711 ret = -EFAULT;
3712
3713 if (trans) {
3714 err = btrfs_commit_transaction(trans, root);
3715 if (err && !ret)
3716 ret = err;
3717 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003718out:
3719 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003720drop_write:
3721 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003722 return ret;
3723}
3724
Miao Xie905b0dd2012-11-26 08:50:11 +00003725static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003726{
Miao Xie905b0dd2012-11-26 08:50:11 +00003727 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003728 struct btrfs_ioctl_qgroup_assign_args *sa;
3729 struct btrfs_trans_handle *trans;
3730 int ret;
3731 int err;
3732
3733 if (!capable(CAP_SYS_ADMIN))
3734 return -EPERM;
3735
Miao Xie905b0dd2012-11-26 08:50:11 +00003736 ret = mnt_want_write_file(file);
3737 if (ret)
3738 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003739
3740 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003741 if (IS_ERR(sa)) {
3742 ret = PTR_ERR(sa);
3743 goto drop_write;
3744 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003745
3746 trans = btrfs_join_transaction(root);
3747 if (IS_ERR(trans)) {
3748 ret = PTR_ERR(trans);
3749 goto out;
3750 }
3751
3752 /* FIXME: check if the IDs really exist */
3753 if (sa->assign) {
3754 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
3755 sa->src, sa->dst);
3756 } else {
3757 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
3758 sa->src, sa->dst);
3759 }
3760
3761 err = btrfs_end_transaction(trans, root);
3762 if (err && !ret)
3763 ret = err;
3764
3765out:
3766 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003767drop_write:
3768 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003769 return ret;
3770}
3771
Miao Xie905b0dd2012-11-26 08:50:11 +00003772static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003773{
Miao Xie905b0dd2012-11-26 08:50:11 +00003774 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003775 struct btrfs_ioctl_qgroup_create_args *sa;
3776 struct btrfs_trans_handle *trans;
3777 int ret;
3778 int err;
3779
3780 if (!capable(CAP_SYS_ADMIN))
3781 return -EPERM;
3782
Miao Xie905b0dd2012-11-26 08:50:11 +00003783 ret = mnt_want_write_file(file);
3784 if (ret)
3785 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003786
3787 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003788 if (IS_ERR(sa)) {
3789 ret = PTR_ERR(sa);
3790 goto drop_write;
3791 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003792
Miao Xied86e56c2012-11-15 11:35:41 +00003793 if (!sa->qgroupid) {
3794 ret = -EINVAL;
3795 goto out;
3796 }
3797
Arne Jansen5d13a372011-09-14 15:53:51 +02003798 trans = btrfs_join_transaction(root);
3799 if (IS_ERR(trans)) {
3800 ret = PTR_ERR(trans);
3801 goto out;
3802 }
3803
3804 /* FIXME: check if the IDs really exist */
3805 if (sa->create) {
3806 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
3807 NULL);
3808 } else {
3809 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
3810 }
3811
3812 err = btrfs_end_transaction(trans, root);
3813 if (err && !ret)
3814 ret = err;
3815
3816out:
3817 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003818drop_write:
3819 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003820 return ret;
3821}
3822
Miao Xie905b0dd2012-11-26 08:50:11 +00003823static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02003824{
Miao Xie905b0dd2012-11-26 08:50:11 +00003825 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02003826 struct btrfs_ioctl_qgroup_limit_args *sa;
3827 struct btrfs_trans_handle *trans;
3828 int ret;
3829 int err;
3830 u64 qgroupid;
3831
3832 if (!capable(CAP_SYS_ADMIN))
3833 return -EPERM;
3834
Miao Xie905b0dd2012-11-26 08:50:11 +00003835 ret = mnt_want_write_file(file);
3836 if (ret)
3837 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02003838
3839 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00003840 if (IS_ERR(sa)) {
3841 ret = PTR_ERR(sa);
3842 goto drop_write;
3843 }
Arne Jansen5d13a372011-09-14 15:53:51 +02003844
3845 trans = btrfs_join_transaction(root);
3846 if (IS_ERR(trans)) {
3847 ret = PTR_ERR(trans);
3848 goto out;
3849 }
3850
3851 qgroupid = sa->qgroupid;
3852 if (!qgroupid) {
3853 /* take the current subvol as qgroup */
3854 qgroupid = root->root_key.objectid;
3855 }
3856
3857 /* FIXME: check if the IDs really exist */
3858 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
3859
3860 err = btrfs_end_transaction(trans, root);
3861 if (err && !ret)
3862 ret = err;
3863
3864out:
3865 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00003866drop_write:
3867 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02003868 return ret;
3869}
3870
Alexander Block8ea05e32012-07-25 17:35:53 +02003871static long btrfs_ioctl_set_received_subvol(struct file *file,
3872 void __user *arg)
3873{
3874 struct btrfs_ioctl_received_subvol_args *sa = NULL;
3875 struct inode *inode = fdentry(file)->d_inode;
3876 struct btrfs_root *root = BTRFS_I(inode)->root;
3877 struct btrfs_root_item *root_item = &root->root_item;
3878 struct btrfs_trans_handle *trans;
3879 struct timespec ct = CURRENT_TIME;
3880 int ret = 0;
3881
3882 ret = mnt_want_write_file(file);
3883 if (ret < 0)
3884 return ret;
3885
3886 down_write(&root->fs_info->subvol_sem);
3887
3888 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
3889 ret = -EINVAL;
3890 goto out;
3891 }
3892
3893 if (btrfs_root_readonly(root)) {
3894 ret = -EROFS;
3895 goto out;
3896 }
3897
3898 if (!inode_owner_or_capable(inode)) {
3899 ret = -EACCES;
3900 goto out;
3901 }
3902
3903 sa = memdup_user(arg, sizeof(*sa));
3904 if (IS_ERR(sa)) {
3905 ret = PTR_ERR(sa);
3906 sa = NULL;
3907 goto out;
3908 }
3909
3910 trans = btrfs_start_transaction(root, 1);
3911 if (IS_ERR(trans)) {
3912 ret = PTR_ERR(trans);
3913 trans = NULL;
3914 goto out;
3915 }
3916
3917 sa->rtransid = trans->transid;
3918 sa->rtime.sec = ct.tv_sec;
3919 sa->rtime.nsec = ct.tv_nsec;
3920
3921 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
3922 btrfs_set_root_stransid(root_item, sa->stransid);
3923 btrfs_set_root_rtransid(root_item, sa->rtransid);
3924 root_item->stime.sec = cpu_to_le64(sa->stime.sec);
3925 root_item->stime.nsec = cpu_to_le32(sa->stime.nsec);
3926 root_item->rtime.sec = cpu_to_le64(sa->rtime.sec);
3927 root_item->rtime.nsec = cpu_to_le32(sa->rtime.nsec);
3928
3929 ret = btrfs_update_root(trans, root->fs_info->tree_root,
3930 &root->root_key, &root->root_item);
3931 if (ret < 0) {
3932 btrfs_end_transaction(trans, root);
3933 trans = NULL;
3934 goto out;
3935 } else {
3936 ret = btrfs_commit_transaction(trans, root);
3937 if (ret < 0)
3938 goto out;
3939 }
3940
3941 ret = copy_to_user(arg, sa, sizeof(*sa));
3942 if (ret)
3943 ret = -EFAULT;
3944
3945out:
3946 kfree(sa);
3947 up_write(&root->fs_info->subvol_sem);
3948 mnt_drop_write_file(file);
3949 return ret;
3950}
3951
jeff.liu867ab662013-01-05 02:48:01 +00003952static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
3953{
3954 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3955 const char *label = root->fs_info->super_copy->label;
3956 size_t len = strnlen(label, BTRFS_LABEL_SIZE);
3957 int ret;
3958
3959 if (len == BTRFS_LABEL_SIZE) {
3960 pr_warn("btrfs: label is too long, return the first %zu bytes\n",
3961 --len);
3962 }
3963
3964 mutex_lock(&root->fs_info->volume_mutex);
3965 ret = copy_to_user(arg, label, len);
3966 mutex_unlock(&root->fs_info->volume_mutex);
3967
3968 return ret ? -EFAULT : 0;
3969}
3970
jeff.liua8bfd4a2013-01-05 02:48:08 +00003971static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
3972{
3973 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
3974 struct btrfs_super_block *super_block = root->fs_info->super_copy;
3975 struct btrfs_trans_handle *trans;
3976 char label[BTRFS_LABEL_SIZE];
3977 int ret;
3978
3979 if (!capable(CAP_SYS_ADMIN))
3980 return -EPERM;
3981
3982 if (copy_from_user(label, arg, sizeof(label)))
3983 return -EFAULT;
3984
3985 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
3986 pr_err("btrfs: unable to set label with more than %d bytes\n",
3987 BTRFS_LABEL_SIZE - 1);
3988 return -EINVAL;
3989 }
3990
3991 ret = mnt_want_write_file(file);
3992 if (ret)
3993 return ret;
3994
3995 mutex_lock(&root->fs_info->volume_mutex);
3996 trans = btrfs_start_transaction(root, 0);
3997 if (IS_ERR(trans)) {
3998 ret = PTR_ERR(trans);
3999 goto out_unlock;
4000 }
4001
4002 strcpy(super_block->label, label);
4003 ret = btrfs_end_transaction(trans, root);
4004
4005out_unlock:
4006 mutex_unlock(&root->fs_info->volume_mutex);
4007 mnt_drop_write_file(file);
4008 return ret;
4009}
4010
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004011long btrfs_ioctl(struct file *file, unsigned int
4012 cmd, unsigned long arg)
4013{
4014 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004015 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004016
4017 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004018 case FS_IOC_GETFLAGS:
4019 return btrfs_ioctl_getflags(file, argp);
4020 case FS_IOC_SETFLAGS:
4021 return btrfs_ioctl_setflags(file, argp);
4022 case FS_IOC_GETVERSION:
4023 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00004024 case FITRIM:
4025 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004026 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004027 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00004028 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004029 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05004030 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004031 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02004032 case BTRFS_IOC_SUBVOL_CREATE_V2:
4033 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04004034 case BTRFS_IOC_SNAP_DESTROY:
4035 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08004036 case BTRFS_IOC_SUBVOL_GETFLAGS:
4037 return btrfs_ioctl_subvol_getflags(file, argp);
4038 case BTRFS_IOC_SUBVOL_SETFLAGS:
4039 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004040 case BTRFS_IOC_DEFAULT_SUBVOL:
4041 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004042 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05004043 return btrfs_ioctl_defrag(file, NULL);
4044 case BTRFS_IOC_DEFRAG_RANGE:
4045 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004046 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00004047 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004048 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004049 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004050 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00004051 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004052 case BTRFS_IOC_FS_INFO:
4053 return btrfs_ioctl_fs_info(root, argp);
4054 case BTRFS_IOC_DEV_INFO:
4055 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004056 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004057 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004058 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05004059 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
4060 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05004061 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004062 case BTRFS_IOC_TRANS_START:
4063 return btrfs_ioctl_trans_start(file);
4064 case BTRFS_IOC_TRANS_END:
4065 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05004066 case BTRFS_IOC_TREE_SEARCH:
4067 return btrfs_ioctl_tree_search(file, argp);
4068 case BTRFS_IOC_INO_LOOKUP:
4069 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004070 case BTRFS_IOC_INO_PATHS:
4071 return btrfs_ioctl_ino_to_path(root, argp);
4072 case BTRFS_IOC_LOGICAL_INO:
4073 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00004074 case BTRFS_IOC_SPACE_INFO:
4075 return btrfs_ioctl_space_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004076 case BTRFS_IOC_SYNC:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004077 btrfs_sync_fs(file->f_dentry->d_sb, 1);
4078 return 0;
Sage Weil46204592010-10-29 15:41:32 -04004079 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004080 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04004081 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004082 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004083 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00004084 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004085 case BTRFS_IOC_SCRUB_CANCEL:
4086 return btrfs_ioctl_scrub_cancel(root, argp);
4087 case BTRFS_IOC_SCRUB_PROGRESS:
4088 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004089 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004090 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004091 case BTRFS_IOC_BALANCE_CTL:
4092 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004093 case BTRFS_IOC_BALANCE_PROGRESS:
4094 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02004095 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
4096 return btrfs_ioctl_set_received_subvol(file, argp);
Alexander Block31db9f72012-07-25 23:19:24 +02004097 case BTRFS_IOC_SEND:
4098 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004099 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06004100 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004101 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00004102 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004103 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00004104 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004105 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00004106 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02004107 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00004108 return btrfs_ioctl_qgroup_limit(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004109 case BTRFS_IOC_DEV_REPLACE:
4110 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00004111 case BTRFS_IOC_GET_FSLABEL:
4112 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004113 case BTRFS_IOC_SET_FSLABEL:
4114 return btrfs_ioctl_set_fslabel(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004115 }
4116
4117 return -ENOTTY;
4118}