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