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