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