btrfs: open code trivial helper btrfs_page_exists_in_range
[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>
ae5e165d 46#include <linux/iversion.h>
f46b5a66
CH
47#include "ctree.h"
48#include "disk-io.h"
49#include "transaction.h"
50#include "btrfs_inode.h"
f46b5a66
CH
51#include "print-tree.h"
52#include "volumes.h"
925baedd 53#include "locking.h"
581bb050 54#include "inode-map.h"
d7728c96 55#include "backref.h"
606686ee 56#include "rcu-string.h"
31db9f7c 57#include "send.h"
3f6bcfbd 58#include "dev-replace.h"
63541927 59#include "props.h"
3b02a68a 60#include "sysfs.h"
fcebe456 61#include "qgroup.h"
1ec9a1ae 62#include "tree-log.h"
ebb8765b 63#include "compression.h"
f46b5a66 64
abccd00f
HM
65#ifdef CONFIG_64BIT
66/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
67 * structures are incorrect, as the timespec structure from userspace
68 * is 4 bytes too small. We define these alternatives here to teach
69 * the kernel about the 32-bit struct packing.
70 */
71struct btrfs_ioctl_timespec_32 {
72 __u64 sec;
73 __u32 nsec;
74} __attribute__ ((__packed__));
75
76struct btrfs_ioctl_received_subvol_args_32 {
77 char uuid[BTRFS_UUID_SIZE]; /* in */
78 __u64 stransid; /* in */
79 __u64 rtransid; /* out */
80 struct btrfs_ioctl_timespec_32 stime; /* in */
81 struct btrfs_ioctl_timespec_32 rtime; /* out */
82 __u64 flags; /* in */
83 __u64 reserved[16]; /* in */
84} __attribute__ ((__packed__));
85
86#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
87 struct btrfs_ioctl_received_subvol_args_32)
88#endif
89
2351f431
JB
90#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
91struct btrfs_ioctl_send_args_32 {
92 __s64 send_fd; /* in */
93 __u64 clone_sources_count; /* in */
94 compat_uptr_t clone_sources; /* in */
95 __u64 parent_root; /* in */
96 __u64 flags; /* in */
97 __u64 reserved[4]; /* in */
98} __attribute__ ((__packed__));
99
100#define BTRFS_IOC_SEND_32 _IOW(BTRFS_IOCTL_MAGIC, 38, \
101 struct btrfs_ioctl_send_args_32)
102#endif
abccd00f 103
416161db 104static int btrfs_clone(struct inode *src, struct inode *inode,
1c919a5e
MF
105 u64 off, u64 olen, u64 olen_aligned, u64 destoff,
106 int no_time_update);
416161db 107
6cbff00f
CH
108/* Mask out flags that are inappropriate for the given type of inode. */
109static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
110{
111 if (S_ISDIR(mode))
112 return flags;
113 else if (S_ISREG(mode))
114 return flags & ~FS_DIRSYNC_FL;
115 else
116 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
117}
118
119/*
120 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
121 */
122static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
123{
124 unsigned int iflags = 0;
125
126 if (flags & BTRFS_INODE_SYNC)
127 iflags |= FS_SYNC_FL;
128 if (flags & BTRFS_INODE_IMMUTABLE)
129 iflags |= FS_IMMUTABLE_FL;
130 if (flags & BTRFS_INODE_APPEND)
131 iflags |= FS_APPEND_FL;
132 if (flags & BTRFS_INODE_NODUMP)
133 iflags |= FS_NODUMP_FL;
134 if (flags & BTRFS_INODE_NOATIME)
135 iflags |= FS_NOATIME_FL;
136 if (flags & BTRFS_INODE_DIRSYNC)
137 iflags |= FS_DIRSYNC_FL;
d0092bdd
LZ
138 if (flags & BTRFS_INODE_NODATACOW)
139 iflags |= FS_NOCOW_FL;
140
13f48dc9 141 if (flags & BTRFS_INODE_NOCOMPRESS)
d0092bdd 142 iflags |= FS_NOCOMP_FL;
13f48dc9
ST
143 else if (flags & BTRFS_INODE_COMPRESS)
144 iflags |= FS_COMPR_FL;
6cbff00f
CH
145
146 return iflags;
147}
148
149/*
150 * Update inode->i_flags based on the btrfs internal flags.
151 */
152void btrfs_update_iflags(struct inode *inode)
153{
154 struct btrfs_inode *ip = BTRFS_I(inode);
3cc79392 155 unsigned int new_fl = 0;
6cbff00f
CH
156
157 if (ip->flags & BTRFS_INODE_SYNC)
3cc79392 158 new_fl |= S_SYNC;
6cbff00f 159 if (ip->flags & BTRFS_INODE_IMMUTABLE)
3cc79392 160 new_fl |= S_IMMUTABLE;
6cbff00f 161 if (ip->flags & BTRFS_INODE_APPEND)
3cc79392 162 new_fl |= S_APPEND;
6cbff00f 163 if (ip->flags & BTRFS_INODE_NOATIME)
3cc79392 164 new_fl |= S_NOATIME;
6cbff00f 165 if (ip->flags & BTRFS_INODE_DIRSYNC)
3cc79392
FM
166 new_fl |= S_DIRSYNC;
167
168 set_mask_bits(&inode->i_flags,
169 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
170 new_fl);
6cbff00f
CH
171}
172
6cbff00f
CH
173static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
174{
496ad9aa 175 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
6cbff00f
CH
176 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
177
178 if (copy_to_user(arg, &flags, sizeof(flags)))
179 return -EFAULT;
180 return 0;
181}
182
75e7cb7f
LB
183static int check_flags(unsigned int flags)
184{
185 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
186 FS_NOATIME_FL | FS_NODUMP_FL | \
187 FS_SYNC_FL | FS_DIRSYNC_FL | \
e1e8fb6a
LZ
188 FS_NOCOMP_FL | FS_COMPR_FL |
189 FS_NOCOW_FL))
75e7cb7f
LB
190 return -EOPNOTSUPP;
191
192 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
193 return -EINVAL;
194
75e7cb7f
LB
195 return 0;
196}
197
6cbff00f
CH
198static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
199{
496ad9aa 200 struct inode *inode = file_inode(file);
0b246afa 201 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
6cbff00f
CH
202 struct btrfs_inode *ip = BTRFS_I(inode);
203 struct btrfs_root *root = ip->root;
204 struct btrfs_trans_handle *trans;
205 unsigned int flags, oldflags;
206 int ret;
f062abf0
LZ
207 u64 ip_oldflags;
208 unsigned int i_oldflags;
7e97b8da 209 umode_t mode;
6cbff00f 210
bd60ea0f
DS
211 if (!inode_owner_or_capable(inode))
212 return -EPERM;
213
b83cc969
LZ
214 if (btrfs_root_readonly(root))
215 return -EROFS;
216
6cbff00f
CH
217 if (copy_from_user(&flags, arg, sizeof(flags)))
218 return -EFAULT;
219
75e7cb7f
LB
220 ret = check_flags(flags);
221 if (ret)
222 return ret;
f46b5a66 223
e7848683
JK
224 ret = mnt_want_write_file(file);
225 if (ret)
226 return ret;
227
5955102c 228 inode_lock(inode);
6cbff00f 229
f062abf0
LZ
230 ip_oldflags = ip->flags;
231 i_oldflags = inode->i_flags;
7e97b8da 232 mode = inode->i_mode;
f062abf0 233
6cbff00f
CH
234 flags = btrfs_mask_flags(inode->i_mode, flags);
235 oldflags = btrfs_flags_to_ioctl(ip->flags);
236 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
237 if (!capable(CAP_LINUX_IMMUTABLE)) {
238 ret = -EPERM;
239 goto out_unlock;
240 }
241 }
242
6cbff00f
CH
243 if (flags & FS_SYNC_FL)
244 ip->flags |= BTRFS_INODE_SYNC;
245 else
246 ip->flags &= ~BTRFS_INODE_SYNC;
247 if (flags & FS_IMMUTABLE_FL)
248 ip->flags |= BTRFS_INODE_IMMUTABLE;
249 else
250 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
251 if (flags & FS_APPEND_FL)
252 ip->flags |= BTRFS_INODE_APPEND;
253 else
254 ip->flags &= ~BTRFS_INODE_APPEND;
255 if (flags & FS_NODUMP_FL)
256 ip->flags |= BTRFS_INODE_NODUMP;
257 else
258 ip->flags &= ~BTRFS_INODE_NODUMP;
259 if (flags & FS_NOATIME_FL)
260 ip->flags |= BTRFS_INODE_NOATIME;
261 else
262 ip->flags &= ~BTRFS_INODE_NOATIME;
263 if (flags & FS_DIRSYNC_FL)
264 ip->flags |= BTRFS_INODE_DIRSYNC;
265 else
266 ip->flags &= ~BTRFS_INODE_DIRSYNC;
7e97b8da
DS
267 if (flags & FS_NOCOW_FL) {
268 if (S_ISREG(mode)) {
269 /*
270 * It's safe to turn csums off here, no extents exist.
271 * Otherwise we want the flag to reflect the real COW
272 * status of the file and will not set it.
273 */
274 if (inode->i_size == 0)
275 ip->flags |= BTRFS_INODE_NODATACOW
276 | BTRFS_INODE_NODATASUM;
277 } else {
278 ip->flags |= BTRFS_INODE_NODATACOW;
279 }
280 } else {
281 /*
01327610 282 * Revert back under same assumptions as above
7e97b8da
DS
283 */
284 if (S_ISREG(mode)) {
285 if (inode->i_size == 0)
286 ip->flags &= ~(BTRFS_INODE_NODATACOW
287 | BTRFS_INODE_NODATASUM);
288 } else {
289 ip->flags &= ~BTRFS_INODE_NODATACOW;
290 }
291 }
6cbff00f 292
75e7cb7f
LB
293 /*
294 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
295 * flag may be changed automatically if compression code won't make
296 * things smaller.
297 */
298 if (flags & FS_NOCOMP_FL) {
299 ip->flags &= ~BTRFS_INODE_COMPRESS;
300 ip->flags |= BTRFS_INODE_NOCOMPRESS;
63541927
FDBM
301
302 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
303 if (ret && ret != -ENODATA)
304 goto out_drop;
75e7cb7f 305 } else if (flags & FS_COMPR_FL) {
63541927
FDBM
306 const char *comp;
307
75e7cb7f
LB
308 ip->flags |= BTRFS_INODE_COMPRESS;
309 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
63541927 310
93370509
DS
311 comp = btrfs_compress_type2str(fs_info->compress_type);
312 if (!comp || comp[0] == 0)
313 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
314
63541927
FDBM
315 ret = btrfs_set_prop(inode, "btrfs.compression",
316 comp, strlen(comp), 0);
317 if (ret)
318 goto out_drop;
319
ebcb904d 320 } else {
78a017a2
FM
321 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
322 if (ret && ret != -ENODATA)
323 goto out_drop;
ebcb904d 324 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
75e7cb7f 325 }
6cbff00f 326
4da6f1a3 327 trans = btrfs_start_transaction(root, 1);
f062abf0
LZ
328 if (IS_ERR(trans)) {
329 ret = PTR_ERR(trans);
330 goto out_drop;
331 }
6cbff00f 332
306424cc 333 btrfs_update_iflags(inode);
0c4d2d95 334 inode_inc_iversion(inode);
c2050a45 335 inode->i_ctime = current_time(inode);
6cbff00f 336 ret = btrfs_update_inode(trans, root, inode);
6cbff00f 337
3a45bb20 338 btrfs_end_transaction(trans);
f062abf0
LZ
339 out_drop:
340 if (ret) {
341 ip->flags = ip_oldflags;
342 inode->i_flags = i_oldflags;
343 }
6cbff00f 344
6cbff00f 345 out_unlock:
5955102c 346 inode_unlock(inode);
e7848683 347 mnt_drop_write_file(file);
2d4e6f6a 348 return ret;
6cbff00f
CH
349}
350
351static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
352{
496ad9aa 353 struct inode *inode = file_inode(file);
6cbff00f
CH
354
355 return put_user(inode->i_generation, arg);
356}
f46b5a66 357
f7039b1d
LD
358static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
359{
0b246afa
JM
360 struct inode *inode = file_inode(file);
361 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
f7039b1d
LD
362 struct btrfs_device *device;
363 struct request_queue *q;
364 struct fstrim_range range;
365 u64 minlen = ULLONG_MAX;
366 u64 num_devices = 0;
815745cf 367 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
f7039b1d
LD
368 int ret;
369
370 if (!capable(CAP_SYS_ADMIN))
371 return -EPERM;
372
1f78160c
XG
373 rcu_read_lock();
374 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
375 dev_list) {
f7039b1d
LD
376 if (!device->bdev)
377 continue;
378 q = bdev_get_queue(device->bdev);
379 if (blk_queue_discard(q)) {
380 num_devices++;
50d0446e 381 minlen = min_t(u64, q->limits.discard_granularity,
f7039b1d
LD
382 minlen);
383 }
384 }
1f78160c 385 rcu_read_unlock();
f4c697e6 386
f7039b1d
LD
387 if (!num_devices)
388 return -EOPNOTSUPP;
f7039b1d
LD
389 if (copy_from_user(&range, arg, sizeof(range)))
390 return -EFAULT;
e515c18b
LC
391 if (range.start > total_bytes ||
392 range.len < fs_info->sb->s_blocksize)
f4c697e6 393 return -EINVAL;
f7039b1d 394
f4c697e6 395 range.len = min(range.len, total_bytes - range.start);
f7039b1d 396 range.minlen = max(range.minlen, minlen);
2ff7e61e 397 ret = btrfs_trim_fs(fs_info, &range);
f7039b1d
LD
398 if (ret < 0)
399 return ret;
400
401 if (copy_to_user(arg, &range, sizeof(range)))
402 return -EFAULT;
403
404 return 0;
405}
406
dd5f9615
SB
407int btrfs_is_empty_uuid(u8 *uuid)
408{
46e0f66a
CM
409 int i;
410
411 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
412 if (uuid[i])
413 return 0;
414 }
415 return 1;
dd5f9615
SB
416}
417
d5c12070 418static noinline int create_subvol(struct inode *dir,
cb8e7090 419 struct dentry *dentry,
52f75f4f 420 const char *name, int namelen,
6f72c7e2 421 u64 *async_transid,
8696c533 422 struct btrfs_qgroup_inherit *inherit)
f46b5a66 423{
0b246afa 424 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
f46b5a66
CH
425 struct btrfs_trans_handle *trans;
426 struct btrfs_key key;
49a3c4d9 427 struct btrfs_root_item *root_item;
f46b5a66
CH
428 struct btrfs_inode_item *inode_item;
429 struct extent_buffer *leaf;
d5c12070 430 struct btrfs_root *root = BTRFS_I(dir)->root;
76dda93c 431 struct btrfs_root *new_root;
d5c12070 432 struct btrfs_block_rsv block_rsv;
c2050a45 433 struct timespec cur_time = current_time(dir);
5662344b 434 struct inode *inode;
f46b5a66
CH
435 int ret;
436 int err;
437 u64 objectid;
438 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
3de4586c 439 u64 index = 0;
d5c12070 440 u64 qgroup_reserved;
8ea05e3a 441 uuid_le new_uuid;
f46b5a66 442
49a3c4d9
DS
443 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
444 if (!root_item)
445 return -ENOMEM;
446
0b246afa 447 ret = btrfs_find_free_objectid(fs_info->tree_root, &objectid);
2fbe8c8a 448 if (ret)
49a3c4d9 449 goto fail_free;
6a912213 450
e09fe2d2
QW
451 /*
452 * Don't create subvolume whose level is not zero. Or qgroup will be
01327610 453 * screwed up since it assumes subvolume qgroup's level to be 0.
e09fe2d2 454 */
49a3c4d9
DS
455 if (btrfs_qgroup_level(objectid)) {
456 ret = -ENOSPC;
457 goto fail_free;
458 }
e09fe2d2 459
d5c12070 460 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
9ed74f2d 461 /*
d5c12070
MX
462 * The same as the snapshot creation, please see the comment
463 * of create_snapshot().
9ed74f2d 464 */
d5c12070 465 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
dd5f9615 466 8, &qgroup_reserved, false);
d5c12070 467 if (ret)
49a3c4d9 468 goto fail_free;
d5c12070
MX
469
470 trans = btrfs_start_transaction(root, 0);
471 if (IS_ERR(trans)) {
472 ret = PTR_ERR(trans);
7775c818 473 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
49a3c4d9 474 goto fail_free;
d5c12070
MX
475 }
476 trans->block_rsv = &block_rsv;
477 trans->bytes_reserved = block_rsv.size;
f46b5a66 478
0b246afa 479 ret = btrfs_qgroup_inherit(trans, fs_info, 0, objectid, inherit);
6f72c7e2
AJ
480 if (ret)
481 goto fail;
482
4d75f8a9 483 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
8e8a1e31
JB
484 if (IS_ERR(leaf)) {
485 ret = PTR_ERR(leaf);
486 goto fail;
487 }
f46b5a66 488
b159fa28 489 memzero_extent_buffer(leaf, 0, sizeof(struct btrfs_header));
f46b5a66
CH
490 btrfs_set_header_bytenr(leaf, leaf->start);
491 btrfs_set_header_generation(leaf, trans->transid);
5d4f98a2 492 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
f46b5a66
CH
493 btrfs_set_header_owner(leaf, objectid);
494
0b246afa
JM
495 write_extent_buffer_fsid(leaf, fs_info->fsid);
496 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
f46b5a66
CH
497 btrfs_mark_buffer_dirty(leaf);
498
49a3c4d9 499 inode_item = &root_item->inode;
3cae210f
QW
500 btrfs_set_stack_inode_generation(inode_item, 1);
501 btrfs_set_stack_inode_size(inode_item, 3);
502 btrfs_set_stack_inode_nlink(inode_item, 1);
da17066c 503 btrfs_set_stack_inode_nbytes(inode_item,
0b246afa 504 fs_info->nodesize);
3cae210f 505 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
f46b5a66 506
49a3c4d9
DS
507 btrfs_set_root_flags(root_item, 0);
508 btrfs_set_root_limit(root_item, 0);
3cae210f 509 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
08fe4db1 510
49a3c4d9
DS
511 btrfs_set_root_bytenr(root_item, leaf->start);
512 btrfs_set_root_generation(root_item, trans->transid);
513 btrfs_set_root_level(root_item, 0);
514 btrfs_set_root_refs(root_item, 1);
515 btrfs_set_root_used(root_item, leaf->len);
516 btrfs_set_root_last_snapshot(root_item, 0);
f46b5a66 517
49a3c4d9
DS
518 btrfs_set_root_generation_v2(root_item,
519 btrfs_root_generation(root_item));
8ea05e3a 520 uuid_le_gen(&new_uuid);
49a3c4d9
DS
521 memcpy(root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
522 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
523 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
524 root_item->ctime = root_item->otime;
525 btrfs_set_root_ctransid(root_item, trans->transid);
526 btrfs_set_root_otransid(root_item, trans->transid);
f46b5a66 527
925baedd 528 btrfs_tree_unlock(leaf);
f46b5a66
CH
529 free_extent_buffer(leaf);
530 leaf = NULL;
531
49a3c4d9 532 btrfs_set_root_dirid(root_item, new_dirid);
f46b5a66
CH
533
534 key.objectid = objectid;
5d4f98a2 535 key.offset = 0;
962a298f 536 key.type = BTRFS_ROOT_ITEM_KEY;
0b246afa 537 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
49a3c4d9 538 root_item);
f46b5a66
CH
539 if (ret)
540 goto fail;
541
76dda93c 542 key.offset = (u64)-1;
0b246afa 543 new_root = btrfs_read_fs_root_no_name(fs_info, &key);
79787eaa 544 if (IS_ERR(new_root)) {
79787eaa 545 ret = PTR_ERR(new_root);
66642832 546 btrfs_abort_transaction(trans, ret);
79787eaa
JM
547 goto fail;
548 }
76dda93c
YZ
549
550 btrfs_record_root_in_trans(trans, new_root);
551
63541927 552 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
ce598979
MF
553 if (ret) {
554 /* We potentially lose an unused inode item here */
66642832 555 btrfs_abort_transaction(trans, ret);
ce598979
MF
556 goto fail;
557 }
558
f32e48e9
CR
559 mutex_lock(&new_root->objectid_mutex);
560 new_root->highest_objectid = new_dirid;
561 mutex_unlock(&new_root->objectid_mutex);
562
f46b5a66
CH
563 /*
564 * insert the directory item
565 */
877574e2 566 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
79787eaa 567 if (ret) {
66642832 568 btrfs_abort_transaction(trans, ret);
79787eaa
JM
569 goto fail;
570 }
3de4586c
CM
571
572 ret = btrfs_insert_dir_item(trans, root,
8e7611cf 573 name, namelen, BTRFS_I(dir), &key,
3de4586c 574 BTRFS_FT_DIR, index);
79787eaa 575 if (ret) {
66642832 576 btrfs_abort_transaction(trans, ret);
f46b5a66 577 goto fail;
79787eaa 578 }
0660b5af 579
6ef06d27 580 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
52c26179
YZ
581 ret = btrfs_update_inode(trans, root, dir);
582 BUG_ON(ret);
583
0b246afa 584 ret = btrfs_add_root_ref(trans, fs_info,
4df27c4d 585 objectid, root->root_key.objectid,
4a0cc7ca 586 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
76dda93c 587 BUG_ON(ret);
f46b5a66 588
0b246afa 589 ret = btrfs_uuid_tree_add(trans, fs_info, root_item->uuid,
6bccf3ab 590 BTRFS_UUID_KEY_SUBVOL, objectid);
dd5f9615 591 if (ret)
66642832 592 btrfs_abort_transaction(trans, ret);
dd5f9615 593
f46b5a66 594fail:
49a3c4d9 595 kfree(root_item);
d5c12070
MX
596 trans->block_rsv = NULL;
597 trans->bytes_reserved = 0;
7775c818 598 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
de6e8200 599
72fd032e
SW
600 if (async_transid) {
601 *async_transid = trans->transid;
3a45bb20 602 err = btrfs_commit_transaction_async(trans, 1);
00d71c9c 603 if (err)
3a45bb20 604 err = btrfs_commit_transaction(trans);
72fd032e 605 } else {
3a45bb20 606 err = btrfs_commit_transaction(trans);
72fd032e 607 }
f46b5a66
CH
608 if (err && !ret)
609 ret = err;
1a65e24b 610
5662344b
TI
611 if (!ret) {
612 inode = btrfs_lookup_dentry(dir, dentry);
de6e8200
LB
613 if (IS_ERR(inode))
614 return PTR_ERR(inode);
5662344b
TI
615 d_instantiate(dentry, inode);
616 }
f46b5a66 617 return ret;
49a3c4d9
DS
618
619fail_free:
620 kfree(root_item);
621 return ret;
f46b5a66
CH
622}
623
e9662f70 624static int create_snapshot(struct btrfs_root *root, struct inode *dir,
61d7e4cb 625 struct dentry *dentry,
e9662f70
MX
626 u64 *async_transid, bool readonly,
627 struct btrfs_qgroup_inherit *inherit)
f46b5a66 628{
0b246afa 629 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
2e4bfab9 630 struct inode *inode;
f46b5a66
CH
631 struct btrfs_pending_snapshot *pending_snapshot;
632 struct btrfs_trans_handle *trans;
2e4bfab9 633 int ret;
f46b5a66 634
27cdeb70 635 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
f46b5a66
CH
636 return -EINVAL;
637
23269bf5 638 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
a1ee7362
DS
639 if (!pending_snapshot)
640 return -ENOMEM;
641
b0c0ea63 642 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
23269bf5 643 GFP_KERNEL);
8546b570
DS
644 pending_snapshot->path = btrfs_alloc_path();
645 if (!pending_snapshot->root_item || !pending_snapshot->path) {
b0c0ea63
DS
646 ret = -ENOMEM;
647 goto free_pending;
648 }
649
ea14b57f 650 atomic_inc(&root->will_be_snapshotted);
4e857c58 651 smp_mb__after_atomic();
45bac0f3
LB
652 /* wait for no snapshot writes */
653 wait_event(root->subv_writers->wait,
654 percpu_counter_sum(&root->subv_writers->counter) == 0);
8257b2dc 655
6a03843d
MX
656 ret = btrfs_start_delalloc_inodes(root, 0);
657 if (ret)
a1ee7362 658 goto dec_and_free;
6a03843d 659
6374e57a 660 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
6a03843d 661
66d8f3dd
MX
662 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
663 BTRFS_BLOCK_RSV_TEMP);
d5c12070
MX
664 /*
665 * 1 - parent dir inode
666 * 2 - dir entries
667 * 1 - root item
668 * 2 - root ref/backref
669 * 1 - root of snapshot
dd5f9615 670 * 1 - UUID item
d5c12070
MX
671 */
672 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
dd5f9615 673 &pending_snapshot->block_rsv, 8,
ee3441b4
JM
674 &pending_snapshot->qgroup_reserved,
675 false);
d5c12070 676 if (ret)
a1ee7362 677 goto dec_and_free;
d5c12070 678
3de4586c 679 pending_snapshot->dentry = dentry;
f46b5a66 680 pending_snapshot->root = root;
b83cc969 681 pending_snapshot->readonly = readonly;
e9662f70 682 pending_snapshot->dir = dir;
8696c533 683 pending_snapshot->inherit = inherit;
a22285a6 684
d5c12070 685 trans = btrfs_start_transaction(root, 0);
a22285a6
YZ
686 if (IS_ERR(trans)) {
687 ret = PTR_ERR(trans);
688 goto fail;
689 }
690
0b246afa 691 spin_lock(&fs_info->trans_lock);
f46b5a66
CH
692 list_add(&pending_snapshot->list,
693 &trans->transaction->pending_snapshots);
0b246afa 694 spin_unlock(&fs_info->trans_lock);
72fd032e
SW
695 if (async_transid) {
696 *async_transid = trans->transid;
3a45bb20 697 ret = btrfs_commit_transaction_async(trans, 1);
00d71c9c 698 if (ret)
3a45bb20 699 ret = btrfs_commit_transaction(trans);
72fd032e 700 } else {
3a45bb20 701 ret = btrfs_commit_transaction(trans);
72fd032e 702 }
aec8030a 703 if (ret)
c37b2b62 704 goto fail;
a22285a6
YZ
705
706 ret = pending_snapshot->error;
707 if (ret)
708 goto fail;
709
d3797308
CM
710 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
711 if (ret)
712 goto fail;
713
2b0143b5 714 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
2e4bfab9
YZ
715 if (IS_ERR(inode)) {
716 ret = PTR_ERR(inode);
717 goto fail;
718 }
5662344b 719
2e4bfab9
YZ
720 d_instantiate(dentry, inode);
721 ret = 0;
722fail:
7775c818 723 btrfs_subvolume_release_metadata(fs_info, &pending_snapshot->block_rsv);
a1ee7362 724dec_and_free:
ea14b57f
DS
725 if (atomic_dec_and_test(&root->will_be_snapshotted))
726 wake_up_atomic_t(&root->will_be_snapshotted);
b0c0ea63
DS
727free_pending:
728 kfree(pending_snapshot->root_item);
8546b570 729 btrfs_free_path(pending_snapshot->path);
a1ee7362
DS
730 kfree(pending_snapshot);
731
f46b5a66
CH
732 return ret;
733}
734
4260f7c7
SW
735/* copy of may_delete in fs/namei.c()
736 * Check whether we can remove a link victim from directory dir, check
737 * whether the type of victim is right.
738 * 1. We can't do it if dir is read-only (done in permission())
739 * 2. We should have write and exec permissions on dir
740 * 3. We can't remove anything from append-only dir
741 * 4. We can't do anything with immutable dir (done in permission())
742 * 5. If the sticky bit on dir is set we should either
743 * a. be owner of dir, or
744 * b. be owner of victim, or
745 * c. have CAP_FOWNER capability
01327610 746 * 6. If the victim is append-only or immutable we can't do anything with
4260f7c7
SW
747 * links pointing to it.
748 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
749 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
750 * 9. We can't remove a root or mountpoint.
751 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
752 * nfs_async_unlink().
753 */
754
67871254 755static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
4260f7c7
SW
756{
757 int error;
758
2b0143b5 759 if (d_really_is_negative(victim))
4260f7c7
SW
760 return -ENOENT;
761
2b0143b5 762 BUG_ON(d_inode(victim->d_parent) != dir);
4fa6b5ec 763 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
4260f7c7
SW
764
765 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
766 if (error)
767 return error;
768 if (IS_APPEND(dir))
769 return -EPERM;
2b0143b5
DH
770 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
771 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
4260f7c7
SW
772 return -EPERM;
773 if (isdir) {
e36cb0b8 774 if (!d_is_dir(victim))
4260f7c7
SW
775 return -ENOTDIR;
776 if (IS_ROOT(victim))
777 return -EBUSY;
e36cb0b8 778 } else if (d_is_dir(victim))
4260f7c7
SW
779 return -EISDIR;
780 if (IS_DEADDIR(dir))
781 return -ENOENT;
782 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
783 return -EBUSY;
784 return 0;
785}
786
cb8e7090
CH
787/* copy of may_create in fs/namei.c() */
788static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
789{
2b0143b5 790 if (d_really_is_positive(child))
cb8e7090
CH
791 return -EEXIST;
792 if (IS_DEADDIR(dir))
793 return -ENOENT;
794 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
795}
796
797/*
798 * Create a new subvolume below @parent. This is largely modeled after
799 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
800 * inside this filesystem so it's quite a bit simpler.
801 */
92872094 802static noinline int btrfs_mksubvol(const struct path *parent,
52f75f4f 803 const char *name, int namelen,
72fd032e 804 struct btrfs_root *snap_src,
6f72c7e2 805 u64 *async_transid, bool readonly,
8696c533 806 struct btrfs_qgroup_inherit *inherit)
cb8e7090 807{
0b246afa
JM
808 struct inode *dir = d_inode(parent->dentry);
809 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
cb8e7090
CH
810 struct dentry *dentry;
811 int error;
812
00235411
AV
813 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
814 if (error == -EINTR)
815 return error;
cb8e7090
CH
816
817 dentry = lookup_one_len(name, parent->dentry, namelen);
818 error = PTR_ERR(dentry);
819 if (IS_ERR(dentry))
820 goto out_unlock;
821
76dda93c 822 error = btrfs_may_create(dir, dentry);
cb8e7090 823 if (error)
a874a63e 824 goto out_dput;
cb8e7090 825
9c52057c
CM
826 /*
827 * even if this name doesn't exist, we may get hash collisions.
828 * check for them now when we can safely fail
829 */
830 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
831 dir->i_ino, name,
832 namelen);
833 if (error)
834 goto out_dput;
835
0b246afa 836 down_read(&fs_info->subvol_sem);
76dda93c
YZ
837
838 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
839 goto out_up_read;
840
3de4586c 841 if (snap_src) {
61d7e4cb 842 error = create_snapshot(snap_src, dir, dentry,
6f72c7e2 843 async_transid, readonly, inherit);
3de4586c 844 } else {
d5c12070
MX
845 error = create_subvol(dir, dentry, name, namelen,
846 async_transid, inherit);
3de4586c 847 }
76dda93c
YZ
848 if (!error)
849 fsnotify_mkdir(dir, dentry);
850out_up_read:
0b246afa 851 up_read(&fs_info->subvol_sem);
cb8e7090
CH
852out_dput:
853 dput(dentry);
854out_unlock:
5955102c 855 inode_unlock(dir);
cb8e7090
CH
856 return error;
857}
858
4cb5300b
CM
859/*
860 * When we're defragging a range, we don't want to kick it off again
861 * if it is really just waiting for delalloc to send it down.
862 * If we find a nice big extent or delalloc range for the bytes in the
863 * file you want to defrag, we return 0 to let you know to skip this
864 * part of the file
865 */
aab110ab 866static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
4cb5300b
CM
867{
868 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
869 struct extent_map *em = NULL;
870 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
871 u64 end;
872
873 read_lock(&em_tree->lock);
09cbfeaf 874 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
4cb5300b
CM
875 read_unlock(&em_tree->lock);
876
877 if (em) {
878 end = extent_map_end(em);
879 free_extent_map(em);
880 if (end - offset > thresh)
881 return 0;
882 }
883 /* if we already have a nice delalloc here, just stop */
884 thresh /= 2;
885 end = count_range_bits(io_tree, &offset, offset + thresh,
886 thresh, EXTENT_DELALLOC, 1);
887 if (end >= thresh)
888 return 0;
889 return 1;
890}
891
892/*
893 * helper function to walk through a file and find extents
894 * newer than a specific transid, and smaller than thresh.
895 *
896 * This is used by the defragging code to find new and small
897 * extents
898 */
899static int find_new_extents(struct btrfs_root *root,
900 struct inode *inode, u64 newer_than,
aab110ab 901 u64 *off, u32 thresh)
4cb5300b
CM
902{
903 struct btrfs_path *path;
904 struct btrfs_key min_key;
4cb5300b
CM
905 struct extent_buffer *leaf;
906 struct btrfs_file_extent_item *extent;
907 int type;
908 int ret;
4a0cc7ca 909 u64 ino = btrfs_ino(BTRFS_I(inode));
4cb5300b
CM
910
911 path = btrfs_alloc_path();
912 if (!path)
913 return -ENOMEM;
914
a4689d2b 915 min_key.objectid = ino;
4cb5300b
CM
916 min_key.type = BTRFS_EXTENT_DATA_KEY;
917 min_key.offset = *off;
918
67871254 919 while (1) {
6174d3cb 920 ret = btrfs_search_forward(root, &min_key, path, newer_than);
4cb5300b
CM
921 if (ret != 0)
922 goto none;
f094c9bd 923process_slot:
a4689d2b 924 if (min_key.objectid != ino)
4cb5300b
CM
925 goto none;
926 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
927 goto none;
928
929 leaf = path->nodes[0];
930 extent = btrfs_item_ptr(leaf, path->slots[0],
931 struct btrfs_file_extent_item);
932
933 type = btrfs_file_extent_type(leaf, extent);
934 if (type == BTRFS_FILE_EXTENT_REG &&
935 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
936 check_defrag_in_cache(inode, min_key.offset, thresh)) {
937 *off = min_key.offset;
938 btrfs_free_path(path);
939 return 0;
940 }
941
f094c9bd
FM
942 path->slots[0]++;
943 if (path->slots[0] < btrfs_header_nritems(leaf)) {
944 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
945 goto process_slot;
946 }
947
4cb5300b
CM
948 if (min_key.offset == (u64)-1)
949 goto none;
950
951 min_key.offset++;
952 btrfs_release_path(path);
953 }
954none:
955 btrfs_free_path(path);
956 return -ENOENT;
957}
958
6c282eb4 959static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
17ce6ef8
LB
960{
961 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
6c282eb4
LZ
962 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
963 struct extent_map *em;
09cbfeaf 964 u64 len = PAGE_SIZE;
17ce6ef8 965
6c282eb4
LZ
966 /*
967 * hopefully we have this extent in the tree already, try without
968 * the full extent lock
969 */
17ce6ef8 970 read_lock(&em_tree->lock);
6c282eb4 971 em = lookup_extent_mapping(em_tree, start, len);
17ce6ef8
LB
972 read_unlock(&em_tree->lock);
973
6c282eb4 974 if (!em) {
308d9800
FM
975 struct extent_state *cached = NULL;
976 u64 end = start + len - 1;
977
6c282eb4 978 /* get the big lock and read metadata off disk */
ff13db41 979 lock_extent_bits(io_tree, start, end, &cached);
fc4f21b1 980 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
e43bbe5e 981 unlock_extent_cached(io_tree, start, end, &cached);
6c282eb4
LZ
982
983 if (IS_ERR(em))
984 return NULL;
985 }
986
987 return em;
988}
17ce6ef8 989
6c282eb4
LZ
990static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
991{
992 struct extent_map *next;
993 bool ret = true;
994
995 /* this is the last extent */
996 if (em->start + em->len >= i_size_read(inode))
997 return false;
998
999 next = defrag_lookup_extent(inode, em->start + em->len);
e9512d72
CM
1000 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1001 ret = false;
1002 else if ((em->block_start + em->block_len == next->block_start) &&
ee22184b 1003 (em->block_len > SZ_128K && next->block_len > SZ_128K))
6c282eb4
LZ
1004 ret = false;
1005
1006 free_extent_map(next);
17ce6ef8
LB
1007 return ret;
1008}
1009
aab110ab 1010static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
a43a2111
AM
1011 u64 *last_len, u64 *skip, u64 *defrag_end,
1012 int compress)
940100a4 1013{
6c282eb4 1014 struct extent_map *em;
940100a4 1015 int ret = 1;
6c282eb4 1016 bool next_mergeable = true;
4a3560c4 1017 bool prev_mergeable = true;
940100a4
CM
1018
1019 /*
008873ea 1020 * make sure that once we start defragging an extent, we keep on
940100a4
CM
1021 * defragging it
1022 */
1023 if (start < *defrag_end)
1024 return 1;
1025
1026 *skip = 0;
1027
6c282eb4
LZ
1028 em = defrag_lookup_extent(inode, start);
1029 if (!em)
1030 return 0;
940100a4
CM
1031
1032 /* this will cover holes, and inline extents */
17ce6ef8 1033 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
940100a4 1034 ret = 0;
17ce6ef8
LB
1035 goto out;
1036 }
1037
4a3560c4
LB
1038 if (!*defrag_end)
1039 prev_mergeable = false;
1040
6c282eb4 1041 next_mergeable = defrag_check_next_extent(inode, em);
940100a4 1042 /*
6c282eb4
LZ
1043 * we hit a real extent, if it is big or the next extent is not a
1044 * real extent, don't bother defragging it
940100a4 1045 */
a43a2111 1046 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
4a3560c4 1047 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
940100a4 1048 ret = 0;
17ce6ef8 1049out:
940100a4
CM
1050 /*
1051 * last_len ends up being a counter of how many bytes we've defragged.
1052 * every time we choose not to defrag an extent, we reset *last_len
1053 * so that the next tiny extent will force a defrag.
1054 *
1055 * The end result of this is that tiny extents before a single big
1056 * extent will force at least part of that big extent to be defragged.
1057 */
1058 if (ret) {
940100a4
CM
1059 *defrag_end = extent_map_end(em);
1060 } else {
1061 *last_len = 0;
1062 *skip = extent_map_end(em);
1063 *defrag_end = 0;
1064 }
1065
1066 free_extent_map(em);
1067 return ret;
1068}
1069
4cb5300b
CM
1070/*
1071 * it doesn't do much good to defrag one or two pages
1072 * at a time. This pulls in a nice chunk of pages
1073 * to COW and defrag.
1074 *
1075 * It also makes sure the delalloc code has enough
1076 * dirty data to avoid making new small extents as part
1077 * of the defrag
1078 *
1079 * It's a good idea to start RA on this range
1080 * before calling this.
1081 */
1082static int cluster_pages_for_defrag(struct inode *inode,
1083 struct page **pages,
1084 unsigned long start_index,
c41570c9 1085 unsigned long num_pages)
f46b5a66 1086{
4cb5300b
CM
1087 unsigned long file_end;
1088 u64 isize = i_size_read(inode);
1089 u64 page_start;
1090 u64 page_end;
1f12bd06 1091 u64 page_cnt;
4cb5300b
CM
1092 int ret;
1093 int i;
1094 int i_done;
3eaa2885 1095 struct btrfs_ordered_extent *ordered;
4cb5300b 1096 struct extent_state *cached_state = NULL;
600a45e1 1097 struct extent_io_tree *tree;
364ecf36 1098 struct extent_changeset *data_reserved = NULL;
3b16a4e3 1099 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
4cb5300b 1100
09cbfeaf 1101 file_end = (isize - 1) >> PAGE_SHIFT;
1f12bd06
LB
1102 if (!isize || start_index > file_end)
1103 return 0;
1104
1105 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
4cb5300b 1106
364ecf36 1107 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
09cbfeaf
KS
1108 start_index << PAGE_SHIFT,
1109 page_cnt << PAGE_SHIFT);
4cb5300b
CM
1110 if (ret)
1111 return ret;
4cb5300b 1112 i_done = 0;
600a45e1 1113 tree = &BTRFS_I(inode)->io_tree;
4cb5300b
CM
1114
1115 /* step one, lock all the pages */
1f12bd06 1116 for (i = 0; i < page_cnt; i++) {
4cb5300b 1117 struct page *page;
600a45e1 1118again:
a94733d0 1119 page = find_or_create_page(inode->i_mapping,
600a45e1 1120 start_index + i, mask);
4cb5300b
CM
1121 if (!page)
1122 break;
1123
600a45e1 1124 page_start = page_offset(page);
09cbfeaf 1125 page_end = page_start + PAGE_SIZE - 1;
600a45e1 1126 while (1) {
308d9800 1127 lock_extent_bits(tree, page_start, page_end,
ff13db41 1128 &cached_state);
600a45e1
MX
1129 ordered = btrfs_lookup_ordered_extent(inode,
1130 page_start);
308d9800 1131 unlock_extent_cached(tree, page_start, page_end,
e43bbe5e 1132 &cached_state);
600a45e1
MX
1133 if (!ordered)
1134 break;
1135
1136 unlock_page(page);
1137 btrfs_start_ordered_extent(inode, ordered, 1);
1138 btrfs_put_ordered_extent(ordered);
1139 lock_page(page);
1f12bd06
LB
1140 /*
1141 * we unlocked the page above, so we need check if
1142 * it was released or not.
1143 */
1144 if (page->mapping != inode->i_mapping) {
1145 unlock_page(page);
09cbfeaf 1146 put_page(page);
1f12bd06
LB
1147 goto again;
1148 }
600a45e1
MX
1149 }
1150
4cb5300b
CM
1151 if (!PageUptodate(page)) {
1152 btrfs_readpage(NULL, page);
1153 lock_page(page);
1154 if (!PageUptodate(page)) {
1155 unlock_page(page);
09cbfeaf 1156 put_page(page);
4cb5300b
CM
1157 ret = -EIO;
1158 break;
1159 }
1160 }
600a45e1 1161
600a45e1
MX
1162 if (page->mapping != inode->i_mapping) {
1163 unlock_page(page);
09cbfeaf 1164 put_page(page);
600a45e1
MX
1165 goto again;
1166 }
1167
4cb5300b
CM
1168 pages[i] = page;
1169 i_done++;
1170 }
1171 if (!i_done || ret)
1172 goto out;
1173
1751e8a6 1174 if (!(inode->i_sb->s_flags & SB_ACTIVE))
4cb5300b
CM
1175 goto out;
1176
1177 /*
1178 * so now we have a nice long stream of locked
1179 * and up to date pages, lets wait on them
1180 */
1181 for (i = 0; i < i_done; i++)
1182 wait_on_page_writeback(pages[i]);
1183
1184 page_start = page_offset(pages[0]);
09cbfeaf 1185 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
4cb5300b
CM
1186
1187 lock_extent_bits(&BTRFS_I(inode)->io_tree,
ff13db41 1188 page_start, page_end - 1, &cached_state);
4cb5300b
CM
1189 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1190 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
9e8a4a8b 1191 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
ae0f1625 1192 &cached_state);
4cb5300b 1193
1f12bd06 1194 if (i_done != page_cnt) {
9e0baf60
JB
1195 spin_lock(&BTRFS_I(inode)->lock);
1196 BTRFS_I(inode)->outstanding_extents++;
1197 spin_unlock(&BTRFS_I(inode)->lock);
bc42bda2 1198 btrfs_delalloc_release_space(inode, data_reserved,
09cbfeaf
KS
1199 start_index << PAGE_SHIFT,
1200 (page_cnt - i_done) << PAGE_SHIFT);
4cb5300b
CM
1201 }
1202
1203
9e8a4a8b 1204 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
018ed4f7 1205 &cached_state);
4cb5300b
CM
1206
1207 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
e43bbe5e 1208 page_start, page_end - 1, &cached_state);
4cb5300b
CM
1209
1210 for (i = 0; i < i_done; i++) {
1211 clear_page_dirty_for_io(pages[i]);
1212 ClearPageChecked(pages[i]);
1213 set_page_extent_mapped(pages[i]);
1214 set_page_dirty(pages[i]);
1215 unlock_page(pages[i]);
09cbfeaf 1216 put_page(pages[i]);
4cb5300b 1217 }
8b62f87b 1218 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
364ecf36 1219 extent_changeset_free(data_reserved);
4cb5300b
CM
1220 return i_done;
1221out:
1222 for (i = 0; i < i_done; i++) {
1223 unlock_page(pages[i]);
09cbfeaf 1224 put_page(pages[i]);
4cb5300b 1225 }
bc42bda2 1226 btrfs_delalloc_release_space(inode, data_reserved,
09cbfeaf
KS
1227 start_index << PAGE_SHIFT,
1228 page_cnt << PAGE_SHIFT);
8b62f87b 1229 btrfs_delalloc_release_extents(BTRFS_I(inode), 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 */
1751e8a6 1334 if (!(inode->i_sb->s_flags & SB_ACTIVE))
4cb5300b
CM
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 1503
ebbede42 1504 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
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
401e29c1 1529 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
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
c8bcbfbd 2207 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
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
735654ea 2676 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
2ff7e61e 2677 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
6b526ed7
AJ
2678 } else {
2679 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
2ff7e61e 2680 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
6b526ed7 2681 }
171938e5 2682 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
183860f6 2683
6b526ed7 2684 if (!ret) {
735654ea 2685 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
0b246afa 2686 btrfs_info(fs_info, "device deleted: id %llu",
6b526ed7
AJ
2687 vol_args->devid);
2688 else
0b246afa 2689 btrfs_info(fs_info, "device deleted: %s",
6b526ed7
AJ
2690 vol_args->name);
2691 }
183860f6
AJ
2692out:
2693 kfree(vol_args);
c47ca32d 2694err_drop:
4ac20c70 2695 mnt_drop_write_file(file);
f46b5a66
CH
2696 return ret;
2697}
2698
da24927b 2699static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
f46b5a66 2700{
0b246afa
JM
2701 struct inode *inode = file_inode(file);
2702 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
f46b5a66
CH
2703 struct btrfs_ioctl_vol_args *vol_args;
2704 int ret;
2705
e441d54d
CM
2706 if (!capable(CAP_SYS_ADMIN))
2707 return -EPERM;
2708
da24927b
MX
2709 ret = mnt_want_write_file(file);
2710 if (ret)
2711 return ret;
c146afad 2712
171938e5 2713 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
183860f6 2714 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
58d7bbf8
DS
2715 goto out_drop_write;
2716 }
2717
2718 vol_args = memdup_user(arg, sizeof(*vol_args));
2719 if (IS_ERR(vol_args)) {
2720 ret = PTR_ERR(vol_args);
183860f6
AJ
2721 goto out;
2722 }
2723
58d7bbf8 2724 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2ff7e61e 2725 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
183860f6 2726
ec95d491 2727 if (!ret)
0b246afa 2728 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
183860f6 2729 kfree(vol_args);
58d7bbf8 2730out:
171938e5 2731 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
58d7bbf8 2732out_drop_write:
4ac20c70 2733 mnt_drop_write_file(file);
58d7bbf8 2734
f46b5a66
CH
2735 return ret;
2736}
2737
2ff7e61e
JM
2738static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
2739 void __user *arg)
475f6387 2740{
027ed2f0 2741 struct btrfs_ioctl_fs_info_args *fi_args;
475f6387 2742 struct btrfs_device *device;
0b246afa 2743 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
027ed2f0 2744 int ret = 0;
475f6387 2745
027ed2f0
LZ
2746 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2747 if (!fi_args)
2748 return -ENOMEM;
2749
d03262c7 2750 rcu_read_lock();
027ed2f0 2751 fi_args->num_devices = fs_devices->num_devices;
475f6387 2752
d03262c7 2753 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
027ed2f0
LZ
2754 if (device->devid > fi_args->max_id)
2755 fi_args->max_id = device->devid;
475f6387 2756 }
d03262c7 2757 rcu_read_unlock();
475f6387 2758
d03262c7 2759 memcpy(&fi_args->fsid, fs_info->fsid, sizeof(fi_args->fsid));
bea7eafd
OS
2760 fi_args->nodesize = fs_info->nodesize;
2761 fi_args->sectorsize = fs_info->sectorsize;
2762 fi_args->clone_alignment = fs_info->sectorsize;
80a773fb 2763
027ed2f0
LZ
2764 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2765 ret = -EFAULT;
475f6387 2766
027ed2f0
LZ
2767 kfree(fi_args);
2768 return ret;
475f6387
JS
2769}
2770
2ff7e61e
JM
2771static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
2772 void __user *arg)
475f6387
JS
2773{
2774 struct btrfs_ioctl_dev_info_args *di_args;
2775 struct btrfs_device *dev;
475f6387
JS
2776 int ret = 0;
2777 char *s_uuid = NULL;
475f6387 2778
475f6387
JS
2779 di_args = memdup_user(arg, sizeof(*di_args));
2780 if (IS_ERR(di_args))
2781 return PTR_ERR(di_args);
2782
dd5f9615 2783 if (!btrfs_is_empty_uuid(di_args->uuid))
475f6387
JS
2784 s_uuid = di_args->uuid;
2785
c5593ca3 2786 rcu_read_lock();
0b246afa 2787 dev = btrfs_find_device(fs_info, di_args->devid, s_uuid, NULL);
475f6387
JS
2788
2789 if (!dev) {
2790 ret = -ENODEV;
2791 goto out;
2792 }
2793
2794 di_args->devid = dev->devid;
7cc8e58d
MX
2795 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2796 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
475f6387 2797 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
a27202fb 2798 if (dev->name) {
606686ee
JB
2799 struct rcu_string *name;
2800
606686ee 2801 name = rcu_dereference(dev->name);
6670d4c2 2802 strncpy(di_args->path, name->str, sizeof(di_args->path) - 1);
a27202fb
JM
2803 di_args->path[sizeof(di_args->path) - 1] = 0;
2804 } else {
99ba55ad 2805 di_args->path[0] = '\0';
a27202fb 2806 }
475f6387
JS
2807
2808out:
c5593ca3 2809 rcu_read_unlock();
475f6387
JS
2810 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2811 ret = -EFAULT;
2812
2813 kfree(di_args);
2814 return ret;
2815}
2816
f4414602 2817static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
416161db
MF
2818{
2819 struct page *page;
416161db 2820
416161db
MF
2821 page = grab_cache_page(inode->i_mapping, index);
2822 if (!page)
31314002 2823 return ERR_PTR(-ENOMEM);
416161db
MF
2824
2825 if (!PageUptodate(page)) {
31314002
FM
2826 int ret;
2827
2828 ret = btrfs_readpage(NULL, page);
2829 if (ret)
2830 return ERR_PTR(ret);
416161db
MF
2831 lock_page(page);
2832 if (!PageUptodate(page)) {
2833 unlock_page(page);
09cbfeaf 2834 put_page(page);
31314002
FM
2835 return ERR_PTR(-EIO);
2836 }
2837 if (page->mapping != inode->i_mapping) {
2838 unlock_page(page);
09cbfeaf 2839 put_page(page);
31314002 2840 return ERR_PTR(-EAGAIN);
416161db
MF
2841 }
2842 }
416161db
MF
2843
2844 return page;
2845}
2846
f4414602
MF
2847static int gather_extent_pages(struct inode *inode, struct page **pages,
2848 int num_pages, u64 off)
2849{
2850 int i;
09cbfeaf 2851 pgoff_t index = off >> PAGE_SHIFT;
f4414602
MF
2852
2853 for (i = 0; i < num_pages; i++) {
31314002 2854again:
f4414602 2855 pages[i] = extent_same_get_page(inode, index + i);
31314002
FM
2856 if (IS_ERR(pages[i])) {
2857 int err = PTR_ERR(pages[i]);
2858
2859 if (err == -EAGAIN)
2860 goto again;
2861 pages[i] = NULL;
2862 return err;
2863 }
f4414602
MF
2864 }
2865 return 0;
2866}
2867
e0bd70c6
FM
2868static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2869 bool retry_range_locking)
77fe20dc 2870{
e0bd70c6
FM
2871 /*
2872 * Do any pending delalloc/csum calculations on inode, one way or
2873 * another, and lock file content.
2874 * The locking order is:
2875 *
2876 * 1) pages
2877 * 2) range in the inode's io tree
2878 */
77fe20dc
MF
2879 while (1) {
2880 struct btrfs_ordered_extent *ordered;
2881 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2882 ordered = btrfs_lookup_first_ordered_extent(inode,
2883 off + len - 1);
ff5df9b8
FM
2884 if ((!ordered ||
2885 ordered->file_offset + ordered->len <= off ||
2886 ordered->file_offset >= off + len) &&
77fe20dc 2887 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
ff5df9b8
FM
2888 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2889 if (ordered)
2890 btrfs_put_ordered_extent(ordered);
77fe20dc 2891 break;
ff5df9b8 2892 }
77fe20dc
MF
2893 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2894 if (ordered)
2895 btrfs_put_ordered_extent(ordered);
e0bd70c6
FM
2896 if (!retry_range_locking)
2897 return -EAGAIN;
77fe20dc
MF
2898 btrfs_wait_ordered_range(inode, off, len);
2899 }
e0bd70c6 2900 return 0;
77fe20dc
MF
2901}
2902
f4414602 2903static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
416161db 2904{
5955102c
AV
2905 inode_unlock(inode1);
2906 inode_unlock(inode2);
416161db
MF
2907}
2908
f4414602
MF
2909static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2910{
2911 if (inode1 < inode2)
2912 swap(inode1, inode2);
2913
5955102c
AV
2914 inode_lock_nested(inode1, I_MUTEX_PARENT);
2915 inode_lock_nested(inode2, I_MUTEX_CHILD);
f4414602
MF
2916}
2917
2918static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2919 struct inode *inode2, u64 loff2, u64 len)
2920{
2921 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2922 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2923}
2924
e0bd70c6
FM
2925static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2926 struct inode *inode2, u64 loff2, u64 len,
2927 bool retry_range_locking)
416161db 2928{
e0bd70c6
FM
2929 int ret;
2930
416161db
MF
2931 if (inode1 < inode2) {
2932 swap(inode1, inode2);
2933 swap(loff1, loff2);
2934 }
e0bd70c6
FM
2935 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2936 if (ret)
2937 return ret;
2938 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2939 if (ret)
2940 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2941 loff1 + len - 1);
2942 return ret;
f4414602
MF
2943}
2944
2945struct cmp_pages {
2946 int num_pages;
2947 struct page **src_pages;
2948 struct page **dst_pages;
2949};
2950
2951static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2952{
2953 int i;
2954 struct page *pg;
2955
2956 for (i = 0; i < cmp->num_pages; i++) {
2957 pg = cmp->src_pages[i];
e0bd70c6
FM
2958 if (pg) {
2959 unlock_page(pg);
09cbfeaf 2960 put_page(pg);
e0bd70c6 2961 }
f4414602 2962 pg = cmp->dst_pages[i];
e0bd70c6
FM
2963 if (pg) {
2964 unlock_page(pg);
09cbfeaf 2965 put_page(pg);
e0bd70c6 2966 }
f4414602
MF
2967 }
2968 kfree(cmp->src_pages);
2969 kfree(cmp->dst_pages);
2970}
2971
2972static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2973 struct inode *dst, u64 dst_loff,
2974 u64 len, struct cmp_pages *cmp)
2975{
2976 int ret;
09cbfeaf 2977 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
f4414602
MF
2978 struct page **src_pgarr, **dst_pgarr;
2979
2980 /*
2981 * We must gather up all the pages before we initiate our
2982 * extent locking. We use an array for the page pointers. Size
2983 * of the array is bounded by len, which is in turn bounded by
2984 * BTRFS_MAX_DEDUPE_LEN.
2985 */
66722f7c
DS
2986 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
2987 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
f4414602
MF
2988 if (!src_pgarr || !dst_pgarr) {
2989 kfree(src_pgarr);
2990 kfree(dst_pgarr);
2991 return -ENOMEM;
416161db 2992 }
f4414602
MF
2993 cmp->num_pages = num_pages;
2994 cmp->src_pages = src_pgarr;
2995 cmp->dst_pages = dst_pgarr;
2996
b1517622
FM
2997 /*
2998 * If deduping ranges in the same inode, locking rules make it mandatory
2999 * to always lock pages in ascending order to avoid deadlocks with
3000 * concurrent tasks (such as starting writeback/delalloc).
3001 */
3002 if (src == dst && dst_loff < loff) {
3003 swap(src_pgarr, dst_pgarr);
3004 swap(loff, dst_loff);
3005 }
3006
3007 ret = gather_extent_pages(src, src_pgarr, cmp->num_pages, loff);
f4414602
MF
3008 if (ret)
3009 goto out;
3010
b1517622 3011 ret = gather_extent_pages(dst, dst_pgarr, cmp->num_pages, dst_loff);
f4414602
MF
3012
3013out:
3014 if (ret)
3015 btrfs_cmp_data_free(cmp);
78ad4ce0 3016 return ret;
416161db
MF
3017}
3018
1a287cfe 3019static int btrfs_cmp_data(u64 len, struct cmp_pages *cmp)
416161db
MF
3020{
3021 int ret = 0;
f4414602 3022 int i;
416161db 3023 struct page *src_page, *dst_page;
09cbfeaf 3024 unsigned int cmp_len = PAGE_SIZE;
416161db
MF
3025 void *addr, *dst_addr;
3026
f4414602 3027 i = 0;
416161db 3028 while (len) {
09cbfeaf 3029 if (len < PAGE_SIZE)
416161db
MF
3030 cmp_len = len;
3031
f4414602
MF
3032 BUG_ON(i >= cmp->num_pages);
3033
3034 src_page = cmp->src_pages[i];
3035 dst_page = cmp->dst_pages[i];
e0bd70c6
FM
3036 ASSERT(PageLocked(src_page));
3037 ASSERT(PageLocked(dst_page));
f4414602 3038
416161db
MF
3039 addr = kmap_atomic(src_page);
3040 dst_addr = kmap_atomic(dst_page);
3041
3042 flush_dcache_page(src_page);
3043 flush_dcache_page(dst_page);
3044
3045 if (memcmp(addr, dst_addr, cmp_len))
2b3909f8 3046 ret = -EBADE;
416161db
MF
3047
3048 kunmap_atomic(addr);
3049 kunmap_atomic(dst_addr);
416161db
MF
3050
3051 if (ret)
3052 break;
3053
416161db 3054 len -= cmp_len;
f4414602 3055 i++;
416161db
MF
3056 }
3057
3058 return ret;
3059}
3060
e1d227a4
MF
3061static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
3062 u64 olen)
416161db 3063{
e1d227a4 3064 u64 len = *plen;
416161db
MF
3065 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
3066
e1d227a4 3067 if (off + olen > inode->i_size || off + olen < off)
416161db 3068 return -EINVAL;
e1d227a4
MF
3069
3070 /* if we extend to eof, continue to block boundary */
3071 if (off + len == inode->i_size)
3072 *plen = len = ALIGN(inode->i_size, bs) - off;
3073
416161db
MF
3074 /* Check that we are block aligned - btrfs_clone() requires this */
3075 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
3076 return -EINVAL;
3077
3078 return 0;
3079}
3080
e1d227a4 3081static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
416161db
MF
3082 struct inode *dst, u64 dst_loff)
3083{
3084 int ret;
e1d227a4 3085 u64 len = olen;
f4414602 3086 struct cmp_pages cmp;
fc4badd9 3087 bool same_inode = (src == dst);
0efa9f48
MF
3088 u64 same_lock_start = 0;
3089 u64 same_lock_len = 0;
416161db 3090
113e8283
FM
3091 if (len == 0)
3092 return 0;
3093
fc4badd9 3094 if (same_inode)
5955102c 3095 inode_lock(src);
fc4badd9
OS
3096 else
3097 btrfs_double_inode_lock(src, dst);
416161db 3098
fc4badd9
OS
3099 ret = extent_same_check_offsets(src, loff, &len, olen);
3100 if (ret)
3101 goto out_unlock;
416161db 3102
fc4badd9
OS
3103 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3104 if (ret)
3105 goto out_unlock;
3106
3107 if (same_inode) {
0efa9f48
MF
3108 /*
3109 * Single inode case wants the same checks, except we
3110 * don't want our length pushed out past i_size as
3111 * comparing that data range makes no sense.
3112 *
3113 * extent_same_check_offsets() will do this for an
3114 * unaligned length at i_size, so catch it here and
3115 * reject the request.
3116 *
3117 * This effectively means we require aligned extents
3118 * for the single-inode case, whereas the other cases
3119 * allow an unaligned length so long as it ends at
3120 * i_size.
3121 */
3122 if (len != olen) {
3123 ret = -EINVAL;
3124 goto out_unlock;
3125 }
3126
3127 /* Check for overlapping ranges */
3128 if (dst_loff + len > loff && dst_loff < loff + len) {
3129 ret = -EINVAL;
3130 goto out_unlock;
3131 }
3132
3133 same_lock_start = min_t(u64, loff, dst_loff);
3134 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
0efa9f48 3135 }
416161db
MF
3136
3137 /* don't make the dst file partly checksummed */
3138 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3139 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3140 ret = -EINVAL;
3141 goto out_unlock;
3142 }
3143
e0bd70c6 3144again:
f4414602
MF
3145 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3146 if (ret)
3147 goto out_unlock;
3148
0efa9f48 3149 if (same_inode)
e0bd70c6
FM
3150 ret = lock_extent_range(src, same_lock_start, same_lock_len,
3151 false);
0efa9f48 3152 else
e0bd70c6
FM
3153 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
3154 false);
3155 /*
3156 * If one of the inodes has dirty pages in the respective range or
3157 * ordered extents, we need to flush dellaloc and wait for all ordered
3158 * extents in the range. We must unlock the pages and the ranges in the
3159 * io trees to avoid deadlocks when flushing delalloc (requires locking
3160 * pages) and when waiting for ordered extents to complete (they require
3161 * range locking).
3162 */
3163 if (ret == -EAGAIN) {
3164 /*
3165 * Ranges in the io trees already unlocked. Now unlock all
3166 * pages before waiting for all IO to complete.
3167 */
3168 btrfs_cmp_data_free(&cmp);
3169 if (same_inode) {
3170 btrfs_wait_ordered_range(src, same_lock_start,
3171 same_lock_len);
3172 } else {
3173 btrfs_wait_ordered_range(src, loff, len);
3174 btrfs_wait_ordered_range(dst, dst_loff, len);
3175 }
3176 goto again;
3177 }
3178 ASSERT(ret == 0);
3179 if (WARN_ON(ret)) {
3180 /* ranges in the io trees already unlocked */
3181 btrfs_cmp_data_free(&cmp);
3182 return ret;
3183 }
f4414602 3184
207910dd 3185 /* pass original length for comparison so we stay within i_size */
1a287cfe 3186 ret = btrfs_cmp_data(olen, &cmp);
416161db 3187 if (ret == 0)
1c919a5e 3188 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
416161db 3189
0efa9f48
MF
3190 if (same_inode)
3191 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3192 same_lock_start + same_lock_len - 1);
3193 else
3194 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
f4414602
MF
3195
3196 btrfs_cmp_data_free(&cmp);
416161db 3197out_unlock:
0efa9f48 3198 if (same_inode)
5955102c 3199 inode_unlock(src);
0efa9f48
MF
3200 else
3201 btrfs_double_inode_unlock(src, dst);
416161db
MF
3202
3203 return ret;
3204}
3205
ee22184b 3206#define BTRFS_MAX_DEDUPE_LEN SZ_16M
416161db 3207
2b3909f8
DW
3208ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3209 struct file *dst_file, u64 dst_loff)
416161db 3210{
2b3909f8
DW
3211 struct inode *src = file_inode(src_file);
3212 struct inode *dst = file_inode(dst_file);
416161db 3213 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
2b3909f8 3214 ssize_t res;
416161db 3215
2b3909f8
DW
3216 if (olen > BTRFS_MAX_DEDUPE_LEN)
3217 olen = BTRFS_MAX_DEDUPE_LEN;
416161db 3218
09cbfeaf 3219 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
416161db
MF
3220 /*
3221 * Btrfs does not support blocksize < page_size. As a
3222 * result, btrfs_cmp_data() won't correctly handle
3223 * this situation without an update.
3224 */
2b3909f8 3225 return -EINVAL;
416161db
MF
3226 }
3227
2b3909f8
DW
3228 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3229 if (res)
3230 return res;
3231 return olen;
416161db
MF
3232}
3233
f82a9901
FM
3234static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3235 struct inode *inode,
3236 u64 endoff,
3237 const u64 destoff,
1c919a5e
MF
3238 const u64 olen,
3239 int no_time_update)
f82a9901
FM
3240{
3241 struct btrfs_root *root = BTRFS_I(inode)->root;
3242 int ret;
3243
3244 inode_inc_iversion(inode);
1c919a5e 3245 if (!no_time_update)
c2050a45 3246 inode->i_mtime = inode->i_ctime = current_time(inode);
f82a9901
FM
3247 /*
3248 * We round up to the block size at eof when determining which
3249 * extents to clone above, but shouldn't round up the file size.
3250 */
3251 if (endoff > destoff + olen)
3252 endoff = destoff + olen;
3253 if (endoff > inode->i_size)
6ef06d27 3254 btrfs_i_size_write(BTRFS_I(inode), endoff);
f82a9901
FM
3255
3256 ret = btrfs_update_inode(trans, root, inode);
3257 if (ret) {
66642832 3258 btrfs_abort_transaction(trans, ret);
3a45bb20 3259 btrfs_end_transaction(trans);
f82a9901
FM
3260 goto out;
3261 }
3a45bb20 3262 ret = btrfs_end_transaction(trans);
f82a9901
FM
3263out:
3264 return ret;
3265}
3266
a2f392e4 3267static void clone_update_extent_map(struct btrfs_inode *inode,
7ffbb598
FM
3268 const struct btrfs_trans_handle *trans,
3269 const struct btrfs_path *path,
7ffbb598
FM
3270 const u64 hole_offset,
3271 const u64 hole_len)
3272{
a2f392e4 3273 struct extent_map_tree *em_tree = &inode->extent_tree;
7ffbb598
FM
3274 struct extent_map *em;
3275 int ret;
3276
3277 em = alloc_extent_map();
3278 if (!em) {
a2f392e4 3279 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
7ffbb598
FM
3280 return;
3281 }
3282
14f59796
FM
3283 if (path) {
3284 struct btrfs_file_extent_item *fi;
3285
3286 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3287 struct btrfs_file_extent_item);
a2f392e4 3288 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
7ffbb598
FM
3289 em->generation = -1;
3290 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3291 BTRFS_FILE_EXTENT_INLINE)
3292 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
a2f392e4 3293 &inode->runtime_flags);
7ffbb598
FM
3294 } else {
3295 em->start = hole_offset;
3296 em->len = hole_len;
3297 em->ram_bytes = em->len;
3298 em->orig_start = hole_offset;
3299 em->block_start = EXTENT_MAP_HOLE;
3300 em->block_len = 0;
3301 em->orig_block_len = 0;
3302 em->compress_type = BTRFS_COMPRESS_NONE;
3303 em->generation = trans->transid;
3304 }
3305
3306 while (1) {
3307 write_lock(&em_tree->lock);
3308 ret = add_extent_mapping(em_tree, em, 1);
3309 write_unlock(&em_tree->lock);
3310 if (ret != -EEXIST) {
3311 free_extent_map(em);
3312 break;
3313 }
a2f392e4 3314 btrfs_drop_extent_cache(inode, em->start,
7ffbb598
FM
3315 em->start + em->len - 1, 0);
3316 }
3317
ee39b432 3318 if (ret)
a2f392e4 3319 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
7ffbb598
FM
3320}
3321
8039d87d
FM
3322/*
3323 * Make sure we do not end up inserting an inline extent into a file that has
3324 * already other (non-inline) extents. If a file has an inline extent it can
3325 * not have any other extents and the (single) inline extent must start at the
3326 * file offset 0. Failing to respect these rules will lead to file corruption,
3327 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3328 *
3329 * We can have extents that have been already written to disk or we can have
3330 * dirty ranges still in delalloc, in which case the extent maps and items are
3331 * created only when we run delalloc, and the delalloc ranges might fall outside
3332 * the range we are currently locking in the inode's io tree. So we check the
3333 * inode's i_size because of that (i_size updates are done while holding the
3334 * i_mutex, which we are holding here).
3335 * We also check to see if the inode has a size not greater than "datal" but has
3336 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3337 * protected against such concurrent fallocate calls by the i_mutex).
3338 *
3339 * If the file has no extents but a size greater than datal, do not allow the
3340 * copy because we would need turn the inline extent into a non-inline one (even
3341 * with NO_HOLES enabled). If we find our destination inode only has one inline
3342 * extent, just overwrite it with the source inline extent if its size is less
3343 * than the source extent's size, or we could copy the source inline extent's
3344 * data into the destination inode's inline extent if the later is greater then
3345 * the former.
3346 */
4a0ab9d7 3347static int clone_copy_inline_extent(struct inode *dst,
8039d87d
FM
3348 struct btrfs_trans_handle *trans,
3349 struct btrfs_path *path,
3350 struct btrfs_key *new_key,
3351 const u64 drop_start,
3352 const u64 datal,
3353 const u64 skip,
3354 const u64 size,
3355 char *inline_data)
3356{
0b246afa 3357 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
8039d87d
FM
3358 struct btrfs_root *root = BTRFS_I(dst)->root;
3359 const u64 aligned_end = ALIGN(new_key->offset + datal,
0b246afa 3360 fs_info->sectorsize);
8039d87d
FM
3361 int ret;
3362 struct btrfs_key key;
3363
3364 if (new_key->offset > 0)
3365 return -EOPNOTSUPP;
3366
4a0cc7ca 3367 key.objectid = btrfs_ino(BTRFS_I(dst));
8039d87d
FM
3368 key.type = BTRFS_EXTENT_DATA_KEY;
3369 key.offset = 0;
3370 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3371 if (ret < 0) {
3372 return ret;
3373 } else if (ret > 0) {
3374 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3375 ret = btrfs_next_leaf(root, path);
3376 if (ret < 0)
3377 return ret;
3378 else if (ret > 0)
3379 goto copy_inline_extent;
3380 }
3381 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4a0cc7ca 3382 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
8039d87d
FM
3383 key.type == BTRFS_EXTENT_DATA_KEY) {
3384 ASSERT(key.offset > 0);
3385 return -EOPNOTSUPP;
3386 }
3387 } else if (i_size_read(dst) <= datal) {
3388 struct btrfs_file_extent_item *ei;
3389 u64 ext_len;
3390
3391 /*
3392 * If the file size is <= datal, make sure there are no other
3393 * extents following (can happen do to an fallocate call with
3394 * the flag FALLOC_FL_KEEP_SIZE).
3395 */
3396 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3397 struct btrfs_file_extent_item);
3398 /*
3399 * If it's an inline extent, it can not have other extents
3400 * following it.
3401 */
3402 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3403 BTRFS_FILE_EXTENT_INLINE)
3404 goto copy_inline_extent;
3405
3406 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3407 if (ext_len > aligned_end)
3408 return -EOPNOTSUPP;
3409
3410 ret = btrfs_next_item(root, path);
3411 if (ret < 0) {
3412 return ret;
3413 } else if (ret == 0) {
3414 btrfs_item_key_to_cpu(path->nodes[0], &key,
3415 path->slots[0]);
4a0cc7ca 3416 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
8039d87d
FM
3417 key.type == BTRFS_EXTENT_DATA_KEY)
3418 return -EOPNOTSUPP;
3419 }
3420 }
3421
3422copy_inline_extent:
3423 /*
3424 * We have no extent items, or we have an extent at offset 0 which may
3425 * or may not be inlined. All these cases are dealt the same way.
3426 */
3427 if (i_size_read(dst) > datal) {
3428 /*
3429 * If the destination inode has an inline extent...
3430 * This would require copying the data from the source inline
3431 * extent into the beginning of the destination's inline extent.
3432 * But this is really complex, both extents can be compressed
3433 * or just one of them, which would require decompressing and
3434 * re-compressing data (which could increase the new compressed
3435 * size, not allowing the compressed data to fit anymore in an
3436 * inline extent).
3437 * So just don't support this case for now (it should be rare,
3438 * we are not really saving space when cloning inline extents).
3439 */
3440 return -EOPNOTSUPP;
3441 }
3442
3443 btrfs_release_path(path);
3444 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3445 if (ret)
3446 return ret;
3447 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3448 if (ret)
3449 return ret;
3450
3451 if (skip) {
3452 const u32 start = btrfs_file_extent_calc_inline_size(0);
3453
3454 memmove(inline_data + start, inline_data + start + skip, datal);
3455 }
3456
3457 write_extent_buffer(path->nodes[0], inline_data,
3458 btrfs_item_ptr_offset(path->nodes[0],
3459 path->slots[0]),
3460 size);
3461 inode_add_bytes(dst, datal);
3462
3463 return 0;
3464}
3465
32b7c687
MF
3466/**
3467 * btrfs_clone() - clone a range from inode file to another
3468 *
3469 * @src: Inode to clone from
3470 * @inode: Inode to clone to
3471 * @off: Offset within source to start clone from
3472 * @olen: Original length, passed by user, of range to clone
1c919a5e 3473 * @olen_aligned: Block-aligned value of olen
32b7c687 3474 * @destoff: Offset within @inode to start clone
1c919a5e 3475 * @no_time_update: Whether to update mtime/ctime on the target inode
32b7c687
MF
3476 */
3477static int btrfs_clone(struct inode *src, struct inode *inode,
f82a9901 3478 const u64 off, const u64 olen, const u64 olen_aligned,
1c919a5e 3479 const u64 destoff, int no_time_update)
f46b5a66 3480{
0b246afa 3481 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
f46b5a66 3482 struct btrfs_root *root = BTRFS_I(inode)->root;
32b7c687 3483 struct btrfs_path *path = NULL;
f46b5a66 3484 struct extent_buffer *leaf;
32b7c687
MF
3485 struct btrfs_trans_handle *trans;
3486 char *buf = NULL;
ae01a0ab 3487 struct btrfs_key key;
f46b5a66
CH
3488 u32 nritems;
3489 int slot;
ae01a0ab 3490 int ret;
f82a9901 3491 const u64 len = olen_aligned;
f82a9901 3492 u64 last_dest_end = destoff;
ae01a0ab
YZ
3493
3494 ret = -ENOMEM;
752ade68
MH
3495 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3496 if (!buf)
3497 return ret;
ae01a0ab
YZ
3498
3499 path = btrfs_alloc_path();
3500 if (!path) {
15351955 3501 kvfree(buf);
32b7c687 3502 return ret;
d525e8ab
LZ
3503 }
3504
e4058b54 3505 path->reada = READA_FORWARD;
c5c9cd4d 3506 /* clone data */
4a0cc7ca 3507 key.objectid = btrfs_ino(BTRFS_I(src));
ae01a0ab 3508 key.type = BTRFS_EXTENT_DATA_KEY;
2c463823 3509 key.offset = off;
f46b5a66
CH
3510
3511 while (1) {
de249e66 3512 u64 next_key_min_offset = key.offset + 1;
df858e76 3513
f46b5a66
CH
3514 /*
3515 * note the key will change type as we walk through the
3516 * tree.
3517 */
e4355f34 3518 path->leave_spinning = 1;
362a20c5
DS
3519 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3520 0, 0);
f46b5a66
CH
3521 if (ret < 0)
3522 goto out;
2c463823
FM
3523 /*
3524 * First search, if no extent item that starts at offset off was
3525 * found but the previous item is an extent item, it's possible
3526 * it might overlap our target range, therefore process it.
3527 */
3528 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3529 btrfs_item_key_to_cpu(path->nodes[0], &key,
3530 path->slots[0] - 1);
3531 if (key.type == BTRFS_EXTENT_DATA_KEY)
3532 path->slots[0]--;
3533 }
f46b5a66 3534
ae01a0ab 3535 nritems = btrfs_header_nritems(path->nodes[0]);
e4355f34 3536process_slot:
ae01a0ab 3537 if (path->slots[0] >= nritems) {
362a20c5 3538 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
f46b5a66
CH
3539 if (ret < 0)
3540 goto out;
3541 if (ret > 0)
3542 break;
ae01a0ab 3543 nritems = btrfs_header_nritems(path->nodes[0]);
f46b5a66
CH
3544 }
3545 leaf = path->nodes[0];
3546 slot = path->slots[0];
f46b5a66 3547
ae01a0ab 3548 btrfs_item_key_to_cpu(leaf, &key, slot);
962a298f 3549 if (key.type > BTRFS_EXTENT_DATA_KEY ||
4a0cc7ca 3550 key.objectid != btrfs_ino(BTRFS_I(src)))
f46b5a66
CH
3551 break;
3552
962a298f 3553 if (key.type == BTRFS_EXTENT_DATA_KEY) {
c5c9cd4d
SW
3554 struct btrfs_file_extent_item *extent;
3555 int type;
31840ae1
ZY
3556 u32 size;
3557 struct btrfs_key new_key;
c5c9cd4d
SW
3558 u64 disko = 0, diskl = 0;
3559 u64 datao = 0, datal = 0;
3560 u8 comp;
f82a9901 3561 u64 drop_start;
31840ae1 3562
c5c9cd4d
SW
3563 extent = btrfs_item_ptr(leaf, slot,
3564 struct btrfs_file_extent_item);
3565 comp = btrfs_file_extent_compression(leaf, extent);
3566 type = btrfs_file_extent_type(leaf, extent);
c8a894d7
CM
3567 if (type == BTRFS_FILE_EXTENT_REG ||
3568 type == BTRFS_FILE_EXTENT_PREALLOC) {
d397712b
CM
3569 disko = btrfs_file_extent_disk_bytenr(leaf,
3570 extent);
3571 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3572 extent);
c5c9cd4d 3573 datao = btrfs_file_extent_offset(leaf, extent);
d397712b
CM
3574 datal = btrfs_file_extent_num_bytes(leaf,
3575 extent);
c5c9cd4d
SW
3576 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3577 /* take upper bound, may be compressed */
3578 datal = btrfs_file_extent_ram_bytes(leaf,
3579 extent);
3580 }
31840ae1 3581
2c463823
FM
3582 /*
3583 * The first search might have left us at an extent
3584 * item that ends before our target range's start, can
3585 * happen if we have holes and NO_HOLES feature enabled.
3586 */
3587 if (key.offset + datal <= off) {
e4355f34
FDBM
3588 path->slots[0]++;
3589 goto process_slot;
2c463823
FM
3590 } else if (key.offset >= off + len) {
3591 break;
e4355f34 3592 }
df858e76 3593 next_key_min_offset = key.offset + datal;
e4355f34
FDBM
3594 size = btrfs_item_size_nr(leaf, slot);
3595 read_extent_buffer(leaf, buf,
3596 btrfs_item_ptr_offset(leaf, slot),
3597 size);
3598
3599 btrfs_release_path(path);
3600 path->leave_spinning = 0;
c5c9cd4d 3601
31840ae1 3602 memcpy(&new_key, &key, sizeof(new_key));
4a0cc7ca 3603 new_key.objectid = btrfs_ino(BTRFS_I(inode));
4d728ec7
LZ
3604 if (off <= key.offset)
3605 new_key.offset = key.offset + destoff - off;
3606 else
3607 new_key.offset = destoff;
31840ae1 3608
f82a9901
FM
3609 /*
3610 * Deal with a hole that doesn't have an extent item
3611 * that represents it (NO_HOLES feature enabled).
3612 * This hole is either in the middle of the cloning
3613 * range or at the beginning (fully overlaps it or
3614 * partially overlaps it).
3615 */
3616 if (new_key.offset != last_dest_end)
3617 drop_start = last_dest_end;
3618 else
3619 drop_start = new_key.offset;
3620
b6f3409b
SW
3621 /*
3622 * 1 - adjusting old extent (we may have to split it)
3623 * 1 - add new extent
3624 * 1 - inode update
3625 */
3626 trans = btrfs_start_transaction(root, 3);
a22285a6
YZ
3627 if (IS_ERR(trans)) {
3628 ret = PTR_ERR(trans);
3629 goto out;
3630 }
3631
c8a894d7
CM
3632 if (type == BTRFS_FILE_EXTENT_REG ||
3633 type == BTRFS_FILE_EXTENT_PREALLOC) {
d72c0842
LZ
3634 /*
3635 * a | --- range to clone ---| b
3636 * | ------------- extent ------------- |
3637 */
3638
93915584 3639 /* subtract range b */
d72c0842
LZ
3640 if (key.offset + datal > off + len)
3641 datal = off + len - key.offset;
3642
93915584 3643 /* subtract range a */
a22285a6
YZ
3644 if (off > key.offset) {
3645 datao += off - key.offset;
3646 datal -= off - key.offset;
3647 }
3648
5dc562c5 3649 ret = btrfs_drop_extents(trans, root, inode,
f82a9901 3650 drop_start,
a22285a6 3651 new_key.offset + datal,
2671485d 3652 1);
79787eaa 3653 if (ret) {
3f9e3df8 3654 if (ret != -EOPNOTSUPP)
00fdf13a 3655 btrfs_abort_transaction(trans,
66642832 3656 ret);
3a45bb20 3657 btrfs_end_transaction(trans);
79787eaa
JM
3658 goto out;
3659 }
a22285a6 3660
c5c9cd4d
SW
3661 ret = btrfs_insert_empty_item(trans, root, path,
3662 &new_key, size);
79787eaa 3663 if (ret) {
66642832 3664 btrfs_abort_transaction(trans, ret);
3a45bb20 3665 btrfs_end_transaction(trans);
79787eaa
JM
3666 goto out;
3667 }
c5c9cd4d
SW
3668
3669 leaf = path->nodes[0];
3670 slot = path->slots[0];
3671 write_extent_buffer(leaf, buf,
31840ae1
ZY
3672 btrfs_item_ptr_offset(leaf, slot),
3673 size);
ae01a0ab 3674
c5c9cd4d 3675 extent = btrfs_item_ptr(leaf, slot,
f46b5a66 3676 struct btrfs_file_extent_item);
c5c9cd4d 3677
c5c9cd4d
SW
3678 /* disko == 0 means it's a hole */
3679 if (!disko)
3680 datao = 0;
c5c9cd4d
SW
3681
3682 btrfs_set_file_extent_offset(leaf, extent,
3683 datao);
3684 btrfs_set_file_extent_num_bytes(leaf, extent,
3685 datal);
fcebe456 3686
c5c9cd4d
SW
3687 if (disko) {
3688 inode_add_bytes(inode, datal);
2ff7e61e 3689 ret = btrfs_inc_extent_ref(trans,
84f7d8e6 3690 root,
5d4f98a2
YZ
3691 disko, diskl, 0,
3692 root->root_key.objectid,
4a0cc7ca 3693 btrfs_ino(BTRFS_I(inode)),
b06c4bf5 3694 new_key.offset - datao);
79787eaa
JM
3695 if (ret) {
3696 btrfs_abort_transaction(trans,
79787eaa 3697 ret);
3a45bb20 3698 btrfs_end_transaction(trans);
79787eaa
JM
3699 goto out;
3700
3701 }
f46b5a66 3702 }
c5c9cd4d
SW
3703 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3704 u64 skip = 0;
3705 u64 trim = 0;
ed958762 3706
c5c9cd4d
SW
3707 if (off > key.offset) {
3708 skip = off - key.offset;
3709 new_key.offset += skip;
3710 }
d397712b 3711
aa42ffd9
LB
3712 if (key.offset + datal > off + len)
3713 trim = key.offset + datal - (off + len);
d397712b 3714
c5c9cd4d 3715 if (comp && (skip || trim)) {
c5c9cd4d 3716 ret = -EINVAL;
3a45bb20 3717 btrfs_end_transaction(trans);
c5c9cd4d
SW
3718 goto out;
3719 }
3720 size -= skip + trim;
3721 datal -= skip + trim;
a22285a6 3722
4a0ab9d7 3723 ret = clone_copy_inline_extent(inode,
8039d87d
FM
3724 trans, path,
3725 &new_key,
3726 drop_start,
3727 datal,
3728 skip, size, buf);
79787eaa 3729 if (ret) {
3f9e3df8 3730 if (ret != -EOPNOTSUPP)
3a29bc09 3731 btrfs_abort_transaction(trans,
8039d87d 3732 ret);
3a45bb20 3733 btrfs_end_transaction(trans);
79787eaa
JM
3734 goto out;
3735 }
c5c9cd4d
SW
3736 leaf = path->nodes[0];
3737 slot = path->slots[0];
f46b5a66 3738 }
c5c9cd4d 3739
7ffbb598
FM
3740 /* If we have an implicit hole (NO_HOLES feature). */
3741 if (drop_start < new_key.offset)
a2f392e4 3742 clone_update_extent_map(BTRFS_I(inode), trans,
14f59796 3743 NULL, drop_start,
7ffbb598
FM
3744 new_key.offset - drop_start);
3745
a2f392e4
NB
3746 clone_update_extent_map(BTRFS_I(inode), trans,
3747 path, 0, 0);
7ffbb598 3748
c5c9cd4d 3749 btrfs_mark_buffer_dirty(leaf);
b3b4aa74 3750 btrfs_release_path(path);
c5c9cd4d 3751
62e2390e 3752 last_dest_end = ALIGN(new_key.offset + datal,
0b246afa 3753 fs_info->sectorsize);
f82a9901
FM
3754 ret = clone_finish_inode_update(trans, inode,
3755 last_dest_end,
1c919a5e
MF
3756 destoff, olen,
3757 no_time_update);
f82a9901 3758 if (ret)
79787eaa 3759 goto out;
2c463823
FM
3760 if (new_key.offset + datal >= destoff + len)
3761 break;
a22285a6 3762 }
b3b4aa74 3763 btrfs_release_path(path);
df858e76 3764 key.offset = next_key_min_offset;
69ae5e44
WX
3765
3766 if (fatal_signal_pending(current)) {
3767 ret = -EINTR;
3768 goto out;
3769 }
f46b5a66 3770 }
f46b5a66 3771 ret = 0;
32b7c687 3772
f82a9901
FM
3773 if (last_dest_end < destoff + len) {
3774 /*
3775 * We have an implicit hole (NO_HOLES feature is enabled) that
3776 * fully or partially overlaps our cloning range at its end.
3777 */
3778 btrfs_release_path(path);
3779
3780 /*
3781 * 1 - remove extent(s)
3782 * 1 - inode update
3783 */
3784 trans = btrfs_start_transaction(root, 2);
3785 if (IS_ERR(trans)) {
3786 ret = PTR_ERR(trans);
3787 goto out;
3788 }
3789 ret = btrfs_drop_extents(trans, root, inode,
3790 last_dest_end, destoff + len, 1);
3791 if (ret) {
3792 if (ret != -EOPNOTSUPP)
66642832 3793 btrfs_abort_transaction(trans, ret);
3a45bb20 3794 btrfs_end_transaction(trans);
f82a9901
FM
3795 goto out;
3796 }
a2f392e4
NB
3797 clone_update_extent_map(BTRFS_I(inode), trans, NULL,
3798 last_dest_end,
3799 destoff + len - last_dest_end);
f82a9901 3800 ret = clone_finish_inode_update(trans, inode, destoff + len,
1c919a5e 3801 destoff, olen, no_time_update);
f82a9901
FM
3802 }
3803
f46b5a66 3804out:
32b7c687 3805 btrfs_free_path(path);
15351955 3806 kvfree(buf);
32b7c687
MF
3807 return ret;
3808}
3809
3db11b2e
ZB
3810static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3811 u64 off, u64 olen, u64 destoff)
32b7c687 3812{
54563d41 3813 struct inode *inode = file_inode(file);
3db11b2e 3814 struct inode *src = file_inode(file_src);
0b246afa 3815 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
32b7c687 3816 struct btrfs_root *root = BTRFS_I(inode)->root;
32b7c687
MF
3817 int ret;
3818 u64 len = olen;
0b246afa 3819 u64 bs = fs_info->sb->s_blocksize;
3db11b2e 3820 int same_inode = src == inode;
32b7c687
MF
3821
3822 /*
3823 * TODO:
3824 * - split compressed inline extents. annoying: we need to
3825 * decompress into destination's address_space (the file offset
3826 * may change, so source mapping won't do), then recompress (or
3827 * otherwise reinsert) a subrange.
00fdf13a
LB
3828 *
3829 * - split destination inode's inline extents. The inline extents can
3830 * be either compressed or non-compressed.
32b7c687
MF
3831 */
3832
32b7c687
MF
3833 if (btrfs_root_readonly(root))
3834 return -EROFS;
3835
3db11b2e
ZB
3836 if (file_src->f_path.mnt != file->f_path.mnt ||
3837 src->i_sb != inode->i_sb)
3838 return -EXDEV;
32b7c687
MF
3839
3840 /* don't make the dst file partly checksummed */
3841 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3842 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3db11b2e 3843 return -EINVAL;
32b7c687 3844
32b7c687 3845 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3db11b2e 3846 return -EISDIR;
32b7c687
MF
3847
3848 if (!same_inode) {
293a8489 3849 btrfs_double_inode_lock(src, inode);
32b7c687 3850 } else {
5955102c 3851 inode_lock(src);
32b7c687
MF
3852 }
3853
3854 /* determine range to clone */
3855 ret = -EINVAL;
3856 if (off + len > src->i_size || off + len < off)
3857 goto out_unlock;
3858 if (len == 0)
3859 olen = len = src->i_size - off;
3860 /* if we extend to eof, continue to block boundary */
3861 if (off + len == src->i_size)
3862 len = ALIGN(src->i_size, bs) - off;
3863
ccccf3d6
FM
3864 if (len == 0) {
3865 ret = 0;
3866 goto out_unlock;
3867 }
3868
32b7c687
MF
3869 /* verify the end result is block aligned */
3870 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3871 !IS_ALIGNED(destoff, bs))
3872 goto out_unlock;
3873
3874 /* verify if ranges are overlapped within the same file */
3875 if (same_inode) {
3876 if (destoff + len > off && destoff < off + len)
3877 goto out_unlock;
3878 }
3879
3880 if (destoff > inode->i_size) {
3881 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3882 if (ret)
3883 goto out_unlock;
3884 }
3885
c125b8bf
FM
3886 /*
3887 * Lock the target range too. Right after we replace the file extent
3888 * items in the fs tree (which now point to the cloned data), we might
3889 * have a worker replace them with extent items relative to a write
3890 * operation that was issued before this clone operation (i.e. confront
3891 * with inode.c:btrfs_finish_ordered_io).
3892 */
3893 if (same_inode) {
3894 u64 lock_start = min_t(u64, off, destoff);
3895 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
32b7c687 3896
e0bd70c6 3897 ret = lock_extent_range(src, lock_start, lock_len, true);
c125b8bf 3898 } else {
e0bd70c6
FM
3899 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3900 true);
3901 }
3902 ASSERT(ret == 0);
3903 if (WARN_ON(ret)) {
3904 /* ranges in the io trees already unlocked */
3905 goto out_unlock;
c125b8bf 3906 }
32b7c687 3907
1c919a5e 3908 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
32b7c687 3909
c125b8bf
FM
3910 if (same_inode) {
3911 u64 lock_start = min_t(u64, off, destoff);
3912 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3913
3914 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3915 } else {
293a8489 3916 btrfs_double_extent_unlock(src, off, inode, destoff, len);
c125b8bf
FM
3917 }
3918 /*
3919 * Truncate page cache pages so that future reads will see the cloned
3920 * data immediately and not the previous data.
3921 */
65bfa658 3922 truncate_inode_pages_range(&inode->i_data,
09cbfeaf
KS
3923 round_down(destoff, PAGE_SIZE),
3924 round_up(destoff + len, PAGE_SIZE) - 1);
f46b5a66 3925out_unlock:
293a8489
MF
3926 if (!same_inode)
3927 btrfs_double_inode_unlock(src, inode);
3928 else
5955102c 3929 inode_unlock(src);
3db11b2e
ZB
3930 return ret;
3931}
3932
04b38d60
CH
3933int btrfs_clone_file_range(struct file *src_file, loff_t off,
3934 struct file *dst_file, loff_t destoff, u64 len)
3db11b2e 3935{
04b38d60 3936 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
c5c9cd4d
SW
3937}
3938
f46b5a66
CH
3939/*
3940 * there are many ways the trans_start and trans_end ioctls can lead
3941 * to deadlocks. They should only be used by applications that
3942 * basically own the machine, and have a very in depth understanding
3943 * of all the possible deadlocks and enospc problems.
3944 */
b2950863 3945static long btrfs_ioctl_trans_start(struct file *file)
f46b5a66 3946{
496ad9aa 3947 struct inode *inode = file_inode(file);
0b246afa 3948 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
f46b5a66
CH
3949 struct btrfs_root *root = BTRFS_I(inode)->root;
3950 struct btrfs_trans_handle *trans;
23b5ec74 3951 struct btrfs_file_private *private;
1ab86aed 3952 int ret;
3558d4f8 3953 static bool warned = false;
f46b5a66 3954
1ab86aed 3955 ret = -EPERM;
df5b5520 3956 if (!capable(CAP_SYS_ADMIN))
1ab86aed 3957 goto out;
df5b5520 3958
3558d4f8
NB
3959 if (!warned) {
3960 btrfs_warn(fs_info,
3961 "Userspace transaction mechanism is considered "
3962 "deprecated and slated to be removed in 4.17. "
3963 "If you have a valid use case please "
3964 "speak up on the mailing list");
3965 WARN_ON(1);
3966 warned = true;
3967 }
3968
1ab86aed 3969 ret = -EINPROGRESS;
23b5ec74
JB
3970 private = file->private_data;
3971 if (private && private->trans)
f46b5a66 3972 goto out;
23b5ec74
JB
3973 if (!private) {
3974 private = kzalloc(sizeof(struct btrfs_file_private),
3975 GFP_KERNEL);
3976 if (!private)
3977 return -ENOMEM;
3978 file->private_data = private;
3979 }
9ca9ee09 3980
b83cc969
LZ
3981 ret = -EROFS;
3982 if (btrfs_root_readonly(root))
3983 goto out;
3984
a561be71 3985 ret = mnt_want_write_file(file);
c146afad
YZ
3986 if (ret)
3987 goto out;
3988
0b246afa 3989 atomic_inc(&fs_info->open_ioctl_trans);
9ca9ee09 3990
1ab86aed 3991 ret = -ENOMEM;
7a7eaa40 3992 trans = btrfs_start_ioctl_transaction(root);
abd30bb0 3993 if (IS_ERR(trans))
1ab86aed
SW
3994 goto out_drop;
3995
23b5ec74 3996 private->trans = trans;
1ab86aed
SW
3997 return 0;
3998
3999out_drop:
0b246afa 4000 atomic_dec(&fs_info->open_ioctl_trans);
2a79f17e 4001 mnt_drop_write_file(file);
f46b5a66 4002out:
f46b5a66
CH
4003 return ret;
4004}
4005
6ef5ed0d
JB
4006static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
4007{
496ad9aa 4008 struct inode *inode = file_inode(file);
0b246afa 4009 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
6ef5ed0d
JB
4010 struct btrfs_root *root = BTRFS_I(inode)->root;
4011 struct btrfs_root *new_root;
4012 struct btrfs_dir_item *di;
4013 struct btrfs_trans_handle *trans;
4014 struct btrfs_path *path;
4015 struct btrfs_key location;
4016 struct btrfs_disk_key disk_key;
6ef5ed0d
JB
4017 u64 objectid = 0;
4018 u64 dir_id;
3c04ce01 4019 int ret;
6ef5ed0d
JB
4020
4021 if (!capable(CAP_SYS_ADMIN))
4022 return -EPERM;
4023
3c04ce01
MX
4024 ret = mnt_want_write_file(file);
4025 if (ret)
4026 return ret;
4027
4028 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
4029 ret = -EFAULT;
4030 goto out;
4031 }
6ef5ed0d
JB
4032
4033 if (!objectid)
1cecf579 4034 objectid = BTRFS_FS_TREE_OBJECTID;
6ef5ed0d
JB
4035
4036 location.objectid = objectid;
4037 location.type = BTRFS_ROOT_ITEM_KEY;
4038 location.offset = (u64)-1;
4039
0b246afa 4040 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
3c04ce01
MX
4041 if (IS_ERR(new_root)) {
4042 ret = PTR_ERR(new_root);
4043 goto out;
4044 }
6d6d2829 4045 if (!is_fstree(new_root->objectid)) {
4046 ret = -ENOENT;
4047 goto out;
4048 }
6ef5ed0d 4049
6ef5ed0d 4050 path = btrfs_alloc_path();
3c04ce01
MX
4051 if (!path) {
4052 ret = -ENOMEM;
4053 goto out;
4054 }
6ef5ed0d
JB
4055 path->leave_spinning = 1;
4056
4057 trans = btrfs_start_transaction(root, 1);
98d5dc13 4058 if (IS_ERR(trans)) {
6ef5ed0d 4059 btrfs_free_path(path);
3c04ce01
MX
4060 ret = PTR_ERR(trans);
4061 goto out;
6ef5ed0d
JB
4062 }
4063
0b246afa
JM
4064 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4065 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
6ef5ed0d 4066 dir_id, "default", 7, 1);
cf1e99a4 4067 if (IS_ERR_OR_NULL(di)) {
6ef5ed0d 4068 btrfs_free_path(path);
3a45bb20 4069 btrfs_end_transaction(trans);
0b246afa 4070 btrfs_err(fs_info,
5d163e0e 4071 "Umm, you don't have the default diritem, this isn't going to work");
3c04ce01
MX
4072 ret = -ENOENT;
4073 goto out;
6ef5ed0d
JB
4074 }
4075
4076 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4077 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4078 btrfs_mark_buffer_dirty(path->nodes[0]);
4079 btrfs_free_path(path);
4080
0b246afa 4081 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
3a45bb20 4082 btrfs_end_transaction(trans);
3c04ce01
MX
4083out:
4084 mnt_drop_write_file(file);
4085 return ret;
6ef5ed0d
JB
4086}
4087
5af3e8cc
SB
4088void btrfs_get_block_group_info(struct list_head *groups_list,
4089 struct btrfs_ioctl_space_info *space)
bf5fc093
JB
4090{
4091 struct btrfs_block_group_cache *block_group;
4092
4093 space->total_bytes = 0;
4094 space->used_bytes = 0;
4095 space->flags = 0;
4096 list_for_each_entry(block_group, groups_list, list) {
4097 space->flags = block_group->flags;
4098 space->total_bytes += block_group->key.offset;
4099 space->used_bytes +=
4100 btrfs_block_group_used(&block_group->item);
4101 }
4102}
4103
2ff7e61e
JM
4104static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
4105 void __user *arg)
1406e432
JB
4106{
4107 struct btrfs_ioctl_space_args space_args;
4108 struct btrfs_ioctl_space_info space;
4109 struct btrfs_ioctl_space_info *dest;
7fde62bf 4110 struct btrfs_ioctl_space_info *dest_orig;
13f2696f 4111 struct btrfs_ioctl_space_info __user *user_dest;
1406e432 4112 struct btrfs_space_info *info;
315d8e98
CIK
4113 static const u64 types[] = {
4114 BTRFS_BLOCK_GROUP_DATA,
4115 BTRFS_BLOCK_GROUP_SYSTEM,
4116 BTRFS_BLOCK_GROUP_METADATA,
4117 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
4118 };
bf5fc093 4119 int num_types = 4;
7fde62bf 4120 int alloc_size;
1406e432 4121 int ret = 0;
51788b1b 4122 u64 slot_count = 0;
bf5fc093 4123 int i, c;
1406e432
JB
4124
4125 if (copy_from_user(&space_args,
4126 (struct btrfs_ioctl_space_args __user *)arg,
4127 sizeof(space_args)))
4128 return -EFAULT;
4129
bf5fc093
JB
4130 for (i = 0; i < num_types; i++) {
4131 struct btrfs_space_info *tmp;
4132
4133 info = NULL;
4134 rcu_read_lock();
0b246afa 4135 list_for_each_entry_rcu(tmp, &fs_info->space_info,
bf5fc093
JB
4136 list) {
4137 if (tmp->flags == types[i]) {
4138 info = tmp;
4139 break;
4140 }
4141 }
4142 rcu_read_unlock();
4143
4144 if (!info)
4145 continue;
4146
4147 down_read(&info->groups_sem);
4148 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4149 if (!list_empty(&info->block_groups[c]))
4150 slot_count++;
4151 }
4152 up_read(&info->groups_sem);
4153 }
7fde62bf 4154
36523e95
DS
4155 /*
4156 * Global block reserve, exported as a space_info
4157 */
4158 slot_count++;
4159
7fde62bf
CM
4160 /* space_slots == 0 means they are asking for a count */
4161 if (space_args.space_slots == 0) {
4162 space_args.total_spaces = slot_count;
4163 goto out;
4164 }
bf5fc093 4165
51788b1b 4166 slot_count = min_t(u64, space_args.space_slots, slot_count);
bf5fc093 4167
7fde62bf 4168 alloc_size = sizeof(*dest) * slot_count;
bf5fc093 4169
7fde62bf
CM
4170 /* we generally have at most 6 or so space infos, one for each raid
4171 * level. So, a whole page should be more than enough for everyone
4172 */
09cbfeaf 4173 if (alloc_size > PAGE_SIZE)
7fde62bf
CM
4174 return -ENOMEM;
4175
1406e432 4176 space_args.total_spaces = 0;
8d2db785 4177 dest = kmalloc(alloc_size, GFP_KERNEL);
7fde62bf
CM
4178 if (!dest)
4179 return -ENOMEM;
4180 dest_orig = dest;
1406e432 4181
7fde62bf 4182 /* now we have a buffer to copy into */
bf5fc093
JB
4183 for (i = 0; i < num_types; i++) {
4184 struct btrfs_space_info *tmp;
4185
51788b1b
DR
4186 if (!slot_count)
4187 break;
4188
bf5fc093
JB
4189 info = NULL;
4190 rcu_read_lock();
0b246afa 4191 list_for_each_entry_rcu(tmp, &fs_info->space_info,
bf5fc093
JB
4192 list) {
4193 if (tmp->flags == types[i]) {
4194 info = tmp;
4195 break;
4196 }
4197 }
4198 rcu_read_unlock();
7fde62bf 4199
bf5fc093
JB
4200 if (!info)
4201 continue;
4202 down_read(&info->groups_sem);
4203 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4204 if (!list_empty(&info->block_groups[c])) {
5af3e8cc
SB
4205 btrfs_get_block_group_info(
4206 &info->block_groups[c], &space);
bf5fc093
JB
4207 memcpy(dest, &space, sizeof(space));
4208 dest++;
4209 space_args.total_spaces++;
51788b1b 4210 slot_count--;
bf5fc093 4211 }
51788b1b
DR
4212 if (!slot_count)
4213 break;
bf5fc093
JB
4214 }
4215 up_read(&info->groups_sem);
1406e432 4216 }
1406e432 4217
36523e95
DS
4218 /*
4219 * Add global block reserve
4220 */
4221 if (slot_count) {
0b246afa 4222 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
36523e95
DS
4223
4224 spin_lock(&block_rsv->lock);
4225 space.total_bytes = block_rsv->size;
4226 space.used_bytes = block_rsv->size - block_rsv->reserved;
4227 spin_unlock(&block_rsv->lock);
4228 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4229 memcpy(dest, &space, sizeof(space));
4230 space_args.total_spaces++;
4231 }
4232
2eec6c81 4233 user_dest = (struct btrfs_ioctl_space_info __user *)
7fde62bf
CM
4234 (arg + sizeof(struct btrfs_ioctl_space_args));
4235
4236 if (copy_to_user(user_dest, dest_orig, alloc_size))
4237 ret = -EFAULT;
4238
4239 kfree(dest_orig);
4240out:
4241 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
1406e432
JB
4242 ret = -EFAULT;
4243
4244 return ret;
4245}
4246
f46b5a66
CH
4247/*
4248 * there are many ways the trans_start and trans_end ioctls can lead
4249 * to deadlocks. They should only be used by applications that
4250 * basically own the machine, and have a very in depth understanding
4251 * of all the possible deadlocks and enospc problems.
4252 */
4253long btrfs_ioctl_trans_end(struct file *file)
4254{
496ad9aa 4255 struct inode *inode = file_inode(file);
f46b5a66 4256 struct btrfs_root *root = BTRFS_I(inode)->root;
23b5ec74 4257 struct btrfs_file_private *private = file->private_data;
f46b5a66 4258
23b5ec74 4259 if (!private || !private->trans)
1ab86aed 4260 return -EINVAL;
9ca9ee09 4261
23b5ec74
JB
4262 btrfs_end_transaction(private->trans);
4263 private->trans = NULL;
1ab86aed 4264
a4abeea4 4265 atomic_dec(&root->fs_info->open_ioctl_trans);
9ca9ee09 4266
2a79f17e 4267 mnt_drop_write_file(file);
1ab86aed 4268 return 0;
f46b5a66
CH
4269}
4270
9a8c28be
MX
4271static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4272 void __user *argp)
46204592 4273{
46204592
SW
4274 struct btrfs_trans_handle *trans;
4275 u64 transid;
db5b493a 4276 int ret;
46204592 4277
d4edf39b 4278 trans = btrfs_attach_transaction_barrier(root);
ff7c1d33
MX
4279 if (IS_ERR(trans)) {
4280 if (PTR_ERR(trans) != -ENOENT)
4281 return PTR_ERR(trans);
4282
4283 /* No running transaction, don't bother */
4284 transid = root->fs_info->last_trans_committed;
4285 goto out;
4286 }
46204592 4287 transid = trans->transid;
3a45bb20 4288 ret = btrfs_commit_transaction_async(trans, 0);
8b2b2d3c 4289 if (ret) {
3a45bb20 4290 btrfs_end_transaction(trans);
db5b493a 4291 return ret;
8b2b2d3c 4292 }
ff7c1d33 4293out:
46204592
SW
4294 if (argp)
4295 if (copy_to_user(argp, &transid, sizeof(transid)))
4296 return -EFAULT;
4297 return 0;
4298}
4299
2ff7e61e 4300static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
9a8c28be 4301 void __user *argp)
46204592 4302{
46204592
SW
4303 u64 transid;
4304
4305 if (argp) {
4306 if (copy_from_user(&transid, argp, sizeof(transid)))
4307 return -EFAULT;
4308 } else {
4309 transid = 0; /* current trans */
4310 }
2ff7e61e 4311 return btrfs_wait_for_commit(fs_info, transid);
46204592
SW
4312}
4313
b8e95489 4314static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
475f6387 4315{
0b246afa 4316 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
475f6387 4317 struct btrfs_ioctl_scrub_args *sa;
b8e95489 4318 int ret;
475f6387
JS
4319
4320 if (!capable(CAP_SYS_ADMIN))
4321 return -EPERM;
4322
4323 sa = memdup_user(arg, sizeof(*sa));
4324 if (IS_ERR(sa))
4325 return PTR_ERR(sa);
4326
b8e95489
MX
4327 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4328 ret = mnt_want_write_file(file);
4329 if (ret)
4330 goto out;
4331 }
4332
0b246afa 4333 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
63a212ab
SB
4334 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4335 0);
475f6387
JS
4336
4337 if (copy_to_user(arg, sa, sizeof(*sa)))
4338 ret = -EFAULT;
4339
b8e95489
MX
4340 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4341 mnt_drop_write_file(file);
4342out:
475f6387
JS
4343 kfree(sa);
4344 return ret;
4345}
4346
2ff7e61e 4347static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
475f6387
JS
4348{
4349 if (!capable(CAP_SYS_ADMIN))
4350 return -EPERM;
4351
2ff7e61e 4352 return btrfs_scrub_cancel(fs_info);
475f6387
JS
4353}
4354
2ff7e61e 4355static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
475f6387
JS
4356 void __user *arg)
4357{
4358 struct btrfs_ioctl_scrub_args *sa;
4359 int ret;
4360
4361 if (!capable(CAP_SYS_ADMIN))
4362 return -EPERM;
4363
4364 sa = memdup_user(arg, sizeof(*sa));
4365 if (IS_ERR(sa))
4366 return PTR_ERR(sa);
4367
2ff7e61e 4368 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
475f6387
JS
4369
4370 if (copy_to_user(arg, sa, sizeof(*sa)))
4371 ret = -EFAULT;
4372
4373 kfree(sa);
4374 return ret;
4375}
4376
2ff7e61e 4377static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
b27f7c0c 4378 void __user *arg)
c11d2c23
SB
4379{
4380 struct btrfs_ioctl_get_dev_stats *sa;
4381 int ret;
4382
c11d2c23
SB
4383 sa = memdup_user(arg, sizeof(*sa));
4384 if (IS_ERR(sa))
4385 return PTR_ERR(sa);
4386
b27f7c0c
DS
4387 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4388 kfree(sa);
4389 return -EPERM;
4390 }
4391
2ff7e61e 4392 ret = btrfs_get_dev_stats(fs_info, sa);
c11d2c23
SB
4393
4394 if (copy_to_user(arg, sa, sizeof(*sa)))
4395 ret = -EFAULT;
4396
4397 kfree(sa);
4398 return ret;
4399}
4400
2ff7e61e
JM
4401static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4402 void __user *arg)
3f6bcfbd
SB
4403{
4404 struct btrfs_ioctl_dev_replace_args *p;
4405 int ret;
4406
4407 if (!capable(CAP_SYS_ADMIN))
4408 return -EPERM;
4409
4410 p = memdup_user(arg, sizeof(*p));
4411 if (IS_ERR(p))
4412 return PTR_ERR(p);
4413
4414 switch (p->cmd) {
4415 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
bc98a42c 4416 if (sb_rdonly(fs_info->sb)) {
adfa97cb
ID
4417 ret = -EROFS;
4418 goto out;
4419 }
171938e5 4420 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
e57138b3 4421 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3f6bcfbd 4422 } else {
2ff7e61e 4423 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
171938e5 4424 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
3f6bcfbd
SB
4425 }
4426 break;
4427 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
0b246afa 4428 btrfs_dev_replace_status(fs_info, p);
3f6bcfbd
SB
4429 ret = 0;
4430 break;
4431 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
17d202b9 4432 p->result = btrfs_dev_replace_cancel(fs_info);
97282031 4433 ret = 0;
3f6bcfbd
SB
4434 break;
4435 default:
4436 ret = -EINVAL;
4437 break;
4438 }
4439
4440 if (copy_to_user(arg, p, sizeof(*p)))
4441 ret = -EFAULT;
adfa97cb 4442out:
3f6bcfbd
SB
4443 kfree(p);
4444 return ret;
4445}
4446
d7728c96
JS
4447static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4448{
4449 int ret = 0;
4450 int i;
740c3d22 4451 u64 rel_ptr;
d7728c96 4452 int size;
806468f8 4453 struct btrfs_ioctl_ino_path_args *ipa = NULL;
d7728c96
JS
4454 struct inode_fs_paths *ipath = NULL;
4455 struct btrfs_path *path;
4456
82b22ac8 4457 if (!capable(CAP_DAC_READ_SEARCH))
d7728c96
JS
4458 return -EPERM;
4459
4460 path = btrfs_alloc_path();
4461 if (!path) {
4462 ret = -ENOMEM;
4463 goto out;
4464 }
4465
4466 ipa = memdup_user(arg, sizeof(*ipa));
4467 if (IS_ERR(ipa)) {
4468 ret = PTR_ERR(ipa);
4469 ipa = NULL;
4470 goto out;
4471 }
4472
4473 size = min_t(u32, ipa->size, 4096);
4474 ipath = init_ipath(size, root, path);
4475 if (IS_ERR(ipath)) {
4476 ret = PTR_ERR(ipath);
4477 ipath = NULL;
4478 goto out;
4479 }
4480
4481 ret = paths_from_inode(ipa->inum, ipath);
4482 if (ret < 0)
4483 goto out;
4484
4485 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
745c4d8e
JM
4486 rel_ptr = ipath->fspath->val[i] -
4487 (u64)(unsigned long)ipath->fspath->val;
740c3d22 4488 ipath->fspath->val[i] = rel_ptr;
d7728c96
JS
4489 }
4490
718dc5fa
OS
4491 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
4492 ipath->fspath, size);
d7728c96
JS
4493 if (ret) {
4494 ret = -EFAULT;
4495 goto out;
4496 }
4497
4498out:
4499 btrfs_free_path(path);
4500 free_ipath(ipath);
4501 kfree(ipa);
4502
4503 return ret;
4504}
4505
4506static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4507{
4508 struct btrfs_data_container *inodes = ctx;
4509 const size_t c = 3 * sizeof(u64);
4510
4511 if (inodes->bytes_left >= c) {
4512 inodes->bytes_left -= c;
4513 inodes->val[inodes->elem_cnt] = inum;
4514 inodes->val[inodes->elem_cnt + 1] = offset;
4515 inodes->val[inodes->elem_cnt + 2] = root;
4516 inodes->elem_cnt += 3;
4517 } else {
4518 inodes->bytes_missing += c - inodes->bytes_left;
4519 inodes->bytes_left = 0;
4520 inodes->elem_missed += 3;
4521 }
4522
4523 return 0;
4524}
4525
2ff7e61e 4526static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
d24a67b2 4527 void __user *arg, int version)
d7728c96
JS
4528{
4529 int ret = 0;
4530 int size;
d7728c96
JS
4531 struct btrfs_ioctl_logical_ino_args *loi;
4532 struct btrfs_data_container *inodes = NULL;
4533 struct btrfs_path *path = NULL;
d24a67b2 4534 bool ignore_offset;
d7728c96
JS
4535
4536 if (!capable(CAP_SYS_ADMIN))
4537 return -EPERM;
4538
4539 loi = memdup_user(arg, sizeof(*loi));
7b9ea627
SV
4540 if (IS_ERR(loi))
4541 return PTR_ERR(loi);
d7728c96 4542
d24a67b2
ZB
4543 if (version == 1) {
4544 ignore_offset = false;
b115e3bc 4545 size = min_t(u32, loi->size, SZ_64K);
d24a67b2
ZB
4546 } else {
4547 /* All reserved bits must be 0 for now */
4548 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
4549 ret = -EINVAL;
4550 goto out_loi;
4551 }
4552 /* Only accept flags we have defined so far */
4553 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
4554 ret = -EINVAL;
4555 goto out_loi;
4556 }
4557 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
b115e3bc 4558 size = min_t(u32, loi->size, SZ_16M);
d24a67b2
ZB
4559 }
4560
d7728c96
JS
4561 path = btrfs_alloc_path();
4562 if (!path) {
4563 ret = -ENOMEM;
4564 goto out;
4565 }
4566
d7728c96
JS
4567 inodes = init_data_container(size);
4568 if (IS_ERR(inodes)) {
4569 ret = PTR_ERR(inodes);
4570 inodes = NULL;
4571 goto out;
4572 }
4573
2ff7e61e 4574 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
d24a67b2 4575 build_ino_list, inodes, ignore_offset);
df031f07 4576 if (ret == -EINVAL)
d7728c96
JS
4577 ret = -ENOENT;
4578 if (ret < 0)
4579 goto out;
4580
718dc5fa
OS
4581 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4582 size);
d7728c96
JS
4583 if (ret)
4584 ret = -EFAULT;
4585
4586out:
4587 btrfs_free_path(path);
f54de068 4588 kvfree(inodes);
d24a67b2 4589out_loi:
d7728c96
JS
4590 kfree(loi);
4591
4592 return ret;
4593}
4594
19a39dce 4595void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
c9e9f97b
ID
4596 struct btrfs_ioctl_balance_args *bargs)
4597{
4598 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4599
4600 bargs->flags = bctl->flags;
4601
837d5b6e
ID
4602 if (atomic_read(&fs_info->balance_running))
4603 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4604 if (atomic_read(&fs_info->balance_pause_req))
4605 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
a7e99c69
ID
4606 if (atomic_read(&fs_info->balance_cancel_req))
4607 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
837d5b6e 4608
c9e9f97b
ID
4609 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4610 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4611 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
19a39dce
ID
4612
4613 if (lock) {
4614 spin_lock(&fs_info->balance_lock);
4615 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4616 spin_unlock(&fs_info->balance_lock);
4617 } else {
4618 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4619 }
c9e9f97b
ID
4620}
4621
9ba1f6e4 4622static long btrfs_ioctl_balance(struct file *file, void __user *arg)
c9e9f97b 4623{
496ad9aa 4624 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
c9e9f97b
ID
4625 struct btrfs_fs_info *fs_info = root->fs_info;
4626 struct btrfs_ioctl_balance_args *bargs;
4627 struct btrfs_balance_control *bctl;
ed0fb78f 4628 bool need_unlock; /* for mut. excl. ops lock */
c9e9f97b
ID
4629 int ret;
4630
4631 if (!capable(CAP_SYS_ADMIN))
4632 return -EPERM;
4633
e54bfa31 4634 ret = mnt_want_write_file(file);
9ba1f6e4
LB
4635 if (ret)
4636 return ret;
4637
ed0fb78f 4638again:
171938e5 4639 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
ed0fb78f
ID
4640 mutex_lock(&fs_info->volume_mutex);
4641 mutex_lock(&fs_info->balance_mutex);
4642 need_unlock = true;
4643 goto locked;
4644 }
4645
4646 /*
01327610 4647 * mut. excl. ops lock is locked. Three possibilities:
ed0fb78f
ID
4648 * (1) some other op is running
4649 * (2) balance is running
4650 * (3) balance is paused -- special case (think resume)
4651 */
c9e9f97b 4652 mutex_lock(&fs_info->balance_mutex);
ed0fb78f
ID
4653 if (fs_info->balance_ctl) {
4654 /* this is either (2) or (3) */
4655 if (!atomic_read(&fs_info->balance_running)) {
4656 mutex_unlock(&fs_info->balance_mutex);
4657 if (!mutex_trylock(&fs_info->volume_mutex))
4658 goto again;
4659 mutex_lock(&fs_info->balance_mutex);
4660
4661 if (fs_info->balance_ctl &&
4662 !atomic_read(&fs_info->balance_running)) {
4663 /* this is (3) */
4664 need_unlock = false;
4665 goto locked;
4666 }
4667
4668 mutex_unlock(&fs_info->balance_mutex);
4669 mutex_unlock(&fs_info->volume_mutex);
4670 goto again;
4671 } else {
4672 /* this is (2) */
4673 mutex_unlock(&fs_info->balance_mutex);
4674 ret = -EINPROGRESS;
4675 goto out;
4676 }
4677 } else {
4678 /* this is (1) */
4679 mutex_unlock(&fs_info->balance_mutex);
e57138b3 4680 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
ed0fb78f
ID
4681 goto out;
4682 }
4683
4684locked:
171938e5 4685 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
c9e9f97b
ID
4686
4687 if (arg) {
4688 bargs = memdup_user(arg, sizeof(*bargs));
4689 if (IS_ERR(bargs)) {
4690 ret = PTR_ERR(bargs);
ed0fb78f 4691 goto out_unlock;
c9e9f97b 4692 }
de322263
ID
4693
4694 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4695 if (!fs_info->balance_ctl) {
4696 ret = -ENOTCONN;
4697 goto out_bargs;
4698 }
4699
4700 bctl = fs_info->balance_ctl;
4701 spin_lock(&fs_info->balance_lock);
4702 bctl->flags |= BTRFS_BALANCE_RESUME;
4703 spin_unlock(&fs_info->balance_lock);
4704
4705 goto do_balance;
4706 }
c9e9f97b
ID
4707 } else {
4708 bargs = NULL;
4709 }
4710
ed0fb78f 4711 if (fs_info->balance_ctl) {
837d5b6e
ID
4712 ret = -EINPROGRESS;
4713 goto out_bargs;
4714 }
4715
8d2db785 4716 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
c9e9f97b
ID
4717 if (!bctl) {
4718 ret = -ENOMEM;
4719 goto out_bargs;
4720 }
4721
4722 bctl->fs_info = fs_info;
4723 if (arg) {
4724 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4725 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4726 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4727
4728 bctl->flags = bargs->flags;
f43ffb60
ID
4729 } else {
4730 /* balance everything - no filters */
4731 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
c9e9f97b
ID
4732 }
4733
8eb93459
DS
4734 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4735 ret = -EINVAL;
0f89abf5 4736 goto out_bctl;
8eb93459
DS
4737 }
4738
de322263 4739do_balance:
c9e9f97b 4740 /*
171938e5 4741 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP
ed0fb78f
ID
4742 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4743 * or, if restriper was paused all the way until unmount, in
171938e5 4744 * free_fs_info. The flag is cleared in __cancel_balance.
c9e9f97b 4745 */
ed0fb78f
ID
4746 need_unlock = false;
4747
4748 ret = btrfs_balance(bctl, bargs);
0f89abf5 4749 bctl = NULL;
ed0fb78f 4750
c9e9f97b
ID
4751 if (arg) {
4752 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4753 ret = -EFAULT;
4754 }
4755
0f89abf5
CE
4756out_bctl:
4757 kfree(bctl);
c9e9f97b
ID
4758out_bargs:
4759 kfree(bargs);
ed0fb78f 4760out_unlock:
c9e9f97b
ID
4761 mutex_unlock(&fs_info->balance_mutex);
4762 mutex_unlock(&fs_info->volume_mutex);
ed0fb78f 4763 if (need_unlock)
171938e5 4764 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
ed0fb78f 4765out:
e54bfa31 4766 mnt_drop_write_file(file);
c9e9f97b
ID
4767 return ret;
4768}
4769
2ff7e61e 4770static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
837d5b6e
ID
4771{
4772 if (!capable(CAP_SYS_ADMIN))
4773 return -EPERM;
4774
4775 switch (cmd) {
4776 case BTRFS_BALANCE_CTL_PAUSE:
0b246afa 4777 return btrfs_pause_balance(fs_info);
a7e99c69 4778 case BTRFS_BALANCE_CTL_CANCEL:
0b246afa 4779 return btrfs_cancel_balance(fs_info);
837d5b6e
ID
4780 }
4781
4782 return -EINVAL;
4783}
4784
2ff7e61e 4785static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
19a39dce
ID
4786 void __user *arg)
4787{
19a39dce
ID
4788 struct btrfs_ioctl_balance_args *bargs;
4789 int ret = 0;
4790
4791 if (!capable(CAP_SYS_ADMIN))
4792 return -EPERM;
4793
4794 mutex_lock(&fs_info->balance_mutex);
4795 if (!fs_info->balance_ctl) {
4796 ret = -ENOTCONN;
4797 goto out;
4798 }
4799
8d2db785 4800 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
19a39dce
ID
4801 if (!bargs) {
4802 ret = -ENOMEM;
4803 goto out;
4804 }
4805
4806 update_ioctl_balance_args(fs_info, 1, bargs);
4807
4808 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4809 ret = -EFAULT;
4810
4811 kfree(bargs);
4812out:
4813 mutex_unlock(&fs_info->balance_mutex);
4814 return ret;
4815}
4816
905b0dda 4817static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
5d13a37b 4818{
0b246afa
JM
4819 struct inode *inode = file_inode(file);
4820 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5d13a37b
AJ
4821 struct btrfs_ioctl_quota_ctl_args *sa;
4822 struct btrfs_trans_handle *trans = NULL;
4823 int ret;
4824 int err;
4825
4826 if (!capable(CAP_SYS_ADMIN))
4827 return -EPERM;
4828
905b0dda
MX
4829 ret = mnt_want_write_file(file);
4830 if (ret)
4831 return ret;
5d13a37b
AJ
4832
4833 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4834 if (IS_ERR(sa)) {
4835 ret = PTR_ERR(sa);
4836 goto drop_write;
4837 }
5d13a37b 4838
0b246afa
JM
4839 down_write(&fs_info->subvol_sem);
4840 trans = btrfs_start_transaction(fs_info->tree_root, 2);
2f232036
JS
4841 if (IS_ERR(trans)) {
4842 ret = PTR_ERR(trans);
4843 goto out;
5d13a37b
AJ
4844 }
4845
4846 switch (sa->cmd) {
4847 case BTRFS_QUOTA_CTL_ENABLE:
0b246afa 4848 ret = btrfs_quota_enable(trans, fs_info);
5d13a37b
AJ
4849 break;
4850 case BTRFS_QUOTA_CTL_DISABLE:
0b246afa 4851 ret = btrfs_quota_disable(trans, fs_info);
5d13a37b 4852 break;
5d13a37b
AJ
4853 default:
4854 ret = -EINVAL;
4855 break;
4856 }
4857
3a45bb20 4858 err = btrfs_commit_transaction(trans);
2f232036
JS
4859 if (err && !ret)
4860 ret = err;
5d13a37b
AJ
4861out:
4862 kfree(sa);
0b246afa 4863 up_write(&fs_info->subvol_sem);
905b0dda
MX
4864drop_write:
4865 mnt_drop_write_file(file);
5d13a37b
AJ
4866 return ret;
4867}
4868
905b0dda 4869static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
5d13a37b 4870{
0b246afa
JM
4871 struct inode *inode = file_inode(file);
4872 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4873 struct btrfs_root *root = BTRFS_I(inode)->root;
5d13a37b
AJ
4874 struct btrfs_ioctl_qgroup_assign_args *sa;
4875 struct btrfs_trans_handle *trans;
4876 int ret;
4877 int err;
4878
4879 if (!capable(CAP_SYS_ADMIN))
4880 return -EPERM;
4881
905b0dda
MX
4882 ret = mnt_want_write_file(file);
4883 if (ret)
4884 return ret;
5d13a37b
AJ
4885
4886 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4887 if (IS_ERR(sa)) {
4888 ret = PTR_ERR(sa);
4889 goto drop_write;
4890 }
5d13a37b
AJ
4891
4892 trans = btrfs_join_transaction(root);
4893 if (IS_ERR(trans)) {
4894 ret = PTR_ERR(trans);
4895 goto out;
4896 }
4897
5d13a37b 4898 if (sa->assign) {
0b246afa 4899 ret = btrfs_add_qgroup_relation(trans, fs_info,
5d13a37b
AJ
4900 sa->src, sa->dst);
4901 } else {
0b246afa 4902 ret = btrfs_del_qgroup_relation(trans, fs_info,
5d13a37b
AJ
4903 sa->src, sa->dst);
4904 }
4905
e082f563 4906 /* update qgroup status and info */
0b246afa 4907 err = btrfs_run_qgroups(trans, fs_info);
e082f563 4908 if (err < 0)
0b246afa
JM
4909 btrfs_handle_fs_error(fs_info, err,
4910 "failed to update qgroup status and info");
3a45bb20 4911 err = btrfs_end_transaction(trans);
5d13a37b
AJ
4912 if (err && !ret)
4913 ret = err;
4914
4915out:
4916 kfree(sa);
905b0dda
MX
4917drop_write:
4918 mnt_drop_write_file(file);
5d13a37b
AJ
4919 return ret;
4920}
4921
905b0dda 4922static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
5d13a37b 4923{
0b246afa
JM
4924 struct inode *inode = file_inode(file);
4925 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4926 struct btrfs_root *root = BTRFS_I(inode)->root;
5d13a37b
AJ
4927 struct btrfs_ioctl_qgroup_create_args *sa;
4928 struct btrfs_trans_handle *trans;
4929 int ret;
4930 int err;
4931
4932 if (!capable(CAP_SYS_ADMIN))
4933 return -EPERM;
4934
905b0dda
MX
4935 ret = mnt_want_write_file(file);
4936 if (ret)
4937 return ret;
5d13a37b
AJ
4938
4939 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4940 if (IS_ERR(sa)) {
4941 ret = PTR_ERR(sa);
4942 goto drop_write;
4943 }
5d13a37b 4944
d86e56cf
MX
4945 if (!sa->qgroupid) {
4946 ret = -EINVAL;
4947 goto out;
4948 }
4949
5d13a37b
AJ
4950 trans = btrfs_join_transaction(root);
4951 if (IS_ERR(trans)) {
4952 ret = PTR_ERR(trans);
4953 goto out;
4954 }
4955
5d13a37b 4956 if (sa->create) {
0b246afa 4957 ret = btrfs_create_qgroup(trans, fs_info, sa->qgroupid);
5d13a37b 4958 } else {
0b246afa 4959 ret = btrfs_remove_qgroup(trans, fs_info, sa->qgroupid);
5d13a37b
AJ
4960 }
4961
3a45bb20 4962 err = btrfs_end_transaction(trans);
5d13a37b
AJ
4963 if (err && !ret)
4964 ret = err;
4965
4966out:
4967 kfree(sa);
905b0dda
MX
4968drop_write:
4969 mnt_drop_write_file(file);
5d13a37b
AJ
4970 return ret;
4971}
4972
905b0dda 4973static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
5d13a37b 4974{
0b246afa
JM
4975 struct inode *inode = file_inode(file);
4976 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4977 struct btrfs_root *root = BTRFS_I(inode)->root;
5d13a37b
AJ
4978 struct btrfs_ioctl_qgroup_limit_args *sa;
4979 struct btrfs_trans_handle *trans;
4980 int ret;
4981 int err;
4982 u64 qgroupid;
4983
4984 if (!capable(CAP_SYS_ADMIN))
4985 return -EPERM;
4986
905b0dda
MX
4987 ret = mnt_want_write_file(file);
4988 if (ret)
4989 return ret;
5d13a37b
AJ
4990
4991 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4992 if (IS_ERR(sa)) {
4993 ret = PTR_ERR(sa);
4994 goto drop_write;
4995 }
5d13a37b
AJ
4996
4997 trans = btrfs_join_transaction(root);
4998 if (IS_ERR(trans)) {
4999 ret = PTR_ERR(trans);
5000 goto out;
5001 }
5002
5003 qgroupid = sa->qgroupid;
5004 if (!qgroupid) {
5005 /* take the current subvol as qgroup */
5006 qgroupid = root->root_key.objectid;
5007 }
5008
0b246afa 5009 ret = btrfs_limit_qgroup(trans, fs_info, qgroupid, &sa->lim);
5d13a37b 5010
3a45bb20 5011 err = btrfs_end_transaction(trans);
5d13a37b
AJ
5012 if (err && !ret)
5013 ret = err;
5014
5015out:
5016 kfree(sa);
905b0dda
MX
5017drop_write:
5018 mnt_drop_write_file(file);
5d13a37b
AJ
5019 return ret;
5020}
5021
2f232036
JS
5022static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
5023{
0b246afa
JM
5024 struct inode *inode = file_inode(file);
5025 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2f232036
JS
5026 struct btrfs_ioctl_quota_rescan_args *qsa;
5027 int ret;
5028
5029 if (!capable(CAP_SYS_ADMIN))
5030 return -EPERM;
5031
5032 ret = mnt_want_write_file(file);
5033 if (ret)
5034 return ret;
5035
5036 qsa = memdup_user(arg, sizeof(*qsa));
5037 if (IS_ERR(qsa)) {
5038 ret = PTR_ERR(qsa);
5039 goto drop_write;
5040 }
5041
5042 if (qsa->flags) {
5043 ret = -EINVAL;
5044 goto out;
5045 }
5046
0b246afa 5047 ret = btrfs_qgroup_rescan(fs_info);
2f232036
JS
5048
5049out:
5050 kfree(qsa);
5051drop_write:
5052 mnt_drop_write_file(file);
5053 return ret;
5054}
5055
5056static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
5057{
0b246afa
JM
5058 struct inode *inode = file_inode(file);
5059 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2f232036
JS
5060 struct btrfs_ioctl_quota_rescan_args *qsa;
5061 int ret = 0;
5062
5063 if (!capable(CAP_SYS_ADMIN))
5064 return -EPERM;
5065
8d2db785 5066 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
2f232036
JS
5067 if (!qsa)
5068 return -ENOMEM;
5069
0b246afa 5070 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
2f232036 5071 qsa->flags = 1;
0b246afa 5072 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
2f232036
JS
5073 }
5074
5075 if (copy_to_user(arg, qsa, sizeof(*qsa)))
5076 ret = -EFAULT;
5077
5078 kfree(qsa);
5079 return ret;
5080}
5081
57254b6e
JS
5082static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
5083{
0b246afa
JM
5084 struct inode *inode = file_inode(file);
5085 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
57254b6e
JS
5086
5087 if (!capable(CAP_SYS_ADMIN))
5088 return -EPERM;
5089
0b246afa 5090 return btrfs_qgroup_wait_for_completion(fs_info, true);
57254b6e
JS
5091}
5092
abccd00f
HM
5093static long _btrfs_ioctl_set_received_subvol(struct file *file,
5094 struct btrfs_ioctl_received_subvol_args *sa)
8ea05e3a 5095{
496ad9aa 5096 struct inode *inode = file_inode(file);
0b246afa 5097 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
8ea05e3a
AB
5098 struct btrfs_root *root = BTRFS_I(inode)->root;
5099 struct btrfs_root_item *root_item = &root->root_item;
5100 struct btrfs_trans_handle *trans;
c2050a45 5101 struct timespec ct = current_time(inode);
8ea05e3a 5102 int ret = 0;
dd5f9615 5103 int received_uuid_changed;
8ea05e3a 5104
bd60ea0f
DS
5105 if (!inode_owner_or_capable(inode))
5106 return -EPERM;
5107
8ea05e3a
AB
5108 ret = mnt_want_write_file(file);
5109 if (ret < 0)
5110 return ret;
5111
0b246afa 5112 down_write(&fs_info->subvol_sem);
8ea05e3a 5113
4a0cc7ca 5114 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
8ea05e3a
AB
5115 ret = -EINVAL;
5116 goto out;
5117 }
5118
5119 if (btrfs_root_readonly(root)) {
5120 ret = -EROFS;
5121 goto out;
5122 }
5123
dd5f9615
SB
5124 /*
5125 * 1 - root item
5126 * 2 - uuid items (received uuid + subvol uuid)
5127 */
5128 trans = btrfs_start_transaction(root, 3);
8ea05e3a
AB
5129 if (IS_ERR(trans)) {
5130 ret = PTR_ERR(trans);
5131 trans = NULL;
5132 goto out;
5133 }
5134
5135 sa->rtransid = trans->transid;
5136 sa->rtime.sec = ct.tv_sec;
5137 sa->rtime.nsec = ct.tv_nsec;
5138
dd5f9615
SB
5139 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5140 BTRFS_UUID_SIZE);
5141 if (received_uuid_changed &&
5142 !btrfs_is_empty_uuid(root_item->received_uuid))
0b246afa 5143 btrfs_uuid_tree_rem(trans, fs_info, root_item->received_uuid,
dd5f9615
SB
5144 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5145 root->root_key.objectid);
8ea05e3a
AB
5146 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5147 btrfs_set_root_stransid(root_item, sa->stransid);
5148 btrfs_set_root_rtransid(root_item, sa->rtransid);
3cae210f
QW
5149 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5150 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5151 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5152 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
8ea05e3a 5153
0b246afa 5154 ret = btrfs_update_root(trans, fs_info->tree_root,
8ea05e3a
AB
5155 &root->root_key, &root->root_item);
5156 if (ret < 0) {
3a45bb20 5157 btrfs_end_transaction(trans);
8ea05e3a 5158 goto out;
dd5f9615
SB
5159 }
5160 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
0b246afa 5161 ret = btrfs_uuid_tree_add(trans, fs_info, sa->uuid,
dd5f9615
SB
5162 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5163 root->root_key.objectid);
5164 if (ret < 0 && ret != -EEXIST) {
66642832 5165 btrfs_abort_transaction(trans, ret);
efd38150 5166 btrfs_end_transaction(trans);
8ea05e3a 5167 goto out;
dd5f9615
SB
5168 }
5169 }
3a45bb20 5170 ret = btrfs_commit_transaction(trans);
abccd00f 5171out:
0b246afa 5172 up_write(&fs_info->subvol_sem);
abccd00f
HM
5173 mnt_drop_write_file(file);
5174 return ret;
5175}
5176
5177#ifdef CONFIG_64BIT
5178static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5179 void __user *arg)
5180{
5181 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5182 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5183 int ret = 0;
5184
5185 args32 = memdup_user(arg, sizeof(*args32));
7b9ea627
SV
5186 if (IS_ERR(args32))
5187 return PTR_ERR(args32);
abccd00f 5188
8d2db785 5189 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
84dbeb87
DC
5190 if (!args64) {
5191 ret = -ENOMEM;
abccd00f
HM
5192 goto out;
5193 }
5194
5195 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5196 args64->stransid = args32->stransid;
5197 args64->rtransid = args32->rtransid;
5198 args64->stime.sec = args32->stime.sec;
5199 args64->stime.nsec = args32->stime.nsec;
5200 args64->rtime.sec = args32->rtime.sec;
5201 args64->rtime.nsec = args32->rtime.nsec;
5202 args64->flags = args32->flags;
5203
5204 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5205 if (ret)
5206 goto out;
5207
5208 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5209 args32->stransid = args64->stransid;
5210 args32->rtransid = args64->rtransid;
5211 args32->stime.sec = args64->stime.sec;
5212 args32->stime.nsec = args64->stime.nsec;
5213 args32->rtime.sec = args64->rtime.sec;
5214 args32->rtime.nsec = args64->rtime.nsec;
5215 args32->flags = args64->flags;
5216
5217 ret = copy_to_user(arg, args32, sizeof(*args32));
5218 if (ret)
5219 ret = -EFAULT;
5220
5221out:
5222 kfree(args32);
5223 kfree(args64);
5224 return ret;
5225}
5226#endif
5227
5228static long btrfs_ioctl_set_received_subvol(struct file *file,
5229 void __user *arg)
5230{
5231 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5232 int ret = 0;
5233
5234 sa = memdup_user(arg, sizeof(*sa));
7b9ea627
SV
5235 if (IS_ERR(sa))
5236 return PTR_ERR(sa);
abccd00f
HM
5237
5238 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5239
5240 if (ret)
5241 goto out;
5242
8ea05e3a
AB
5243 ret = copy_to_user(arg, sa, sizeof(*sa));
5244 if (ret)
5245 ret = -EFAULT;
5246
5247out:
5248 kfree(sa);
8ea05e3a
AB
5249 return ret;
5250}
5251
867ab667 5252static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5253{
0b246afa
JM
5254 struct inode *inode = file_inode(file);
5255 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
a1b83ac5 5256 size_t len;
867ab667 5257 int ret;
a1b83ac5
AJ
5258 char label[BTRFS_LABEL_SIZE];
5259
0b246afa
JM
5260 spin_lock(&fs_info->super_lock);
5261 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5262 spin_unlock(&fs_info->super_lock);
a1b83ac5
AJ
5263
5264 len = strnlen(label, BTRFS_LABEL_SIZE);
867ab667 5265
5266 if (len == BTRFS_LABEL_SIZE) {
0b246afa
JM
5267 btrfs_warn(fs_info,
5268 "label is too long, return the first %zu bytes",
5269 --len);
867ab667 5270 }
5271
867ab667 5272 ret = copy_to_user(arg, label, len);
867ab667 5273
5274 return ret ? -EFAULT : 0;
5275}
5276
a8bfd4ab 5277static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5278{
0b246afa
JM
5279 struct inode *inode = file_inode(file);
5280 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5281 struct btrfs_root *root = BTRFS_I(inode)->root;
5282 struct btrfs_super_block *super_block = fs_info->super_copy;
a8bfd4ab 5283 struct btrfs_trans_handle *trans;
5284 char label[BTRFS_LABEL_SIZE];
5285 int ret;
5286
5287 if (!capable(CAP_SYS_ADMIN))
5288 return -EPERM;
5289
5290 if (copy_from_user(label, arg, sizeof(label)))
5291 return -EFAULT;
5292
5293 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
0b246afa 5294 btrfs_err(fs_info,
5d163e0e
JM
5295 "unable to set label with more than %d bytes",
5296 BTRFS_LABEL_SIZE - 1);
a8bfd4ab 5297 return -EINVAL;
5298 }
5299
5300 ret = mnt_want_write_file(file);
5301 if (ret)
5302 return ret;
5303
a8bfd4ab 5304 trans = btrfs_start_transaction(root, 0);
5305 if (IS_ERR(trans)) {
5306 ret = PTR_ERR(trans);
5307 goto out_unlock;
5308 }
5309
0b246afa 5310 spin_lock(&fs_info->super_lock);
a8bfd4ab 5311 strcpy(super_block->label, label);
0b246afa 5312 spin_unlock(&fs_info->super_lock);
3a45bb20 5313 ret = btrfs_commit_transaction(trans);
a8bfd4ab 5314
5315out_unlock:
a8bfd4ab 5316 mnt_drop_write_file(file);
5317 return ret;
5318}
5319
2eaa055f
JM
5320#define INIT_FEATURE_FLAGS(suffix) \
5321 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5322 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5323 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5324
d5131b65 5325int btrfs_ioctl_get_supported_features(void __user *arg)
2eaa055f 5326{
4d4ab6d6 5327 static const struct btrfs_ioctl_feature_flags features[3] = {
2eaa055f
JM
5328 INIT_FEATURE_FLAGS(SUPP),
5329 INIT_FEATURE_FLAGS(SAFE_SET),
5330 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5331 };
5332
5333 if (copy_to_user(arg, &features, sizeof(features)))
5334 return -EFAULT;
5335
5336 return 0;
5337}
5338
5339static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5340{
0b246afa
JM
5341 struct inode *inode = file_inode(file);
5342 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5343 struct btrfs_super_block *super_block = fs_info->super_copy;
2eaa055f
JM
5344 struct btrfs_ioctl_feature_flags features;
5345
5346 features.compat_flags = btrfs_super_compat_flags(super_block);
5347 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5348 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5349
5350 if (copy_to_user(arg, &features, sizeof(features)))
5351 return -EFAULT;
5352
5353 return 0;
5354}
5355
2ff7e61e 5356static int check_feature_bits(struct btrfs_fs_info *fs_info,
3b02a68a 5357 enum btrfs_feature_set set,
2eaa055f
JM
5358 u64 change_mask, u64 flags, u64 supported_flags,
5359 u64 safe_set, u64 safe_clear)
5360{
3b02a68a
JM
5361 const char *type = btrfs_feature_set_names[set];
5362 char *names;
2eaa055f
JM
5363 u64 disallowed, unsupported;
5364 u64 set_mask = flags & change_mask;
5365 u64 clear_mask = ~flags & change_mask;
5366
5367 unsupported = set_mask & ~supported_flags;
5368 if (unsupported) {
3b02a68a
JM
5369 names = btrfs_printable_features(set, unsupported);
5370 if (names) {
0b246afa
JM
5371 btrfs_warn(fs_info,
5372 "this kernel does not support the %s feature bit%s",
5373 names, strchr(names, ',') ? "s" : "");
3b02a68a
JM
5374 kfree(names);
5375 } else
0b246afa
JM
5376 btrfs_warn(fs_info,
5377 "this kernel does not support %s bits 0x%llx",
5378 type, unsupported);
2eaa055f
JM
5379 return -EOPNOTSUPP;
5380 }
5381
5382 disallowed = set_mask & ~safe_set;
5383 if (disallowed) {
3b02a68a
JM
5384 names = btrfs_printable_features(set, disallowed);
5385 if (names) {
0b246afa
JM
5386 btrfs_warn(fs_info,
5387 "can't set the %s feature bit%s while mounted",
5388 names, strchr(names, ',') ? "s" : "");
3b02a68a
JM
5389 kfree(names);
5390 } else
0b246afa
JM
5391 btrfs_warn(fs_info,
5392 "can't set %s bits 0x%llx while mounted",
5393 type, disallowed);
2eaa055f
JM
5394 return -EPERM;
5395 }
5396
5397 disallowed = clear_mask & ~safe_clear;
5398 if (disallowed) {
3b02a68a
JM
5399 names = btrfs_printable_features(set, disallowed);
5400 if (names) {
0b246afa
JM
5401 btrfs_warn(fs_info,
5402 "can't clear the %s feature bit%s while mounted",
5403 names, strchr(names, ',') ? "s" : "");
3b02a68a
JM
5404 kfree(names);
5405 } else
0b246afa
JM
5406 btrfs_warn(fs_info,
5407 "can't clear %s bits 0x%llx while mounted",
5408 type, disallowed);
2eaa055f
JM
5409 return -EPERM;
5410 }
5411
5412 return 0;
5413}
5414
2ff7e61e
JM
5415#define check_feature(fs_info, change_mask, flags, mask_base) \
5416check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
2eaa055f
JM
5417 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5418 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5419 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5420
5421static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5422{
0b246afa
JM
5423 struct inode *inode = file_inode(file);
5424 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5425 struct btrfs_root *root = BTRFS_I(inode)->root;
5426 struct btrfs_super_block *super_block = fs_info->super_copy;
2eaa055f
JM
5427 struct btrfs_ioctl_feature_flags flags[2];
5428 struct btrfs_trans_handle *trans;
5429 u64 newflags;
5430 int ret;
5431
5432 if (!capable(CAP_SYS_ADMIN))
5433 return -EPERM;
5434
5435 if (copy_from_user(flags, arg, sizeof(flags)))
5436 return -EFAULT;
5437
5438 /* Nothing to do */
5439 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5440 !flags[0].incompat_flags)
5441 return 0;
5442
2ff7e61e 5443 ret = check_feature(fs_info, flags[0].compat_flags,
2eaa055f
JM
5444 flags[1].compat_flags, COMPAT);
5445 if (ret)
5446 return ret;
5447
2ff7e61e 5448 ret = check_feature(fs_info, flags[0].compat_ro_flags,
2eaa055f
JM
5449 flags[1].compat_ro_flags, COMPAT_RO);
5450 if (ret)
5451 return ret;
5452
2ff7e61e 5453 ret = check_feature(fs_info, flags[0].incompat_flags,
2eaa055f
JM
5454 flags[1].incompat_flags, INCOMPAT);
5455 if (ret)
5456 return ret;
5457
7ab19625
DS
5458 ret = mnt_want_write_file(file);
5459 if (ret)
5460 return ret;
5461
8051aa1a 5462 trans = btrfs_start_transaction(root, 0);
7ab19625
DS
5463 if (IS_ERR(trans)) {
5464 ret = PTR_ERR(trans);
5465 goto out_drop_write;
5466 }
2eaa055f 5467
0b246afa 5468 spin_lock(&fs_info->super_lock);
2eaa055f
JM
5469 newflags = btrfs_super_compat_flags(super_block);
5470 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5471 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5472 btrfs_set_super_compat_flags(super_block, newflags);
5473
5474 newflags = btrfs_super_compat_ro_flags(super_block);
5475 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5476 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5477 btrfs_set_super_compat_ro_flags(super_block, newflags);
5478
5479 newflags = btrfs_super_incompat_flags(super_block);
5480 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5481 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5482 btrfs_set_super_incompat_flags(super_block, newflags);
0b246afa 5483 spin_unlock(&fs_info->super_lock);
2eaa055f 5484
3a45bb20 5485 ret = btrfs_commit_transaction(trans);
7ab19625
DS
5486out_drop_write:
5487 mnt_drop_write_file(file);
5488
5489 return ret;
2eaa055f
JM
5490}
5491
2351f431
JB
5492static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
5493{
5494 struct btrfs_ioctl_send_args *arg;
5495 int ret;
5496
5497 if (compat) {
5498#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5499 struct btrfs_ioctl_send_args_32 args32;
5500
5501 ret = copy_from_user(&args32, argp, sizeof(args32));
5502 if (ret)
5503 return -EFAULT;
5504 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
5505 if (!arg)
5506 return -ENOMEM;
5507 arg->send_fd = args32.send_fd;
5508 arg->clone_sources_count = args32.clone_sources_count;
5509 arg->clone_sources = compat_ptr(args32.clone_sources);
5510 arg->parent_root = args32.parent_root;
5511 arg->flags = args32.flags;
5512 memcpy(arg->reserved, args32.reserved,
5513 sizeof(args32.reserved));
5514#else
5515 return -ENOTTY;
5516#endif
5517 } else {
5518 arg = memdup_user(argp, sizeof(*arg));
5519 if (IS_ERR(arg))
5520 return PTR_ERR(arg);
5521 }
5522 ret = btrfs_ioctl_send(file, arg);
5523 kfree(arg);
5524 return ret;
5525}
5526
f46b5a66
CH
5527long btrfs_ioctl(struct file *file, unsigned int
5528 cmd, unsigned long arg)
5529{
0b246afa
JM
5530 struct inode *inode = file_inode(file);
5531 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5532 struct btrfs_root *root = BTRFS_I(inode)->root;
4bcabaa3 5533 void __user *argp = (void __user *)arg;
f46b5a66
CH
5534
5535 switch (cmd) {
6cbff00f
CH
5536 case FS_IOC_GETFLAGS:
5537 return btrfs_ioctl_getflags(file, argp);
5538 case FS_IOC_SETFLAGS:
5539 return btrfs_ioctl_setflags(file, argp);
5540 case FS_IOC_GETVERSION:
5541 return btrfs_ioctl_getversion(file, argp);
f7039b1d
LD
5542 case FITRIM:
5543 return btrfs_ioctl_fitrim(file, argp);
f46b5a66 5544 case BTRFS_IOC_SNAP_CREATE:
fa0d2b9b 5545 return btrfs_ioctl_snap_create(file, argp, 0);
fdfb1e4f 5546 case BTRFS_IOC_SNAP_CREATE_V2:
fa0d2b9b 5547 return btrfs_ioctl_snap_create_v2(file, argp, 0);
3de4586c 5548 case BTRFS_IOC_SUBVOL_CREATE:
fa0d2b9b 5549 return btrfs_ioctl_snap_create(file, argp, 1);
6f72c7e2
AJ
5550 case BTRFS_IOC_SUBVOL_CREATE_V2:
5551 return btrfs_ioctl_snap_create_v2(file, argp, 1);
76dda93c
YZ
5552 case BTRFS_IOC_SNAP_DESTROY:
5553 return btrfs_ioctl_snap_destroy(file, argp);
0caa102d
LZ
5554 case BTRFS_IOC_SUBVOL_GETFLAGS:
5555 return btrfs_ioctl_subvol_getflags(file, argp);
5556 case BTRFS_IOC_SUBVOL_SETFLAGS:
5557 return btrfs_ioctl_subvol_setflags(file, argp);
6ef5ed0d
JB
5558 case BTRFS_IOC_DEFAULT_SUBVOL:
5559 return btrfs_ioctl_default_subvol(file, argp);
f46b5a66 5560 case BTRFS_IOC_DEFRAG:
1e701a32
CM
5561 return btrfs_ioctl_defrag(file, NULL);
5562 case BTRFS_IOC_DEFRAG_RANGE:
5563 return btrfs_ioctl_defrag(file, argp);
f46b5a66 5564 case BTRFS_IOC_RESIZE:
198605a8 5565 return btrfs_ioctl_resize(file, argp);
f46b5a66 5566 case BTRFS_IOC_ADD_DEV:
2ff7e61e 5567 return btrfs_ioctl_add_dev(fs_info, argp);
f46b5a66 5568 case BTRFS_IOC_RM_DEV:
da24927b 5569 return btrfs_ioctl_rm_dev(file, argp);
6b526ed7
AJ
5570 case BTRFS_IOC_RM_DEV_V2:
5571 return btrfs_ioctl_rm_dev_v2(file, argp);
475f6387 5572 case BTRFS_IOC_FS_INFO:
2ff7e61e 5573 return btrfs_ioctl_fs_info(fs_info, argp);
475f6387 5574 case BTRFS_IOC_DEV_INFO:
2ff7e61e 5575 return btrfs_ioctl_dev_info(fs_info, argp);
f46b5a66 5576 case BTRFS_IOC_BALANCE:
9ba1f6e4 5577 return btrfs_ioctl_balance(file, NULL);
f46b5a66
CH
5578 case BTRFS_IOC_TRANS_START:
5579 return btrfs_ioctl_trans_start(file);
5580 case BTRFS_IOC_TRANS_END:
5581 return btrfs_ioctl_trans_end(file);
ac8e9819
CM
5582 case BTRFS_IOC_TREE_SEARCH:
5583 return btrfs_ioctl_tree_search(file, argp);
cc68a8a5
GH
5584 case BTRFS_IOC_TREE_SEARCH_V2:
5585 return btrfs_ioctl_tree_search_v2(file, argp);
ac8e9819
CM
5586 case BTRFS_IOC_INO_LOOKUP:
5587 return btrfs_ioctl_ino_lookup(file, argp);
d7728c96
JS
5588 case BTRFS_IOC_INO_PATHS:
5589 return btrfs_ioctl_ino_to_path(root, argp);
5590 case BTRFS_IOC_LOGICAL_INO:
d24a67b2
ZB
5591 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
5592 case BTRFS_IOC_LOGICAL_INO_V2:
5593 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
1406e432 5594 case BTRFS_IOC_SPACE_INFO:
2ff7e61e 5595 return btrfs_ioctl_space_info(fs_info, argp);
9b199859
FDBM
5596 case BTRFS_IOC_SYNC: {
5597 int ret;
5598
0b246afa 5599 ret = btrfs_start_delalloc_roots(fs_info, 0, -1);
9b199859
FDBM
5600 if (ret)
5601 return ret;
0b246afa 5602 ret = btrfs_sync_fs(inode->i_sb, 1);
2fad4e83
DS
5603 /*
5604 * The transaction thread may want to do more work,
01327610 5605 * namely it pokes the cleaner kthread that will start
2fad4e83
DS
5606 * processing uncleaned subvols.
5607 */
0b246afa 5608 wake_up_process(fs_info->transaction_kthread);
9b199859
FDBM
5609 return ret;
5610 }
46204592 5611 case BTRFS_IOC_START_SYNC:
9a8c28be 5612 return btrfs_ioctl_start_sync(root, argp);
46204592 5613 case BTRFS_IOC_WAIT_SYNC:
2ff7e61e 5614 return btrfs_ioctl_wait_sync(fs_info, argp);
475f6387 5615 case BTRFS_IOC_SCRUB:
b8e95489 5616 return btrfs_ioctl_scrub(file, argp);
475f6387 5617 case BTRFS_IOC_SCRUB_CANCEL:
2ff7e61e 5618 return btrfs_ioctl_scrub_cancel(fs_info);
475f6387 5619 case BTRFS_IOC_SCRUB_PROGRESS:
2ff7e61e 5620 return btrfs_ioctl_scrub_progress(fs_info, argp);
c9e9f97b 5621 case BTRFS_IOC_BALANCE_V2:
9ba1f6e4 5622 return btrfs_ioctl_balance(file, argp);
837d5b6e 5623 case BTRFS_IOC_BALANCE_CTL:
2ff7e61e 5624 return btrfs_ioctl_balance_ctl(fs_info, arg);
19a39dce 5625 case BTRFS_IOC_BALANCE_PROGRESS:
2ff7e61e 5626 return btrfs_ioctl_balance_progress(fs_info, argp);
8ea05e3a
AB
5627 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5628 return btrfs_ioctl_set_received_subvol(file, argp);
abccd00f
HM
5629#ifdef CONFIG_64BIT
5630 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5631 return btrfs_ioctl_set_received_subvol_32(file, argp);
5632#endif
31db9f7c 5633 case BTRFS_IOC_SEND:
2351f431
JB
5634 return _btrfs_ioctl_send(file, argp, false);
5635#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5636 case BTRFS_IOC_SEND_32:
5637 return _btrfs_ioctl_send(file, argp, true);
5638#endif
c11d2c23 5639 case BTRFS_IOC_GET_DEV_STATS:
2ff7e61e 5640 return btrfs_ioctl_get_dev_stats(fs_info, argp);
5d13a37b 5641 case BTRFS_IOC_QUOTA_CTL:
905b0dda 5642 return btrfs_ioctl_quota_ctl(file, argp);
5d13a37b 5643 case BTRFS_IOC_QGROUP_ASSIGN:
905b0dda 5644 return btrfs_ioctl_qgroup_assign(file, argp);
5d13a37b 5645 case BTRFS_IOC_QGROUP_CREATE:
905b0dda 5646 return btrfs_ioctl_qgroup_create(file, argp);
5d13a37b 5647 case BTRFS_IOC_QGROUP_LIMIT:
905b0dda 5648 return btrfs_ioctl_qgroup_limit(file, argp);
2f232036
JS
5649 case BTRFS_IOC_QUOTA_RESCAN:
5650 return btrfs_ioctl_quota_rescan(file, argp);
5651 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5652 return btrfs_ioctl_quota_rescan_status(file, argp);
57254b6e
JS
5653 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5654 return btrfs_ioctl_quota_rescan_wait(file, argp);
3f6bcfbd 5655 case BTRFS_IOC_DEV_REPLACE:
2ff7e61e 5656 return btrfs_ioctl_dev_replace(fs_info, argp);
867ab667 5657 case BTRFS_IOC_GET_FSLABEL:
5658 return btrfs_ioctl_get_fslabel(file, argp);
a8bfd4ab 5659 case BTRFS_IOC_SET_FSLABEL:
5660 return btrfs_ioctl_set_fslabel(file, argp);
2eaa055f 5661 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
d5131b65 5662 return btrfs_ioctl_get_supported_features(argp);
2eaa055f
JM
5663 case BTRFS_IOC_GET_FEATURES:
5664 return btrfs_ioctl_get_features(file, argp);
5665 case BTRFS_IOC_SET_FEATURES:
5666 return btrfs_ioctl_set_features(file, argp);
f46b5a66
CH
5667 }
5668
5669 return -ENOTTY;
5670}
4c63c245
LD
5671
5672#ifdef CONFIG_COMPAT
5673long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5674{
2a362249
JM
5675 /*
5676 * These all access 32-bit values anyway so no further
5677 * handling is necessary.
5678 */
4c63c245
LD
5679 switch (cmd) {
5680 case FS_IOC32_GETFLAGS:
5681 cmd = FS_IOC_GETFLAGS;
5682 break;
5683 case FS_IOC32_SETFLAGS:
5684 cmd = FS_IOC_SETFLAGS;
5685 break;
5686 case FS_IOC32_GETVERSION:
5687 cmd = FS_IOC_GETVERSION;
5688 break;
4c63c245
LD
5689 }
5690
5691 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5692}
5693#endif