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