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