]> git.ipfire.org Git - thirdparty/linux.git/blame - fs/btrfs/ioctl.c
btrfs: use explicit initializer for seq_elem
[thirdparty/linux.git] / fs / btrfs / ioctl.c
CommitLineData
f46b5a66
CH
1/*
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>
cb8e7090 24#include <linux/fsnotify.h>
f46b5a66
CH
25#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
f46b5a66 30#include <linux/backing-dev.h>
cb8e7090 31#include <linux/mount.h>
f46b5a66 32#include <linux/mpage.h>
cb8e7090 33#include <linux/namei.h>
f46b5a66
CH
34#include <linux/swap.h>
35#include <linux/writeback.h>
36#include <linux/statfs.h>
37#include <linux/compat.h>
38#include <linux/bit_spinlock.h>
cb8e7090 39#include <linux/security.h>
f46b5a66 40#include <linux/xattr.h>
7ea394f1 41#include <linux/vmalloc.h>
5a0e3ad6 42#include <linux/slab.h>
f7039b1d 43#include <linux/blkdev.h>
8ea05e3a 44#include <linux/uuid.h>
55e301fd 45#include <linux/btrfs.h>
416161db 46#include <linux/uaccess.h>
f46b5a66
CH
47#include "ctree.h"
48#include "disk-io.h"
49#include "transaction.h"
50#include "btrfs_inode.h"
f46b5a66
CH
51#include "print-tree.h"
52#include "volumes.h"
925baedd 53#include "locking.h"
581bb050 54#include "inode-map.h"
d7728c96 55#include "backref.h"
606686ee 56#include "rcu-string.h"
31db9f7c 57#include "send.h"
3f6bcfbd 58#include "dev-replace.h"
63541927 59#include "props.h"
3b02a68a 60#include "sysfs.h"
fcebe456 61#include "qgroup.h"
f46b5a66 62
abccd00f
HM
63#ifdef CONFIG_64BIT
64/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
65 * structures are incorrect, as the timespec structure from userspace
66 * is 4 bytes too small. We define these alternatives here to teach
67 * the kernel about the 32-bit struct packing.
68 */
69struct btrfs_ioctl_timespec_32 {
70 __u64 sec;
71 __u32 nsec;
72} __attribute__ ((__packed__));
73
74struct btrfs_ioctl_received_subvol_args_32 {
75 char uuid[BTRFS_UUID_SIZE]; /* in */
76 __u64 stransid; /* in */
77 __u64 rtransid; /* out */
78 struct btrfs_ioctl_timespec_32 stime; /* in */
79 struct btrfs_ioctl_timespec_32 rtime; /* out */
80 __u64 flags; /* in */
81 __u64 reserved[16]; /* in */
82} __attribute__ ((__packed__));
83
84#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
85 struct btrfs_ioctl_received_subvol_args_32)
86#endif
87
88
416161db
MF
89static int btrfs_clone(struct inode *src, struct inode *inode,
90 u64 off, u64 olen, u64 olen_aligned, u64 destoff);
91
6cbff00f
CH
92/* Mask out flags that are inappropriate for the given type of inode. */
93static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
94{
95 if (S_ISDIR(mode))
96 return flags;
97 else if (S_ISREG(mode))
98 return flags & ~FS_DIRSYNC_FL;
99 else
100 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
101}
102
103/*
104 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
105 */
106static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
107{
108 unsigned int iflags = 0;
109
110 if (flags & BTRFS_INODE_SYNC)
111 iflags |= FS_SYNC_FL;
112 if (flags & BTRFS_INODE_IMMUTABLE)
113 iflags |= FS_IMMUTABLE_FL;
114 if (flags & BTRFS_INODE_APPEND)
115 iflags |= FS_APPEND_FL;
116 if (flags & BTRFS_INODE_NODUMP)
117 iflags |= FS_NODUMP_FL;
118 if (flags & BTRFS_INODE_NOATIME)
119 iflags |= FS_NOATIME_FL;
120 if (flags & BTRFS_INODE_DIRSYNC)
121 iflags |= FS_DIRSYNC_FL;
d0092bdd
LZ
122 if (flags & BTRFS_INODE_NODATACOW)
123 iflags |= FS_NOCOW_FL;
124
125 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
126 iflags |= FS_COMPR_FL;
127 else if (flags & BTRFS_INODE_NOCOMPRESS)
128 iflags |= FS_NOCOMP_FL;
6cbff00f
CH
129
130 return iflags;
131}
132
133/*
134 * Update inode->i_flags based on the btrfs internal flags.
135 */
136void btrfs_update_iflags(struct inode *inode)
137{
138 struct btrfs_inode *ip = BTRFS_I(inode);
3cc79392 139 unsigned int new_fl = 0;
6cbff00f
CH
140
141 if (ip->flags & BTRFS_INODE_SYNC)
3cc79392 142 new_fl |= S_SYNC;
6cbff00f 143 if (ip->flags & BTRFS_INODE_IMMUTABLE)
3cc79392 144 new_fl |= S_IMMUTABLE;
6cbff00f 145 if (ip->flags & BTRFS_INODE_APPEND)
3cc79392 146 new_fl |= S_APPEND;
6cbff00f 147 if (ip->flags & BTRFS_INODE_NOATIME)
3cc79392 148 new_fl |= S_NOATIME;
6cbff00f 149 if (ip->flags & BTRFS_INODE_DIRSYNC)
3cc79392
FM
150 new_fl |= S_DIRSYNC;
151
152 set_mask_bits(&inode->i_flags,
153 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
154 new_fl);
6cbff00f
CH
155}
156
157/*
158 * Inherit flags from the parent inode.
159 *
e27425d6 160 * Currently only the compression flags and the cow flags are inherited.
6cbff00f
CH
161 */
162void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
163{
0b4dcea5
CM
164 unsigned int flags;
165
166 if (!dir)
167 return;
168
169 flags = BTRFS_I(dir)->flags;
6cbff00f 170
e27425d6
JB
171 if (flags & BTRFS_INODE_NOCOMPRESS) {
172 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
173 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
174 } else if (flags & BTRFS_INODE_COMPRESS) {
175 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
176 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
177 }
178
213490b3 179 if (flags & BTRFS_INODE_NODATACOW) {
e27425d6 180 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
213490b3
LB
181 if (S_ISREG(inode->i_mode))
182 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
183 }
6cbff00f 184
6cbff00f
CH
185 btrfs_update_iflags(inode);
186}
187
188static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
189{
496ad9aa 190 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
6cbff00f
CH
191 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
192
193 if (copy_to_user(arg, &flags, sizeof(flags)))
194 return -EFAULT;
195 return 0;
196}
197
75e7cb7f
LB
198static int check_flags(unsigned int flags)
199{
200 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
201 FS_NOATIME_FL | FS_NODUMP_FL | \
202 FS_SYNC_FL | FS_DIRSYNC_FL | \
e1e8fb6a
LZ
203 FS_NOCOMP_FL | FS_COMPR_FL |
204 FS_NOCOW_FL))
75e7cb7f
LB
205 return -EOPNOTSUPP;
206
207 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
208 return -EINVAL;
209
75e7cb7f
LB
210 return 0;
211}
212
6cbff00f
CH
213static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
214{
496ad9aa 215 struct inode *inode = file_inode(file);
6cbff00f
CH
216 struct btrfs_inode *ip = BTRFS_I(inode);
217 struct btrfs_root *root = ip->root;
218 struct btrfs_trans_handle *trans;
219 unsigned int flags, oldflags;
220 int ret;
f062abf0
LZ
221 u64 ip_oldflags;
222 unsigned int i_oldflags;
7e97b8da 223 umode_t mode;
6cbff00f 224
bd60ea0f
DS
225 if (!inode_owner_or_capable(inode))
226 return -EPERM;
227
b83cc969
LZ
228 if (btrfs_root_readonly(root))
229 return -EROFS;
230
6cbff00f
CH
231 if (copy_from_user(&flags, arg, sizeof(flags)))
232 return -EFAULT;
233
75e7cb7f
LB
234 ret = check_flags(flags);
235 if (ret)
236 return ret;
f46b5a66 237
e7848683
JK
238 ret = mnt_want_write_file(file);
239 if (ret)
240 return ret;
241
6cbff00f
CH
242 mutex_lock(&inode->i_mutex);
243
f062abf0
LZ
244 ip_oldflags = ip->flags;
245 i_oldflags = inode->i_flags;
7e97b8da 246 mode = inode->i_mode;
f062abf0 247
6cbff00f
CH
248 flags = btrfs_mask_flags(inode->i_mode, flags);
249 oldflags = btrfs_flags_to_ioctl(ip->flags);
250 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
251 if (!capable(CAP_LINUX_IMMUTABLE)) {
252 ret = -EPERM;
253 goto out_unlock;
254 }
255 }
256
6cbff00f
CH
257 if (flags & FS_SYNC_FL)
258 ip->flags |= BTRFS_INODE_SYNC;
259 else
260 ip->flags &= ~BTRFS_INODE_SYNC;
261 if (flags & FS_IMMUTABLE_FL)
262 ip->flags |= BTRFS_INODE_IMMUTABLE;
263 else
264 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
265 if (flags & FS_APPEND_FL)
266 ip->flags |= BTRFS_INODE_APPEND;
267 else
268 ip->flags &= ~BTRFS_INODE_APPEND;
269 if (flags & FS_NODUMP_FL)
270 ip->flags |= BTRFS_INODE_NODUMP;
271 else
272 ip->flags &= ~BTRFS_INODE_NODUMP;
273 if (flags & FS_NOATIME_FL)
274 ip->flags |= BTRFS_INODE_NOATIME;
275 else
276 ip->flags &= ~BTRFS_INODE_NOATIME;
277 if (flags & FS_DIRSYNC_FL)
278 ip->flags |= BTRFS_INODE_DIRSYNC;
279 else
280 ip->flags &= ~BTRFS_INODE_DIRSYNC;
7e97b8da
DS
281 if (flags & FS_NOCOW_FL) {
282 if (S_ISREG(mode)) {
283 /*
284 * It's safe to turn csums off here, no extents exist.
285 * Otherwise we want the flag to reflect the real COW
286 * status of the file and will not set it.
287 */
288 if (inode->i_size == 0)
289 ip->flags |= BTRFS_INODE_NODATACOW
290 | BTRFS_INODE_NODATASUM;
291 } else {
292 ip->flags |= BTRFS_INODE_NODATACOW;
293 }
294 } else {
295 /*
296 * Revert back under same assuptions as above
297 */
298 if (S_ISREG(mode)) {
299 if (inode->i_size == 0)
300 ip->flags &= ~(BTRFS_INODE_NODATACOW
301 | BTRFS_INODE_NODATASUM);
302 } else {
303 ip->flags &= ~BTRFS_INODE_NODATACOW;
304 }
305 }
6cbff00f 306
75e7cb7f
LB
307 /*
308 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
309 * flag may be changed automatically if compression code won't make
310 * things smaller.
311 */
312 if (flags & FS_NOCOMP_FL) {
313 ip->flags &= ~BTRFS_INODE_COMPRESS;
314 ip->flags |= BTRFS_INODE_NOCOMPRESS;
63541927
FDBM
315
316 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
317 if (ret && ret != -ENODATA)
318 goto out_drop;
75e7cb7f 319 } else if (flags & FS_COMPR_FL) {
63541927
FDBM
320 const char *comp;
321
75e7cb7f
LB
322 ip->flags |= BTRFS_INODE_COMPRESS;
323 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
63541927
FDBM
324
325 if (root->fs_info->compress_type == BTRFS_COMPRESS_LZO)
326 comp = "lzo";
327 else
328 comp = "zlib";
329 ret = btrfs_set_prop(inode, "btrfs.compression",
330 comp, strlen(comp), 0);
331 if (ret)
332 goto out_drop;
333
ebcb904d 334 } else {
78a017a2
FM
335 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
336 if (ret && ret != -ENODATA)
337 goto out_drop;
ebcb904d 338 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
75e7cb7f 339 }
6cbff00f 340
4da6f1a3 341 trans = btrfs_start_transaction(root, 1);
f062abf0
LZ
342 if (IS_ERR(trans)) {
343 ret = PTR_ERR(trans);
344 goto out_drop;
345 }
6cbff00f 346
306424cc 347 btrfs_update_iflags(inode);
0c4d2d95 348 inode_inc_iversion(inode);
306424cc 349 inode->i_ctime = CURRENT_TIME;
6cbff00f 350 ret = btrfs_update_inode(trans, root, inode);
6cbff00f 351
6cbff00f 352 btrfs_end_transaction(trans, root);
f062abf0
LZ
353 out_drop:
354 if (ret) {
355 ip->flags = ip_oldflags;
356 inode->i_flags = i_oldflags;
357 }
6cbff00f 358
6cbff00f
CH
359 out_unlock:
360 mutex_unlock(&inode->i_mutex);
e7848683 361 mnt_drop_write_file(file);
2d4e6f6a 362 return ret;
6cbff00f
CH
363}
364
365static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
366{
496ad9aa 367 struct inode *inode = file_inode(file);
6cbff00f
CH
368
369 return put_user(inode->i_generation, arg);
370}
f46b5a66 371
f7039b1d
LD
372static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
373{
54563d41 374 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
f7039b1d
LD
375 struct btrfs_device *device;
376 struct request_queue *q;
377 struct fstrim_range range;
378 u64 minlen = ULLONG_MAX;
379 u64 num_devices = 0;
815745cf 380 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
f7039b1d
LD
381 int ret;
382
383 if (!capable(CAP_SYS_ADMIN))
384 return -EPERM;
385
1f78160c
XG
386 rcu_read_lock();
387 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
388 dev_list) {
f7039b1d
LD
389 if (!device->bdev)
390 continue;
391 q = bdev_get_queue(device->bdev);
392 if (blk_queue_discard(q)) {
393 num_devices++;
394 minlen = min((u64)q->limits.discard_granularity,
395 minlen);
396 }
397 }
1f78160c 398 rcu_read_unlock();
f4c697e6 399
f7039b1d
LD
400 if (!num_devices)
401 return -EOPNOTSUPP;
f7039b1d
LD
402 if (copy_from_user(&range, arg, sizeof(range)))
403 return -EFAULT;
e515c18b
LC
404 if (range.start > total_bytes ||
405 range.len < fs_info->sb->s_blocksize)
f4c697e6 406 return -EINVAL;
f7039b1d 407
f4c697e6 408 range.len = min(range.len, total_bytes - range.start);
f7039b1d 409 range.minlen = max(range.minlen, minlen);
815745cf 410 ret = btrfs_trim_fs(fs_info->tree_root, &range);
f7039b1d
LD
411 if (ret < 0)
412 return ret;
413
414 if (copy_to_user(arg, &range, sizeof(range)))
415 return -EFAULT;
416
417 return 0;
418}
419
dd5f9615
SB
420int btrfs_is_empty_uuid(u8 *uuid)
421{
46e0f66a
CM
422 int i;
423
424 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
425 if (uuid[i])
426 return 0;
427 }
428 return 1;
dd5f9615
SB
429}
430
d5c12070 431static noinline int create_subvol(struct inode *dir,
cb8e7090 432 struct dentry *dentry,
72fd032e 433 char *name, int namelen,
6f72c7e2 434 u64 *async_transid,
8696c533 435 struct btrfs_qgroup_inherit *inherit)
f46b5a66
CH
436{
437 struct btrfs_trans_handle *trans;
438 struct btrfs_key key;
439 struct btrfs_root_item root_item;
440 struct btrfs_inode_item *inode_item;
441 struct extent_buffer *leaf;
d5c12070 442 struct btrfs_root *root = BTRFS_I(dir)->root;
76dda93c 443 struct btrfs_root *new_root;
d5c12070 444 struct btrfs_block_rsv block_rsv;
8ea05e3a 445 struct timespec cur_time = CURRENT_TIME;
5662344b 446 struct inode *inode;
f46b5a66
CH
447 int ret;
448 int err;
449 u64 objectid;
450 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
3de4586c 451 u64 index = 0;
d5c12070 452 u64 qgroup_reserved;
8ea05e3a 453 uuid_le new_uuid;
f46b5a66 454
581bb050 455 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
2fbe8c8a 456 if (ret)
a22285a6 457 return ret;
6a912213 458
d5c12070 459 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
9ed74f2d 460 /*
d5c12070
MX
461 * The same as the snapshot creation, please see the comment
462 * of create_snapshot().
9ed74f2d 463 */
d5c12070 464 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
dd5f9615 465 8, &qgroup_reserved, false);
d5c12070
MX
466 if (ret)
467 return ret;
468
469 trans = btrfs_start_transaction(root, 0);
470 if (IS_ERR(trans)) {
471 ret = PTR_ERR(trans);
de6e8200
LB
472 btrfs_subvolume_release_metadata(root, &block_rsv,
473 qgroup_reserved);
474 return ret;
d5c12070
MX
475 }
476 trans->block_rsv = &block_rsv;
477 trans->bytes_reserved = block_rsv.size;
f46b5a66 478
8696c533 479 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
6f72c7e2
AJ
480 if (ret)
481 goto fail;
482
4d75f8a9 483 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
8e8a1e31
JB
484 if (IS_ERR(leaf)) {
485 ret = PTR_ERR(leaf);
486 goto fail;
487 }
f46b5a66 488
5d4f98a2 489 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
f46b5a66
CH
490 btrfs_set_header_bytenr(leaf, leaf->start);
491 btrfs_set_header_generation(leaf, trans->transid);
5d4f98a2 492 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
f46b5a66
CH
493 btrfs_set_header_owner(leaf, objectid);
494
0a4e5586 495 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
f46b5a66 496 BTRFS_FSID_SIZE);
5d4f98a2 497 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
b308bc2f 498 btrfs_header_chunk_tree_uuid(leaf),
5d4f98a2 499 BTRFS_UUID_SIZE);
f46b5a66
CH
500 btrfs_mark_buffer_dirty(leaf);
501
8ea05e3a
AB
502 memset(&root_item, 0, sizeof(root_item));
503
f46b5a66 504 inode_item = &root_item.inode;
3cae210f
QW
505 btrfs_set_stack_inode_generation(inode_item, 1);
506 btrfs_set_stack_inode_size(inode_item, 3);
507 btrfs_set_stack_inode_nlink(inode_item, 1);
707e8a07 508 btrfs_set_stack_inode_nbytes(inode_item, root->nodesize);
3cae210f 509 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
f46b5a66 510
3cae210f
QW
511 btrfs_set_root_flags(&root_item, 0);
512 btrfs_set_root_limit(&root_item, 0);
513 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
08fe4db1 514
f46b5a66 515 btrfs_set_root_bytenr(&root_item, leaf->start);
84234f3a 516 btrfs_set_root_generation(&root_item, trans->transid);
f46b5a66
CH
517 btrfs_set_root_level(&root_item, 0);
518 btrfs_set_root_refs(&root_item, 1);
86b9f2ec 519 btrfs_set_root_used(&root_item, leaf->len);
80ff3856 520 btrfs_set_root_last_snapshot(&root_item, 0);
f46b5a66 521
8ea05e3a
AB
522 btrfs_set_root_generation_v2(&root_item,
523 btrfs_root_generation(&root_item));
524 uuid_le_gen(&new_uuid);
525 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
3cae210f
QW
526 btrfs_set_stack_timespec_sec(&root_item.otime, cur_time.tv_sec);
527 btrfs_set_stack_timespec_nsec(&root_item.otime, cur_time.tv_nsec);
8ea05e3a
AB
528 root_item.ctime = root_item.otime;
529 btrfs_set_root_ctransid(&root_item, trans->transid);
530 btrfs_set_root_otransid(&root_item, trans->transid);
f46b5a66 531
925baedd 532 btrfs_tree_unlock(leaf);
f46b5a66
CH
533 free_extent_buffer(leaf);
534 leaf = NULL;
535
536 btrfs_set_root_dirid(&root_item, new_dirid);
537
538 key.objectid = objectid;
5d4f98a2 539 key.offset = 0;
962a298f 540 key.type = BTRFS_ROOT_ITEM_KEY;
f46b5a66
CH
541 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
542 &root_item);
543 if (ret)
544 goto fail;
545
76dda93c
YZ
546 key.offset = (u64)-1;
547 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
79787eaa
JM
548 if (IS_ERR(new_root)) {
549 btrfs_abort_transaction(trans, root, PTR_ERR(new_root));
550 ret = PTR_ERR(new_root);
551 goto fail;
552 }
76dda93c
YZ
553
554 btrfs_record_root_in_trans(trans, new_root);
555
63541927 556 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
ce598979
MF
557 if (ret) {
558 /* We potentially lose an unused inode item here */
79787eaa 559 btrfs_abort_transaction(trans, root, ret);
ce598979
MF
560 goto fail;
561 }
562
f46b5a66
CH
563 /*
564 * insert the directory item
565 */
3de4586c 566 ret = btrfs_set_inode_index(dir, &index);
79787eaa
JM
567 if (ret) {
568 btrfs_abort_transaction(trans, root, ret);
569 goto fail;
570 }
3de4586c
CM
571
572 ret = btrfs_insert_dir_item(trans, root,
16cdcec7 573 name, namelen, dir, &key,
3de4586c 574 BTRFS_FT_DIR, index);
79787eaa
JM
575 if (ret) {
576 btrfs_abort_transaction(trans, root, ret);
f46b5a66 577 goto fail;
79787eaa 578 }
0660b5af 579
52c26179
YZ
580 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
581 ret = btrfs_update_inode(trans, root, dir);
582 BUG_ON(ret);
583
0660b5af 584 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
4df27c4d 585 objectid, root->root_key.objectid,
33345d01 586 btrfs_ino(dir), index, name, namelen);
76dda93c 587 BUG_ON(ret);
f46b5a66 588
dd5f9615
SB
589 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
590 root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
591 objectid);
592 if (ret)
593 btrfs_abort_transaction(trans, root, ret);
594
f46b5a66 595fail:
d5c12070
MX
596 trans->block_rsv = NULL;
597 trans->bytes_reserved = 0;
de6e8200
LB
598 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
599
72fd032e
SW
600 if (async_transid) {
601 *async_transid = trans->transid;
602 err = btrfs_commit_transaction_async(trans, root, 1);
00d71c9c
MX
603 if (err)
604 err = btrfs_commit_transaction(trans, root);
72fd032e
SW
605 } else {
606 err = btrfs_commit_transaction(trans, root);
607 }
f46b5a66
CH
608 if (err && !ret)
609 ret = err;
1a65e24b 610
5662344b
TI
611 if (!ret) {
612 inode = btrfs_lookup_dentry(dir, dentry);
de6e8200
LB
613 if (IS_ERR(inode))
614 return PTR_ERR(inode);
5662344b
TI
615 d_instantiate(dentry, inode);
616 }
f46b5a66
CH
617 return ret;
618}
619
9ea24bbe 620static void btrfs_wait_for_no_snapshoting_writes(struct btrfs_root *root)
8257b2dc
MX
621{
622 s64 writers;
623 DEFINE_WAIT(wait);
624
625 do {
626 prepare_to_wait(&root->subv_writers->wait, &wait,
627 TASK_UNINTERRUPTIBLE);
628
629 writers = percpu_counter_sum(&root->subv_writers->counter);
630 if (writers)
631 schedule();
632
633 finish_wait(&root->subv_writers->wait, &wait);
634 } while (writers);
635}
636
e9662f70
MX
637static int create_snapshot(struct btrfs_root *root, struct inode *dir,
638 struct dentry *dentry, char *name, int namelen,
639 u64 *async_transid, bool readonly,
640 struct btrfs_qgroup_inherit *inherit)
f46b5a66 641{
2e4bfab9 642 struct inode *inode;
f46b5a66
CH
643 struct btrfs_pending_snapshot *pending_snapshot;
644 struct btrfs_trans_handle *trans;
2e4bfab9 645 int ret;
f46b5a66 646
27cdeb70 647 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
f46b5a66
CH
648 return -EINVAL;
649
8257b2dc 650 atomic_inc(&root->will_be_snapshoted);
4e857c58 651 smp_mb__after_atomic();
9ea24bbe 652 btrfs_wait_for_no_snapshoting_writes(root);
8257b2dc 653
6a03843d
MX
654 ret = btrfs_start_delalloc_inodes(root, 0);
655 if (ret)
8257b2dc 656 goto out;
6a03843d 657
b0244199 658 btrfs_wait_ordered_extents(root, -1);
6a03843d 659
3de4586c 660 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
8257b2dc
MX
661 if (!pending_snapshot) {
662 ret = -ENOMEM;
663 goto out;
664 }
a22285a6 665
66d8f3dd
MX
666 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
667 BTRFS_BLOCK_RSV_TEMP);
d5c12070
MX
668 /*
669 * 1 - parent dir inode
670 * 2 - dir entries
671 * 1 - root item
672 * 2 - root ref/backref
673 * 1 - root of snapshot
dd5f9615 674 * 1 - UUID item
d5c12070
MX
675 */
676 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
dd5f9615 677 &pending_snapshot->block_rsv, 8,
ee3441b4
JM
678 &pending_snapshot->qgroup_reserved,
679 false);
d5c12070 680 if (ret)
8257b2dc 681 goto free;
d5c12070 682
3de4586c 683 pending_snapshot->dentry = dentry;
f46b5a66 684 pending_snapshot->root = root;
b83cc969 685 pending_snapshot->readonly = readonly;
e9662f70 686 pending_snapshot->dir = dir;
8696c533 687 pending_snapshot->inherit = inherit;
a22285a6 688
d5c12070 689 trans = btrfs_start_transaction(root, 0);
a22285a6
YZ
690 if (IS_ERR(trans)) {
691 ret = PTR_ERR(trans);
692 goto fail;
693 }
694
8351583e 695 spin_lock(&root->fs_info->trans_lock);
f46b5a66
CH
696 list_add(&pending_snapshot->list,
697 &trans->transaction->pending_snapshots);
8351583e 698 spin_unlock(&root->fs_info->trans_lock);
72fd032e
SW
699 if (async_transid) {
700 *async_transid = trans->transid;
701 ret = btrfs_commit_transaction_async(trans,
702 root->fs_info->extent_root, 1);
00d71c9c
MX
703 if (ret)
704 ret = btrfs_commit_transaction(trans, root);
72fd032e
SW
705 } else {
706 ret = btrfs_commit_transaction(trans,
707 root->fs_info->extent_root);
708 }
aec8030a 709 if (ret)
c37b2b62 710 goto fail;
a22285a6
YZ
711
712 ret = pending_snapshot->error;
713 if (ret)
714 goto fail;
715
d3797308
CM
716 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
717 if (ret)
718 goto fail;
719
2fbe8c8a 720 inode = btrfs_lookup_dentry(dentry->d_parent->d_inode, dentry);
2e4bfab9
YZ
721 if (IS_ERR(inode)) {
722 ret = PTR_ERR(inode);
723 goto fail;
724 }
5662344b 725
2e4bfab9
YZ
726 d_instantiate(dentry, inode);
727 ret = 0;
728fail:
d5c12070
MX
729 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
730 &pending_snapshot->block_rsv,
731 pending_snapshot->qgroup_reserved);
8257b2dc 732free:
a22285a6 733 kfree(pending_snapshot);
8257b2dc 734out:
9ea24bbe
FM
735 if (atomic_dec_and_test(&root->will_be_snapshoted))
736 wake_up_atomic_t(&root->will_be_snapshoted);
f46b5a66
CH
737 return ret;
738}
739
4260f7c7
SW
740/* copy of may_delete in fs/namei.c()
741 * Check whether we can remove a link victim from directory dir, check
742 * whether the type of victim is right.
743 * 1. We can't do it if dir is read-only (done in permission())
744 * 2. We should have write and exec permissions on dir
745 * 3. We can't remove anything from append-only dir
746 * 4. We can't do anything with immutable dir (done in permission())
747 * 5. If the sticky bit on dir is set we should either
748 * a. be owner of dir, or
749 * b. be owner of victim, or
750 * c. have CAP_FOWNER capability
751 * 6. If the victim is append-only or immutable we can't do antyhing with
752 * links pointing to it.
753 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
754 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
755 * 9. We can't remove a root or mountpoint.
756 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
757 * nfs_async_unlink().
758 */
759
67871254 760static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
4260f7c7
SW
761{
762 int error;
763
764 if (!victim->d_inode)
765 return -ENOENT;
766
767 BUG_ON(victim->d_parent->d_inode != dir);
4fa6b5ec 768 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
4260f7c7
SW
769
770 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
771 if (error)
772 return error;
773 if (IS_APPEND(dir))
774 return -EPERM;
cbdf35bc 775 if (check_sticky(dir, victim->d_inode) || IS_APPEND(victim->d_inode) ||
4260f7c7
SW
776 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
777 return -EPERM;
778 if (isdir) {
779 if (!S_ISDIR(victim->d_inode->i_mode))
780 return -ENOTDIR;
781 if (IS_ROOT(victim))
782 return -EBUSY;
783 } else if (S_ISDIR(victim->d_inode->i_mode))
784 return -EISDIR;
785 if (IS_DEADDIR(dir))
786 return -ENOENT;
787 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
788 return -EBUSY;
789 return 0;
790}
791
cb8e7090
CH
792/* copy of may_create in fs/namei.c() */
793static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
794{
795 if (child->d_inode)
796 return -EEXIST;
797 if (IS_DEADDIR(dir))
798 return -ENOENT;
799 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
800}
801
802/*
803 * Create a new subvolume below @parent. This is largely modeled after
804 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
805 * inside this filesystem so it's quite a bit simpler.
806 */
76dda93c
YZ
807static noinline int btrfs_mksubvol(struct path *parent,
808 char *name, int namelen,
72fd032e 809 struct btrfs_root *snap_src,
6f72c7e2 810 u64 *async_transid, bool readonly,
8696c533 811 struct btrfs_qgroup_inherit *inherit)
cb8e7090 812{
76dda93c 813 struct inode *dir = parent->dentry->d_inode;
cb8e7090
CH
814 struct dentry *dentry;
815 int error;
816
5c50c9b8
DS
817 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
818 if (error == -EINTR)
819 return error;
cb8e7090
CH
820
821 dentry = lookup_one_len(name, parent->dentry, namelen);
822 error = PTR_ERR(dentry);
823 if (IS_ERR(dentry))
824 goto out_unlock;
825
826 error = -EEXIST;
827 if (dentry->d_inode)
828 goto out_dput;
829
76dda93c 830 error = btrfs_may_create(dir, dentry);
cb8e7090 831 if (error)
a874a63e 832 goto out_dput;
cb8e7090 833
9c52057c
CM
834 /*
835 * even if this name doesn't exist, we may get hash collisions.
836 * check for them now when we can safely fail
837 */
838 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
839 dir->i_ino, name,
840 namelen);
841 if (error)
842 goto out_dput;
843
76dda93c
YZ
844 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
845
846 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
847 goto out_up_read;
848
3de4586c 849 if (snap_src) {
e9662f70 850 error = create_snapshot(snap_src, dir, dentry, name, namelen,
6f72c7e2 851 async_transid, readonly, inherit);
3de4586c 852 } else {
d5c12070
MX
853 error = create_subvol(dir, dentry, name, namelen,
854 async_transid, inherit);
3de4586c 855 }
76dda93c
YZ
856 if (!error)
857 fsnotify_mkdir(dir, dentry);
858out_up_read:
859 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
cb8e7090
CH
860out_dput:
861 dput(dentry);
862out_unlock:
76dda93c 863 mutex_unlock(&dir->i_mutex);
cb8e7090
CH
864 return error;
865}
866
4cb5300b
CM
867/*
868 * When we're defragging a range, we don't want to kick it off again
869 * if it is really just waiting for delalloc to send it down.
870 * If we find a nice big extent or delalloc range for the bytes in the
871 * file you want to defrag, we return 0 to let you know to skip this
872 * part of the file
873 */
aab110ab 874static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
4cb5300b
CM
875{
876 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
877 struct extent_map *em = NULL;
878 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
879 u64 end;
880
881 read_lock(&em_tree->lock);
882 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
883 read_unlock(&em_tree->lock);
884
885 if (em) {
886 end = extent_map_end(em);
887 free_extent_map(em);
888 if (end - offset > thresh)
889 return 0;
890 }
891 /* if we already have a nice delalloc here, just stop */
892 thresh /= 2;
893 end = count_range_bits(io_tree, &offset, offset + thresh,
894 thresh, EXTENT_DELALLOC, 1);
895 if (end >= thresh)
896 return 0;
897 return 1;
898}
899
900/*
901 * helper function to walk through a file and find extents
902 * newer than a specific transid, and smaller than thresh.
903 *
904 * This is used by the defragging code to find new and small
905 * extents
906 */
907static int find_new_extents(struct btrfs_root *root,
908 struct inode *inode, u64 newer_than,
aab110ab 909 u64 *off, u32 thresh)
4cb5300b
CM
910{
911 struct btrfs_path *path;
912 struct btrfs_key min_key;
4cb5300b
CM
913 struct extent_buffer *leaf;
914 struct btrfs_file_extent_item *extent;
915 int type;
916 int ret;
a4689d2b 917 u64 ino = btrfs_ino(inode);
4cb5300b
CM
918
919 path = btrfs_alloc_path();
920 if (!path)
921 return -ENOMEM;
922
a4689d2b 923 min_key.objectid = ino;
4cb5300b
CM
924 min_key.type = BTRFS_EXTENT_DATA_KEY;
925 min_key.offset = *off;
926
67871254 927 while (1) {
6174d3cb 928 ret = btrfs_search_forward(root, &min_key, path, newer_than);
4cb5300b
CM
929 if (ret != 0)
930 goto none;
f094c9bd 931process_slot:
a4689d2b 932 if (min_key.objectid != ino)
4cb5300b
CM
933 goto none;
934 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
935 goto none;
936
937 leaf = path->nodes[0];
938 extent = btrfs_item_ptr(leaf, path->slots[0],
939 struct btrfs_file_extent_item);
940
941 type = btrfs_file_extent_type(leaf, extent);
942 if (type == BTRFS_FILE_EXTENT_REG &&
943 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
944 check_defrag_in_cache(inode, min_key.offset, thresh)) {
945 *off = min_key.offset;
946 btrfs_free_path(path);
947 return 0;
948 }
949
f094c9bd
FM
950 path->slots[0]++;
951 if (path->slots[0] < btrfs_header_nritems(leaf)) {
952 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
953 goto process_slot;
954 }
955
4cb5300b
CM
956 if (min_key.offset == (u64)-1)
957 goto none;
958
959 min_key.offset++;
960 btrfs_release_path(path);
961 }
962none:
963 btrfs_free_path(path);
964 return -ENOENT;
965}
966
6c282eb4 967static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
17ce6ef8
LB
968{
969 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
6c282eb4
LZ
970 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
971 struct extent_map *em;
972 u64 len = PAGE_CACHE_SIZE;
17ce6ef8 973
6c282eb4
LZ
974 /*
975 * hopefully we have this extent in the tree already, try without
976 * the full extent lock
977 */
17ce6ef8 978 read_lock(&em_tree->lock);
6c282eb4 979 em = lookup_extent_mapping(em_tree, start, len);
17ce6ef8
LB
980 read_unlock(&em_tree->lock);
981
6c282eb4 982 if (!em) {
308d9800
FM
983 struct extent_state *cached = NULL;
984 u64 end = start + len - 1;
985
6c282eb4 986 /* get the big lock and read metadata off disk */
308d9800 987 lock_extent_bits(io_tree, start, end, 0, &cached);
6c282eb4 988 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
308d9800 989 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
6c282eb4
LZ
990
991 if (IS_ERR(em))
992 return NULL;
993 }
994
995 return em;
996}
17ce6ef8 997
6c282eb4
LZ
998static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
999{
1000 struct extent_map *next;
1001 bool ret = true;
1002
1003 /* this is the last extent */
1004 if (em->start + em->len >= i_size_read(inode))
1005 return false;
1006
1007 next = defrag_lookup_extent(inode, em->start + em->len);
e9512d72
CM
1008 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1009 ret = false;
1010 else if ((em->block_start + em->block_len == next->block_start) &&
1011 (em->block_len > 128 * 1024 && next->block_len > 128 * 1024))
6c282eb4
LZ
1012 ret = false;
1013
1014 free_extent_map(next);
17ce6ef8
LB
1015 return ret;
1016}
1017
aab110ab 1018static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
a43a2111
AM
1019 u64 *last_len, u64 *skip, u64 *defrag_end,
1020 int compress)
940100a4 1021{
6c282eb4 1022 struct extent_map *em;
940100a4 1023 int ret = 1;
6c282eb4 1024 bool next_mergeable = true;
940100a4
CM
1025
1026 /*
008873ea 1027 * make sure that once we start defragging an extent, we keep on
940100a4
CM
1028 * defragging it
1029 */
1030 if (start < *defrag_end)
1031 return 1;
1032
1033 *skip = 0;
1034
6c282eb4
LZ
1035 em = defrag_lookup_extent(inode, start);
1036 if (!em)
1037 return 0;
940100a4
CM
1038
1039 /* this will cover holes, and inline extents */
17ce6ef8 1040 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
940100a4 1041 ret = 0;
17ce6ef8
LB
1042 goto out;
1043 }
1044
6c282eb4 1045 next_mergeable = defrag_check_next_extent(inode, em);
940100a4 1046 /*
6c282eb4
LZ
1047 * we hit a real extent, if it is big or the next extent is not a
1048 * real extent, don't bother defragging it
940100a4 1049 */
a43a2111 1050 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
6c282eb4 1051 (em->len >= thresh || !next_mergeable))
940100a4 1052 ret = 0;
17ce6ef8 1053out:
940100a4
CM
1054 /*
1055 * last_len ends up being a counter of how many bytes we've defragged.
1056 * every time we choose not to defrag an extent, we reset *last_len
1057 * so that the next tiny extent will force a defrag.
1058 *
1059 * The end result of this is that tiny extents before a single big
1060 * extent will force at least part of that big extent to be defragged.
1061 */
1062 if (ret) {
940100a4
CM
1063 *defrag_end = extent_map_end(em);
1064 } else {
1065 *last_len = 0;
1066 *skip = extent_map_end(em);
1067 *defrag_end = 0;
1068 }
1069
1070 free_extent_map(em);
1071 return ret;
1072}
1073
4cb5300b
CM
1074/*
1075 * it doesn't do much good to defrag one or two pages
1076 * at a time. This pulls in a nice chunk of pages
1077 * to COW and defrag.
1078 *
1079 * It also makes sure the delalloc code has enough
1080 * dirty data to avoid making new small extents as part
1081 * of the defrag
1082 *
1083 * It's a good idea to start RA on this range
1084 * before calling this.
1085 */
1086static int cluster_pages_for_defrag(struct inode *inode,
1087 struct page **pages,
1088 unsigned long start_index,
c41570c9 1089 unsigned long num_pages)
f46b5a66 1090{
4cb5300b
CM
1091 unsigned long file_end;
1092 u64 isize = i_size_read(inode);
1093 u64 page_start;
1094 u64 page_end;
1f12bd06 1095 u64 page_cnt;
4cb5300b
CM
1096 int ret;
1097 int i;
1098 int i_done;
3eaa2885 1099 struct btrfs_ordered_extent *ordered;
4cb5300b 1100 struct extent_state *cached_state = NULL;
600a45e1 1101 struct extent_io_tree *tree;
3b16a4e3 1102 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
4cb5300b 1103
4cb5300b 1104 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
1f12bd06
LB
1105 if (!isize || start_index > file_end)
1106 return 0;
1107
1108 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
4cb5300b
CM
1109
1110 ret = btrfs_delalloc_reserve_space(inode,
1f12bd06 1111 page_cnt << PAGE_CACHE_SHIFT);
4cb5300b
CM
1112 if (ret)
1113 return ret;
4cb5300b 1114 i_done = 0;
600a45e1 1115 tree = &BTRFS_I(inode)->io_tree;
4cb5300b
CM
1116
1117 /* step one, lock all the pages */
1f12bd06 1118 for (i = 0; i < page_cnt; i++) {
4cb5300b 1119 struct page *page;
600a45e1 1120again:
a94733d0 1121 page = find_or_create_page(inode->i_mapping,
600a45e1 1122 start_index + i, mask);
4cb5300b
CM
1123 if (!page)
1124 break;
1125
600a45e1
MX
1126 page_start = page_offset(page);
1127 page_end = page_start + PAGE_CACHE_SIZE - 1;
1128 while (1) {
308d9800
FM
1129 lock_extent_bits(tree, page_start, page_end,
1130 0, &cached_state);
600a45e1
MX
1131 ordered = btrfs_lookup_ordered_extent(inode,
1132 page_start);
308d9800
FM
1133 unlock_extent_cached(tree, page_start, page_end,
1134 &cached_state, GFP_NOFS);
600a45e1
MX
1135 if (!ordered)
1136 break;
1137
1138 unlock_page(page);
1139 btrfs_start_ordered_extent(inode, ordered, 1);
1140 btrfs_put_ordered_extent(ordered);
1141 lock_page(page);
1f12bd06
LB
1142 /*
1143 * we unlocked the page above, so we need check if
1144 * it was released or not.
1145 */
1146 if (page->mapping != inode->i_mapping) {
1147 unlock_page(page);
1148 page_cache_release(page);
1149 goto again;
1150 }
600a45e1
MX
1151 }
1152
4cb5300b
CM
1153 if (!PageUptodate(page)) {
1154 btrfs_readpage(NULL, page);
1155 lock_page(page);
1156 if (!PageUptodate(page)) {
1157 unlock_page(page);
1158 page_cache_release(page);
1159 ret = -EIO;
1160 break;
1161 }
1162 }
600a45e1 1163
600a45e1
MX
1164 if (page->mapping != inode->i_mapping) {
1165 unlock_page(page);
1166 page_cache_release(page);
1167 goto again;
1168 }
1169
4cb5300b
CM
1170 pages[i] = page;
1171 i_done++;
1172 }
1173 if (!i_done || ret)
1174 goto out;
1175
1176 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1177 goto out;
1178
1179 /*
1180 * so now we have a nice long stream of locked
1181 * and up to date pages, lets wait on them
1182 */
1183 for (i = 0; i < i_done; i++)
1184 wait_on_page_writeback(pages[i]);
1185
1186 page_start = page_offset(pages[0]);
1187 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1188
1189 lock_extent_bits(&BTRFS_I(inode)->io_tree,
d0082371 1190 page_start, page_end - 1, 0, &cached_state);
4cb5300b
CM
1191 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1192 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
9e8a4a8b
LB
1193 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1194 &cached_state, GFP_NOFS);
4cb5300b 1195
1f12bd06 1196 if (i_done != page_cnt) {
9e0baf60
JB
1197 spin_lock(&BTRFS_I(inode)->lock);
1198 BTRFS_I(inode)->outstanding_extents++;
1199 spin_unlock(&BTRFS_I(inode)->lock);
4cb5300b 1200 btrfs_delalloc_release_space(inode,
1f12bd06 1201 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
4cb5300b
CM
1202 }
1203
1204
9e8a4a8b
LB
1205 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1206 &cached_state, GFP_NOFS);
4cb5300b
CM
1207
1208 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1209 page_start, page_end - 1, &cached_state,
1210 GFP_NOFS);
1211
1212 for (i = 0; i < i_done; i++) {
1213 clear_page_dirty_for_io(pages[i]);
1214 ClearPageChecked(pages[i]);
1215 set_page_extent_mapped(pages[i]);
1216 set_page_dirty(pages[i]);
1217 unlock_page(pages[i]);
1218 page_cache_release(pages[i]);
1219 }
1220 return i_done;
1221out:
1222 for (i = 0; i < i_done; i++) {
1223 unlock_page(pages[i]);
1224 page_cache_release(pages[i]);
1225 }
1f12bd06 1226 btrfs_delalloc_release_space(inode, page_cnt << PAGE_CACHE_SHIFT);
4cb5300b
CM
1227 return ret;
1228
1229}
1230
1231int btrfs_defrag_file(struct inode *inode, struct file *file,
1232 struct btrfs_ioctl_defrag_range_args *range,
1233 u64 newer_than, unsigned long max_to_defrag)
1234{
1235 struct btrfs_root *root = BTRFS_I(inode)->root;
4cb5300b 1236 struct file_ra_state *ra = NULL;
f46b5a66 1237 unsigned long last_index;
151a31b2 1238 u64 isize = i_size_read(inode);
940100a4
CM
1239 u64 last_len = 0;
1240 u64 skip = 0;
1241 u64 defrag_end = 0;
4cb5300b 1242 u64 newer_off = range->start;
f46b5a66 1243 unsigned long i;
008873ea 1244 unsigned long ra_index = 0;
f46b5a66 1245 int ret;
4cb5300b 1246 int defrag_count = 0;
1a419d85 1247 int compress_type = BTRFS_COMPRESS_ZLIB;
aab110ab 1248 u32 extent_thresh = range->extent_thresh;
c41570c9
JM
1249 unsigned long max_cluster = (256 * 1024) >> PAGE_CACHE_SHIFT;
1250 unsigned long cluster = max_cluster;
4cb5300b
CM
1251 u64 new_align = ~((u64)128 * 1024 - 1);
1252 struct page **pages = NULL;
1253
0abd5b17
LB
1254 if (isize == 0)
1255 return 0;
1256
1257 if (range->start >= isize)
1258 return -EINVAL;
1a419d85
LZ
1259
1260 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1261 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1262 return -EINVAL;
1263 if (range->compress_type)
1264 compress_type = range->compress_type;
1265 }
f46b5a66 1266
0abd5b17
LB
1267 if (extent_thresh == 0)
1268 extent_thresh = 256 * 1024;
940100a4 1269
4cb5300b
CM
1270 /*
1271 * if we were not given a file, allocate a readahead
1272 * context
1273 */
1274 if (!file) {
1275 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1276 if (!ra)
1277 return -ENOMEM;
1278 file_ra_state_init(ra, inode->i_mapping);
1279 } else {
1280 ra = &file->f_ra;
1281 }
1282
d9b0d9ba 1283 pages = kmalloc_array(max_cluster, sizeof(struct page *),
4cb5300b
CM
1284 GFP_NOFS);
1285 if (!pages) {
1286 ret = -ENOMEM;
1287 goto out_ra;
1288 }
1289
1290 /* find the last page to defrag */
1e701a32 1291 if (range->start + range->len > range->start) {
151a31b2 1292 last_index = min_t(u64, isize - 1,
1e701a32
CM
1293 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1294 } else {
151a31b2 1295 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1e701a32
CM
1296 }
1297
4cb5300b
CM
1298 if (newer_than) {
1299 ret = find_new_extents(root, inode, newer_than,
1300 &newer_off, 64 * 1024);
1301 if (!ret) {
1302 range->start = newer_off;
1303 /*
1304 * we always align our defrag to help keep
1305 * the extents in the file evenly spaced
1306 */
1307 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
4cb5300b
CM
1308 } else
1309 goto out_ra;
1310 } else {
1311 i = range->start >> PAGE_CACHE_SHIFT;
1312 }
1313 if (!max_to_defrag)
7ec31b54 1314 max_to_defrag = last_index + 1;
4cb5300b 1315
2a0f7f57
LZ
1316 /*
1317 * make writeback starts from i, so the defrag range can be
1318 * written sequentially.
1319 */
1320 if (i < inode->i_mapping->writeback_index)
1321 inode->i_mapping->writeback_index = i;
1322
f7f43cc8 1323 while (i <= last_index && defrag_count < max_to_defrag &&
ed6078f7 1324 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE))) {
4cb5300b
CM
1325 /*
1326 * make sure we stop running if someone unmounts
1327 * the FS
1328 */
1329 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1330 break;
1331
210549eb 1332 if (btrfs_defrag_cancelled(root->fs_info)) {
efe120a0 1333 printk(KERN_DEBUG "BTRFS: defrag_file cancelled\n");
210549eb
DS
1334 ret = -EAGAIN;
1335 break;
1336 }
1337
66c26892 1338 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
6c282eb4 1339 extent_thresh, &last_len, &skip,
a43a2111
AM
1340 &defrag_end, range->flags &
1341 BTRFS_DEFRAG_RANGE_COMPRESS)) {
940100a4
CM
1342 unsigned long next;
1343 /*
1344 * the should_defrag function tells us how much to skip
1345 * bump our counter by the suggested amount
1346 */
ed6078f7 1347 next = DIV_ROUND_UP(skip, PAGE_CACHE_SIZE);
940100a4
CM
1348 i = max(i + 1, next);
1349 continue;
1350 }
008873ea
LZ
1351
1352 if (!newer_than) {
1353 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1354 PAGE_CACHE_SHIFT) - i;
1355 cluster = min(cluster, max_cluster);
1356 } else {
1357 cluster = max_cluster;
1358 }
1359
008873ea
LZ
1360 if (i + cluster > ra_index) {
1361 ra_index = max(i, ra_index);
1362 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1363 cluster);
1364 ra_index += max_cluster;
1365 }
940100a4 1366
ecb8bea8 1367 mutex_lock(&inode->i_mutex);
633085c7
FDBM
1368 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1369 BTRFS_I(inode)->force_compress = compress_type;
008873ea 1370 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
ecb8bea8
LB
1371 if (ret < 0) {
1372 mutex_unlock(&inode->i_mutex);
4cb5300b 1373 goto out_ra;
ecb8bea8 1374 }
4cb5300b
CM
1375
1376 defrag_count += ret;
d0e1d66b 1377 balance_dirty_pages_ratelimited(inode->i_mapping);
ecb8bea8 1378 mutex_unlock(&inode->i_mutex);
4cb5300b
CM
1379
1380 if (newer_than) {
1381 if (newer_off == (u64)-1)
1382 break;
1383
e1f041e1
LB
1384 if (ret > 0)
1385 i += ret;
1386
4cb5300b
CM
1387 newer_off = max(newer_off + 1,
1388 (u64)i << PAGE_CACHE_SHIFT);
1389
1390 ret = find_new_extents(root, inode,
1391 newer_than, &newer_off,
1392 64 * 1024);
1393 if (!ret) {
1394 range->start = newer_off;
1395 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
4cb5300b
CM
1396 } else {
1397 break;
f46b5a66 1398 }
4cb5300b 1399 } else {
008873ea 1400 if (ret > 0) {
cbcc8326 1401 i += ret;
008873ea
LZ
1402 last_len += ret << PAGE_CACHE_SHIFT;
1403 } else {
cbcc8326 1404 i++;
008873ea
LZ
1405 last_len = 0;
1406 }
f46b5a66 1407 }
f46b5a66
CH
1408 }
1409
dec8ef90 1410 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
1e701a32 1411 filemap_flush(inode->i_mapping);
dec8ef90
FM
1412 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1413 &BTRFS_I(inode)->runtime_flags))
1414 filemap_flush(inode->i_mapping);
1415 }
1e701a32
CM
1416
1417 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1418 /* the filemap_flush will queue IO into the worker threads, but
1419 * we have to make sure the IO is actually started and that
1420 * ordered extents get created before we return
1421 */
1422 atomic_inc(&root->fs_info->async_submit_draining);
1423 while (atomic_read(&root->fs_info->nr_async_submits) ||
1424 atomic_read(&root->fs_info->async_delalloc_pages)) {
1425 wait_event(root->fs_info->async_submit_wait,
1426 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1427 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1428 }
1429 atomic_dec(&root->fs_info->async_submit_draining);
1e701a32
CM
1430 }
1431
1a419d85 1432 if (range->compress_type == BTRFS_COMPRESS_LZO) {
2b0ce2c2 1433 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
1a419d85
LZ
1434 }
1435
60ccf82f 1436 ret = defrag_count;
940100a4 1437
4cb5300b 1438out_ra:
633085c7
FDBM
1439 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1440 mutex_lock(&inode->i_mutex);
1441 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1442 mutex_unlock(&inode->i_mutex);
1443 }
4cb5300b
CM
1444 if (!file)
1445 kfree(ra);
1446 kfree(pages);
940100a4 1447 return ret;
f46b5a66
CH
1448}
1449
198605a8 1450static noinline int btrfs_ioctl_resize(struct file *file,
76dda93c 1451 void __user *arg)
f46b5a66
CH
1452{
1453 u64 new_size;
1454 u64 old_size;
1455 u64 devid = 1;
496ad9aa 1456 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
f46b5a66
CH
1457 struct btrfs_ioctl_vol_args *vol_args;
1458 struct btrfs_trans_handle *trans;
1459 struct btrfs_device *device = NULL;
1460 char *sizestr;
9a40f122 1461 char *retptr;
f46b5a66
CH
1462 char *devstr = NULL;
1463 int ret = 0;
f46b5a66
CH
1464 int mod = 0;
1465
e441d54d
CM
1466 if (!capable(CAP_SYS_ADMIN))
1467 return -EPERM;
1468
198605a8
MX
1469 ret = mnt_want_write_file(file);
1470 if (ret)
1471 return ret;
1472
5ac00add
SB
1473 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1474 1)) {
97547676 1475 mnt_drop_write_file(file);
e57138b3 1476 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
c9e9f97b
ID
1477 }
1478
5ac00add 1479 mutex_lock(&root->fs_info->volume_mutex);
dae7b665 1480 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
1481 if (IS_ERR(vol_args)) {
1482 ret = PTR_ERR(vol_args);
1483 goto out;
1484 }
5516e595
MF
1485
1486 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66 1487
f46b5a66
CH
1488 sizestr = vol_args->name;
1489 devstr = strchr(sizestr, ':');
1490 if (devstr) {
f46b5a66
CH
1491 sizestr = devstr + 1;
1492 *devstr = '\0';
1493 devstr = vol_args->name;
58dfae63
Z
1494 ret = kstrtoull(devstr, 10, &devid);
1495 if (ret)
1496 goto out_free;
dfd79829
MX
1497 if (!devid) {
1498 ret = -EINVAL;
1499 goto out_free;
1500 }
efe120a0 1501 btrfs_info(root->fs_info, "resizing devid %llu", devid);
f46b5a66 1502 }
dba60f3f 1503
aa1b8cd4 1504 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
f46b5a66 1505 if (!device) {
efe120a0 1506 btrfs_info(root->fs_info, "resizer unable to find device %llu",
c1c9ff7c 1507 devid);
dfd79829 1508 ret = -ENODEV;
c9e9f97b 1509 goto out_free;
f46b5a66 1510 }
dba60f3f
MX
1511
1512 if (!device->writeable) {
efe120a0
FH
1513 btrfs_info(root->fs_info,
1514 "resizer unable to apply on readonly device %llu",
c1c9ff7c 1515 devid);
dfd79829 1516 ret = -EPERM;
4e42ae1b
LB
1517 goto out_free;
1518 }
1519
f46b5a66
CH
1520 if (!strcmp(sizestr, "max"))
1521 new_size = device->bdev->bd_inode->i_size;
1522 else {
1523 if (sizestr[0] == '-') {
1524 mod = -1;
1525 sizestr++;
1526 } else if (sizestr[0] == '+') {
1527 mod = 1;
1528 sizestr++;
1529 }
9a40f122
GH
1530 new_size = memparse(sizestr, &retptr);
1531 if (*retptr != '\0' || new_size == 0) {
f46b5a66 1532 ret = -EINVAL;
c9e9f97b 1533 goto out_free;
f46b5a66
CH
1534 }
1535 }
1536
63a212ab 1537 if (device->is_tgtdev_for_dev_replace) {
dfd79829 1538 ret = -EPERM;
63a212ab
SB
1539 goto out_free;
1540 }
1541
7cc8e58d 1542 old_size = btrfs_device_get_total_bytes(device);
f46b5a66
CH
1543
1544 if (mod < 0) {
1545 if (new_size > old_size) {
1546 ret = -EINVAL;
c9e9f97b 1547 goto out_free;
f46b5a66
CH
1548 }
1549 new_size = old_size - new_size;
1550 } else if (mod > 0) {
eb8052e0 1551 if (new_size > ULLONG_MAX - old_size) {
902c68a4 1552 ret = -ERANGE;
eb8052e0
WF
1553 goto out_free;
1554 }
f46b5a66
CH
1555 new_size = old_size + new_size;
1556 }
1557
1558 if (new_size < 256 * 1024 * 1024) {
1559 ret = -EINVAL;
c9e9f97b 1560 goto out_free;
f46b5a66
CH
1561 }
1562 if (new_size > device->bdev->bd_inode->i_size) {
1563 ret = -EFBIG;
c9e9f97b 1564 goto out_free;
f46b5a66
CH
1565 }
1566
1567 do_div(new_size, root->sectorsize);
1568 new_size *= root->sectorsize;
1569
efe120a0 1570 printk_in_rcu(KERN_INFO "BTRFS: new size for %s is %llu\n",
c1c9ff7c 1571 rcu_str_deref(device->name), new_size);
f46b5a66
CH
1572
1573 if (new_size > old_size) {
a22285a6 1574 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
1575 if (IS_ERR(trans)) {
1576 ret = PTR_ERR(trans);
c9e9f97b 1577 goto out_free;
98d5dc13 1578 }
f46b5a66
CH
1579 ret = btrfs_grow_device(trans, device, new_size);
1580 btrfs_commit_transaction(trans, root);
ece7d20e 1581 } else if (new_size < old_size) {
f46b5a66 1582 ret = btrfs_shrink_device(device, new_size);
0253f40e 1583 } /* equal, nothing need to do */
f46b5a66 1584
c9e9f97b 1585out_free:
f46b5a66 1586 kfree(vol_args);
c9e9f97b
ID
1587out:
1588 mutex_unlock(&root->fs_info->volume_mutex);
5ac00add 1589 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
18f39c41 1590 mnt_drop_write_file(file);
f46b5a66
CH
1591 return ret;
1592}
1593
72fd032e 1594static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
6f72c7e2
AJ
1595 char *name, unsigned long fd, int subvol,
1596 u64 *transid, bool readonly,
8696c533 1597 struct btrfs_qgroup_inherit *inherit)
f46b5a66 1598{
f46b5a66 1599 int namelen;
3de4586c 1600 int ret = 0;
f46b5a66 1601
a874a63e
LB
1602 ret = mnt_want_write_file(file);
1603 if (ret)
1604 goto out;
1605
72fd032e
SW
1606 namelen = strlen(name);
1607 if (strchr(name, '/')) {
f46b5a66 1608 ret = -EINVAL;
a874a63e 1609 goto out_drop_write;
f46b5a66
CH
1610 }
1611
16780cab
CM
1612 if (name[0] == '.' &&
1613 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1614 ret = -EEXIST;
a874a63e 1615 goto out_drop_write;
16780cab
CM
1616 }
1617
3de4586c 1618 if (subvol) {
72fd032e 1619 ret = btrfs_mksubvol(&file->f_path, name, namelen,
6f72c7e2 1620 NULL, transid, readonly, inherit);
cb8e7090 1621 } else {
2903ff01 1622 struct fd src = fdget(fd);
3de4586c 1623 struct inode *src_inode;
2903ff01 1624 if (!src.file) {
3de4586c 1625 ret = -EINVAL;
a874a63e 1626 goto out_drop_write;
3de4586c
CM
1627 }
1628
496ad9aa
AV
1629 src_inode = file_inode(src.file);
1630 if (src_inode->i_sb != file_inode(file)->i_sb) {
efe120a0
FH
1631 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1632 "Snapshot src from another FS");
23ad5b17 1633 ret = -EXDEV;
d0242061
DS
1634 } else if (!inode_owner_or_capable(src_inode)) {
1635 /*
1636 * Subvolume creation is not restricted, but snapshots
1637 * are limited to own subvolumes only
1638 */
1639 ret = -EPERM;
ecd18815
AV
1640 } else {
1641 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1642 BTRFS_I(src_inode)->root,
1643 transid, readonly, inherit);
3de4586c 1644 }
2903ff01 1645 fdput(src);
cb8e7090 1646 }
a874a63e
LB
1647out_drop_write:
1648 mnt_drop_write_file(file);
f46b5a66 1649out:
72fd032e
SW
1650 return ret;
1651}
1652
1653static noinline int btrfs_ioctl_snap_create(struct file *file,
fa0d2b9b 1654 void __user *arg, int subvol)
72fd032e 1655{
fa0d2b9b 1656 struct btrfs_ioctl_vol_args *vol_args;
72fd032e
SW
1657 int ret;
1658
fa0d2b9b
LZ
1659 vol_args = memdup_user(arg, sizeof(*vol_args));
1660 if (IS_ERR(vol_args))
1661 return PTR_ERR(vol_args);
1662 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
72fd032e 1663
fa0d2b9b 1664 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
b83cc969 1665 vol_args->fd, subvol,
6f72c7e2 1666 NULL, false, NULL);
fdfb1e4f 1667
fa0d2b9b
LZ
1668 kfree(vol_args);
1669 return ret;
1670}
fdfb1e4f 1671
fa0d2b9b
LZ
1672static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1673 void __user *arg, int subvol)
1674{
1675 struct btrfs_ioctl_vol_args_v2 *vol_args;
1676 int ret;
1677 u64 transid = 0;
1678 u64 *ptr = NULL;
b83cc969 1679 bool readonly = false;
6f72c7e2 1680 struct btrfs_qgroup_inherit *inherit = NULL;
75eaa0e2 1681
fa0d2b9b
LZ
1682 vol_args = memdup_user(arg, sizeof(*vol_args));
1683 if (IS_ERR(vol_args))
1684 return PTR_ERR(vol_args);
1685 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
75eaa0e2 1686
b83cc969 1687 if (vol_args->flags &
6f72c7e2
AJ
1688 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1689 BTRFS_SUBVOL_QGROUP_INHERIT)) {
b83cc969 1690 ret = -EOPNOTSUPP;
c47ca32d 1691 goto free_args;
72fd032e 1692 }
fa0d2b9b
LZ
1693
1694 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1695 ptr = &transid;
b83cc969
LZ
1696 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1697 readonly = true;
6f72c7e2
AJ
1698 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1699 if (vol_args->size > PAGE_CACHE_SIZE) {
1700 ret = -EINVAL;
c47ca32d 1701 goto free_args;
6f72c7e2
AJ
1702 }
1703 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1704 if (IS_ERR(inherit)) {
1705 ret = PTR_ERR(inherit);
c47ca32d 1706 goto free_args;
6f72c7e2
AJ
1707 }
1708 }
fa0d2b9b
LZ
1709
1710 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
6f72c7e2 1711 vol_args->fd, subvol, ptr,
8696c533 1712 readonly, inherit);
c47ca32d
DC
1713 if (ret)
1714 goto free_inherit;
fa0d2b9b 1715
c47ca32d
DC
1716 if (ptr && copy_to_user(arg +
1717 offsetof(struct btrfs_ioctl_vol_args_v2,
1718 transid),
1719 ptr, sizeof(*ptr)))
fa0d2b9b 1720 ret = -EFAULT;
c47ca32d
DC
1721
1722free_inherit:
6f72c7e2 1723 kfree(inherit);
c47ca32d
DC
1724free_args:
1725 kfree(vol_args);
f46b5a66
CH
1726 return ret;
1727}
1728
0caa102d
LZ
1729static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1730 void __user *arg)
1731{
496ad9aa 1732 struct inode *inode = file_inode(file);
0caa102d
LZ
1733 struct btrfs_root *root = BTRFS_I(inode)->root;
1734 int ret = 0;
1735 u64 flags = 0;
1736
33345d01 1737 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
0caa102d
LZ
1738 return -EINVAL;
1739
1740 down_read(&root->fs_info->subvol_sem);
1741 if (btrfs_root_readonly(root))
1742 flags |= BTRFS_SUBVOL_RDONLY;
1743 up_read(&root->fs_info->subvol_sem);
1744
1745 if (copy_to_user(arg, &flags, sizeof(flags)))
1746 ret = -EFAULT;
1747
1748 return ret;
1749}
1750
1751static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1752 void __user *arg)
1753{
496ad9aa 1754 struct inode *inode = file_inode(file);
0caa102d
LZ
1755 struct btrfs_root *root = BTRFS_I(inode)->root;
1756 struct btrfs_trans_handle *trans;
1757 u64 root_flags;
1758 u64 flags;
1759 int ret = 0;
1760
bd60ea0f
DS
1761 if (!inode_owner_or_capable(inode))
1762 return -EPERM;
1763
b9ca0664
LB
1764 ret = mnt_want_write_file(file);
1765 if (ret)
1766 goto out;
0caa102d 1767
b9ca0664
LB
1768 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1769 ret = -EINVAL;
1770 goto out_drop_write;
1771 }
0caa102d 1772
b9ca0664
LB
1773 if (copy_from_user(&flags, arg, sizeof(flags))) {
1774 ret = -EFAULT;
1775 goto out_drop_write;
1776 }
0caa102d 1777
b9ca0664
LB
1778 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1779 ret = -EINVAL;
1780 goto out_drop_write;
1781 }
0caa102d 1782
b9ca0664
LB
1783 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1784 ret = -EOPNOTSUPP;
1785 goto out_drop_write;
1786 }
0caa102d
LZ
1787
1788 down_write(&root->fs_info->subvol_sem);
1789
1790 /* nothing to do */
1791 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
b9ca0664 1792 goto out_drop_sem;
0caa102d
LZ
1793
1794 root_flags = btrfs_root_flags(&root->root_item);
2c686537 1795 if (flags & BTRFS_SUBVOL_RDONLY) {
0caa102d
LZ
1796 btrfs_set_root_flags(&root->root_item,
1797 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
2c686537
DS
1798 } else {
1799 /*
1800 * Block RO -> RW transition if this subvolume is involved in
1801 * send
1802 */
1803 spin_lock(&root->root_item_lock);
1804 if (root->send_in_progress == 0) {
1805 btrfs_set_root_flags(&root->root_item,
0caa102d 1806 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
2c686537
DS
1807 spin_unlock(&root->root_item_lock);
1808 } else {
1809 spin_unlock(&root->root_item_lock);
1810 btrfs_warn(root->fs_info,
1811 "Attempt to set subvolume %llu read-write during send",
1812 root->root_key.objectid);
1813 ret = -EPERM;
1814 goto out_drop_sem;
1815 }
1816 }
0caa102d
LZ
1817
1818 trans = btrfs_start_transaction(root, 1);
1819 if (IS_ERR(trans)) {
1820 ret = PTR_ERR(trans);
1821 goto out_reset;
1822 }
1823
b4dc2b8c 1824 ret = btrfs_update_root(trans, root->fs_info->tree_root,
0caa102d
LZ
1825 &root->root_key, &root->root_item);
1826
1827 btrfs_commit_transaction(trans, root);
1828out_reset:
1829 if (ret)
1830 btrfs_set_root_flags(&root->root_item, root_flags);
b9ca0664 1831out_drop_sem:
0caa102d 1832 up_write(&root->fs_info->subvol_sem);
b9ca0664
LB
1833out_drop_write:
1834 mnt_drop_write_file(file);
1835out:
0caa102d
LZ
1836 return ret;
1837}
1838
76dda93c
YZ
1839/*
1840 * helper to check if the subvolume references other subvolumes
1841 */
1842static noinline int may_destroy_subvol(struct btrfs_root *root)
1843{
1844 struct btrfs_path *path;
175a2b87 1845 struct btrfs_dir_item *di;
76dda93c 1846 struct btrfs_key key;
175a2b87 1847 u64 dir_id;
76dda93c
YZ
1848 int ret;
1849
1850 path = btrfs_alloc_path();
1851 if (!path)
1852 return -ENOMEM;
1853
175a2b87
JB
1854 /* Make sure this root isn't set as the default subvol */
1855 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1856 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1857 dir_id, "default", 7, 0);
1858 if (di && !IS_ERR(di)) {
1859 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1860 if (key.objectid == root->root_key.objectid) {
72de6b53
GS
1861 ret = -EPERM;
1862 btrfs_err(root->fs_info, "deleting default subvolume "
1863 "%llu is not allowed", key.objectid);
175a2b87
JB
1864 goto out;
1865 }
1866 btrfs_release_path(path);
1867 }
1868
76dda93c
YZ
1869 key.objectid = root->root_key.objectid;
1870 key.type = BTRFS_ROOT_REF_KEY;
1871 key.offset = (u64)-1;
1872
1873 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1874 &key, path, 0, 0);
1875 if (ret < 0)
1876 goto out;
1877 BUG_ON(ret == 0);
1878
1879 ret = 0;
1880 if (path->slots[0] > 0) {
1881 path->slots[0]--;
1882 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1883 if (key.objectid == root->root_key.objectid &&
1884 key.type == BTRFS_ROOT_REF_KEY)
1885 ret = -ENOTEMPTY;
1886 }
1887out:
1888 btrfs_free_path(path);
1889 return ret;
1890}
1891
ac8e9819
CM
1892static noinline int key_in_sk(struct btrfs_key *key,
1893 struct btrfs_ioctl_search_key *sk)
1894{
abc6e134
CM
1895 struct btrfs_key test;
1896 int ret;
1897
1898 test.objectid = sk->min_objectid;
1899 test.type = sk->min_type;
1900 test.offset = sk->min_offset;
1901
1902 ret = btrfs_comp_cpu_keys(key, &test);
1903 if (ret < 0)
ac8e9819 1904 return 0;
abc6e134
CM
1905
1906 test.objectid = sk->max_objectid;
1907 test.type = sk->max_type;
1908 test.offset = sk->max_offset;
1909
1910 ret = btrfs_comp_cpu_keys(key, &test);
1911 if (ret > 0)
ac8e9819
CM
1912 return 0;
1913 return 1;
1914}
1915
1916static noinline int copy_to_sk(struct btrfs_root *root,
1917 struct btrfs_path *path,
1918 struct btrfs_key *key,
1919 struct btrfs_ioctl_search_key *sk,
9b6e817d 1920 size_t *buf_size,
ba346b35 1921 char __user *ubuf,
ac8e9819
CM
1922 unsigned long *sk_offset,
1923 int *num_found)
1924{
1925 u64 found_transid;
1926 struct extent_buffer *leaf;
1927 struct btrfs_ioctl_search_header sh;
1928 unsigned long item_off;
1929 unsigned long item_len;
1930 int nritems;
1931 int i;
1932 int slot;
ac8e9819
CM
1933 int ret = 0;
1934
1935 leaf = path->nodes[0];
1936 slot = path->slots[0];
1937 nritems = btrfs_header_nritems(leaf);
1938
1939 if (btrfs_header_generation(leaf) > sk->max_transid) {
1940 i = nritems;
1941 goto advance_key;
1942 }
1943 found_transid = btrfs_header_generation(leaf);
1944
1945 for (i = slot; i < nritems; i++) {
1946 item_off = btrfs_item_ptr_offset(leaf, i);
1947 item_len = btrfs_item_size_nr(leaf, i);
1948
03b71c6c
GP
1949 btrfs_item_key_to_cpu(leaf, key, i);
1950 if (!key_in_sk(key, sk))
1951 continue;
1952
9b6e817d 1953 if (sizeof(sh) + item_len > *buf_size) {
8f5f6178
GH
1954 if (*num_found) {
1955 ret = 1;
1956 goto out;
1957 }
1958
1959 /*
1960 * return one empty item back for v1, which does not
1961 * handle -EOVERFLOW
1962 */
1963
9b6e817d 1964 *buf_size = sizeof(sh) + item_len;
ac8e9819 1965 item_len = 0;
8f5f6178
GH
1966 ret = -EOVERFLOW;
1967 }
ac8e9819 1968
9b6e817d 1969 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
ac8e9819 1970 ret = 1;
25c9bc2e 1971 goto out;
ac8e9819
CM
1972 }
1973
ac8e9819
CM
1974 sh.objectid = key->objectid;
1975 sh.offset = key->offset;
1976 sh.type = key->type;
1977 sh.len = item_len;
1978 sh.transid = found_transid;
1979
1980 /* copy search result header */
ba346b35
GH
1981 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1982 ret = -EFAULT;
1983 goto out;
1984 }
1985
ac8e9819
CM
1986 *sk_offset += sizeof(sh);
1987
1988 if (item_len) {
ba346b35 1989 char __user *up = ubuf + *sk_offset;
ac8e9819 1990 /* copy the item */
ba346b35
GH
1991 if (read_extent_buffer_to_user(leaf, up,
1992 item_off, item_len)) {
1993 ret = -EFAULT;
1994 goto out;
1995 }
1996
ac8e9819 1997 *sk_offset += item_len;
ac8e9819 1998 }
e2156867 1999 (*num_found)++;
ac8e9819 2000
8f5f6178
GH
2001 if (ret) /* -EOVERFLOW from above */
2002 goto out;
2003
25c9bc2e
GH
2004 if (*num_found >= sk->nr_items) {
2005 ret = 1;
2006 goto out;
2007 }
ac8e9819
CM
2008 }
2009advance_key:
abc6e134
CM
2010 ret = 0;
2011 if (key->offset < (u64)-1 && key->offset < sk->max_offset)
ac8e9819 2012 key->offset++;
abc6e134
CM
2013 else if (key->type < (u8)-1 && key->type < sk->max_type) {
2014 key->offset = 0;
ac8e9819 2015 key->type++;
abc6e134
CM
2016 } else if (key->objectid < (u64)-1 && key->objectid < sk->max_objectid) {
2017 key->offset = 0;
2018 key->type = 0;
ac8e9819 2019 key->objectid++;
abc6e134
CM
2020 } else
2021 ret = 1;
25c9bc2e 2022out:
ba346b35
GH
2023 /*
2024 * 0: all items from this leaf copied, continue with next
2025 * 1: * more items can be copied, but unused buffer is too small
2026 * * all items were found
2027 * Either way, it will stops the loop which iterates to the next
2028 * leaf
2029 * -EOVERFLOW: item was to large for buffer
2030 * -EFAULT: could not copy extent buffer back to userspace
2031 */
ac8e9819
CM
2032 return ret;
2033}
2034
2035static noinline int search_ioctl(struct inode *inode,
12544442 2036 struct btrfs_ioctl_search_key *sk,
9b6e817d 2037 size_t *buf_size,
ba346b35 2038 char __user *ubuf)
ac8e9819
CM
2039{
2040 struct btrfs_root *root;
2041 struct btrfs_key key;
ac8e9819 2042 struct btrfs_path *path;
ac8e9819
CM
2043 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2044 int ret;
2045 int num_found = 0;
2046 unsigned long sk_offset = 0;
2047
9b6e817d
GH
2048 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2049 *buf_size = sizeof(struct btrfs_ioctl_search_header);
12544442 2050 return -EOVERFLOW;
9b6e817d 2051 }
12544442 2052
ac8e9819
CM
2053 path = btrfs_alloc_path();
2054 if (!path)
2055 return -ENOMEM;
2056
2057 if (sk->tree_id == 0) {
2058 /* search the root of the inode that was passed */
2059 root = BTRFS_I(inode)->root;
2060 } else {
2061 key.objectid = sk->tree_id;
2062 key.type = BTRFS_ROOT_ITEM_KEY;
2063 key.offset = (u64)-1;
2064 root = btrfs_read_fs_root_no_name(info, &key);
2065 if (IS_ERR(root)) {
efe120a0 2066 printk(KERN_ERR "BTRFS: could not find root %llu\n",
ac8e9819
CM
2067 sk->tree_id);
2068 btrfs_free_path(path);
2069 return -ENOENT;
2070 }
2071 }
2072
2073 key.objectid = sk->min_objectid;
2074 key.type = sk->min_type;
2075 key.offset = sk->min_offset;
2076
67871254 2077 while (1) {
6174d3cb 2078 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
ac8e9819
CM
2079 if (ret != 0) {
2080 if (ret > 0)
2081 ret = 0;
2082 goto err;
2083 }
ba346b35 2084 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
ac8e9819 2085 &sk_offset, &num_found);
b3b4aa74 2086 btrfs_release_path(path);
25c9bc2e 2087 if (ret)
ac8e9819
CM
2088 break;
2089
2090 }
8f5f6178
GH
2091 if (ret > 0)
2092 ret = 0;
ac8e9819
CM
2093err:
2094 sk->nr_items = num_found;
2095 btrfs_free_path(path);
2096 return ret;
2097}
2098
2099static noinline int btrfs_ioctl_tree_search(struct file *file,
2100 void __user *argp)
2101{
ba346b35
GH
2102 struct btrfs_ioctl_search_args __user *uargs;
2103 struct btrfs_ioctl_search_key sk;
9b6e817d
GH
2104 struct inode *inode;
2105 int ret;
2106 size_t buf_size;
ac8e9819
CM
2107
2108 if (!capable(CAP_SYS_ADMIN))
2109 return -EPERM;
2110
ba346b35
GH
2111 uargs = (struct btrfs_ioctl_search_args __user *)argp;
2112
2113 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2114 return -EFAULT;
ac8e9819 2115
ba346b35 2116 buf_size = sizeof(uargs->buf);
ac8e9819 2117
496ad9aa 2118 inode = file_inode(file);
ba346b35 2119 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
8f5f6178
GH
2120
2121 /*
2122 * In the origin implementation an overflow is handled by returning a
2123 * search header with a len of zero, so reset ret.
2124 */
2125 if (ret == -EOVERFLOW)
2126 ret = 0;
2127
ba346b35 2128 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
ac8e9819 2129 ret = -EFAULT;
ac8e9819
CM
2130 return ret;
2131}
2132
cc68a8a5
GH
2133static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2134 void __user *argp)
2135{
2136 struct btrfs_ioctl_search_args_v2 __user *uarg;
2137 struct btrfs_ioctl_search_args_v2 args;
2138 struct inode *inode;
2139 int ret;
2140 size_t buf_size;
2141 const size_t buf_limit = 16 * 1024 * 1024;
2142
2143 if (!capable(CAP_SYS_ADMIN))
2144 return -EPERM;
2145
2146 /* copy search header and buffer size */
2147 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2148 if (copy_from_user(&args, uarg, sizeof(args)))
2149 return -EFAULT;
2150
2151 buf_size = args.buf_size;
2152
2153 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2154 return -EOVERFLOW;
2155
2156 /* limit result size to 16MB */
2157 if (buf_size > buf_limit)
2158 buf_size = buf_limit;
2159
2160 inode = file_inode(file);
2161 ret = search_ioctl(inode, &args.key, &buf_size,
2162 (char *)(&uarg->buf[0]));
2163 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2164 ret = -EFAULT;
2165 else if (ret == -EOVERFLOW &&
2166 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2167 ret = -EFAULT;
2168
ac8e9819
CM
2169 return ret;
2170}
2171
98d377a0 2172/*
ac8e9819
CM
2173 * Search INODE_REFs to identify path name of 'dirid' directory
2174 * in a 'tree_id' tree. and sets path name to 'name'.
2175 */
98d377a0
TH
2176static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2177 u64 tree_id, u64 dirid, char *name)
2178{
2179 struct btrfs_root *root;
2180 struct btrfs_key key;
ac8e9819 2181 char *ptr;
98d377a0
TH
2182 int ret = -1;
2183 int slot;
2184 int len;
2185 int total_len = 0;
2186 struct btrfs_inode_ref *iref;
2187 struct extent_buffer *l;
2188 struct btrfs_path *path;
2189
2190 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2191 name[0]='\0';
2192 return 0;
2193 }
2194
2195 path = btrfs_alloc_path();
2196 if (!path)
2197 return -ENOMEM;
2198
ac8e9819 2199 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
98d377a0
TH
2200
2201 key.objectid = tree_id;
2202 key.type = BTRFS_ROOT_ITEM_KEY;
2203 key.offset = (u64)-1;
2204 root = btrfs_read_fs_root_no_name(info, &key);
2205 if (IS_ERR(root)) {
efe120a0 2206 printk(KERN_ERR "BTRFS: could not find root %llu\n", tree_id);
8ad6fcab
CM
2207 ret = -ENOENT;
2208 goto out;
98d377a0
TH
2209 }
2210
2211 key.objectid = dirid;
2212 key.type = BTRFS_INODE_REF_KEY;
8ad6fcab 2213 key.offset = (u64)-1;
98d377a0 2214
67871254 2215 while (1) {
98d377a0
TH
2216 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2217 if (ret < 0)
2218 goto out;
18674c6c
FDBM
2219 else if (ret > 0) {
2220 ret = btrfs_previous_item(root, path, dirid,
2221 BTRFS_INODE_REF_KEY);
2222 if (ret < 0)
2223 goto out;
2224 else if (ret > 0) {
2225 ret = -ENOENT;
2226 goto out;
2227 }
2228 }
98d377a0
TH
2229
2230 l = path->nodes[0];
2231 slot = path->slots[0];
2232 btrfs_item_key_to_cpu(l, &key, slot);
2233
98d377a0
TH
2234 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2235 len = btrfs_inode_ref_name_len(l, iref);
2236 ptr -= len + 1;
2237 total_len += len + 1;
a696cf35
FDBM
2238 if (ptr < name) {
2239 ret = -ENAMETOOLONG;
98d377a0 2240 goto out;
a696cf35 2241 }
98d377a0
TH
2242
2243 *(ptr + len) = '/';
67871254 2244 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
98d377a0
TH
2245
2246 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2247 break;
2248
b3b4aa74 2249 btrfs_release_path(path);
98d377a0 2250 key.objectid = key.offset;
8ad6fcab 2251 key.offset = (u64)-1;
98d377a0 2252 dirid = key.objectid;
98d377a0 2253 }
77906a50 2254 memmove(name, ptr, total_len);
67871254 2255 name[total_len] = '\0';
98d377a0
TH
2256 ret = 0;
2257out:
2258 btrfs_free_path(path);
ac8e9819
CM
2259 return ret;
2260}
2261
2262static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2263 void __user *argp)
2264{
2265 struct btrfs_ioctl_ino_lookup_args *args;
2266 struct inode *inode;
2267 int ret;
2268
2269 if (!capable(CAP_SYS_ADMIN))
2270 return -EPERM;
2271
2354d08f
JL
2272 args = memdup_user(argp, sizeof(*args));
2273 if (IS_ERR(args))
2274 return PTR_ERR(args);
c2b96929 2275
496ad9aa 2276 inode = file_inode(file);
ac8e9819 2277
1b53ac4d
CM
2278 if (args->treeid == 0)
2279 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2280
ac8e9819
CM
2281 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2282 args->treeid, args->objectid,
2283 args->name);
2284
2285 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2286 ret = -EFAULT;
2287
2288 kfree(args);
98d377a0
TH
2289 return ret;
2290}
2291
76dda93c
YZ
2292static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2293 void __user *arg)
2294{
54563d41 2295 struct dentry *parent = file->f_path.dentry;
76dda93c
YZ
2296 struct dentry *dentry;
2297 struct inode *dir = parent->d_inode;
2298 struct inode *inode;
2299 struct btrfs_root *root = BTRFS_I(dir)->root;
2300 struct btrfs_root *dest = NULL;
2301 struct btrfs_ioctl_vol_args *vol_args;
2302 struct btrfs_trans_handle *trans;
c58aaad2 2303 struct btrfs_block_rsv block_rsv;
521e0546 2304 u64 root_flags;
c58aaad2 2305 u64 qgroup_reserved;
76dda93c
YZ
2306 int namelen;
2307 int ret;
2308 int err = 0;
2309
76dda93c
YZ
2310 vol_args = memdup_user(arg, sizeof(*vol_args));
2311 if (IS_ERR(vol_args))
2312 return PTR_ERR(vol_args);
2313
2314 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2315 namelen = strlen(vol_args->name);
2316 if (strchr(vol_args->name, '/') ||
2317 strncmp(vol_args->name, "..", namelen) == 0) {
2318 err = -EINVAL;
2319 goto out;
2320 }
2321
a561be71 2322 err = mnt_want_write_file(file);
76dda93c
YZ
2323 if (err)
2324 goto out;
2325
521e0546 2326
5c50c9b8
DS
2327 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2328 if (err == -EINTR)
e43f998e 2329 goto out_drop_write;
76dda93c
YZ
2330 dentry = lookup_one_len(vol_args->name, parent, namelen);
2331 if (IS_ERR(dentry)) {
2332 err = PTR_ERR(dentry);
2333 goto out_unlock_dir;
2334 }
2335
2336 if (!dentry->d_inode) {
2337 err = -ENOENT;
2338 goto out_dput;
2339 }
2340
2341 inode = dentry->d_inode;
4260f7c7 2342 dest = BTRFS_I(inode)->root;
67871254 2343 if (!capable(CAP_SYS_ADMIN)) {
4260f7c7
SW
2344 /*
2345 * Regular user. Only allow this with a special mount
2346 * option, when the user has write+exec access to the
2347 * subvol root, and when rmdir(2) would have been
2348 * allowed.
2349 *
2350 * Note that this is _not_ check that the subvol is
2351 * empty or doesn't contain data that we wouldn't
2352 * otherwise be able to delete.
2353 *
2354 * Users who want to delete empty subvols should try
2355 * rmdir(2).
2356 */
2357 err = -EPERM;
2358 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2359 goto out_dput;
2360
2361 /*
2362 * Do not allow deletion if the parent dir is the same
2363 * as the dir to be deleted. That means the ioctl
2364 * must be called on the dentry referencing the root
2365 * of the subvol, not a random directory contained
2366 * within it.
2367 */
2368 err = -EINVAL;
2369 if (root == dest)
2370 goto out_dput;
2371
2372 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2373 if (err)
2374 goto out_dput;
4260f7c7
SW
2375 }
2376
5c39da5b
MX
2377 /* check if subvolume may be deleted by a user */
2378 err = btrfs_may_delete(dir, dentry, 1);
2379 if (err)
2380 goto out_dput;
2381
33345d01 2382 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
76dda93c
YZ
2383 err = -EINVAL;
2384 goto out_dput;
2385 }
2386
76dda93c 2387 mutex_lock(&inode->i_mutex);
521e0546
DS
2388
2389 /*
2390 * Don't allow to delete a subvolume with send in progress. This is
2391 * inside the i_mutex so the error handling that has to drop the bit
2392 * again is not run concurrently.
2393 */
2394 spin_lock(&dest->root_item_lock);
c55bfa67
FM
2395 root_flags = btrfs_root_flags(&dest->root_item);
2396 if (dest->send_in_progress == 0) {
2397 btrfs_set_root_flags(&dest->root_item,
521e0546
DS
2398 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2399 spin_unlock(&dest->root_item_lock);
2400 } else {
2401 spin_unlock(&dest->root_item_lock);
2402 btrfs_warn(root->fs_info,
2403 "Attempt to delete subvolume %llu during send",
c55bfa67 2404 dest->root_key.objectid);
521e0546
DS
2405 err = -EPERM;
2406 goto out_dput;
2407 }
2408
5542aa2f 2409 d_invalidate(dentry);
76dda93c
YZ
2410
2411 down_write(&root->fs_info->subvol_sem);
2412
2413 err = may_destroy_subvol(dest);
2414 if (err)
2415 goto out_up_write;
2416
c58aaad2
MX
2417 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2418 /*
2419 * One for dir inode, two for dir entries, two for root
2420 * ref/backref.
2421 */
2422 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
ee3441b4 2423 5, &qgroup_reserved, true);
c58aaad2
MX
2424 if (err)
2425 goto out_up_write;
2426
a22285a6
YZ
2427 trans = btrfs_start_transaction(root, 0);
2428 if (IS_ERR(trans)) {
2429 err = PTR_ERR(trans);
c58aaad2 2430 goto out_release;
a22285a6 2431 }
c58aaad2
MX
2432 trans->block_rsv = &block_rsv;
2433 trans->bytes_reserved = block_rsv.size;
a22285a6 2434
76dda93c
YZ
2435 ret = btrfs_unlink_subvol(trans, root, dir,
2436 dest->root_key.objectid,
2437 dentry->d_name.name,
2438 dentry->d_name.len);
79787eaa
JM
2439 if (ret) {
2440 err = ret;
2441 btrfs_abort_transaction(trans, root, ret);
2442 goto out_end_trans;
2443 }
76dda93c
YZ
2444
2445 btrfs_record_root_in_trans(trans, dest);
2446
2447 memset(&dest->root_item.drop_progress, 0,
2448 sizeof(dest->root_item.drop_progress));
2449 dest->root_item.drop_level = 0;
2450 btrfs_set_root_refs(&dest->root_item, 0);
2451
27cdeb70 2452 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
d68fc57b
YZ
2453 ret = btrfs_insert_orphan_item(trans,
2454 root->fs_info->tree_root,
2455 dest->root_key.objectid);
79787eaa
JM
2456 if (ret) {
2457 btrfs_abort_transaction(trans, root, ret);
2458 err = ret;
2459 goto out_end_trans;
2460 }
d68fc57b 2461 }
dd5f9615
SB
2462
2463 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2464 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2465 dest->root_key.objectid);
2466 if (ret && ret != -ENOENT) {
2467 btrfs_abort_transaction(trans, root, ret);
2468 err = ret;
2469 goto out_end_trans;
2470 }
2471 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2472 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2473 dest->root_item.received_uuid,
2474 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2475 dest->root_key.objectid);
2476 if (ret && ret != -ENOENT) {
2477 btrfs_abort_transaction(trans, root, ret);
2478 err = ret;
2479 goto out_end_trans;
2480 }
2481 }
2482
79787eaa 2483out_end_trans:
c58aaad2
MX
2484 trans->block_rsv = NULL;
2485 trans->bytes_reserved = 0;
531cb13f 2486 ret = btrfs_end_transaction(trans, root);
79787eaa
JM
2487 if (ret && !err)
2488 err = ret;
76dda93c 2489 inode->i_flags |= S_DEAD;
c58aaad2
MX
2490out_release:
2491 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
76dda93c
YZ
2492out_up_write:
2493 up_write(&root->fs_info->subvol_sem);
521e0546
DS
2494 if (err) {
2495 spin_lock(&dest->root_item_lock);
c55bfa67
FM
2496 root_flags = btrfs_root_flags(&dest->root_item);
2497 btrfs_set_root_flags(&dest->root_item,
521e0546
DS
2498 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2499 spin_unlock(&dest->root_item_lock);
2500 }
76dda93c
YZ
2501 mutex_unlock(&inode->i_mutex);
2502 if (!err) {
efefb143 2503 shrink_dcache_sb(root->fs_info->sb);
76dda93c
YZ
2504 btrfs_invalidate_inodes(dest);
2505 d_delete(dentry);
61155aa0 2506 ASSERT(dest->send_in_progress == 0);
fa6ac876
LB
2507
2508 /* the last ref */
57cdc8db
DS
2509 if (dest->ino_cache_inode) {
2510 iput(dest->ino_cache_inode);
2511 dest->ino_cache_inode = NULL;
fa6ac876 2512 }
76dda93c
YZ
2513 }
2514out_dput:
2515 dput(dentry);
2516out_unlock_dir:
2517 mutex_unlock(&dir->i_mutex);
e43f998e 2518out_drop_write:
2a79f17e 2519 mnt_drop_write_file(file);
76dda93c
YZ
2520out:
2521 kfree(vol_args);
2522 return err;
2523}
2524
1e701a32 2525static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
f46b5a66 2526{
496ad9aa 2527 struct inode *inode = file_inode(file);
f46b5a66 2528 struct btrfs_root *root = BTRFS_I(inode)->root;
1e701a32 2529 struct btrfs_ioctl_defrag_range_args *range;
c146afad
YZ
2530 int ret;
2531
25122d15
ID
2532 ret = mnt_want_write_file(file);
2533 if (ret)
2534 return ret;
b83cc969 2535
25122d15
ID
2536 if (btrfs_root_readonly(root)) {
2537 ret = -EROFS;
2538 goto out;
5ac00add 2539 }
f46b5a66
CH
2540
2541 switch (inode->i_mode & S_IFMT) {
2542 case S_IFDIR:
e441d54d
CM
2543 if (!capable(CAP_SYS_ADMIN)) {
2544 ret = -EPERM;
2545 goto out;
2546 }
de78b51a 2547 ret = btrfs_defrag_root(root);
8929ecfa
YZ
2548 if (ret)
2549 goto out;
de78b51a 2550 ret = btrfs_defrag_root(root->fs_info->extent_root);
f46b5a66
CH
2551 break;
2552 case S_IFREG:
e441d54d
CM
2553 if (!(file->f_mode & FMODE_WRITE)) {
2554 ret = -EINVAL;
2555 goto out;
2556 }
1e701a32
CM
2557
2558 range = kzalloc(sizeof(*range), GFP_KERNEL);
2559 if (!range) {
2560 ret = -ENOMEM;
2561 goto out;
2562 }
2563
2564 if (argp) {
2565 if (copy_from_user(range, argp,
2566 sizeof(*range))) {
2567 ret = -EFAULT;
2568 kfree(range);
683be16e 2569 goto out;
1e701a32
CM
2570 }
2571 /* compression requires us to start the IO */
2572 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2573 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2574 range->extent_thresh = (u32)-1;
2575 }
2576 } else {
2577 /* the rest are all set to zero by kzalloc */
2578 range->len = (u64)-1;
2579 }
496ad9aa 2580 ret = btrfs_defrag_file(file_inode(file), file,
4cb5300b
CM
2581 range, 0, 0);
2582 if (ret > 0)
2583 ret = 0;
1e701a32 2584 kfree(range);
f46b5a66 2585 break;
8929ecfa
YZ
2586 default:
2587 ret = -EINVAL;
f46b5a66 2588 }
e441d54d 2589out:
25122d15 2590 mnt_drop_write_file(file);
e441d54d 2591 return ret;
f46b5a66
CH
2592}
2593
b2950863 2594static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
f46b5a66
CH
2595{
2596 struct btrfs_ioctl_vol_args *vol_args;
2597 int ret;
2598
e441d54d
CM
2599 if (!capable(CAP_SYS_ADMIN))
2600 return -EPERM;
2601
5ac00add
SB
2602 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2603 1)) {
e57138b3 2604 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
c9e9f97b
ID
2605 }
2606
5ac00add 2607 mutex_lock(&root->fs_info->volume_mutex);
dae7b665 2608 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
2609 if (IS_ERR(vol_args)) {
2610 ret = PTR_ERR(vol_args);
2611 goto out;
2612 }
f46b5a66 2613
5516e595 2614 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66
CH
2615 ret = btrfs_init_new_device(root, vol_args->name);
2616
43d20761
AJ
2617 if (!ret)
2618 btrfs_info(root->fs_info, "disk added %s",vol_args->name);
2619
f46b5a66 2620 kfree(vol_args);
c9e9f97b
ID
2621out:
2622 mutex_unlock(&root->fs_info->volume_mutex);
5ac00add 2623 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
f46b5a66
CH
2624 return ret;
2625}
2626
da24927b 2627static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
f46b5a66 2628{
496ad9aa 2629 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
f46b5a66
CH
2630 struct btrfs_ioctl_vol_args *vol_args;
2631 int ret;
2632
e441d54d
CM
2633 if (!capable(CAP_SYS_ADMIN))
2634 return -EPERM;
2635
da24927b
MX
2636 ret = mnt_want_write_file(file);
2637 if (ret)
2638 return ret;
c146afad 2639
dae7b665 2640 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
2641 if (IS_ERR(vol_args)) {
2642 ret = PTR_ERR(vol_args);
c47ca32d 2643 goto err_drop;
c9e9f97b 2644 }
f46b5a66 2645
5516e595 2646 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66 2647
183860f6
AJ
2648 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2649 1)) {
2650 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2651 goto out;
2652 }
2653
2654 mutex_lock(&root->fs_info->volume_mutex);
2655 ret = btrfs_rm_device(root, vol_args->name);
c9e9f97b 2656 mutex_unlock(&root->fs_info->volume_mutex);
5ac00add 2657 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
183860f6 2658
ec95d491
AJ
2659 if (!ret)
2660 btrfs_info(root->fs_info, "disk deleted %s",vol_args->name);
2661
183860f6
AJ
2662out:
2663 kfree(vol_args);
c47ca32d 2664err_drop:
4ac20c70 2665 mnt_drop_write_file(file);
f46b5a66
CH
2666 return ret;
2667}
2668
475f6387
JS
2669static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2670{
027ed2f0 2671 struct btrfs_ioctl_fs_info_args *fi_args;
475f6387
JS
2672 struct btrfs_device *device;
2673 struct btrfs_device *next;
2674 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
027ed2f0 2675 int ret = 0;
475f6387 2676
027ed2f0
LZ
2677 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2678 if (!fi_args)
2679 return -ENOMEM;
2680
f7171750 2681 mutex_lock(&fs_devices->device_list_mutex);
027ed2f0
LZ
2682 fi_args->num_devices = fs_devices->num_devices;
2683 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
475f6387 2684
475f6387 2685 list_for_each_entry_safe(device, next, &fs_devices->devices, dev_list) {
027ed2f0
LZ
2686 if (device->devid > fi_args->max_id)
2687 fi_args->max_id = device->devid;
475f6387
JS
2688 }
2689 mutex_unlock(&fs_devices->device_list_mutex);
2690
80a773fb
DS
2691 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2692 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2693 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2694
027ed2f0
LZ
2695 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2696 ret = -EFAULT;
475f6387 2697
027ed2f0
LZ
2698 kfree(fi_args);
2699 return ret;
475f6387
JS
2700}
2701
2702static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2703{
2704 struct btrfs_ioctl_dev_info_args *di_args;
2705 struct btrfs_device *dev;
2706 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2707 int ret = 0;
2708 char *s_uuid = NULL;
475f6387 2709
475f6387
JS
2710 di_args = memdup_user(arg, sizeof(*di_args));
2711 if (IS_ERR(di_args))
2712 return PTR_ERR(di_args);
2713
dd5f9615 2714 if (!btrfs_is_empty_uuid(di_args->uuid))
475f6387
JS
2715 s_uuid = di_args->uuid;
2716
2717 mutex_lock(&fs_devices->device_list_mutex);
aa1b8cd4 2718 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
475f6387
JS
2719
2720 if (!dev) {
2721 ret = -ENODEV;
2722 goto out;
2723 }
2724
2725 di_args->devid = dev->devid;
7cc8e58d
MX
2726 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2727 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
475f6387 2728 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
a27202fb 2729 if (dev->name) {
606686ee
JB
2730 struct rcu_string *name;
2731
2732 rcu_read_lock();
2733 name = rcu_dereference(dev->name);
2734 strncpy(di_args->path, name->str, sizeof(di_args->path));
2735 rcu_read_unlock();
a27202fb
JM
2736 di_args->path[sizeof(di_args->path) - 1] = 0;
2737 } else {
99ba55ad 2738 di_args->path[0] = '\0';
a27202fb 2739 }
475f6387
JS
2740
2741out:
55793c0d 2742 mutex_unlock(&fs_devices->device_list_mutex);
475f6387
JS
2743 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2744 ret = -EFAULT;
2745
2746 kfree(di_args);
2747 return ret;
2748}
2749
416161db
MF
2750static struct page *extent_same_get_page(struct inode *inode, u64 off)
2751{
2752 struct page *page;
2753 pgoff_t index;
2754 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2755
2756 index = off >> PAGE_CACHE_SHIFT;
2757
2758 page = grab_cache_page(inode->i_mapping, index);
2759 if (!page)
2760 return NULL;
2761
2762 if (!PageUptodate(page)) {
2763 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2764 0))
2765 return NULL;
2766 lock_page(page);
2767 if (!PageUptodate(page)) {
2768 unlock_page(page);
2769 page_cache_release(page);
2770 return NULL;
2771 }
2772 }
2773 unlock_page(page);
2774
2775 return page;
2776}
2777
77fe20dc
MF
2778static inline void lock_extent_range(struct inode *inode, u64 off, u64 len)
2779{
2780 /* do any pending delalloc/csum calc on src, one way or
2781 another, and lock file content */
2782 while (1) {
2783 struct btrfs_ordered_extent *ordered;
2784 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2785 ordered = btrfs_lookup_first_ordered_extent(inode,
2786 off + len - 1);
ff5df9b8
FM
2787 if ((!ordered ||
2788 ordered->file_offset + ordered->len <= off ||
2789 ordered->file_offset >= off + len) &&
77fe20dc 2790 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
ff5df9b8
FM
2791 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2792 if (ordered)
2793 btrfs_put_ordered_extent(ordered);
77fe20dc 2794 break;
ff5df9b8 2795 }
77fe20dc
MF
2796 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2797 if (ordered)
2798 btrfs_put_ordered_extent(ordered);
2799 btrfs_wait_ordered_range(inode, off, len);
2800 }
2801}
2802
416161db
MF
2803static void btrfs_double_unlock(struct inode *inode1, u64 loff1,
2804 struct inode *inode2, u64 loff2, u64 len)
2805{
2806 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2807 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2808
2809 mutex_unlock(&inode1->i_mutex);
2810 mutex_unlock(&inode2->i_mutex);
2811}
2812
2813static void btrfs_double_lock(struct inode *inode1, u64 loff1,
2814 struct inode *inode2, u64 loff2, u64 len)
2815{
2816 if (inode1 < inode2) {
2817 swap(inode1, inode2);
2818 swap(loff1, loff2);
2819 }
2820
2821 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
2822 lock_extent_range(inode1, loff1, len);
2823 if (inode1 != inode2) {
2824 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
2825 lock_extent_range(inode2, loff2, len);
2826 }
2827}
2828
2829static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
2830 u64 dst_loff, u64 len)
2831{
2832 int ret = 0;
2833 struct page *src_page, *dst_page;
2834 unsigned int cmp_len = PAGE_CACHE_SIZE;
2835 void *addr, *dst_addr;
2836
2837 while (len) {
2838 if (len < PAGE_CACHE_SIZE)
2839 cmp_len = len;
2840
2841 src_page = extent_same_get_page(src, loff);
2842 if (!src_page)
2843 return -EINVAL;
2844 dst_page = extent_same_get_page(dst, dst_loff);
2845 if (!dst_page) {
2846 page_cache_release(src_page);
2847 return -EINVAL;
2848 }
2849 addr = kmap_atomic(src_page);
2850 dst_addr = kmap_atomic(dst_page);
2851
2852 flush_dcache_page(src_page);
2853 flush_dcache_page(dst_page);
2854
2855 if (memcmp(addr, dst_addr, cmp_len))
2856 ret = BTRFS_SAME_DATA_DIFFERS;
2857
2858 kunmap_atomic(addr);
2859 kunmap_atomic(dst_addr);
2860 page_cache_release(src_page);
2861 page_cache_release(dst_page);
2862
2863 if (ret)
2864 break;
2865
2866 loff += cmp_len;
2867 dst_loff += cmp_len;
2868 len -= cmp_len;
2869 }
2870
2871 return ret;
2872}
2873
2874static int extent_same_check_offsets(struct inode *inode, u64 off, u64 len)
2875{
2876 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2877
2878 if (off + len > inode->i_size || off + len < off)
2879 return -EINVAL;
2880 /* Check that we are block aligned - btrfs_clone() requires this */
2881 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2882 return -EINVAL;
2883
2884 return 0;
2885}
2886
2887static int btrfs_extent_same(struct inode *src, u64 loff, u64 len,
2888 struct inode *dst, u64 dst_loff)
2889{
2890 int ret;
2891
2892 /*
2893 * btrfs_clone() can't handle extents in the same file
2894 * yet. Once that works, we can drop this check and replace it
2895 * with a check for the same inode, but overlapping extents.
2896 */
2897 if (src == dst)
2898 return -EINVAL;
2899
2900 btrfs_double_lock(src, loff, dst, dst_loff, len);
2901
2902 ret = extent_same_check_offsets(src, loff, len);
2903 if (ret)
2904 goto out_unlock;
2905
2906 ret = extent_same_check_offsets(dst, dst_loff, len);
2907 if (ret)
2908 goto out_unlock;
2909
2910 /* don't make the dst file partly checksummed */
2911 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2912 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2913 ret = -EINVAL;
2914 goto out_unlock;
2915 }
2916
2917 ret = btrfs_cmp_data(src, loff, dst, dst_loff, len);
2918 if (ret == 0)
2919 ret = btrfs_clone(src, dst, loff, len, len, dst_loff);
2920
2921out_unlock:
2922 btrfs_double_unlock(src, loff, dst, dst_loff, len);
2923
2924 return ret;
2925}
2926
2927#define BTRFS_MAX_DEDUPE_LEN (16 * 1024 * 1024)
2928
2929static long btrfs_ioctl_file_extent_same(struct file *file,
1c1c8747 2930 struct btrfs_ioctl_same_args __user *argp)
416161db 2931{
cbf8b8ca
MF
2932 struct btrfs_ioctl_same_args *same;
2933 struct btrfs_ioctl_same_extent_info *info;
1c1c8747 2934 struct inode *src = file_inode(file);
416161db
MF
2935 u64 off;
2936 u64 len;
2937 int i;
2938 int ret;
cbf8b8ca 2939 unsigned long size;
416161db
MF
2940 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
2941 bool is_admin = capable(CAP_SYS_ADMIN);
1c1c8747 2942 u16 count;
416161db
MF
2943
2944 if (!(file->f_mode & FMODE_READ))
2945 return -EINVAL;
2946
2947 ret = mnt_want_write_file(file);
2948 if (ret)
2949 return ret;
2950
1c1c8747 2951 if (get_user(count, &argp->dest_count)) {
416161db
MF
2952 ret = -EFAULT;
2953 goto out;
2954 }
2955
1c1c8747 2956 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
cbf8b8ca 2957
1c1c8747 2958 same = memdup_user(argp, size);
cbf8b8ca 2959
229eed43
GB
2960 if (IS_ERR(same)) {
2961 ret = PTR_ERR(same);
cbf8b8ca
MF
2962 goto out;
2963 }
2964
2965 off = same->logical_offset;
2966 len = same->length;
416161db
MF
2967
2968 /*
2969 * Limit the total length we will dedupe for each operation.
2970 * This is intended to bound the total time spent in this
2971 * ioctl to something sane.
2972 */
2973 if (len > BTRFS_MAX_DEDUPE_LEN)
2974 len = BTRFS_MAX_DEDUPE_LEN;
2975
2976 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
2977 /*
2978 * Btrfs does not support blocksize < page_size. As a
2979 * result, btrfs_cmp_data() won't correctly handle
2980 * this situation without an update.
2981 */
2982 ret = -EINVAL;
2983 goto out;
2984 }
2985
2986 ret = -EISDIR;
2987 if (S_ISDIR(src->i_mode))
2988 goto out;
2989
2990 ret = -EACCES;
2991 if (!S_ISREG(src->i_mode))
2992 goto out;
2993
cbf8b8ca 2994 /* pre-format output fields to sane values */
1c1c8747 2995 for (i = 0; i < count; i++) {
cbf8b8ca
MF
2996 same->info[i].bytes_deduped = 0ULL;
2997 same->info[i].status = 0;
2998 }
416161db 2999
1c1c8747
AV
3000 for (i = 0, info = same->info; i < count; i++, info++) {
3001 struct inode *dst;
3002 struct fd dst_file = fdget(info->fd);
3003 if (!dst_file.file) {
cbf8b8ca 3004 info->status = -EBADF;
1c1c8747 3005 continue;
416161db 3006 }
1c1c8747 3007 dst = file_inode(dst_file.file);
416161db 3008
1c1c8747 3009 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
cbf8b8ca 3010 info->status = -EINVAL;
1c1c8747
AV
3011 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3012 info->status = -EXDEV;
3013 } else if (S_ISDIR(dst->i_mode)) {
cbf8b8ca 3014 info->status = -EISDIR;
1c1c8747 3015 } else if (!S_ISREG(dst->i_mode)) {
cbf8b8ca 3016 info->status = -EACCES;
1c1c8747
AV
3017 } else {
3018 info->status = btrfs_extent_same(src, off, len, dst,
3019 info->logical_offset);
3020 if (info->status == 0)
3021 info->bytes_deduped += len;
416161db 3022 }
1c1c8747 3023 fdput(dst_file);
416161db
MF
3024 }
3025
cbf8b8ca
MF
3026 ret = copy_to_user(argp, same, size);
3027 if (ret)
3028 ret = -EFAULT;
3029
416161db
MF
3030out:
3031 mnt_drop_write_file(file);
3032 return ret;
3033}
3034
fcebe456
JB
3035/* Helper to check and see if this root currently has a ref on the given disk
3036 * bytenr. If it does then we need to update the quota for this root. This
3037 * doesn't do anything if quotas aren't enabled.
3038 */
3039static int check_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3040 u64 disko)
3041{
3284da7b 3042 struct seq_list tree_mod_seq_elem = SEQ_LIST_INIT(tree_mod_seq_elem);
fcebe456
JB
3043 struct ulist *roots;
3044 struct ulist_iterator uiter;
3045 struct ulist_node *root_node = NULL;
3046 int ret;
3047
3048 if (!root->fs_info->quota_enabled)
3049 return 1;
3050
3051 btrfs_get_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3052 ret = btrfs_find_all_roots(trans, root->fs_info, disko,
3053 tree_mod_seq_elem.seq, &roots);
3054 if (ret < 0)
3055 goto out;
3056 ret = 0;
3057 ULIST_ITER_INIT(&uiter);
3058 while ((root_node = ulist_next(roots, &uiter))) {
3059 if (root_node->val == root->objectid) {
3060 ret = 1;
3061 break;
3062 }
3063 }
3064 ulist_free(roots);
3065out:
3066 btrfs_put_tree_mod_seq(root->fs_info, &tree_mod_seq_elem);
3067 return ret;
3068}
3069
f82a9901
FM
3070static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3071 struct inode *inode,
3072 u64 endoff,
3073 const u64 destoff,
3074 const u64 olen)
3075{
3076 struct btrfs_root *root = BTRFS_I(inode)->root;
3077 int ret;
3078
3079 inode_inc_iversion(inode);
3080 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3081 /*
3082 * We round up to the block size at eof when determining which
3083 * extents to clone above, but shouldn't round up the file size.
3084 */
3085 if (endoff > destoff + olen)
3086 endoff = destoff + olen;
3087 if (endoff > inode->i_size)
3088 btrfs_i_size_write(inode, endoff);
3089
3090 ret = btrfs_update_inode(trans, root, inode);
3091 if (ret) {
3092 btrfs_abort_transaction(trans, root, ret);
3093 btrfs_end_transaction(trans, root);
3094 goto out;
3095 }
3096 ret = btrfs_end_transaction(trans, root);
3097out:
3098 return ret;
3099}
3100
7ffbb598
FM
3101static void clone_update_extent_map(struct inode *inode,
3102 const struct btrfs_trans_handle *trans,
3103 const struct btrfs_path *path,
7ffbb598
FM
3104 const u64 hole_offset,
3105 const u64 hole_len)
3106{
3107 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3108 struct extent_map *em;
3109 int ret;
3110
3111 em = alloc_extent_map();
3112 if (!em) {
3113 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3114 &BTRFS_I(inode)->runtime_flags);
3115 return;
3116 }
3117
14f59796
FM
3118 if (path) {
3119 struct btrfs_file_extent_item *fi;
3120
3121 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3122 struct btrfs_file_extent_item);
7ffbb598
FM
3123 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3124 em->generation = -1;
3125 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3126 BTRFS_FILE_EXTENT_INLINE)
3127 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3128 &BTRFS_I(inode)->runtime_flags);
3129 } else {
3130 em->start = hole_offset;
3131 em->len = hole_len;
3132 em->ram_bytes = em->len;
3133 em->orig_start = hole_offset;
3134 em->block_start = EXTENT_MAP_HOLE;
3135 em->block_len = 0;
3136 em->orig_block_len = 0;
3137 em->compress_type = BTRFS_COMPRESS_NONE;
3138 em->generation = trans->transid;
3139 }
3140
3141 while (1) {
3142 write_lock(&em_tree->lock);
3143 ret = add_extent_mapping(em_tree, em, 1);
3144 write_unlock(&em_tree->lock);
3145 if (ret != -EEXIST) {
3146 free_extent_map(em);
3147 break;
3148 }
3149 btrfs_drop_extent_cache(inode, em->start,
3150 em->start + em->len - 1, 0);
3151 }
3152
ee39b432 3153 if (ret)
7ffbb598
FM
3154 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3155 &BTRFS_I(inode)->runtime_flags);
3156}
3157
32b7c687
MF
3158/**
3159 * btrfs_clone() - clone a range from inode file to another
3160 *
3161 * @src: Inode to clone from
3162 * @inode: Inode to clone to
3163 * @off: Offset within source to start clone from
3164 * @olen: Original length, passed by user, of range to clone
3165 * @olen_aligned: Block-aligned value of olen, extent_same uses
3166 * identical values here
3167 * @destoff: Offset within @inode to start clone
3168 */
3169static int btrfs_clone(struct inode *src, struct inode *inode,
f82a9901
FM
3170 const u64 off, const u64 olen, const u64 olen_aligned,
3171 const u64 destoff)
f46b5a66 3172{
f46b5a66 3173 struct btrfs_root *root = BTRFS_I(inode)->root;
32b7c687 3174 struct btrfs_path *path = NULL;
f46b5a66 3175 struct extent_buffer *leaf;
32b7c687
MF
3176 struct btrfs_trans_handle *trans;
3177 char *buf = NULL;
ae01a0ab 3178 struct btrfs_key key;
f46b5a66
CH
3179 u32 nritems;
3180 int slot;
ae01a0ab 3181 int ret;
fcebe456 3182 int no_quota;
f82a9901 3183 const u64 len = olen_aligned;
fcebe456 3184 u64 last_disko = 0;
f82a9901 3185 u64 last_dest_end = destoff;
ae01a0ab
YZ
3186
3187 ret = -ENOMEM;
707e8a07 3188 buf = vmalloc(root->nodesize);
ae01a0ab 3189 if (!buf)
32b7c687 3190 return ret;
ae01a0ab
YZ
3191
3192 path = btrfs_alloc_path();
3193 if (!path) {
3194 vfree(buf);
32b7c687 3195 return ret;
d525e8ab
LZ
3196 }
3197
32b7c687 3198 path->reada = 2;
c5c9cd4d 3199 /* clone data */
33345d01 3200 key.objectid = btrfs_ino(src);
ae01a0ab 3201 key.type = BTRFS_EXTENT_DATA_KEY;
2c463823 3202 key.offset = off;
f46b5a66
CH
3203
3204 while (1) {
3205 /*
3206 * note the key will change type as we walk through the
3207 * tree.
3208 */
e4355f34 3209 path->leave_spinning = 1;
362a20c5
DS
3210 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3211 0, 0);
f46b5a66
CH
3212 if (ret < 0)
3213 goto out;
2c463823
FM
3214 /*
3215 * First search, if no extent item that starts at offset off was
3216 * found but the previous item is an extent item, it's possible
3217 * it might overlap our target range, therefore process it.
3218 */
3219 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3220 btrfs_item_key_to_cpu(path->nodes[0], &key,
3221 path->slots[0] - 1);
3222 if (key.type == BTRFS_EXTENT_DATA_KEY)
3223 path->slots[0]--;
3224 }
f46b5a66 3225
ae01a0ab 3226 nritems = btrfs_header_nritems(path->nodes[0]);
e4355f34 3227process_slot:
fcebe456 3228 no_quota = 1;
ae01a0ab 3229 if (path->slots[0] >= nritems) {
362a20c5 3230 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
f46b5a66
CH
3231 if (ret < 0)
3232 goto out;
3233 if (ret > 0)
3234 break;
ae01a0ab 3235 nritems = btrfs_header_nritems(path->nodes[0]);
f46b5a66
CH
3236 }
3237 leaf = path->nodes[0];
3238 slot = path->slots[0];
f46b5a66 3239
ae01a0ab 3240 btrfs_item_key_to_cpu(leaf, &key, slot);
962a298f 3241 if (key.type > BTRFS_EXTENT_DATA_KEY ||
33345d01 3242 key.objectid != btrfs_ino(src))
f46b5a66
CH
3243 break;
3244
962a298f 3245 if (key.type == BTRFS_EXTENT_DATA_KEY) {
c5c9cd4d
SW
3246 struct btrfs_file_extent_item *extent;
3247 int type;
31840ae1
ZY
3248 u32 size;
3249 struct btrfs_key new_key;
c5c9cd4d
SW
3250 u64 disko = 0, diskl = 0;
3251 u64 datao = 0, datal = 0;
3252 u8 comp;
f82a9901 3253 u64 drop_start;
31840ae1 3254
c5c9cd4d
SW
3255 extent = btrfs_item_ptr(leaf, slot,
3256 struct btrfs_file_extent_item);
3257 comp = btrfs_file_extent_compression(leaf, extent);
3258 type = btrfs_file_extent_type(leaf, extent);
c8a894d7
CM
3259 if (type == BTRFS_FILE_EXTENT_REG ||
3260 type == BTRFS_FILE_EXTENT_PREALLOC) {
d397712b
CM
3261 disko = btrfs_file_extent_disk_bytenr(leaf,
3262 extent);
3263 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3264 extent);
c5c9cd4d 3265 datao = btrfs_file_extent_offset(leaf, extent);
d397712b
CM
3266 datal = btrfs_file_extent_num_bytes(leaf,
3267 extent);
c5c9cd4d
SW
3268 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3269 /* take upper bound, may be compressed */
3270 datal = btrfs_file_extent_ram_bytes(leaf,
3271 extent);
3272 }
31840ae1 3273
2c463823
FM
3274 /*
3275 * The first search might have left us at an extent
3276 * item that ends before our target range's start, can
3277 * happen if we have holes and NO_HOLES feature enabled.
3278 */
3279 if (key.offset + datal <= off) {
e4355f34
FDBM
3280 path->slots[0]++;
3281 goto process_slot;
2c463823
FM
3282 } else if (key.offset >= off + len) {
3283 break;
e4355f34
FDBM
3284 }
3285
3286 size = btrfs_item_size_nr(leaf, slot);
3287 read_extent_buffer(leaf, buf,
3288 btrfs_item_ptr_offset(leaf, slot),
3289 size);
3290
3291 btrfs_release_path(path);
3292 path->leave_spinning = 0;
c5c9cd4d 3293
31840ae1 3294 memcpy(&new_key, &key, sizeof(new_key));
33345d01 3295 new_key.objectid = btrfs_ino(inode);
4d728ec7
LZ
3296 if (off <= key.offset)
3297 new_key.offset = key.offset + destoff - off;
3298 else
3299 new_key.offset = destoff;
31840ae1 3300
f82a9901
FM
3301 /*
3302 * Deal with a hole that doesn't have an extent item
3303 * that represents it (NO_HOLES feature enabled).
3304 * This hole is either in the middle of the cloning
3305 * range or at the beginning (fully overlaps it or
3306 * partially overlaps it).
3307 */
3308 if (new_key.offset != last_dest_end)
3309 drop_start = last_dest_end;
3310 else
3311 drop_start = new_key.offset;
3312
b6f3409b
SW
3313 /*
3314 * 1 - adjusting old extent (we may have to split it)
3315 * 1 - add new extent
3316 * 1 - inode update
3317 */
3318 trans = btrfs_start_transaction(root, 3);
a22285a6
YZ
3319 if (IS_ERR(trans)) {
3320 ret = PTR_ERR(trans);
3321 goto out;
3322 }
3323
c8a894d7
CM
3324 if (type == BTRFS_FILE_EXTENT_REG ||
3325 type == BTRFS_FILE_EXTENT_PREALLOC) {
d72c0842
LZ
3326 /*
3327 * a | --- range to clone ---| b
3328 * | ------------- extent ------------- |
3329 */
3330
93915584 3331 /* subtract range b */
d72c0842
LZ
3332 if (key.offset + datal > off + len)
3333 datal = off + len - key.offset;
3334
93915584 3335 /* subtract range a */
a22285a6
YZ
3336 if (off > key.offset) {
3337 datao += off - key.offset;
3338 datal -= off - key.offset;
3339 }
3340
5dc562c5 3341 ret = btrfs_drop_extents(trans, root, inode,
f82a9901 3342 drop_start,
a22285a6 3343 new_key.offset + datal,
2671485d 3344 1);
79787eaa 3345 if (ret) {
3f9e3df8 3346 if (ret != -EOPNOTSUPP)
00fdf13a
LB
3347 btrfs_abort_transaction(trans,
3348 root, ret);
79787eaa
JM
3349 btrfs_end_transaction(trans, root);
3350 goto out;
3351 }
a22285a6 3352
c5c9cd4d
SW
3353 ret = btrfs_insert_empty_item(trans, root, path,
3354 &new_key, size);
79787eaa
JM
3355 if (ret) {
3356 btrfs_abort_transaction(trans, root,
3357 ret);
3358 btrfs_end_transaction(trans, root);
3359 goto out;
3360 }
c5c9cd4d
SW
3361
3362 leaf = path->nodes[0];
3363 slot = path->slots[0];
3364 write_extent_buffer(leaf, buf,
31840ae1
ZY
3365 btrfs_item_ptr_offset(leaf, slot),
3366 size);
ae01a0ab 3367
c5c9cd4d 3368 extent = btrfs_item_ptr(leaf, slot,
f46b5a66 3369 struct btrfs_file_extent_item);
c5c9cd4d 3370
c5c9cd4d
SW
3371 /* disko == 0 means it's a hole */
3372 if (!disko)
3373 datao = 0;
c5c9cd4d
SW
3374
3375 btrfs_set_file_extent_offset(leaf, extent,
3376 datao);
3377 btrfs_set_file_extent_num_bytes(leaf, extent,
3378 datal);
fcebe456
JB
3379
3380 /*
3381 * We need to look up the roots that point at
3382 * this bytenr and see if the new root does. If
3383 * it does not we need to make sure we update
3384 * quotas appropriately.
3385 */
3386 if (disko && root != BTRFS_I(src)->root &&
3387 disko != last_disko) {
3388 no_quota = check_ref(trans, root,
3389 disko);
3390 if (no_quota < 0) {
3391 btrfs_abort_transaction(trans,
3392 root,
3393 ret);
3394 btrfs_end_transaction(trans,
3395 root);
3396 ret = no_quota;
3397 goto out;
3398 }
3399 }
3400
c5c9cd4d
SW
3401 if (disko) {
3402 inode_add_bytes(inode, datal);
ae01a0ab 3403 ret = btrfs_inc_extent_ref(trans, root,
5d4f98a2
YZ
3404 disko, diskl, 0,
3405 root->root_key.objectid,
33345d01 3406 btrfs_ino(inode),
66d7e7f0 3407 new_key.offset - datao,
fcebe456 3408 no_quota);
79787eaa
JM
3409 if (ret) {
3410 btrfs_abort_transaction(trans,
3411 root,
3412 ret);
3413 btrfs_end_transaction(trans,
3414 root);
3415 goto out;
3416
3417 }
f46b5a66 3418 }
c5c9cd4d
SW
3419 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3420 u64 skip = 0;
3421 u64 trim = 0;
d3ecfcdf
LB
3422 u64 aligned_end = 0;
3423
c5c9cd4d
SW
3424 if (off > key.offset) {
3425 skip = off - key.offset;
3426 new_key.offset += skip;
3427 }
d397712b 3428
aa42ffd9
LB
3429 if (key.offset + datal > off + len)
3430 trim = key.offset + datal - (off + len);
d397712b 3431
c5c9cd4d 3432 if (comp && (skip || trim)) {
c5c9cd4d 3433 ret = -EINVAL;
a22285a6 3434 btrfs_end_transaction(trans, root);
c5c9cd4d
SW
3435 goto out;
3436 }
3437 size -= skip + trim;
3438 datal -= skip + trim;
a22285a6 3439
d3ecfcdf
LB
3440 aligned_end = ALIGN(new_key.offset + datal,
3441 root->sectorsize);
5dc562c5 3442 ret = btrfs_drop_extents(trans, root, inode,
f82a9901 3443 drop_start,
d3ecfcdf 3444 aligned_end,
2671485d 3445 1);
79787eaa 3446 if (ret) {
3f9e3df8 3447 if (ret != -EOPNOTSUPP)
3a29bc09
CM
3448 btrfs_abort_transaction(trans,
3449 root, ret);
79787eaa
JM
3450 btrfs_end_transaction(trans, root);
3451 goto out;
3452 }
a22285a6 3453
c5c9cd4d
SW
3454 ret = btrfs_insert_empty_item(trans, root, path,
3455 &new_key, size);
79787eaa
JM
3456 if (ret) {
3457 btrfs_abort_transaction(trans, root,
3458 ret);
3459 btrfs_end_transaction(trans, root);
3460 goto out;
3461 }
c5c9cd4d
SW
3462
3463 if (skip) {
d397712b
CM
3464 u32 start =
3465 btrfs_file_extent_calc_inline_size(0);
c5c9cd4d
SW
3466 memmove(buf+start, buf+start+skip,
3467 datal);
3468 }
3469
3470 leaf = path->nodes[0];
3471 slot = path->slots[0];
3472 write_extent_buffer(leaf, buf,
3473 btrfs_item_ptr_offset(leaf, slot),
3474 size);
3475 inode_add_bytes(inode, datal);
f46b5a66 3476 }
c5c9cd4d 3477
7ffbb598
FM
3478 /* If we have an implicit hole (NO_HOLES feature). */
3479 if (drop_start < new_key.offset)
3480 clone_update_extent_map(inode, trans,
14f59796 3481 NULL, drop_start,
7ffbb598
FM
3482 new_key.offset - drop_start);
3483
14f59796 3484 clone_update_extent_map(inode, trans, path, 0, 0);
7ffbb598 3485
c5c9cd4d 3486 btrfs_mark_buffer_dirty(leaf);
b3b4aa74 3487 btrfs_release_path(path);
c5c9cd4d 3488
62e2390e
FM
3489 last_dest_end = ALIGN(new_key.offset + datal,
3490 root->sectorsize);
f82a9901
FM
3491 ret = clone_finish_inode_update(trans, inode,
3492 last_dest_end,
3493 destoff, olen);
3494 if (ret)
79787eaa 3495 goto out;
2c463823
FM
3496 if (new_key.offset + datal >= destoff + len)
3497 break;
a22285a6 3498 }
b3b4aa74 3499 btrfs_release_path(path);
f46b5a66 3500 key.offset++;
f46b5a66 3501 }
f46b5a66 3502 ret = 0;
32b7c687 3503
f82a9901
FM
3504 if (last_dest_end < destoff + len) {
3505 /*
3506 * We have an implicit hole (NO_HOLES feature is enabled) that
3507 * fully or partially overlaps our cloning range at its end.
3508 */
3509 btrfs_release_path(path);
3510
3511 /*
3512 * 1 - remove extent(s)
3513 * 1 - inode update
3514 */
3515 trans = btrfs_start_transaction(root, 2);
3516 if (IS_ERR(trans)) {
3517 ret = PTR_ERR(trans);
3518 goto out;
3519 }
3520 ret = btrfs_drop_extents(trans, root, inode,
3521 last_dest_end, destoff + len, 1);
3522 if (ret) {
3523 if (ret != -EOPNOTSUPP)
3524 btrfs_abort_transaction(trans, root, ret);
3525 btrfs_end_transaction(trans, root);
3526 goto out;
3527 }
14f59796
FM
3528 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3529 destoff + len - last_dest_end);
f82a9901
FM
3530 ret = clone_finish_inode_update(trans, inode, destoff + len,
3531 destoff, olen);
3532 }
3533
f46b5a66 3534out:
32b7c687
MF
3535 btrfs_free_path(path);
3536 vfree(buf);
3537 return ret;
3538}
3539
3540static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3541 u64 off, u64 olen, u64 destoff)
3542{
54563d41 3543 struct inode *inode = file_inode(file);
32b7c687
MF
3544 struct btrfs_root *root = BTRFS_I(inode)->root;
3545 struct fd src_file;
3546 struct inode *src;
3547 int ret;
3548 u64 len = olen;
3549 u64 bs = root->fs_info->sb->s_blocksize;
3550 int same_inode = 0;
3551
3552 /*
3553 * TODO:
3554 * - split compressed inline extents. annoying: we need to
3555 * decompress into destination's address_space (the file offset
3556 * may change, so source mapping won't do), then recompress (or
3557 * otherwise reinsert) a subrange.
00fdf13a
LB
3558 *
3559 * - split destination inode's inline extents. The inline extents can
3560 * be either compressed or non-compressed.
32b7c687
MF
3561 */
3562
3563 /* the destination must be opened for writing */
3564 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3565 return -EINVAL;
3566
3567 if (btrfs_root_readonly(root))
3568 return -EROFS;
3569
3570 ret = mnt_want_write_file(file);
3571 if (ret)
3572 return ret;
3573
3574 src_file = fdget(srcfd);
3575 if (!src_file.file) {
3576 ret = -EBADF;
3577 goto out_drop_write;
3578 }
3579
3580 ret = -EXDEV;
3581 if (src_file.file->f_path.mnt != file->f_path.mnt)
3582 goto out_fput;
3583
3584 src = file_inode(src_file.file);
3585
3586 ret = -EINVAL;
3587 if (src == inode)
3588 same_inode = 1;
3589
3590 /* the src must be open for reading */
3591 if (!(src_file.file->f_mode & FMODE_READ))
3592 goto out_fput;
3593
3594 /* don't make the dst file partly checksummed */
3595 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3596 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3597 goto out_fput;
3598
3599 ret = -EISDIR;
3600 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3601 goto out_fput;
3602
3603 ret = -EXDEV;
3604 if (src->i_sb != inode->i_sb)
3605 goto out_fput;
3606
3607 if (!same_inode) {
3608 if (inode < src) {
3609 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
3610 mutex_lock_nested(&src->i_mutex, I_MUTEX_CHILD);
3611 } else {
3612 mutex_lock_nested(&src->i_mutex, I_MUTEX_PARENT);
3613 mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
3614 }
3615 } else {
3616 mutex_lock(&src->i_mutex);
3617 }
3618
3619 /* determine range to clone */
3620 ret = -EINVAL;
3621 if (off + len > src->i_size || off + len < off)
3622 goto out_unlock;
3623 if (len == 0)
3624 olen = len = src->i_size - off;
3625 /* if we extend to eof, continue to block boundary */
3626 if (off + len == src->i_size)
3627 len = ALIGN(src->i_size, bs) - off;
3628
3629 /* verify the end result is block aligned */
3630 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3631 !IS_ALIGNED(destoff, bs))
3632 goto out_unlock;
3633
3634 /* verify if ranges are overlapped within the same file */
3635 if (same_inode) {
3636 if (destoff + len > off && destoff < off + len)
3637 goto out_unlock;
3638 }
3639
3640 if (destoff > inode->i_size) {
3641 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3642 if (ret)
3643 goto out_unlock;
3644 }
3645
c125b8bf
FM
3646 /*
3647 * Lock the target range too. Right after we replace the file extent
3648 * items in the fs tree (which now point to the cloned data), we might
3649 * have a worker replace them with extent items relative to a write
3650 * operation that was issued before this clone operation (i.e. confront
3651 * with inode.c:btrfs_finish_ordered_io).
3652 */
3653 if (same_inode) {
3654 u64 lock_start = min_t(u64, off, destoff);
3655 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
32b7c687 3656
c125b8bf
FM
3657 lock_extent_range(src, lock_start, lock_len);
3658 } else {
3659 lock_extent_range(src, off, len);
3660 lock_extent_range(inode, destoff, len);
3661 }
32b7c687
MF
3662
3663 ret = btrfs_clone(src, inode, off, olen, len, destoff);
3664
c125b8bf
FM
3665 if (same_inode) {
3666 u64 lock_start = min_t(u64, off, destoff);
3667 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3668
3669 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3670 } else {
3671 unlock_extent(&BTRFS_I(src)->io_tree, off, off + len - 1);
3672 unlock_extent(&BTRFS_I(inode)->io_tree, destoff,
3673 destoff + len - 1);
3674 }
3675 /*
3676 * Truncate page cache pages so that future reads will see the cloned
3677 * data immediately and not the previous data.
3678 */
3679 truncate_inode_pages_range(&inode->i_data, destoff,
3680 PAGE_CACHE_ALIGN(destoff + len) - 1);
f46b5a66 3681out_unlock:
c57c2b3e
FDBM
3682 if (!same_inode) {
3683 if (inode < src) {
3684 mutex_unlock(&src->i_mutex);
3685 mutex_unlock(&inode->i_mutex);
3686 } else {
3687 mutex_unlock(&inode->i_mutex);
3688 mutex_unlock(&src->i_mutex);
3689 }
3690 } else {
3691 mutex_unlock(&src->i_mutex);
3692 }
f46b5a66 3693out_fput:
2903ff01 3694 fdput(src_file);
ab67b7c1 3695out_drop_write:
2a79f17e 3696 mnt_drop_write_file(file);
f46b5a66
CH
3697 return ret;
3698}
3699
7a865e8a 3700static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
c5c9cd4d
SW
3701{
3702 struct btrfs_ioctl_clone_range_args args;
3703
7a865e8a 3704 if (copy_from_user(&args, argp, sizeof(args)))
c5c9cd4d
SW
3705 return -EFAULT;
3706 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
3707 args.src_length, args.dest_offset);
3708}
3709
f46b5a66
CH
3710/*
3711 * there are many ways the trans_start and trans_end ioctls can lead
3712 * to deadlocks. They should only be used by applications that
3713 * basically own the machine, and have a very in depth understanding
3714 * of all the possible deadlocks and enospc problems.
3715 */
b2950863 3716static long btrfs_ioctl_trans_start(struct file *file)
f46b5a66 3717{
496ad9aa 3718 struct inode *inode = file_inode(file);
f46b5a66
CH
3719 struct btrfs_root *root = BTRFS_I(inode)->root;
3720 struct btrfs_trans_handle *trans;
1ab86aed 3721 int ret;
f46b5a66 3722
1ab86aed 3723 ret = -EPERM;
df5b5520 3724 if (!capable(CAP_SYS_ADMIN))
1ab86aed 3725 goto out;
df5b5520 3726
1ab86aed
SW
3727 ret = -EINPROGRESS;
3728 if (file->private_data)
f46b5a66 3729 goto out;
9ca9ee09 3730
b83cc969
LZ
3731 ret = -EROFS;
3732 if (btrfs_root_readonly(root))
3733 goto out;
3734
a561be71 3735 ret = mnt_want_write_file(file);
c146afad
YZ
3736 if (ret)
3737 goto out;
3738
a4abeea4 3739 atomic_inc(&root->fs_info->open_ioctl_trans);
9ca9ee09 3740
1ab86aed 3741 ret = -ENOMEM;
7a7eaa40 3742 trans = btrfs_start_ioctl_transaction(root);
abd30bb0 3743 if (IS_ERR(trans))
1ab86aed
SW
3744 goto out_drop;
3745
3746 file->private_data = trans;
3747 return 0;
3748
3749out_drop:
a4abeea4 3750 atomic_dec(&root->fs_info->open_ioctl_trans);
2a79f17e 3751 mnt_drop_write_file(file);
f46b5a66 3752out:
f46b5a66
CH
3753 return ret;
3754}
3755
6ef5ed0d
JB
3756static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3757{
496ad9aa 3758 struct inode *inode = file_inode(file);
6ef5ed0d
JB
3759 struct btrfs_root *root = BTRFS_I(inode)->root;
3760 struct btrfs_root *new_root;
3761 struct btrfs_dir_item *di;
3762 struct btrfs_trans_handle *trans;
3763 struct btrfs_path *path;
3764 struct btrfs_key location;
3765 struct btrfs_disk_key disk_key;
6ef5ed0d
JB
3766 u64 objectid = 0;
3767 u64 dir_id;
3c04ce01 3768 int ret;
6ef5ed0d
JB
3769
3770 if (!capable(CAP_SYS_ADMIN))
3771 return -EPERM;
3772
3c04ce01
MX
3773 ret = mnt_want_write_file(file);
3774 if (ret)
3775 return ret;
3776
3777 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3778 ret = -EFAULT;
3779 goto out;
3780 }
6ef5ed0d
JB
3781
3782 if (!objectid)
1cecf579 3783 objectid = BTRFS_FS_TREE_OBJECTID;
6ef5ed0d
JB
3784
3785 location.objectid = objectid;
3786 location.type = BTRFS_ROOT_ITEM_KEY;
3787 location.offset = (u64)-1;
3788
3789 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
3c04ce01
MX
3790 if (IS_ERR(new_root)) {
3791 ret = PTR_ERR(new_root);
3792 goto out;
3793 }
6ef5ed0d 3794
6ef5ed0d 3795 path = btrfs_alloc_path();
3c04ce01
MX
3796 if (!path) {
3797 ret = -ENOMEM;
3798 goto out;
3799 }
6ef5ed0d
JB
3800 path->leave_spinning = 1;
3801
3802 trans = btrfs_start_transaction(root, 1);
98d5dc13 3803 if (IS_ERR(trans)) {
6ef5ed0d 3804 btrfs_free_path(path);
3c04ce01
MX
3805 ret = PTR_ERR(trans);
3806 goto out;
6ef5ed0d
JB
3807 }
3808
6c41761f 3809 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
6ef5ed0d
JB
3810 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
3811 dir_id, "default", 7, 1);
cf1e99a4 3812 if (IS_ERR_OR_NULL(di)) {
6ef5ed0d
JB
3813 btrfs_free_path(path);
3814 btrfs_end_transaction(trans, root);
efe120a0
FH
3815 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
3816 "item, this isn't going to work");
3c04ce01
MX
3817 ret = -ENOENT;
3818 goto out;
6ef5ed0d
JB
3819 }
3820
3821 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3822 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3823 btrfs_mark_buffer_dirty(path->nodes[0]);
3824 btrfs_free_path(path);
3825
2b0ce2c2 3826 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
6ef5ed0d 3827 btrfs_end_transaction(trans, root);
3c04ce01
MX
3828out:
3829 mnt_drop_write_file(file);
3830 return ret;
6ef5ed0d
JB
3831}
3832
5af3e8cc
SB
3833void btrfs_get_block_group_info(struct list_head *groups_list,
3834 struct btrfs_ioctl_space_info *space)
bf5fc093
JB
3835{
3836 struct btrfs_block_group_cache *block_group;
3837
3838 space->total_bytes = 0;
3839 space->used_bytes = 0;
3840 space->flags = 0;
3841 list_for_each_entry(block_group, groups_list, list) {
3842 space->flags = block_group->flags;
3843 space->total_bytes += block_group->key.offset;
3844 space->used_bytes +=
3845 btrfs_block_group_used(&block_group->item);
3846 }
3847}
3848
48a3b636 3849static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
1406e432
JB
3850{
3851 struct btrfs_ioctl_space_args space_args;
3852 struct btrfs_ioctl_space_info space;
3853 struct btrfs_ioctl_space_info *dest;
7fde62bf 3854 struct btrfs_ioctl_space_info *dest_orig;
13f2696f 3855 struct btrfs_ioctl_space_info __user *user_dest;
1406e432 3856 struct btrfs_space_info *info;
bf5fc093
JB
3857 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
3858 BTRFS_BLOCK_GROUP_SYSTEM,
3859 BTRFS_BLOCK_GROUP_METADATA,
3860 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
3861 int num_types = 4;
7fde62bf 3862 int alloc_size;
1406e432 3863 int ret = 0;
51788b1b 3864 u64 slot_count = 0;
bf5fc093 3865 int i, c;
1406e432
JB
3866
3867 if (copy_from_user(&space_args,
3868 (struct btrfs_ioctl_space_args __user *)arg,
3869 sizeof(space_args)))
3870 return -EFAULT;
3871
bf5fc093
JB
3872 for (i = 0; i < num_types; i++) {
3873 struct btrfs_space_info *tmp;
3874
3875 info = NULL;
3876 rcu_read_lock();
3877 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3878 list) {
3879 if (tmp->flags == types[i]) {
3880 info = tmp;
3881 break;
3882 }
3883 }
3884 rcu_read_unlock();
3885
3886 if (!info)
3887 continue;
3888
3889 down_read(&info->groups_sem);
3890 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3891 if (!list_empty(&info->block_groups[c]))
3892 slot_count++;
3893 }
3894 up_read(&info->groups_sem);
3895 }
7fde62bf 3896
36523e95
DS
3897 /*
3898 * Global block reserve, exported as a space_info
3899 */
3900 slot_count++;
3901
7fde62bf
CM
3902 /* space_slots == 0 means they are asking for a count */
3903 if (space_args.space_slots == 0) {
3904 space_args.total_spaces = slot_count;
3905 goto out;
3906 }
bf5fc093 3907
51788b1b 3908 slot_count = min_t(u64, space_args.space_slots, slot_count);
bf5fc093 3909
7fde62bf 3910 alloc_size = sizeof(*dest) * slot_count;
bf5fc093 3911
7fde62bf
CM
3912 /* we generally have at most 6 or so space infos, one for each raid
3913 * level. So, a whole page should be more than enough for everyone
3914 */
3915 if (alloc_size > PAGE_CACHE_SIZE)
3916 return -ENOMEM;
3917
1406e432 3918 space_args.total_spaces = 0;
7fde62bf
CM
3919 dest = kmalloc(alloc_size, GFP_NOFS);
3920 if (!dest)
3921 return -ENOMEM;
3922 dest_orig = dest;
1406e432 3923
7fde62bf 3924 /* now we have a buffer to copy into */
bf5fc093
JB
3925 for (i = 0; i < num_types; i++) {
3926 struct btrfs_space_info *tmp;
3927
51788b1b
DR
3928 if (!slot_count)
3929 break;
3930
bf5fc093
JB
3931 info = NULL;
3932 rcu_read_lock();
3933 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
3934 list) {
3935 if (tmp->flags == types[i]) {
3936 info = tmp;
3937 break;
3938 }
3939 }
3940 rcu_read_unlock();
7fde62bf 3941
bf5fc093
JB
3942 if (!info)
3943 continue;
3944 down_read(&info->groups_sem);
3945 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3946 if (!list_empty(&info->block_groups[c])) {
5af3e8cc
SB
3947 btrfs_get_block_group_info(
3948 &info->block_groups[c], &space);
bf5fc093
JB
3949 memcpy(dest, &space, sizeof(space));
3950 dest++;
3951 space_args.total_spaces++;
51788b1b 3952 slot_count--;
bf5fc093 3953 }
51788b1b
DR
3954 if (!slot_count)
3955 break;
bf5fc093
JB
3956 }
3957 up_read(&info->groups_sem);
1406e432 3958 }
1406e432 3959
36523e95
DS
3960 /*
3961 * Add global block reserve
3962 */
3963 if (slot_count) {
3964 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
3965
3966 spin_lock(&block_rsv->lock);
3967 space.total_bytes = block_rsv->size;
3968 space.used_bytes = block_rsv->size - block_rsv->reserved;
3969 spin_unlock(&block_rsv->lock);
3970 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3971 memcpy(dest, &space, sizeof(space));
3972 space_args.total_spaces++;
3973 }
3974
2eec6c81 3975 user_dest = (struct btrfs_ioctl_space_info __user *)
7fde62bf
CM
3976 (arg + sizeof(struct btrfs_ioctl_space_args));
3977
3978 if (copy_to_user(user_dest, dest_orig, alloc_size))
3979 ret = -EFAULT;
3980
3981 kfree(dest_orig);
3982out:
3983 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
1406e432
JB
3984 ret = -EFAULT;
3985
3986 return ret;
3987}
3988
f46b5a66
CH
3989/*
3990 * there are many ways the trans_start and trans_end ioctls can lead
3991 * to deadlocks. They should only be used by applications that
3992 * basically own the machine, and have a very in depth understanding
3993 * of all the possible deadlocks and enospc problems.
3994 */
3995long btrfs_ioctl_trans_end(struct file *file)
3996{
496ad9aa 3997 struct inode *inode = file_inode(file);
f46b5a66
CH
3998 struct btrfs_root *root = BTRFS_I(inode)->root;
3999 struct btrfs_trans_handle *trans;
f46b5a66 4000
f46b5a66 4001 trans = file->private_data;
1ab86aed
SW
4002 if (!trans)
4003 return -EINVAL;
b214107e 4004 file->private_data = NULL;
9ca9ee09 4005
1ab86aed
SW
4006 btrfs_end_transaction(trans, root);
4007
a4abeea4 4008 atomic_dec(&root->fs_info->open_ioctl_trans);
9ca9ee09 4009
2a79f17e 4010 mnt_drop_write_file(file);
1ab86aed 4011 return 0;
f46b5a66
CH
4012}
4013
9a8c28be
MX
4014static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4015 void __user *argp)
46204592 4016{
46204592
SW
4017 struct btrfs_trans_handle *trans;
4018 u64 transid;
db5b493a 4019 int ret;
46204592 4020
d4edf39b 4021 trans = btrfs_attach_transaction_barrier(root);
ff7c1d33
MX
4022 if (IS_ERR(trans)) {
4023 if (PTR_ERR(trans) != -ENOENT)
4024 return PTR_ERR(trans);
4025
4026 /* No running transaction, don't bother */
4027 transid = root->fs_info->last_trans_committed;
4028 goto out;
4029 }
46204592 4030 transid = trans->transid;
db5b493a 4031 ret = btrfs_commit_transaction_async(trans, root, 0);
8b2b2d3c
TI
4032 if (ret) {
4033 btrfs_end_transaction(trans, root);
db5b493a 4034 return ret;
8b2b2d3c 4035 }
ff7c1d33 4036out:
46204592
SW
4037 if (argp)
4038 if (copy_to_user(argp, &transid, sizeof(transid)))
4039 return -EFAULT;
4040 return 0;
4041}
4042
9a8c28be
MX
4043static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4044 void __user *argp)
46204592 4045{
46204592
SW
4046 u64 transid;
4047
4048 if (argp) {
4049 if (copy_from_user(&transid, argp, sizeof(transid)))
4050 return -EFAULT;
4051 } else {
4052 transid = 0; /* current trans */
4053 }
4054 return btrfs_wait_for_commit(root, transid);
4055}
4056
b8e95489 4057static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
475f6387 4058{
496ad9aa 4059 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
475f6387 4060 struct btrfs_ioctl_scrub_args *sa;
b8e95489 4061 int ret;
475f6387
JS
4062
4063 if (!capable(CAP_SYS_ADMIN))
4064 return -EPERM;
4065
4066 sa = memdup_user(arg, sizeof(*sa));
4067 if (IS_ERR(sa))
4068 return PTR_ERR(sa);
4069
b8e95489
MX
4070 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4071 ret = mnt_want_write_file(file);
4072 if (ret)
4073 goto out;
4074 }
4075
aa1b8cd4 4076 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
63a212ab
SB
4077 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4078 0);
475f6387
JS
4079
4080 if (copy_to_user(arg, sa, sizeof(*sa)))
4081 ret = -EFAULT;
4082
b8e95489
MX
4083 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4084 mnt_drop_write_file(file);
4085out:
475f6387
JS
4086 kfree(sa);
4087 return ret;
4088}
4089
4090static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4091{
4092 if (!capable(CAP_SYS_ADMIN))
4093 return -EPERM;
4094
aa1b8cd4 4095 return btrfs_scrub_cancel(root->fs_info);
475f6387
JS
4096}
4097
4098static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4099 void __user *arg)
4100{
4101 struct btrfs_ioctl_scrub_args *sa;
4102 int ret;
4103
4104 if (!capable(CAP_SYS_ADMIN))
4105 return -EPERM;
4106
4107 sa = memdup_user(arg, sizeof(*sa));
4108 if (IS_ERR(sa))
4109 return PTR_ERR(sa);
4110
4111 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4112
4113 if (copy_to_user(arg, sa, sizeof(*sa)))
4114 ret = -EFAULT;
4115
4116 kfree(sa);
4117 return ret;
4118}
4119
c11d2c23 4120static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
b27f7c0c 4121 void __user *arg)
c11d2c23
SB
4122{
4123 struct btrfs_ioctl_get_dev_stats *sa;
4124 int ret;
4125
c11d2c23
SB
4126 sa = memdup_user(arg, sizeof(*sa));
4127 if (IS_ERR(sa))
4128 return PTR_ERR(sa);
4129
b27f7c0c
DS
4130 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4131 kfree(sa);
4132 return -EPERM;
4133 }
4134
4135 ret = btrfs_get_dev_stats(root, sa);
c11d2c23
SB
4136
4137 if (copy_to_user(arg, sa, sizeof(*sa)))
4138 ret = -EFAULT;
4139
4140 kfree(sa);
4141 return ret;
4142}
4143
3f6bcfbd
SB
4144static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4145{
4146 struct btrfs_ioctl_dev_replace_args *p;
4147 int ret;
4148
4149 if (!capable(CAP_SYS_ADMIN))
4150 return -EPERM;
4151
4152 p = memdup_user(arg, sizeof(*p));
4153 if (IS_ERR(p))
4154 return PTR_ERR(p);
4155
4156 switch (p->cmd) {
4157 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
adfa97cb
ID
4158 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4159 ret = -EROFS;
4160 goto out;
4161 }
3f6bcfbd
SB
4162 if (atomic_xchg(
4163 &root->fs_info->mutually_exclusive_operation_running,
4164 1)) {
e57138b3 4165 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3f6bcfbd
SB
4166 } else {
4167 ret = btrfs_dev_replace_start(root, p);
4168 atomic_set(
4169 &root->fs_info->mutually_exclusive_operation_running,
4170 0);
4171 }
4172 break;
4173 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4174 btrfs_dev_replace_status(root->fs_info, p);
4175 ret = 0;
4176 break;
4177 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4178 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4179 break;
4180 default:
4181 ret = -EINVAL;
4182 break;
4183 }
4184
4185 if (copy_to_user(arg, p, sizeof(*p)))
4186 ret = -EFAULT;
adfa97cb 4187out:
3f6bcfbd
SB
4188 kfree(p);
4189 return ret;
4190}
4191
d7728c96
JS
4192static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4193{
4194 int ret = 0;
4195 int i;
740c3d22 4196 u64 rel_ptr;
d7728c96 4197 int size;
806468f8 4198 struct btrfs_ioctl_ino_path_args *ipa = NULL;
d7728c96
JS
4199 struct inode_fs_paths *ipath = NULL;
4200 struct btrfs_path *path;
4201
82b22ac8 4202 if (!capable(CAP_DAC_READ_SEARCH))
d7728c96
JS
4203 return -EPERM;
4204
4205 path = btrfs_alloc_path();
4206 if (!path) {
4207 ret = -ENOMEM;
4208 goto out;
4209 }
4210
4211 ipa = memdup_user(arg, sizeof(*ipa));
4212 if (IS_ERR(ipa)) {
4213 ret = PTR_ERR(ipa);
4214 ipa = NULL;
4215 goto out;
4216 }
4217
4218 size = min_t(u32, ipa->size, 4096);
4219 ipath = init_ipath(size, root, path);
4220 if (IS_ERR(ipath)) {
4221 ret = PTR_ERR(ipath);
4222 ipath = NULL;
4223 goto out;
4224 }
4225
4226 ret = paths_from_inode(ipa->inum, ipath);
4227 if (ret < 0)
4228 goto out;
4229
4230 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
745c4d8e
JM
4231 rel_ptr = ipath->fspath->val[i] -
4232 (u64)(unsigned long)ipath->fspath->val;
740c3d22 4233 ipath->fspath->val[i] = rel_ptr;
d7728c96
JS
4234 }
4235
745c4d8e
JM
4236 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4237 (void *)(unsigned long)ipath->fspath, size);
d7728c96
JS
4238 if (ret) {
4239 ret = -EFAULT;
4240 goto out;
4241 }
4242
4243out:
4244 btrfs_free_path(path);
4245 free_ipath(ipath);
4246 kfree(ipa);
4247
4248 return ret;
4249}
4250
4251static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4252{
4253 struct btrfs_data_container *inodes = ctx;
4254 const size_t c = 3 * sizeof(u64);
4255
4256 if (inodes->bytes_left >= c) {
4257 inodes->bytes_left -= c;
4258 inodes->val[inodes->elem_cnt] = inum;
4259 inodes->val[inodes->elem_cnt + 1] = offset;
4260 inodes->val[inodes->elem_cnt + 2] = root;
4261 inodes->elem_cnt += 3;
4262 } else {
4263 inodes->bytes_missing += c - inodes->bytes_left;
4264 inodes->bytes_left = 0;
4265 inodes->elem_missed += 3;
4266 }
4267
4268 return 0;
4269}
4270
4271static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4272 void __user *arg)
4273{
4274 int ret = 0;
4275 int size;
d7728c96
JS
4276 struct btrfs_ioctl_logical_ino_args *loi;
4277 struct btrfs_data_container *inodes = NULL;
4278 struct btrfs_path *path = NULL;
d7728c96
JS
4279
4280 if (!capable(CAP_SYS_ADMIN))
4281 return -EPERM;
4282
4283 loi = memdup_user(arg, sizeof(*loi));
4284 if (IS_ERR(loi)) {
4285 ret = PTR_ERR(loi);
4286 loi = NULL;
4287 goto out;
4288 }
4289
4290 path = btrfs_alloc_path();
4291 if (!path) {
4292 ret = -ENOMEM;
4293 goto out;
4294 }
4295
425d17a2 4296 size = min_t(u32, loi->size, 64 * 1024);
d7728c96
JS
4297 inodes = init_data_container(size);
4298 if (IS_ERR(inodes)) {
4299 ret = PTR_ERR(inodes);
4300 inodes = NULL;
4301 goto out;
4302 }
4303
df031f07
LB
4304 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4305 build_ino_list, inodes);
4306 if (ret == -EINVAL)
d7728c96
JS
4307 ret = -ENOENT;
4308 if (ret < 0)
4309 goto out;
4310
745c4d8e
JM
4311 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4312 (void *)(unsigned long)inodes, size);
d7728c96
JS
4313 if (ret)
4314 ret = -EFAULT;
4315
4316out:
4317 btrfs_free_path(path);
425d17a2 4318 vfree(inodes);
d7728c96
JS
4319 kfree(loi);
4320
4321 return ret;
4322}
4323
19a39dce 4324void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
c9e9f97b
ID
4325 struct btrfs_ioctl_balance_args *bargs)
4326{
4327 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4328
4329 bargs->flags = bctl->flags;
4330
837d5b6e
ID
4331 if (atomic_read(&fs_info->balance_running))
4332 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4333 if (atomic_read(&fs_info->balance_pause_req))
4334 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
a7e99c69
ID
4335 if (atomic_read(&fs_info->balance_cancel_req))
4336 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
837d5b6e 4337
c9e9f97b
ID
4338 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4339 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4340 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
19a39dce
ID
4341
4342 if (lock) {
4343 spin_lock(&fs_info->balance_lock);
4344 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4345 spin_unlock(&fs_info->balance_lock);
4346 } else {
4347 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4348 }
c9e9f97b
ID
4349}
4350
9ba1f6e4 4351static long btrfs_ioctl_balance(struct file *file, void __user *arg)
c9e9f97b 4352{
496ad9aa 4353 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
c9e9f97b
ID
4354 struct btrfs_fs_info *fs_info = root->fs_info;
4355 struct btrfs_ioctl_balance_args *bargs;
4356 struct btrfs_balance_control *bctl;
ed0fb78f 4357 bool need_unlock; /* for mut. excl. ops lock */
c9e9f97b
ID
4358 int ret;
4359
4360 if (!capable(CAP_SYS_ADMIN))
4361 return -EPERM;
4362
e54bfa31 4363 ret = mnt_want_write_file(file);
9ba1f6e4
LB
4364 if (ret)
4365 return ret;
4366
ed0fb78f
ID
4367again:
4368 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4369 mutex_lock(&fs_info->volume_mutex);
4370 mutex_lock(&fs_info->balance_mutex);
4371 need_unlock = true;
4372 goto locked;
4373 }
4374
4375 /*
4376 * mut. excl. ops lock is locked. Three possibilites:
4377 * (1) some other op is running
4378 * (2) balance is running
4379 * (3) balance is paused -- special case (think resume)
4380 */
c9e9f97b 4381 mutex_lock(&fs_info->balance_mutex);
ed0fb78f
ID
4382 if (fs_info->balance_ctl) {
4383 /* this is either (2) or (3) */
4384 if (!atomic_read(&fs_info->balance_running)) {
4385 mutex_unlock(&fs_info->balance_mutex);
4386 if (!mutex_trylock(&fs_info->volume_mutex))
4387 goto again;
4388 mutex_lock(&fs_info->balance_mutex);
4389
4390 if (fs_info->balance_ctl &&
4391 !atomic_read(&fs_info->balance_running)) {
4392 /* this is (3) */
4393 need_unlock = false;
4394 goto locked;
4395 }
4396
4397 mutex_unlock(&fs_info->balance_mutex);
4398 mutex_unlock(&fs_info->volume_mutex);
4399 goto again;
4400 } else {
4401 /* this is (2) */
4402 mutex_unlock(&fs_info->balance_mutex);
4403 ret = -EINPROGRESS;
4404 goto out;
4405 }
4406 } else {
4407 /* this is (1) */
4408 mutex_unlock(&fs_info->balance_mutex);
e57138b3 4409 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
ed0fb78f
ID
4410 goto out;
4411 }
4412
4413locked:
4414 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
c9e9f97b
ID
4415
4416 if (arg) {
4417 bargs = memdup_user(arg, sizeof(*bargs));
4418 if (IS_ERR(bargs)) {
4419 ret = PTR_ERR(bargs);
ed0fb78f 4420 goto out_unlock;
c9e9f97b 4421 }
de322263
ID
4422
4423 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4424 if (!fs_info->balance_ctl) {
4425 ret = -ENOTCONN;
4426 goto out_bargs;
4427 }
4428
4429 bctl = fs_info->balance_ctl;
4430 spin_lock(&fs_info->balance_lock);
4431 bctl->flags |= BTRFS_BALANCE_RESUME;
4432 spin_unlock(&fs_info->balance_lock);
4433
4434 goto do_balance;
4435 }
c9e9f97b
ID
4436 } else {
4437 bargs = NULL;
4438 }
4439
ed0fb78f 4440 if (fs_info->balance_ctl) {
837d5b6e
ID
4441 ret = -EINPROGRESS;
4442 goto out_bargs;
4443 }
4444
c9e9f97b
ID
4445 bctl = kzalloc(sizeof(*bctl), GFP_NOFS);
4446 if (!bctl) {
4447 ret = -ENOMEM;
4448 goto out_bargs;
4449 }
4450
4451 bctl->fs_info = fs_info;
4452 if (arg) {
4453 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4454 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4455 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4456
4457 bctl->flags = bargs->flags;
f43ffb60
ID
4458 } else {
4459 /* balance everything - no filters */
4460 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
c9e9f97b
ID
4461 }
4462
de322263 4463do_balance:
c9e9f97b 4464 /*
ed0fb78f
ID
4465 * Ownership of bctl and mutually_exclusive_operation_running
4466 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4467 * or, if restriper was paused all the way until unmount, in
4468 * free_fs_info. mutually_exclusive_operation_running is
4469 * cleared in __cancel_balance.
c9e9f97b 4470 */
ed0fb78f
ID
4471 need_unlock = false;
4472
4473 ret = btrfs_balance(bctl, bargs);
4474
c9e9f97b
ID
4475 if (arg) {
4476 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4477 ret = -EFAULT;
4478 }
4479
4480out_bargs:
4481 kfree(bargs);
ed0fb78f 4482out_unlock:
c9e9f97b
ID
4483 mutex_unlock(&fs_info->balance_mutex);
4484 mutex_unlock(&fs_info->volume_mutex);
ed0fb78f
ID
4485 if (need_unlock)
4486 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4487out:
e54bfa31 4488 mnt_drop_write_file(file);
c9e9f97b
ID
4489 return ret;
4490}
4491
837d5b6e
ID
4492static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4493{
4494 if (!capable(CAP_SYS_ADMIN))
4495 return -EPERM;
4496
4497 switch (cmd) {
4498 case BTRFS_BALANCE_CTL_PAUSE:
4499 return btrfs_pause_balance(root->fs_info);
a7e99c69
ID
4500 case BTRFS_BALANCE_CTL_CANCEL:
4501 return btrfs_cancel_balance(root->fs_info);
837d5b6e
ID
4502 }
4503
4504 return -EINVAL;
4505}
4506
19a39dce
ID
4507static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4508 void __user *arg)
4509{
4510 struct btrfs_fs_info *fs_info = root->fs_info;
4511 struct btrfs_ioctl_balance_args *bargs;
4512 int ret = 0;
4513
4514 if (!capable(CAP_SYS_ADMIN))
4515 return -EPERM;
4516
4517 mutex_lock(&fs_info->balance_mutex);
4518 if (!fs_info->balance_ctl) {
4519 ret = -ENOTCONN;
4520 goto out;
4521 }
4522
4523 bargs = kzalloc(sizeof(*bargs), GFP_NOFS);
4524 if (!bargs) {
4525 ret = -ENOMEM;
4526 goto out;
4527 }
4528
4529 update_ioctl_balance_args(fs_info, 1, bargs);
4530
4531 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4532 ret = -EFAULT;
4533
4534 kfree(bargs);
4535out:
4536 mutex_unlock(&fs_info->balance_mutex);
4537 return ret;
4538}
4539
905b0dda 4540static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
5d13a37b 4541{
496ad9aa 4542 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5d13a37b
AJ
4543 struct btrfs_ioctl_quota_ctl_args *sa;
4544 struct btrfs_trans_handle *trans = NULL;
4545 int ret;
4546 int err;
4547
4548 if (!capable(CAP_SYS_ADMIN))
4549 return -EPERM;
4550
905b0dda
MX
4551 ret = mnt_want_write_file(file);
4552 if (ret)
4553 return ret;
5d13a37b
AJ
4554
4555 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4556 if (IS_ERR(sa)) {
4557 ret = PTR_ERR(sa);
4558 goto drop_write;
4559 }
5d13a37b 4560
7708f029 4561 down_write(&root->fs_info->subvol_sem);
2f232036
JS
4562 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4563 if (IS_ERR(trans)) {
4564 ret = PTR_ERR(trans);
4565 goto out;
5d13a37b
AJ
4566 }
4567
4568 switch (sa->cmd) {
4569 case BTRFS_QUOTA_CTL_ENABLE:
4570 ret = btrfs_quota_enable(trans, root->fs_info);
4571 break;
4572 case BTRFS_QUOTA_CTL_DISABLE:
4573 ret = btrfs_quota_disable(trans, root->fs_info);
4574 break;
5d13a37b
AJ
4575 default:
4576 ret = -EINVAL;
4577 break;
4578 }
4579
2f232036
JS
4580 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4581 if (err && !ret)
4582 ret = err;
5d13a37b
AJ
4583out:
4584 kfree(sa);
7708f029 4585 up_write(&root->fs_info->subvol_sem);
905b0dda
MX
4586drop_write:
4587 mnt_drop_write_file(file);
5d13a37b
AJ
4588 return ret;
4589}
4590
905b0dda 4591static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
5d13a37b 4592{
496ad9aa 4593 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5d13a37b
AJ
4594 struct btrfs_ioctl_qgroup_assign_args *sa;
4595 struct btrfs_trans_handle *trans;
4596 int ret;
4597 int err;
4598
4599 if (!capable(CAP_SYS_ADMIN))
4600 return -EPERM;
4601
905b0dda
MX
4602 ret = mnt_want_write_file(file);
4603 if (ret)
4604 return ret;
5d13a37b
AJ
4605
4606 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4607 if (IS_ERR(sa)) {
4608 ret = PTR_ERR(sa);
4609 goto drop_write;
4610 }
5d13a37b
AJ
4611
4612 trans = btrfs_join_transaction(root);
4613 if (IS_ERR(trans)) {
4614 ret = PTR_ERR(trans);
4615 goto out;
4616 }
4617
4618 /* FIXME: check if the IDs really exist */
4619 if (sa->assign) {
4620 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4621 sa->src, sa->dst);
4622 } else {
4623 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4624 sa->src, sa->dst);
4625 }
4626
4627 err = btrfs_end_transaction(trans, root);
4628 if (err && !ret)
4629 ret = err;
4630
4631out:
4632 kfree(sa);
905b0dda
MX
4633drop_write:
4634 mnt_drop_write_file(file);
5d13a37b
AJ
4635 return ret;
4636}
4637
905b0dda 4638static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
5d13a37b 4639{
496ad9aa 4640 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5d13a37b
AJ
4641 struct btrfs_ioctl_qgroup_create_args *sa;
4642 struct btrfs_trans_handle *trans;
4643 int ret;
4644 int err;
4645
4646 if (!capable(CAP_SYS_ADMIN))
4647 return -EPERM;
4648
905b0dda
MX
4649 ret = mnt_want_write_file(file);
4650 if (ret)
4651 return ret;
5d13a37b
AJ
4652
4653 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4654 if (IS_ERR(sa)) {
4655 ret = PTR_ERR(sa);
4656 goto drop_write;
4657 }
5d13a37b 4658
d86e56cf
MX
4659 if (!sa->qgroupid) {
4660 ret = -EINVAL;
4661 goto out;
4662 }
4663
5d13a37b
AJ
4664 trans = btrfs_join_transaction(root);
4665 if (IS_ERR(trans)) {
4666 ret = PTR_ERR(trans);
4667 goto out;
4668 }
4669
4670 /* FIXME: check if the IDs really exist */
4671 if (sa->create) {
4672 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid,
4673 NULL);
4674 } else {
4675 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4676 }
4677
4678 err = btrfs_end_transaction(trans, root);
4679 if (err && !ret)
4680 ret = err;
4681
4682out:
4683 kfree(sa);
905b0dda
MX
4684drop_write:
4685 mnt_drop_write_file(file);
5d13a37b
AJ
4686 return ret;
4687}
4688
905b0dda 4689static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
5d13a37b 4690{
496ad9aa 4691 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5d13a37b
AJ
4692 struct btrfs_ioctl_qgroup_limit_args *sa;
4693 struct btrfs_trans_handle *trans;
4694 int ret;
4695 int err;
4696 u64 qgroupid;
4697
4698 if (!capable(CAP_SYS_ADMIN))
4699 return -EPERM;
4700
905b0dda
MX
4701 ret = mnt_want_write_file(file);
4702 if (ret)
4703 return ret;
5d13a37b
AJ
4704
4705 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4706 if (IS_ERR(sa)) {
4707 ret = PTR_ERR(sa);
4708 goto drop_write;
4709 }
5d13a37b
AJ
4710
4711 trans = btrfs_join_transaction(root);
4712 if (IS_ERR(trans)) {
4713 ret = PTR_ERR(trans);
4714 goto out;
4715 }
4716
4717 qgroupid = sa->qgroupid;
4718 if (!qgroupid) {
4719 /* take the current subvol as qgroup */
4720 qgroupid = root->root_key.objectid;
4721 }
4722
4723 /* FIXME: check if the IDs really exist */
4724 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
4725
4726 err = btrfs_end_transaction(trans, root);
4727 if (err && !ret)
4728 ret = err;
4729
4730out:
4731 kfree(sa);
905b0dda
MX
4732drop_write:
4733 mnt_drop_write_file(file);
5d13a37b
AJ
4734 return ret;
4735}
4736
2f232036
JS
4737static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4738{
6d0379ec 4739 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
2f232036
JS
4740 struct btrfs_ioctl_quota_rescan_args *qsa;
4741 int ret;
4742
4743 if (!capable(CAP_SYS_ADMIN))
4744 return -EPERM;
4745
4746 ret = mnt_want_write_file(file);
4747 if (ret)
4748 return ret;
4749
4750 qsa = memdup_user(arg, sizeof(*qsa));
4751 if (IS_ERR(qsa)) {
4752 ret = PTR_ERR(qsa);
4753 goto drop_write;
4754 }
4755
4756 if (qsa->flags) {
4757 ret = -EINVAL;
4758 goto out;
4759 }
4760
4761 ret = btrfs_qgroup_rescan(root->fs_info);
4762
4763out:
4764 kfree(qsa);
4765drop_write:
4766 mnt_drop_write_file(file);
4767 return ret;
4768}
4769
4770static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4771{
6d0379ec 4772 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
2f232036
JS
4773 struct btrfs_ioctl_quota_rescan_args *qsa;
4774 int ret = 0;
4775
4776 if (!capable(CAP_SYS_ADMIN))
4777 return -EPERM;
4778
4779 qsa = kzalloc(sizeof(*qsa), GFP_NOFS);
4780 if (!qsa)
4781 return -ENOMEM;
4782
4783 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
4784 qsa->flags = 1;
4785 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
4786 }
4787
4788 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4789 ret = -EFAULT;
4790
4791 kfree(qsa);
4792 return ret;
4793}
4794
57254b6e
JS
4795static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4796{
54563d41 4797 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
57254b6e
JS
4798
4799 if (!capable(CAP_SYS_ADMIN))
4800 return -EPERM;
4801
4802 return btrfs_qgroup_wait_for_completion(root->fs_info);
4803}
4804
abccd00f
HM
4805static long _btrfs_ioctl_set_received_subvol(struct file *file,
4806 struct btrfs_ioctl_received_subvol_args *sa)
8ea05e3a 4807{
496ad9aa 4808 struct inode *inode = file_inode(file);
8ea05e3a
AB
4809 struct btrfs_root *root = BTRFS_I(inode)->root;
4810 struct btrfs_root_item *root_item = &root->root_item;
4811 struct btrfs_trans_handle *trans;
4812 struct timespec ct = CURRENT_TIME;
4813 int ret = 0;
dd5f9615 4814 int received_uuid_changed;
8ea05e3a 4815
bd60ea0f
DS
4816 if (!inode_owner_or_capable(inode))
4817 return -EPERM;
4818
8ea05e3a
AB
4819 ret = mnt_want_write_file(file);
4820 if (ret < 0)
4821 return ret;
4822
4823 down_write(&root->fs_info->subvol_sem);
4824
4825 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
4826 ret = -EINVAL;
4827 goto out;
4828 }
4829
4830 if (btrfs_root_readonly(root)) {
4831 ret = -EROFS;
4832 goto out;
4833 }
4834
dd5f9615
SB
4835 /*
4836 * 1 - root item
4837 * 2 - uuid items (received uuid + subvol uuid)
4838 */
4839 trans = btrfs_start_transaction(root, 3);
8ea05e3a
AB
4840 if (IS_ERR(trans)) {
4841 ret = PTR_ERR(trans);
4842 trans = NULL;
4843 goto out;
4844 }
4845
4846 sa->rtransid = trans->transid;
4847 sa->rtime.sec = ct.tv_sec;
4848 sa->rtime.nsec = ct.tv_nsec;
4849
dd5f9615
SB
4850 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4851 BTRFS_UUID_SIZE);
4852 if (received_uuid_changed &&
4853 !btrfs_is_empty_uuid(root_item->received_uuid))
4854 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
4855 root_item->received_uuid,
4856 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4857 root->root_key.objectid);
8ea05e3a
AB
4858 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4859 btrfs_set_root_stransid(root_item, sa->stransid);
4860 btrfs_set_root_rtransid(root_item, sa->rtransid);
3cae210f
QW
4861 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4862 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4863 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4864 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
8ea05e3a
AB
4865
4866 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4867 &root->root_key, &root->root_item);
4868 if (ret < 0) {
4869 btrfs_end_transaction(trans, root);
8ea05e3a 4870 goto out;
dd5f9615
SB
4871 }
4872 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
4873 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
4874 sa->uuid,
4875 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4876 root->root_key.objectid);
4877 if (ret < 0 && ret != -EEXIST) {
4878 btrfs_abort_transaction(trans, root, ret);
8ea05e3a 4879 goto out;
dd5f9615
SB
4880 }
4881 }
4882 ret = btrfs_commit_transaction(trans, root);
4883 if (ret < 0) {
4884 btrfs_abort_transaction(trans, root, ret);
4885 goto out;
8ea05e3a
AB
4886 }
4887
abccd00f
HM
4888out:
4889 up_write(&root->fs_info->subvol_sem);
4890 mnt_drop_write_file(file);
4891 return ret;
4892}
4893
4894#ifdef CONFIG_64BIT
4895static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4896 void __user *arg)
4897{
4898 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4899 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4900 int ret = 0;
4901
4902 args32 = memdup_user(arg, sizeof(*args32));
4903 if (IS_ERR(args32)) {
4904 ret = PTR_ERR(args32);
4905 args32 = NULL;
4906 goto out;
4907 }
4908
4909 args64 = kmalloc(sizeof(*args64), GFP_NOFS);
84dbeb87
DC
4910 if (!args64) {
4911 ret = -ENOMEM;
abccd00f
HM
4912 goto out;
4913 }
4914
4915 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4916 args64->stransid = args32->stransid;
4917 args64->rtransid = args32->rtransid;
4918 args64->stime.sec = args32->stime.sec;
4919 args64->stime.nsec = args32->stime.nsec;
4920 args64->rtime.sec = args32->rtime.sec;
4921 args64->rtime.nsec = args32->rtime.nsec;
4922 args64->flags = args32->flags;
4923
4924 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4925 if (ret)
4926 goto out;
4927
4928 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4929 args32->stransid = args64->stransid;
4930 args32->rtransid = args64->rtransid;
4931 args32->stime.sec = args64->stime.sec;
4932 args32->stime.nsec = args64->stime.nsec;
4933 args32->rtime.sec = args64->rtime.sec;
4934 args32->rtime.nsec = args64->rtime.nsec;
4935 args32->flags = args64->flags;
4936
4937 ret = copy_to_user(arg, args32, sizeof(*args32));
4938 if (ret)
4939 ret = -EFAULT;
4940
4941out:
4942 kfree(args32);
4943 kfree(args64);
4944 return ret;
4945}
4946#endif
4947
4948static long btrfs_ioctl_set_received_subvol(struct file *file,
4949 void __user *arg)
4950{
4951 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4952 int ret = 0;
4953
4954 sa = memdup_user(arg, sizeof(*sa));
4955 if (IS_ERR(sa)) {
4956 ret = PTR_ERR(sa);
4957 sa = NULL;
4958 goto out;
4959 }
4960
4961 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4962
4963 if (ret)
4964 goto out;
4965
8ea05e3a
AB
4966 ret = copy_to_user(arg, sa, sizeof(*sa));
4967 if (ret)
4968 ret = -EFAULT;
4969
4970out:
4971 kfree(sa);
8ea05e3a
AB
4972 return ret;
4973}
4974
867ab667 4975static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4976{
6d0379ec 4977 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
a1b83ac5 4978 size_t len;
867ab667 4979 int ret;
a1b83ac5
AJ
4980 char label[BTRFS_LABEL_SIZE];
4981
4982 spin_lock(&root->fs_info->super_lock);
4983 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4984 spin_unlock(&root->fs_info->super_lock);
4985
4986 len = strnlen(label, BTRFS_LABEL_SIZE);
867ab667 4987
4988 if (len == BTRFS_LABEL_SIZE) {
efe120a0
FH
4989 btrfs_warn(root->fs_info,
4990 "label is too long, return the first %zu bytes", --len);
867ab667 4991 }
4992
867ab667 4993 ret = copy_to_user(arg, label, len);
867ab667 4994
4995 return ret ? -EFAULT : 0;
4996}
4997
a8bfd4ab 4998static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4999{
6d0379ec 5000 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
a8bfd4ab 5001 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5002 struct btrfs_trans_handle *trans;
5003 char label[BTRFS_LABEL_SIZE];
5004 int ret;
5005
5006 if (!capable(CAP_SYS_ADMIN))
5007 return -EPERM;
5008
5009 if (copy_from_user(label, arg, sizeof(label)))
5010 return -EFAULT;
5011
5012 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
efe120a0 5013 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
a8bfd4ab 5014 BTRFS_LABEL_SIZE - 1);
5015 return -EINVAL;
5016 }
5017
5018 ret = mnt_want_write_file(file);
5019 if (ret)
5020 return ret;
5021
a8bfd4ab 5022 trans = btrfs_start_transaction(root, 0);
5023 if (IS_ERR(trans)) {
5024 ret = PTR_ERR(trans);
5025 goto out_unlock;
5026 }
5027
a1b83ac5 5028 spin_lock(&root->fs_info->super_lock);
a8bfd4ab 5029 strcpy(super_block->label, label);
a1b83ac5 5030 spin_unlock(&root->fs_info->super_lock);
d0270aca 5031 ret = btrfs_commit_transaction(trans, root);
a8bfd4ab 5032
5033out_unlock:
a8bfd4ab 5034 mnt_drop_write_file(file);
5035 return ret;
5036}
5037
2eaa055f
JM
5038#define INIT_FEATURE_FLAGS(suffix) \
5039 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5040 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5041 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5042
5043static int btrfs_ioctl_get_supported_features(struct file *file,
5044 void __user *arg)
5045{
5046 static struct btrfs_ioctl_feature_flags features[3] = {
5047 INIT_FEATURE_FLAGS(SUPP),
5048 INIT_FEATURE_FLAGS(SAFE_SET),
5049 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5050 };
5051
5052 if (copy_to_user(arg, &features, sizeof(features)))
5053 return -EFAULT;
5054
5055 return 0;
5056}
5057
5058static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5059{
5060 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5061 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5062 struct btrfs_ioctl_feature_flags features;
5063
5064 features.compat_flags = btrfs_super_compat_flags(super_block);
5065 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5066 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5067
5068 if (copy_to_user(arg, &features, sizeof(features)))
5069 return -EFAULT;
5070
5071 return 0;
5072}
5073
3b02a68a
JM
5074static int check_feature_bits(struct btrfs_root *root,
5075 enum btrfs_feature_set set,
2eaa055f
JM
5076 u64 change_mask, u64 flags, u64 supported_flags,
5077 u64 safe_set, u64 safe_clear)
5078{
3b02a68a
JM
5079 const char *type = btrfs_feature_set_names[set];
5080 char *names;
2eaa055f
JM
5081 u64 disallowed, unsupported;
5082 u64 set_mask = flags & change_mask;
5083 u64 clear_mask = ~flags & change_mask;
5084
5085 unsupported = set_mask & ~supported_flags;
5086 if (unsupported) {
3b02a68a
JM
5087 names = btrfs_printable_features(set, unsupported);
5088 if (names) {
5089 btrfs_warn(root->fs_info,
5090 "this kernel does not support the %s feature bit%s",
5091 names, strchr(names, ',') ? "s" : "");
5092 kfree(names);
5093 } else
5094 btrfs_warn(root->fs_info,
2eaa055f
JM
5095 "this kernel does not support %s bits 0x%llx",
5096 type, unsupported);
5097 return -EOPNOTSUPP;
5098 }
5099
5100 disallowed = set_mask & ~safe_set;
5101 if (disallowed) {
3b02a68a
JM
5102 names = btrfs_printable_features(set, disallowed);
5103 if (names) {
5104 btrfs_warn(root->fs_info,
5105 "can't set the %s feature bit%s while mounted",
5106 names, strchr(names, ',') ? "s" : "");
5107 kfree(names);
5108 } else
5109 btrfs_warn(root->fs_info,
2eaa055f
JM
5110 "can't set %s bits 0x%llx while mounted",
5111 type, disallowed);
5112 return -EPERM;
5113 }
5114
5115 disallowed = clear_mask & ~safe_clear;
5116 if (disallowed) {
3b02a68a
JM
5117 names = btrfs_printable_features(set, disallowed);
5118 if (names) {
5119 btrfs_warn(root->fs_info,
5120 "can't clear the %s feature bit%s while mounted",
5121 names, strchr(names, ',') ? "s" : "");
5122 kfree(names);
5123 } else
5124 btrfs_warn(root->fs_info,
2eaa055f
JM
5125 "can't clear %s bits 0x%llx while mounted",
5126 type, disallowed);
5127 return -EPERM;
5128 }
5129
5130 return 0;
5131}
5132
5133#define check_feature(root, change_mask, flags, mask_base) \
3b02a68a 5134check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
2eaa055f
JM
5135 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5136 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5137 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5138
5139static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5140{
5141 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5142 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5143 struct btrfs_ioctl_feature_flags flags[2];
5144 struct btrfs_trans_handle *trans;
5145 u64 newflags;
5146 int ret;
5147
5148 if (!capable(CAP_SYS_ADMIN))
5149 return -EPERM;
5150
5151 if (copy_from_user(flags, arg, sizeof(flags)))
5152 return -EFAULT;
5153
5154 /* Nothing to do */
5155 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5156 !flags[0].incompat_flags)
5157 return 0;
5158
5159 ret = check_feature(root, flags[0].compat_flags,
5160 flags[1].compat_flags, COMPAT);
5161 if (ret)
5162 return ret;
5163
5164 ret = check_feature(root, flags[0].compat_ro_flags,
5165 flags[1].compat_ro_flags, COMPAT_RO);
5166 if (ret)
5167 return ret;
5168
5169 ret = check_feature(root, flags[0].incompat_flags,
5170 flags[1].incompat_flags, INCOMPAT);
5171 if (ret)
5172 return ret;
5173
8051aa1a 5174 trans = btrfs_start_transaction(root, 0);
2eaa055f
JM
5175 if (IS_ERR(trans))
5176 return PTR_ERR(trans);
5177
5178 spin_lock(&root->fs_info->super_lock);
5179 newflags = btrfs_super_compat_flags(super_block);
5180 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5181 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5182 btrfs_set_super_compat_flags(super_block, newflags);
5183
5184 newflags = btrfs_super_compat_ro_flags(super_block);
5185 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5186 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5187 btrfs_set_super_compat_ro_flags(super_block, newflags);
5188
5189 newflags = btrfs_super_incompat_flags(super_block);
5190 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5191 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5192 btrfs_set_super_incompat_flags(super_block, newflags);
5193 spin_unlock(&root->fs_info->super_lock);
5194
d0270aca 5195 return btrfs_commit_transaction(trans, root);
2eaa055f
JM
5196}
5197
f46b5a66
CH
5198long btrfs_ioctl(struct file *file, unsigned int
5199 cmd, unsigned long arg)
5200{
496ad9aa 5201 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
4bcabaa3 5202 void __user *argp = (void __user *)arg;
f46b5a66
CH
5203
5204 switch (cmd) {
6cbff00f
CH
5205 case FS_IOC_GETFLAGS:
5206 return btrfs_ioctl_getflags(file, argp);
5207 case FS_IOC_SETFLAGS:
5208 return btrfs_ioctl_setflags(file, argp);
5209 case FS_IOC_GETVERSION:
5210 return btrfs_ioctl_getversion(file, argp);
f7039b1d
LD
5211 case FITRIM:
5212 return btrfs_ioctl_fitrim(file, argp);
f46b5a66 5213 case BTRFS_IOC_SNAP_CREATE:
fa0d2b9b 5214 return btrfs_ioctl_snap_create(file, argp, 0);
fdfb1e4f 5215 case BTRFS_IOC_SNAP_CREATE_V2:
fa0d2b9b 5216 return btrfs_ioctl_snap_create_v2(file, argp, 0);
3de4586c 5217 case BTRFS_IOC_SUBVOL_CREATE:
fa0d2b9b 5218 return btrfs_ioctl_snap_create(file, argp, 1);
6f72c7e2
AJ
5219 case BTRFS_IOC_SUBVOL_CREATE_V2:
5220 return btrfs_ioctl_snap_create_v2(file, argp, 1);
76dda93c
YZ
5221 case BTRFS_IOC_SNAP_DESTROY:
5222 return btrfs_ioctl_snap_destroy(file, argp);
0caa102d
LZ
5223 case BTRFS_IOC_SUBVOL_GETFLAGS:
5224 return btrfs_ioctl_subvol_getflags(file, argp);
5225 case BTRFS_IOC_SUBVOL_SETFLAGS:
5226 return btrfs_ioctl_subvol_setflags(file, argp);
6ef5ed0d
JB
5227 case BTRFS_IOC_DEFAULT_SUBVOL:
5228 return btrfs_ioctl_default_subvol(file, argp);
f46b5a66 5229 case BTRFS_IOC_DEFRAG:
1e701a32
CM
5230 return btrfs_ioctl_defrag(file, NULL);
5231 case BTRFS_IOC_DEFRAG_RANGE:
5232 return btrfs_ioctl_defrag(file, argp);
f46b5a66 5233 case BTRFS_IOC_RESIZE:
198605a8 5234 return btrfs_ioctl_resize(file, argp);
f46b5a66 5235 case BTRFS_IOC_ADD_DEV:
4bcabaa3 5236 return btrfs_ioctl_add_dev(root, argp);
f46b5a66 5237 case BTRFS_IOC_RM_DEV:
da24927b 5238 return btrfs_ioctl_rm_dev(file, argp);
475f6387
JS
5239 case BTRFS_IOC_FS_INFO:
5240 return btrfs_ioctl_fs_info(root, argp);
5241 case BTRFS_IOC_DEV_INFO:
5242 return btrfs_ioctl_dev_info(root, argp);
f46b5a66 5243 case BTRFS_IOC_BALANCE:
9ba1f6e4 5244 return btrfs_ioctl_balance(file, NULL);
f46b5a66 5245 case BTRFS_IOC_CLONE:
c5c9cd4d
SW
5246 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5247 case BTRFS_IOC_CLONE_RANGE:
7a865e8a 5248 return btrfs_ioctl_clone_range(file, argp);
f46b5a66
CH
5249 case BTRFS_IOC_TRANS_START:
5250 return btrfs_ioctl_trans_start(file);
5251 case BTRFS_IOC_TRANS_END:
5252 return btrfs_ioctl_trans_end(file);
ac8e9819
CM
5253 case BTRFS_IOC_TREE_SEARCH:
5254 return btrfs_ioctl_tree_search(file, argp);
cc68a8a5
GH
5255 case BTRFS_IOC_TREE_SEARCH_V2:
5256 return btrfs_ioctl_tree_search_v2(file, argp);
ac8e9819
CM
5257 case BTRFS_IOC_INO_LOOKUP:
5258 return btrfs_ioctl_ino_lookup(file, argp);
d7728c96
JS
5259 case BTRFS_IOC_INO_PATHS:
5260 return btrfs_ioctl_ino_to_path(root, argp);
5261 case BTRFS_IOC_LOGICAL_INO:
5262 return btrfs_ioctl_logical_to_ino(root, argp);
1406e432
JB
5263 case BTRFS_IOC_SPACE_INFO:
5264 return btrfs_ioctl_space_info(root, argp);
9b199859
FDBM
5265 case BTRFS_IOC_SYNC: {
5266 int ret;
5267
6c255e67 5268 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
9b199859
FDBM
5269 if (ret)
5270 return ret;
ddb52f4f 5271 ret = btrfs_sync_fs(file_inode(file)->i_sb, 1);
2fad4e83
DS
5272 /*
5273 * The transaction thread may want to do more work,
5274 * namely it pokes the cleaner ktread that will start
5275 * processing uncleaned subvols.
5276 */
5277 wake_up_process(root->fs_info->transaction_kthread);
9b199859
FDBM
5278 return ret;
5279 }
46204592 5280 case BTRFS_IOC_START_SYNC:
9a8c28be 5281 return btrfs_ioctl_start_sync(root, argp);
46204592 5282 case BTRFS_IOC_WAIT_SYNC:
9a8c28be 5283 return btrfs_ioctl_wait_sync(root, argp);
475f6387 5284 case BTRFS_IOC_SCRUB:
b8e95489 5285 return btrfs_ioctl_scrub(file, argp);
475f6387
JS
5286 case BTRFS_IOC_SCRUB_CANCEL:
5287 return btrfs_ioctl_scrub_cancel(root, argp);
5288 case BTRFS_IOC_SCRUB_PROGRESS:
5289 return btrfs_ioctl_scrub_progress(root, argp);
c9e9f97b 5290 case BTRFS_IOC_BALANCE_V2:
9ba1f6e4 5291 return btrfs_ioctl_balance(file, argp);
837d5b6e
ID
5292 case BTRFS_IOC_BALANCE_CTL:
5293 return btrfs_ioctl_balance_ctl(root, arg);
19a39dce
ID
5294 case BTRFS_IOC_BALANCE_PROGRESS:
5295 return btrfs_ioctl_balance_progress(root, argp);
8ea05e3a
AB
5296 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5297 return btrfs_ioctl_set_received_subvol(file, argp);
abccd00f
HM
5298#ifdef CONFIG_64BIT
5299 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5300 return btrfs_ioctl_set_received_subvol_32(file, argp);
5301#endif
31db9f7c
AB
5302 case BTRFS_IOC_SEND:
5303 return btrfs_ioctl_send(file, argp);
c11d2c23 5304 case BTRFS_IOC_GET_DEV_STATS:
b27f7c0c 5305 return btrfs_ioctl_get_dev_stats(root, argp);
5d13a37b 5306 case BTRFS_IOC_QUOTA_CTL:
905b0dda 5307 return btrfs_ioctl_quota_ctl(file, argp);
5d13a37b 5308 case BTRFS_IOC_QGROUP_ASSIGN:
905b0dda 5309 return btrfs_ioctl_qgroup_assign(file, argp);
5d13a37b 5310 case BTRFS_IOC_QGROUP_CREATE:
905b0dda 5311 return btrfs_ioctl_qgroup_create(file, argp);
5d13a37b 5312 case BTRFS_IOC_QGROUP_LIMIT:
905b0dda 5313 return btrfs_ioctl_qgroup_limit(file, argp);
2f232036
JS
5314 case BTRFS_IOC_QUOTA_RESCAN:
5315 return btrfs_ioctl_quota_rescan(file, argp);
5316 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5317 return btrfs_ioctl_quota_rescan_status(file, argp);
57254b6e
JS
5318 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5319 return btrfs_ioctl_quota_rescan_wait(file, argp);
3f6bcfbd
SB
5320 case BTRFS_IOC_DEV_REPLACE:
5321 return btrfs_ioctl_dev_replace(root, argp);
867ab667 5322 case BTRFS_IOC_GET_FSLABEL:
5323 return btrfs_ioctl_get_fslabel(file, argp);
a8bfd4ab 5324 case BTRFS_IOC_SET_FSLABEL:
5325 return btrfs_ioctl_set_fslabel(file, argp);
416161db
MF
5326 case BTRFS_IOC_FILE_EXTENT_SAME:
5327 return btrfs_ioctl_file_extent_same(file, argp);
2eaa055f
JM
5328 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5329 return btrfs_ioctl_get_supported_features(file, argp);
5330 case BTRFS_IOC_GET_FEATURES:
5331 return btrfs_ioctl_get_features(file, argp);
5332 case BTRFS_IOC_SET_FEATURES:
5333 return btrfs_ioctl_set_features(file, argp);
f46b5a66
CH
5334 }
5335
5336 return -ENOTTY;
5337}