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