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