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