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