]> git.ipfire.org Git - thirdparty/linux.git/blame - fs/btrfs/ioctl.c
btrfs: make send work with concurrent block group relocation
[thirdparty/linux.git] / fs / btrfs / ioctl.c
CommitLineData
c1d7c514 1// SPDX-License-Identifier: GPL-2.0
f46b5a66
CH
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
f46b5a66
CH
4 */
5
6#include <linux/kernel.h>
7#include <linux/bio.h>
f46b5a66
CH
8#include <linux/file.h>
9#include <linux/fs.h>
cb8e7090 10#include <linux/fsnotify.h>
f46b5a66
CH
11#include <linux/pagemap.h>
12#include <linux/highmem.h>
13#include <linux/time.h>
f46b5a66 14#include <linux/string.h>
f46b5a66 15#include <linux/backing-dev.h>
cb8e7090 16#include <linux/mount.h>
cb8e7090 17#include <linux/namei.h>
f46b5a66 18#include <linux/writeback.h>
f46b5a66 19#include <linux/compat.h>
cb8e7090 20#include <linux/security.h>
f46b5a66 21#include <linux/xattr.h>
f54de068 22#include <linux/mm.h>
5a0e3ad6 23#include <linux/slab.h>
f7039b1d 24#include <linux/blkdev.h>
8ea05e3a 25#include <linux/uuid.h>
55e301fd 26#include <linux/btrfs.h>
416161db 27#include <linux/uaccess.h>
ae5e165d 28#include <linux/iversion.h>
97fc2977 29#include <linux/fileattr.h>
14605409 30#include <linux/fsverity.h>
f46b5a66
CH
31#include "ctree.h"
32#include "disk-io.h"
949964c9 33#include "export.h"
f46b5a66
CH
34#include "transaction.h"
35#include "btrfs_inode.h"
f46b5a66
CH
36#include "print-tree.h"
37#include "volumes.h"
925baedd 38#include "locking.h"
d7728c96 39#include "backref.h"
606686ee 40#include "rcu-string.h"
31db9f7c 41#include "send.h"
3f6bcfbd 42#include "dev-replace.h"
63541927 43#include "props.h"
3b02a68a 44#include "sysfs.h"
fcebe456 45#include "qgroup.h"
1ec9a1ae 46#include "tree-log.h"
ebb8765b 47#include "compression.h"
8719aaae 48#include "space-info.h"
86736342 49#include "delalloc-space.h"
aac0023c 50#include "block-group.h"
22b398ee 51#include "subpage.h"
f46b5a66 52
abccd00f
HM
53#ifdef CONFIG_64BIT
54/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
55 * structures are incorrect, as the timespec structure from userspace
56 * is 4 bytes too small. We define these alternatives here to teach
57 * the kernel about the 32-bit struct packing.
58 */
59struct btrfs_ioctl_timespec_32 {
60 __u64 sec;
61 __u32 nsec;
62} __attribute__ ((__packed__));
63
64struct btrfs_ioctl_received_subvol_args_32 {
65 char uuid[BTRFS_UUID_SIZE]; /* in */
66 __u64 stransid; /* in */
67 __u64 rtransid; /* out */
68 struct btrfs_ioctl_timespec_32 stime; /* in */
69 struct btrfs_ioctl_timespec_32 rtime; /* out */
70 __u64 flags; /* in */
71 __u64 reserved[16]; /* in */
72} __attribute__ ((__packed__));
73
74#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
75 struct btrfs_ioctl_received_subvol_args_32)
76#endif
77
2351f431
JB
78#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
79struct btrfs_ioctl_send_args_32 {
80 __s64 send_fd; /* in */
81 __u64 clone_sources_count; /* in */
82 compat_uptr_t clone_sources; /* in */
83 __u64 parent_root; /* in */
84 __u64 flags; /* in */
e77fbf99
DS
85 __u32 version; /* in */
86 __u8 reserved[28]; /* in */
2351f431
JB
87} __attribute__ ((__packed__));
88
89#define BTRFS_IOC_SEND_32 _IOW(BTRFS_IOCTL_MAGIC, 38, \
90 struct btrfs_ioctl_send_args_32)
91#endif
abccd00f 92
6cbff00f 93/* Mask out flags that are inappropriate for the given type of inode. */
1905a0f7
DS
94static unsigned int btrfs_mask_fsflags_for_type(struct inode *inode,
95 unsigned int flags)
6cbff00f 96{
1905a0f7 97 if (S_ISDIR(inode->i_mode))
6cbff00f 98 return flags;
1905a0f7 99 else if (S_ISREG(inode->i_mode))
6cbff00f
CH
100 return flags & ~FS_DIRSYNC_FL;
101 else
102 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
103}
104
105/*
a157d4fd
DS
106 * Export internal inode flags to the format expected by the FS_IOC_GETFLAGS
107 * ioctl.
6cbff00f 108 */
77eea05e 109static unsigned int btrfs_inode_flags_to_fsflags(struct btrfs_inode *binode)
6cbff00f
CH
110{
111 unsigned int iflags = 0;
77eea05e 112 u32 flags = binode->flags;
14605409 113 u32 ro_flags = binode->ro_flags;
6cbff00f
CH
114
115 if (flags & BTRFS_INODE_SYNC)
116 iflags |= FS_SYNC_FL;
117 if (flags & BTRFS_INODE_IMMUTABLE)
118 iflags |= FS_IMMUTABLE_FL;
119 if (flags & BTRFS_INODE_APPEND)
120 iflags |= FS_APPEND_FL;
121 if (flags & BTRFS_INODE_NODUMP)
122 iflags |= FS_NODUMP_FL;
123 if (flags & BTRFS_INODE_NOATIME)
124 iflags |= FS_NOATIME_FL;
125 if (flags & BTRFS_INODE_DIRSYNC)
126 iflags |= FS_DIRSYNC_FL;
d0092bdd
LZ
127 if (flags & BTRFS_INODE_NODATACOW)
128 iflags |= FS_NOCOW_FL;
14605409
BB
129 if (ro_flags & BTRFS_INODE_RO_VERITY)
130 iflags |= FS_VERITY_FL;
d0092bdd 131
13f48dc9 132 if (flags & BTRFS_INODE_NOCOMPRESS)
d0092bdd 133 iflags |= FS_NOCOMP_FL;
13f48dc9
ST
134 else if (flags & BTRFS_INODE_COMPRESS)
135 iflags |= FS_COMPR_FL;
6cbff00f
CH
136
137 return iflags;
138}
139
140/*
141 * Update inode->i_flags based on the btrfs internal flags.
142 */
7b6a221e 143void btrfs_sync_inode_flags_to_i_flags(struct inode *inode)
6cbff00f 144{
5c57b8b6 145 struct btrfs_inode *binode = BTRFS_I(inode);
3cc79392 146 unsigned int new_fl = 0;
6cbff00f 147
5c57b8b6 148 if (binode->flags & BTRFS_INODE_SYNC)
3cc79392 149 new_fl |= S_SYNC;
5c57b8b6 150 if (binode->flags & BTRFS_INODE_IMMUTABLE)
3cc79392 151 new_fl |= S_IMMUTABLE;
5c57b8b6 152 if (binode->flags & BTRFS_INODE_APPEND)
3cc79392 153 new_fl |= S_APPEND;
5c57b8b6 154 if (binode->flags & BTRFS_INODE_NOATIME)
3cc79392 155 new_fl |= S_NOATIME;
5c57b8b6 156 if (binode->flags & BTRFS_INODE_DIRSYNC)
3cc79392 157 new_fl |= S_DIRSYNC;
14605409
BB
158 if (binode->ro_flags & BTRFS_INODE_RO_VERITY)
159 new_fl |= S_VERITY;
3cc79392
FM
160
161 set_mask_bits(&inode->i_flags,
14605409
BB
162 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC |
163 S_VERITY, new_fl);
6cbff00f
CH
164}
165
f37c563b
DS
166/*
167 * Check if @flags are a supported and valid set of FS_*_FL flags and that
168 * the old and new flags are not conflicting
169 */
170static int check_fsflags(unsigned int old_flags, unsigned int flags)
75e7cb7f
LB
171{
172 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
173 FS_NOATIME_FL | FS_NODUMP_FL | \
174 FS_SYNC_FL | FS_DIRSYNC_FL | \
e1e8fb6a
LZ
175 FS_NOCOMP_FL | FS_COMPR_FL |
176 FS_NOCOW_FL))
75e7cb7f
LB
177 return -EOPNOTSUPP;
178
f37c563b 179 /* COMPR and NOCOMP on new/old are valid */
75e7cb7f
LB
180 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
181 return -EINVAL;
182
f37c563b
DS
183 if ((flags & FS_COMPR_FL) && (flags & FS_NOCOW_FL))
184 return -EINVAL;
185
186 /* NOCOW and compression options are mutually exclusive */
187 if ((old_flags & FS_NOCOW_FL) && (flags & (FS_COMPR_FL | FS_NOCOMP_FL)))
188 return -EINVAL;
189 if ((flags & FS_NOCOW_FL) && (old_flags & (FS_COMPR_FL | FS_NOCOMP_FL)))
190 return -EINVAL;
191
75e7cb7f
LB
192 return 0;
193}
194
d206e9c9
NA
195static int check_fsflags_compatible(struct btrfs_fs_info *fs_info,
196 unsigned int flags)
197{
198 if (btrfs_is_zoned(fs_info) && (flags & FS_NOCOW_FL))
199 return -EPERM;
200
201 return 0;
202}
203
97fc2977
MS
204/*
205 * Set flags/xflags from the internal inode flags. The remaining items of
206 * fsxattr are zeroed.
207 */
208int btrfs_fileattr_get(struct dentry *dentry, struct fileattr *fa)
6cbff00f 209{
97fc2977
MS
210 struct btrfs_inode *binode = BTRFS_I(d_inode(dentry));
211
77eea05e 212 fileattr_fill_flags(fa, btrfs_inode_flags_to_fsflags(binode));
97fc2977
MS
213 return 0;
214}
215
216int btrfs_fileattr_set(struct user_namespace *mnt_userns,
217 struct dentry *dentry, struct fileattr *fa)
218{
219 struct inode *inode = d_inode(dentry);
0b246afa 220 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5c57b8b6
DS
221 struct btrfs_inode *binode = BTRFS_I(inode);
222 struct btrfs_root *root = binode->root;
6cbff00f 223 struct btrfs_trans_handle *trans;
5aca2842 224 unsigned int fsflags, old_fsflags;
6cbff00f 225 int ret;
ff9fef55 226 const char *comp = NULL;
f37c563b 227 u32 binode_flags;
6cbff00f 228
b83cc969
LZ
229 if (btrfs_root_readonly(root))
230 return -EROFS;
231
97fc2977
MS
232 if (fileattr_has_fsx(fa))
233 return -EOPNOTSUPP;
e7848683 234
97fc2977 235 fsflags = btrfs_mask_fsflags_for_type(inode, fa->flags);
77eea05e 236 old_fsflags = btrfs_inode_flags_to_fsflags(binode);
f37c563b
DS
237 ret = check_fsflags(old_fsflags, fsflags);
238 if (ret)
97fc2977 239 return ret;
f37c563b 240
d206e9c9
NA
241 ret = check_fsflags_compatible(fs_info, fsflags);
242 if (ret)
97fc2977 243 return ret;
d206e9c9 244
f37c563b 245 binode_flags = binode->flags;
5c57b8b6 246 if (fsflags & FS_SYNC_FL)
d2b8fcfe 247 binode_flags |= BTRFS_INODE_SYNC;
6cbff00f 248 else
d2b8fcfe 249 binode_flags &= ~BTRFS_INODE_SYNC;
5c57b8b6 250 if (fsflags & FS_IMMUTABLE_FL)
d2b8fcfe 251 binode_flags |= BTRFS_INODE_IMMUTABLE;
6cbff00f 252 else
d2b8fcfe 253 binode_flags &= ~BTRFS_INODE_IMMUTABLE;
5c57b8b6 254 if (fsflags & FS_APPEND_FL)
d2b8fcfe 255 binode_flags |= BTRFS_INODE_APPEND;
6cbff00f 256 else
d2b8fcfe 257 binode_flags &= ~BTRFS_INODE_APPEND;
5c57b8b6 258 if (fsflags & FS_NODUMP_FL)
d2b8fcfe 259 binode_flags |= BTRFS_INODE_NODUMP;
6cbff00f 260 else
d2b8fcfe 261 binode_flags &= ~BTRFS_INODE_NODUMP;
5c57b8b6 262 if (fsflags & FS_NOATIME_FL)
d2b8fcfe 263 binode_flags |= BTRFS_INODE_NOATIME;
6cbff00f 264 else
d2b8fcfe 265 binode_flags &= ~BTRFS_INODE_NOATIME;
97fc2977
MS
266
267 /* If coming from FS_IOC_FSSETXATTR then skip unconverted flags */
268 if (!fa->flags_valid) {
269 /* 1 item for the inode */
270 trans = btrfs_start_transaction(root, 1);
9b8a233b
RH
271 if (IS_ERR(trans))
272 return PTR_ERR(trans);
97fc2977
MS
273 goto update_flags;
274 }
275
5c57b8b6 276 if (fsflags & FS_DIRSYNC_FL)
d2b8fcfe 277 binode_flags |= BTRFS_INODE_DIRSYNC;
6cbff00f 278 else
d2b8fcfe 279 binode_flags &= ~BTRFS_INODE_DIRSYNC;
5c57b8b6 280 if (fsflags & FS_NOCOW_FL) {
44e5194b 281 if (S_ISREG(inode->i_mode)) {
7e97b8da
DS
282 /*
283 * It's safe to turn csums off here, no extents exist.
284 * Otherwise we want the flag to reflect the real COW
285 * status of the file and will not set it.
286 */
287 if (inode->i_size == 0)
d2b8fcfe
AJ
288 binode_flags |= BTRFS_INODE_NODATACOW |
289 BTRFS_INODE_NODATASUM;
7e97b8da 290 } else {
d2b8fcfe 291 binode_flags |= BTRFS_INODE_NODATACOW;
7e97b8da
DS
292 }
293 } else {
294 /*
01327610 295 * Revert back under same assumptions as above
7e97b8da 296 */
44e5194b 297 if (S_ISREG(inode->i_mode)) {
7e97b8da 298 if (inode->i_size == 0)
d2b8fcfe
AJ
299 binode_flags &= ~(BTRFS_INODE_NODATACOW |
300 BTRFS_INODE_NODATASUM);
7e97b8da 301 } else {
d2b8fcfe 302 binode_flags &= ~BTRFS_INODE_NODATACOW;
7e97b8da
DS
303 }
304 }
6cbff00f 305
75e7cb7f
LB
306 /*
307 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
308 * flag may be changed automatically if compression code won't make
309 * things smaller.
310 */
5c57b8b6 311 if (fsflags & FS_NOCOMP_FL) {
d2b8fcfe
AJ
312 binode_flags &= ~BTRFS_INODE_COMPRESS;
313 binode_flags |= BTRFS_INODE_NOCOMPRESS;
5c57b8b6 314 } else if (fsflags & FS_COMPR_FL) {
63541927 315
97fc2977
MS
316 if (IS_SWAPFILE(inode))
317 return -ETXTBSY;
eede2bf3 318
d2b8fcfe
AJ
319 binode_flags |= BTRFS_INODE_COMPRESS;
320 binode_flags &= ~BTRFS_INODE_NOCOMPRESS;
63541927 321
93370509
DS
322 comp = btrfs_compress_type2str(fs_info->compress_type);
323 if (!comp || comp[0] == 0)
324 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
ebcb904d 325 } else {
d2b8fcfe 326 binode_flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
75e7cb7f 327 }
6cbff00f 328
ff9fef55
AJ
329 /*
330 * 1 for inode item
331 * 2 for properties
332 */
333 trans = btrfs_start_transaction(root, 3);
97fc2977
MS
334 if (IS_ERR(trans))
335 return PTR_ERR(trans);
6cbff00f 336
ff9fef55
AJ
337 if (comp) {
338 ret = btrfs_set_prop(trans, inode, "btrfs.compression", comp,
339 strlen(comp), 0);
340 if (ret) {
341 btrfs_abort_transaction(trans, ret);
342 goto out_end_trans;
343 }
ff9fef55
AJ
344 } else {
345 ret = btrfs_set_prop(trans, inode, "btrfs.compression", NULL,
346 0, 0);
347 if (ret && ret != -ENODATA) {
348 btrfs_abort_transaction(trans, ret);
349 goto out_end_trans;
350 }
351 }
352
97fc2977 353update_flags:
d2b8fcfe 354 binode->flags = binode_flags;
7b6a221e 355 btrfs_sync_inode_flags_to_i_flags(inode);
0c4d2d95 356 inode_inc_iversion(inode);
c2050a45 357 inode->i_ctime = current_time(inode);
9a56fcd1 358 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
6cbff00f 359
ff9fef55 360 out_end_trans:
3a45bb20 361 btrfs_end_transaction(trans);
2d4e6f6a 362 return ret;
6cbff00f
CH
363}
364
0d7ed32c
DS
365/*
366 * Start exclusive operation @type, return true on success
367 */
c3e1f96c
GR
368bool btrfs_exclop_start(struct btrfs_fs_info *fs_info,
369 enum btrfs_exclusive_operation type)
370{
0d7ed32c
DS
371 bool ret = false;
372
373 spin_lock(&fs_info->super_lock);
374 if (fs_info->exclusive_operation == BTRFS_EXCLOP_NONE) {
375 fs_info->exclusive_operation = type;
376 ret = true;
377 }
378 spin_unlock(&fs_info->super_lock);
379
380 return ret;
c3e1f96c
GR
381}
382
578bda9e
DS
383/*
384 * Conditionally allow to enter the exclusive operation in case it's compatible
385 * with the running one. This must be paired with btrfs_exclop_start_unlock and
386 * btrfs_exclop_finish.
387 *
388 * Compatibility:
389 * - the same type is already running
390 * - not BTRFS_EXCLOP_NONE - this is intentionally incompatible and the caller
391 * must check the condition first that would allow none -> @type
392 */
393bool btrfs_exclop_start_try_lock(struct btrfs_fs_info *fs_info,
394 enum btrfs_exclusive_operation type)
395{
396 spin_lock(&fs_info->super_lock);
397 if (fs_info->exclusive_operation == type)
398 return true;
399
400 spin_unlock(&fs_info->super_lock);
401 return false;
402}
403
404void btrfs_exclop_start_unlock(struct btrfs_fs_info *fs_info)
405{
406 spin_unlock(&fs_info->super_lock);
407}
408
c3e1f96c
GR
409void btrfs_exclop_finish(struct btrfs_fs_info *fs_info)
410{
0d7ed32c 411 spin_lock(&fs_info->super_lock);
c3e1f96c 412 WRITE_ONCE(fs_info->exclusive_operation, BTRFS_EXCLOP_NONE);
0d7ed32c 413 spin_unlock(&fs_info->super_lock);
66a2823c 414 sysfs_notify(&fs_info->fs_devices->fsid_kobj, NULL, "exclusive_operation");
c3e1f96c
GR
415}
416
6cbff00f
CH
417static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
418{
496ad9aa 419 struct inode *inode = file_inode(file);
6cbff00f
CH
420
421 return put_user(inode->i_generation, arg);
422}
f46b5a66 423
b929c1d8
MPS
424static noinline int btrfs_ioctl_fitrim(struct btrfs_fs_info *fs_info,
425 void __user *arg)
f7039b1d 426{
f7039b1d
LD
427 struct btrfs_device *device;
428 struct request_queue *q;
429 struct fstrim_range range;
430 u64 minlen = ULLONG_MAX;
431 u64 num_devices = 0;
432 int ret;
433
434 if (!capable(CAP_SYS_ADMIN))
435 return -EPERM;
436
1cb3dc3f
NA
437 /*
438 * btrfs_trim_block_group() depends on space cache, which is not
439 * available in zoned filesystem. So, disallow fitrim on a zoned
440 * filesystem for now.
441 */
442 if (btrfs_is_zoned(fs_info))
443 return -EOPNOTSUPP;
444
f35f06c3
FM
445 /*
446 * If the fs is mounted with nologreplay, which requires it to be
447 * mounted in RO mode as well, we can not allow discard on free space
448 * inside block groups, because log trees refer to extents that are not
449 * pinned in a block group's free space cache (pinning the extents is
450 * precisely the first phase of replaying a log tree).
451 */
452 if (btrfs_test_opt(fs_info, NOLOGREPLAY))
453 return -EROFS;
454
1f78160c
XG
455 rcu_read_lock();
456 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
457 dev_list) {
f7039b1d
LD
458 if (!device->bdev)
459 continue;
460 q = bdev_get_queue(device->bdev);
461 if (blk_queue_discard(q)) {
462 num_devices++;
50d0446e 463 minlen = min_t(u64, q->limits.discard_granularity,
f7039b1d
LD
464 minlen);
465 }
466 }
1f78160c 467 rcu_read_unlock();
f4c697e6 468
f7039b1d
LD
469 if (!num_devices)
470 return -EOPNOTSUPP;
f7039b1d
LD
471 if (copy_from_user(&range, arg, sizeof(range)))
472 return -EFAULT;
6ba9fc8e
QW
473
474 /*
475 * NOTE: Don't truncate the range using super->total_bytes. Bytenr of
476 * block group is in the logical address space, which can be any
477 * sectorsize aligned bytenr in the range [0, U64_MAX].
478 */
479 if (range.len < fs_info->sb->s_blocksize)
f4c697e6 480 return -EINVAL;
f7039b1d
LD
481
482 range.minlen = max(range.minlen, minlen);
2ff7e61e 483 ret = btrfs_trim_fs(fs_info, &range);
f7039b1d
LD
484 if (ret < 0)
485 return ret;
486
487 if (copy_to_user(arg, &range, sizeof(range)))
488 return -EFAULT;
489
490 return 0;
491}
492
e1f60a65 493int __pure btrfs_is_empty_uuid(u8 *uuid)
dd5f9615 494{
46e0f66a
CM
495 int i;
496
497 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
498 if (uuid[i])
499 return 0;
500 }
501 return 1;
dd5f9615
SB
502}
503
4d4340c9
CB
504static noinline int create_subvol(struct user_namespace *mnt_userns,
505 struct inode *dir, struct dentry *dentry,
52f75f4f 506 const char *name, int namelen,
8696c533 507 struct btrfs_qgroup_inherit *inherit)
f46b5a66 508{
0b246afa 509 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
f46b5a66
CH
510 struct btrfs_trans_handle *trans;
511 struct btrfs_key key;
49a3c4d9 512 struct btrfs_root_item *root_item;
f46b5a66
CH
513 struct btrfs_inode_item *inode_item;
514 struct extent_buffer *leaf;
d5c12070 515 struct btrfs_root *root = BTRFS_I(dir)->root;
76dda93c 516 struct btrfs_root *new_root;
d5c12070 517 struct btrfs_block_rsv block_rsv;
95582b00 518 struct timespec64 cur_time = current_time(dir);
5662344b 519 struct inode *inode;
f46b5a66
CH
520 int ret;
521 int err;
2dfb1e43 522 dev_t anon_dev = 0;
f46b5a66 523 u64 objectid;
3de4586c 524 u64 index = 0;
f46b5a66 525
49a3c4d9
DS
526 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
527 if (!root_item)
528 return -ENOMEM;
529
543068a2 530 ret = btrfs_get_free_objectid(fs_info->tree_root, &objectid);
2fbe8c8a 531 if (ret)
49a3c4d9 532 goto fail_free;
6a912213 533
2dfb1e43
QW
534 ret = get_anon_bdev(&anon_dev);
535 if (ret < 0)
536 goto fail_free;
537
e09fe2d2
QW
538 /*
539 * Don't create subvolume whose level is not zero. Or qgroup will be
01327610 540 * screwed up since it assumes subvolume qgroup's level to be 0.
e09fe2d2 541 */
49a3c4d9
DS
542 if (btrfs_qgroup_level(objectid)) {
543 ret = -ENOSPC;
544 goto fail_free;
545 }
e09fe2d2 546
d5c12070 547 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
9ed74f2d 548 /*
d5c12070
MX
549 * The same as the snapshot creation, please see the comment
550 * of create_snapshot().
9ed74f2d 551 */
c4c129db 552 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 8, false);
d5c12070 553 if (ret)
49a3c4d9 554 goto fail_free;
d5c12070
MX
555
556 trans = btrfs_start_transaction(root, 0);
557 if (IS_ERR(trans)) {
558 ret = PTR_ERR(trans);
e85fde51 559 btrfs_subvolume_release_metadata(root, &block_rsv);
49a3c4d9 560 goto fail_free;
d5c12070
MX
561 }
562 trans->block_rsv = &block_rsv;
563 trans->bytes_reserved = block_rsv.size;
f46b5a66 564
a9377422 565 ret = btrfs_qgroup_inherit(trans, 0, objectid, inherit);
6f72c7e2
AJ
566 if (ret)
567 goto fail;
568
9631e4cc
JB
569 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0,
570 BTRFS_NESTING_NORMAL);
8e8a1e31
JB
571 if (IS_ERR(leaf)) {
572 ret = PTR_ERR(leaf);
573 goto fail;
574 }
f46b5a66 575
f46b5a66
CH
576 btrfs_mark_buffer_dirty(leaf);
577
49a3c4d9 578 inode_item = &root_item->inode;
3cae210f
QW
579 btrfs_set_stack_inode_generation(inode_item, 1);
580 btrfs_set_stack_inode_size(inode_item, 3);
581 btrfs_set_stack_inode_nlink(inode_item, 1);
da17066c 582 btrfs_set_stack_inode_nbytes(inode_item,
0b246afa 583 fs_info->nodesize);
3cae210f 584 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
f46b5a66 585
49a3c4d9
DS
586 btrfs_set_root_flags(root_item, 0);
587 btrfs_set_root_limit(root_item, 0);
3cae210f 588 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
08fe4db1 589
49a3c4d9
DS
590 btrfs_set_root_bytenr(root_item, leaf->start);
591 btrfs_set_root_generation(root_item, trans->transid);
592 btrfs_set_root_level(root_item, 0);
593 btrfs_set_root_refs(root_item, 1);
594 btrfs_set_root_used(root_item, leaf->len);
595 btrfs_set_root_last_snapshot(root_item, 0);
f46b5a66 596
49a3c4d9
DS
597 btrfs_set_root_generation_v2(root_item,
598 btrfs_root_generation(root_item));
807fc790 599 generate_random_guid(root_item->uuid);
49a3c4d9
DS
600 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
601 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
602 root_item->ctime = root_item->otime;
603 btrfs_set_root_ctransid(root_item, trans->transid);
604 btrfs_set_root_otransid(root_item, trans->transid);
f46b5a66 605
925baedd 606 btrfs_tree_unlock(leaf);
f46b5a66 607
69948022 608 btrfs_set_root_dirid(root_item, BTRFS_FIRST_FREE_OBJECTID);
f46b5a66
CH
609
610 key.objectid = objectid;
5d4f98a2 611 key.offset = 0;
962a298f 612 key.type = BTRFS_ROOT_ITEM_KEY;
0b246afa 613 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
49a3c4d9 614 root_item);
67addf29
FM
615 if (ret) {
616 /*
617 * Since we don't abort the transaction in this case, free the
618 * tree block so that we don't leak space and leave the
619 * filesystem in an inconsistent state (an extent item in the
7a163608 620 * extent tree with a backreference for a root that does not
212a58fd 621 * exists).
67addf29 622 */
212a58fd
FM
623 btrfs_tree_lock(leaf);
624 btrfs_clean_tree_block(leaf);
625 btrfs_tree_unlock(leaf);
7a163608 626 btrfs_free_tree_block(trans, objectid, leaf, 0, 1);
67addf29 627 free_extent_buffer(leaf);
f46b5a66 628 goto fail;
67addf29
FM
629 }
630
631 free_extent_buffer(leaf);
632 leaf = NULL;
f46b5a66 633
76dda93c 634 key.offset = (u64)-1;
2dfb1e43 635 new_root = btrfs_get_new_fs_root(fs_info, objectid, anon_dev);
79787eaa 636 if (IS_ERR(new_root)) {
2dfb1e43 637 free_anon_bdev(anon_dev);
79787eaa 638 ret = PTR_ERR(new_root);
66642832 639 btrfs_abort_transaction(trans, ret);
79787eaa
JM
640 goto fail;
641 }
2dfb1e43
QW
642 /* Freeing will be done in btrfs_put_root() of new_root */
643 anon_dev = 0;
76dda93c 644
221581e4
JB
645 ret = btrfs_record_root_in_trans(trans, new_root);
646 if (ret) {
647 btrfs_put_root(new_root);
648 btrfs_abort_transaction(trans, ret);
649 goto fail;
650 }
76dda93c 651
4d4340c9 652 ret = btrfs_create_subvol_root(trans, new_root, root, mnt_userns);
00246528 653 btrfs_put_root(new_root);
ce598979
MF
654 if (ret) {
655 /* We potentially lose an unused inode item here */
66642832 656 btrfs_abort_transaction(trans, ret);
ce598979
MF
657 goto fail;
658 }
659
f46b5a66
CH
660 /*
661 * insert the directory item
662 */
877574e2 663 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
79787eaa 664 if (ret) {
66642832 665 btrfs_abort_transaction(trans, ret);
79787eaa
JM
666 goto fail;
667 }
3de4586c 668
684572df 669 ret = btrfs_insert_dir_item(trans, name, namelen, BTRFS_I(dir), &key,
3de4586c 670 BTRFS_FT_DIR, index);
79787eaa 671 if (ret) {
66642832 672 btrfs_abort_transaction(trans, ret);
f46b5a66 673 goto fail;
79787eaa 674 }
0660b5af 675
6ef06d27 676 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
9a56fcd1 677 ret = btrfs_update_inode(trans, root, BTRFS_I(dir));
c7e54b51
JB
678 if (ret) {
679 btrfs_abort_transaction(trans, ret);
680 goto fail;
681 }
52c26179 682
6025c19f 683 ret = btrfs_add_root_ref(trans, objectid, root->root_key.objectid,
4a0cc7ca 684 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
c7e54b51
JB
685 if (ret) {
686 btrfs_abort_transaction(trans, ret);
687 goto fail;
688 }
f46b5a66 689
cdb345a8 690 ret = btrfs_uuid_tree_add(trans, root_item->uuid,
6bccf3ab 691 BTRFS_UUID_KEY_SUBVOL, objectid);
dd5f9615 692 if (ret)
66642832 693 btrfs_abort_transaction(trans, ret);
dd5f9615 694
f46b5a66 695fail:
49a3c4d9 696 kfree(root_item);
d5c12070
MX
697 trans->block_rsv = NULL;
698 trans->bytes_reserved = 0;
e85fde51 699 btrfs_subvolume_release_metadata(root, &block_rsv);
de6e8200 700
9babda9f 701 err = btrfs_commit_transaction(trans);
f46b5a66
CH
702 if (err && !ret)
703 ret = err;
1a65e24b 704
5662344b
TI
705 if (!ret) {
706 inode = btrfs_lookup_dentry(dir, dentry);
de6e8200
LB
707 if (IS_ERR(inode))
708 return PTR_ERR(inode);
5662344b
TI
709 d_instantiate(dentry, inode);
710 }
f46b5a66 711 return ret;
49a3c4d9
DS
712
713fail_free:
2dfb1e43
QW
714 if (anon_dev)
715 free_anon_bdev(anon_dev);
49a3c4d9
DS
716 kfree(root_item);
717 return ret;
f46b5a66
CH
718}
719
e9662f70 720static int create_snapshot(struct btrfs_root *root, struct inode *dir,
9babda9f 721 struct dentry *dentry, bool readonly,
e9662f70 722 struct btrfs_qgroup_inherit *inherit)
f46b5a66 723{
0b246afa 724 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
2e4bfab9 725 struct inode *inode;
f46b5a66
CH
726 struct btrfs_pending_snapshot *pending_snapshot;
727 struct btrfs_trans_handle *trans;
2e4bfab9 728 int ret;
f46b5a66 729
92a7cc42 730 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
f46b5a66
CH
731 return -EINVAL;
732
eede2bf3
OS
733 if (atomic_read(&root->nr_swapfiles)) {
734 btrfs_warn(fs_info,
735 "cannot snapshot subvolume with active swapfile");
736 return -ETXTBSY;
737 }
738
23269bf5 739 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
a1ee7362
DS
740 if (!pending_snapshot)
741 return -ENOMEM;
742
2dfb1e43
QW
743 ret = get_anon_bdev(&pending_snapshot->anon_dev);
744 if (ret < 0)
745 goto free_pending;
b0c0ea63 746 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
23269bf5 747 GFP_KERNEL);
8546b570
DS
748 pending_snapshot->path = btrfs_alloc_path();
749 if (!pending_snapshot->root_item || !pending_snapshot->path) {
b0c0ea63
DS
750 ret = -ENOMEM;
751 goto free_pending;
752 }
753
66d8f3dd
MX
754 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
755 BTRFS_BLOCK_RSV_TEMP);
d5c12070
MX
756 /*
757 * 1 - parent dir inode
758 * 2 - dir entries
759 * 1 - root item
760 * 2 - root ref/backref
761 * 1 - root of snapshot
dd5f9615 762 * 1 - UUID item
d5c12070
MX
763 */
764 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
dd5f9615 765 &pending_snapshot->block_rsv, 8,
ee3441b4 766 false);
d5c12070 767 if (ret)
c11fbb6e 768 goto free_pending;
d5c12070 769
3de4586c 770 pending_snapshot->dentry = dentry;
f46b5a66 771 pending_snapshot->root = root;
b83cc969 772 pending_snapshot->readonly = readonly;
e9662f70 773 pending_snapshot->dir = dir;
8696c533 774 pending_snapshot->inherit = inherit;
a22285a6 775
d5c12070 776 trans = btrfs_start_transaction(root, 0);
a22285a6
YZ
777 if (IS_ERR(trans)) {
778 ret = PTR_ERR(trans);
779 goto fail;
780 }
781
0b246afa 782 spin_lock(&fs_info->trans_lock);
f46b5a66
CH
783 list_add(&pending_snapshot->list,
784 &trans->transaction->pending_snapshots);
0b246afa 785 spin_unlock(&fs_info->trans_lock);
9babda9f
NB
786
787 ret = btrfs_commit_transaction(trans);
aec8030a 788 if (ret)
c37b2b62 789 goto fail;
a22285a6
YZ
790
791 ret = pending_snapshot->error;
792 if (ret)
793 goto fail;
794
d3797308
CM
795 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
796 if (ret)
797 goto fail;
798
2b0143b5 799 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
2e4bfab9
YZ
800 if (IS_ERR(inode)) {
801 ret = PTR_ERR(inode);
802 goto fail;
803 }
5662344b 804
2e4bfab9
YZ
805 d_instantiate(dentry, inode);
806 ret = 0;
2dfb1e43 807 pending_snapshot->anon_dev = 0;
2e4bfab9 808fail:
2dfb1e43
QW
809 /* Prevent double freeing of anon_dev */
810 if (ret && pending_snapshot->snap)
811 pending_snapshot->snap->anon_dev = 0;
00246528 812 btrfs_put_root(pending_snapshot->snap);
e85fde51 813 btrfs_subvolume_release_metadata(root, &pending_snapshot->block_rsv);
b0c0ea63 814free_pending:
2dfb1e43
QW
815 if (pending_snapshot->anon_dev)
816 free_anon_bdev(pending_snapshot->anon_dev);
b0c0ea63 817 kfree(pending_snapshot->root_item);
8546b570 818 btrfs_free_path(pending_snapshot->path);
a1ee7362
DS
819 kfree(pending_snapshot);
820
f46b5a66
CH
821 return ret;
822}
823
4260f7c7
SW
824/* copy of may_delete in fs/namei.c()
825 * Check whether we can remove a link victim from directory dir, check
826 * whether the type of victim is right.
827 * 1. We can't do it if dir is read-only (done in permission())
828 * 2. We should have write and exec permissions on dir
829 * 3. We can't remove anything from append-only dir
830 * 4. We can't do anything with immutable dir (done in permission())
831 * 5. If the sticky bit on dir is set we should either
832 * a. be owner of dir, or
833 * b. be owner of victim, or
834 * c. have CAP_FOWNER capability
01327610 835 * 6. If the victim is append-only or immutable we can't do anything with
4260f7c7
SW
836 * links pointing to it.
837 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
838 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
839 * 9. We can't remove a root or mountpoint.
840 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
841 * nfs_async_unlink().
842 */
843
c4ed533b
CB
844static int btrfs_may_delete(struct user_namespace *mnt_userns,
845 struct inode *dir, struct dentry *victim, int isdir)
4260f7c7
SW
846{
847 int error;
848
2b0143b5 849 if (d_really_is_negative(victim))
4260f7c7
SW
850 return -ENOENT;
851
2b0143b5 852 BUG_ON(d_inode(victim->d_parent) != dir);
4fa6b5ec 853 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
4260f7c7 854
c4ed533b 855 error = inode_permission(mnt_userns, dir, MAY_WRITE | MAY_EXEC);
4260f7c7
SW
856 if (error)
857 return error;
858 if (IS_APPEND(dir))
859 return -EPERM;
c4ed533b 860 if (check_sticky(mnt_userns, dir, d_inode(victim)) ||
ba73d987
CB
861 IS_APPEND(d_inode(victim)) || IS_IMMUTABLE(d_inode(victim)) ||
862 IS_SWAPFILE(d_inode(victim)))
4260f7c7
SW
863 return -EPERM;
864 if (isdir) {
e36cb0b8 865 if (!d_is_dir(victim))
4260f7c7
SW
866 return -ENOTDIR;
867 if (IS_ROOT(victim))
868 return -EBUSY;
e36cb0b8 869 } else if (d_is_dir(victim))
4260f7c7
SW
870 return -EISDIR;
871 if (IS_DEADDIR(dir))
872 return -ENOENT;
873 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
874 return -EBUSY;
875 return 0;
876}
877
cb8e7090 878/* copy of may_create in fs/namei.c() */
4d4340c9
CB
879static inline int btrfs_may_create(struct user_namespace *mnt_userns,
880 struct inode *dir, struct dentry *child)
cb8e7090 881{
2b0143b5 882 if (d_really_is_positive(child))
cb8e7090
CH
883 return -EEXIST;
884 if (IS_DEADDIR(dir))
885 return -ENOENT;
4d4340c9 886 if (!fsuidgid_has_mapping(dir->i_sb, mnt_userns))
5474bf40 887 return -EOVERFLOW;
4d4340c9 888 return inode_permission(mnt_userns, dir, MAY_WRITE | MAY_EXEC);
cb8e7090
CH
889}
890
891/*
892 * Create a new subvolume below @parent. This is largely modeled after
893 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
894 * inside this filesystem so it's quite a bit simpler.
895 */
92872094 896static noinline int btrfs_mksubvol(const struct path *parent,
4d4340c9 897 struct user_namespace *mnt_userns,
52f75f4f 898 const char *name, int namelen,
72fd032e 899 struct btrfs_root *snap_src,
9babda9f 900 bool readonly,
8696c533 901 struct btrfs_qgroup_inherit *inherit)
cb8e7090 902{
0b246afa
JM
903 struct inode *dir = d_inode(parent->dentry);
904 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
cb8e7090
CH
905 struct dentry *dentry;
906 int error;
907
00235411
AV
908 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
909 if (error == -EINTR)
910 return error;
cb8e7090 911
4d4340c9 912 dentry = lookup_one(mnt_userns, name, parent->dentry, namelen);
cb8e7090
CH
913 error = PTR_ERR(dentry);
914 if (IS_ERR(dentry))
915 goto out_unlock;
916
4d4340c9 917 error = btrfs_may_create(mnt_userns, dir, dentry);
cb8e7090 918 if (error)
a874a63e 919 goto out_dput;
cb8e7090 920
9c52057c
CM
921 /*
922 * even if this name doesn't exist, we may get hash collisions.
923 * check for them now when we can safely fail
924 */
925 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
926 dir->i_ino, name,
927 namelen);
928 if (error)
929 goto out_dput;
930
0b246afa 931 down_read(&fs_info->subvol_sem);
76dda93c
YZ
932
933 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
934 goto out_up_read;
935
9babda9f
NB
936 if (snap_src)
937 error = create_snapshot(snap_src, dir, dentry, readonly, inherit);
938 else
4d4340c9 939 error = create_subvol(mnt_userns, dir, dentry, name, namelen, inherit);
9babda9f 940
76dda93c
YZ
941 if (!error)
942 fsnotify_mkdir(dir, dentry);
943out_up_read:
0b246afa 944 up_read(&fs_info->subvol_sem);
cb8e7090
CH
945out_dput:
946 dput(dentry);
947out_unlock:
64708539 948 btrfs_inode_unlock(dir, 0);
cb8e7090
CH
949 return error;
950}
951
c11fbb6e 952static noinline int btrfs_mksnapshot(const struct path *parent,
4d4340c9 953 struct user_namespace *mnt_userns,
c11fbb6e
RK
954 const char *name, int namelen,
955 struct btrfs_root *root,
956 bool readonly,
957 struct btrfs_qgroup_inherit *inherit)
958{
959 int ret;
960 bool snapshot_force_cow = false;
961
962 /*
963 * Force new buffered writes to reserve space even when NOCOW is
964 * possible. This is to avoid later writeback (running dealloc) to
965 * fallback to COW mode and unexpectedly fail with ENOSPC.
966 */
967 btrfs_drew_read_lock(&root->snapshot_lock);
968
f9baa501 969 ret = btrfs_start_delalloc_snapshot(root, false);
c11fbb6e
RK
970 if (ret)
971 goto out;
972
973 /*
974 * All previous writes have started writeback in NOCOW mode, so now
975 * we force future writes to fallback to COW mode during snapshot
976 * creation.
977 */
978 atomic_inc(&root->snapshot_force_cow);
979 snapshot_force_cow = true;
980
981 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
982
4d4340c9 983 ret = btrfs_mksubvol(parent, mnt_userns, name, namelen,
c11fbb6e
RK
984 root, readonly, inherit);
985out:
986 if (snapshot_force_cow)
987 atomic_dec(&root->snapshot_force_cow);
988 btrfs_drew_read_unlock(&root->snapshot_lock);
989 return ret;
990}
991
e9eec721
QW
992static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start,
993 bool locked)
17ce6ef8
LB
994{
995 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
6c282eb4
LZ
996 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
997 struct extent_map *em;
76068cae 998 const u32 sectorsize = BTRFS_I(inode)->root->fs_info->sectorsize;
17ce6ef8 999
6c282eb4
LZ
1000 /*
1001 * hopefully we have this extent in the tree already, try without
1002 * the full extent lock
1003 */
17ce6ef8 1004 read_lock(&em_tree->lock);
76068cae 1005 em = lookup_extent_mapping(em_tree, start, sectorsize);
17ce6ef8
LB
1006 read_unlock(&em_tree->lock);
1007
6c282eb4 1008 if (!em) {
308d9800 1009 struct extent_state *cached = NULL;
76068cae 1010 u64 end = start + sectorsize - 1;
308d9800 1011
6c282eb4 1012 /* get the big lock and read metadata off disk */
e9eec721
QW
1013 if (!locked)
1014 lock_extent_bits(io_tree, start, end, &cached);
76068cae 1015 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, sectorsize);
e9eec721
QW
1016 if (!locked)
1017 unlock_extent_cached(io_tree, start, end, &cached);
6c282eb4
LZ
1018
1019 if (IS_ERR(em))
1020 return NULL;
1021 }
1022
1023 return em;
1024}
17ce6ef8 1025
e9eec721
QW
1026static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em,
1027 bool locked)
6c282eb4
LZ
1028{
1029 struct extent_map *next;
1030 bool ret = true;
1031
1032 /* this is the last extent */
1033 if (em->start + em->len >= i_size_read(inode))
1034 return false;
1035
e9eec721 1036 next = defrag_lookup_extent(inode, em->start + em->len, locked);
e9512d72
CM
1037 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1038 ret = false;
1039 else if ((em->block_start + em->block_len == next->block_start) &&
ee22184b 1040 (em->block_len > SZ_128K && next->block_len > SZ_128K))
6c282eb4
LZ
1041 ret = false;
1042
1043 free_extent_map(next);
17ce6ef8
LB
1044 return ret;
1045}
1046
5767b50c
QW
1047/*
1048 * Prepare one page to be defragged.
1049 *
1050 * This will ensure:
1051 *
1052 * - Returned page is locked and has been set up properly.
1053 * - No ordered extent exists in the page.
1054 * - The page is uptodate.
1055 *
1056 * NOTE: Caller should also wait for page writeback after the cluster is
1057 * prepared, here we don't do writeback wait for each page.
1058 */
1059static struct page *defrag_prepare_one_page(struct btrfs_inode *inode,
1060 pgoff_t index)
940100a4 1061{
5767b50c
QW
1062 struct address_space *mapping = inode->vfs_inode.i_mapping;
1063 gfp_t mask = btrfs_alloc_write_mask(mapping);
1064 u64 page_start = (u64)index << PAGE_SHIFT;
1065 u64 page_end = page_start + PAGE_SIZE - 1;
1066 struct extent_state *cached_state = NULL;
1067 struct page *page;
1068 int ret;
1069
1070again:
1071 page = find_or_create_page(mapping, index, mask);
1072 if (!page)
1073 return ERR_PTR(-ENOMEM);
940100a4
CM
1074
1075 /*
24bcb454
OS
1076 * Since we can defragment files opened read-only, we can encounter
1077 * transparent huge pages here (see CONFIG_READ_ONLY_THP_FOR_FS). We
1078 * can't do I/O using huge pages yet, so return an error for now.
1079 * Filesystem transparent huge pages are typically only used for
1080 * executables that explicitly enable them, so this isn't very
1081 * restrictive.
940100a4 1082 */
24bcb454
OS
1083 if (PageCompound(page)) {
1084 unlock_page(page);
1085 put_page(page);
1086 return ERR_PTR(-ETXTBSY);
1087 }
940100a4 1088
5767b50c
QW
1089 ret = set_page_extent_mapped(page);
1090 if (ret < 0) {
1091 unlock_page(page);
1092 put_page(page);
1093 return ERR_PTR(ret);
1094 }
940100a4 1095
5767b50c
QW
1096 /* Wait for any existing ordered extent in the range */
1097 while (1) {
1098 struct btrfs_ordered_extent *ordered;
940100a4 1099
5767b50c
QW
1100 lock_extent_bits(&inode->io_tree, page_start, page_end, &cached_state);
1101 ordered = btrfs_lookup_ordered_range(inode, page_start, PAGE_SIZE);
1102 unlock_extent_cached(&inode->io_tree, page_start, page_end,
1103 &cached_state);
1104 if (!ordered)
1105 break;
17ce6ef8 1106
5767b50c
QW
1107 unlock_page(page);
1108 btrfs_start_ordered_extent(ordered, 1);
1109 btrfs_put_ordered_extent(ordered);
1110 lock_page(page);
1111 /*
1112 * We unlocked the page above, so we need check if it was
1113 * released or not.
1114 */
1115 if (page->mapping != mapping || !PagePrivate(page)) {
1116 unlock_page(page);
1117 put_page(page);
1118 goto again;
1119 }
1120 }
4a3560c4 1121
940100a4 1122 /*
5767b50c
QW
1123 * Now the page range has no ordered extent any more. Read the page to
1124 * make it uptodate.
940100a4 1125 */
5767b50c
QW
1126 if (!PageUptodate(page)) {
1127 btrfs_readpage(NULL, page);
1128 lock_page(page);
1129 if (page->mapping != mapping || !PagePrivate(page)) {
1130 unlock_page(page);
1131 put_page(page);
1132 goto again;
1133 }
1134 if (!PageUptodate(page)) {
1135 unlock_page(page);
1136 put_page(page);
1137 return ERR_PTR(-EIO);
1138 }
940100a4 1139 }
5767b50c 1140 return page;
940100a4
CM
1141}
1142
eb793cf8
QW
1143struct defrag_target_range {
1144 struct list_head list;
1145 u64 start;
1146 u64 len;
1147};
1148
4cb5300b 1149/*
eb793cf8 1150 * Collect all valid target extents.
4cb5300b 1151 *
eb793cf8
QW
1152 * @start: file offset to lookup
1153 * @len: length to lookup
1154 * @extent_thresh: file extent size threshold, any extent size >= this value
1155 * will be ignored
1156 * @newer_than: only defrag extents newer than this value
1157 * @do_compress: whether the defrag is doing compression
1158 * if true, @extent_thresh will be ignored and all regular
1159 * file extents meeting @newer_than will be targets.
e9eec721 1160 * @locked: if the range has already held extent lock
eb793cf8 1161 * @target_list: list of targets file extents
4cb5300b 1162 */
eb793cf8
QW
1163static int defrag_collect_targets(struct btrfs_inode *inode,
1164 u64 start, u64 len, u32 extent_thresh,
1165 u64 newer_than, bool do_compress,
e9eec721 1166 bool locked, struct list_head *target_list)
f46b5a66 1167{
eb793cf8
QW
1168 u64 cur = start;
1169 int ret = 0;
4cb5300b 1170
eb793cf8
QW
1171 while (cur < start + len) {
1172 struct extent_map *em;
1173 struct defrag_target_range *new;
1174 bool next_mergeable = true;
1175 u64 range_len;
1f12bd06 1176
e9eec721 1177 em = defrag_lookup_extent(&inode->vfs_inode, cur, locked);
eb793cf8
QW
1178 if (!em)
1179 break;
4cb5300b 1180
eb793cf8
QW
1181 /* Skip hole/inline/preallocated extents */
1182 if (em->block_start >= EXTENT_MAP_LAST_BYTE ||
1183 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
1184 goto next;
4cb5300b 1185
eb793cf8
QW
1186 /* Skip older extent */
1187 if (em->generation < newer_than)
1188 goto next;
4cb5300b 1189
eb793cf8
QW
1190 /*
1191 * For do_compress case, we want to compress all valid file
1192 * extents, thus no @extent_thresh or mergeable check.
1193 */
1194 if (do_compress)
1195 goto add;
1196
1197 /* Skip too large extent */
1198 if (em->len >= extent_thresh)
1199 goto next;
1200
e9eec721
QW
1201 next_mergeable = defrag_check_next_extent(&inode->vfs_inode, em,
1202 locked);
eb793cf8
QW
1203 if (!next_mergeable) {
1204 struct defrag_target_range *last;
1205
1206 /* Empty target list, no way to merge with last entry */
1207 if (list_empty(target_list))
1208 goto next;
1209 last = list_entry(target_list->prev,
1210 struct defrag_target_range, list);
1211 /* Not mergeable with last entry */
1212 if (last->start + last->len != cur)
1213 goto next;
1214
1215 /* Mergeable, fall through to add it to @target_list. */
32443de3
QW
1216 }
1217
eb793cf8
QW
1218add:
1219 range_len = min(extent_map_end(em), start + len) - cur;
1220 /*
1221 * This one is a good target, check if it can be merged into
1222 * last range of the target list.
1223 */
1224 if (!list_empty(target_list)) {
1225 struct defrag_target_range *last;
1226
1227 last = list_entry(target_list->prev,
1228 struct defrag_target_range, list);
1229 ASSERT(last->start + last->len <= cur);
1230 if (last->start + last->len == cur) {
1231 /* Mergeable, enlarge the last entry */
1232 last->len += range_len;
1233 goto next;
1f12bd06 1234 }
eb793cf8 1235 /* Fall through to allocate a new entry */
600a45e1
MX
1236 }
1237
eb793cf8
QW
1238 /* Allocate new defrag_target_range */
1239 new = kmalloc(sizeof(*new), GFP_NOFS);
1240 if (!new) {
1241 free_extent_map(em);
1242 ret = -ENOMEM;
1243 break;
4cb5300b 1244 }
eb793cf8
QW
1245 new->start = cur;
1246 new->len = range_len;
1247 list_add_tail(&new->list, target_list);
600a45e1 1248
eb793cf8
QW
1249next:
1250 cur = extent_map_end(em);
1251 free_extent_map(em);
1252 }
1253 if (ret < 0) {
1254 struct defrag_target_range *entry;
1255 struct defrag_target_range *tmp;
1256
1257 list_for_each_entry_safe(entry, tmp, target_list, list) {
1258 list_del_init(&entry->list);
1259 kfree(entry);
600a45e1 1260 }
eb793cf8
QW
1261 }
1262 return ret;
1263}
1264
22b398ee
QW
1265#define CLUSTER_SIZE (SZ_256K)
1266
1267/*
1268 * Defrag one contiguous target range.
1269 *
1270 * @inode: target inode
1271 * @target: target range to defrag
1272 * @pages: locked pages covering the defrag range
1273 * @nr_pages: number of locked pages
1274 *
1275 * Caller should ensure:
1276 *
1277 * - Pages are prepared
1278 * Pages should be locked, no ordered extent in the pages range,
1279 * no writeback.
1280 *
1281 * - Extent bits are locked
1282 */
1283static int defrag_one_locked_target(struct btrfs_inode *inode,
1284 struct defrag_target_range *target,
1285 struct page **pages, int nr_pages,
1286 struct extent_state **cached_state)
1287{
1288 struct btrfs_fs_info *fs_info = inode->root->fs_info;
1289 struct extent_changeset *data_reserved = NULL;
1290 const u64 start = target->start;
1291 const u64 len = target->len;
1292 unsigned long last_index = (start + len - 1) >> PAGE_SHIFT;
1293 unsigned long start_index = start >> PAGE_SHIFT;
1294 unsigned long first_index = page_index(pages[0]);
1295 int ret = 0;
1296 int i;
1297
1298 ASSERT(last_index - first_index + 1 <= nr_pages);
1299
1300 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, start, len);
1301 if (ret < 0)
1302 return ret;
1303 clear_extent_bit(&inode->io_tree, start, start + len - 1,
1304 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
1305 EXTENT_DEFRAG, 0, 0, cached_state);
1306 set_extent_defrag(&inode->io_tree, start, start + len - 1, cached_state);
600a45e1 1307
22b398ee
QW
1308 /* Update the page status */
1309 for (i = start_index - first_index; i <= last_index - first_index; i++) {
1310 ClearPageChecked(pages[i]);
1311 btrfs_page_clamp_set_dirty(fs_info, pages[i], start, len);
4cb5300b 1312 }
22b398ee
QW
1313 btrfs_delalloc_release_extents(inode, len);
1314 extent_changeset_free(data_reserved);
4cb5300b 1315
22b398ee
QW
1316 return ret;
1317}
4cb5300b 1318
e9eec721
QW
1319static int defrag_one_range(struct btrfs_inode *inode, u64 start, u32 len,
1320 u32 extent_thresh, u64 newer_than, bool do_compress)
1321{
1322 struct extent_state *cached_state = NULL;
1323 struct defrag_target_range *entry;
1324 struct defrag_target_range *tmp;
1325 LIST_HEAD(target_list);
1326 struct page **pages;
1327 const u32 sectorsize = inode->root->fs_info->sectorsize;
1328 u64 last_index = (start + len - 1) >> PAGE_SHIFT;
1329 u64 start_index = start >> PAGE_SHIFT;
1330 unsigned int nr_pages = last_index - start_index + 1;
1331 int ret = 0;
1332 int i;
4cb5300b 1333
e9eec721
QW
1334 ASSERT(nr_pages <= CLUSTER_SIZE / PAGE_SIZE);
1335 ASSERT(IS_ALIGNED(start, sectorsize) && IS_ALIGNED(len, sectorsize));
4cb5300b 1336
e9eec721
QW
1337 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
1338 if (!pages)
1339 return -ENOMEM;
7f458a38 1340
e9eec721
QW
1341 /* Prepare all pages */
1342 for (i = 0; i < nr_pages; i++) {
1343 pages[i] = defrag_prepare_one_page(inode, start_index + i);
1344 if (IS_ERR(pages[i])) {
1345 ret = PTR_ERR(pages[i]);
1346 pages[i] = NULL;
1347 goto free_pages;
1348 }
1349 }
1350 for (i = 0; i < nr_pages; i++)
1351 wait_on_page_writeback(pages[i]);
1352
1353 /* Lock the pages range */
1354 lock_extent_bits(&inode->io_tree, start_index << PAGE_SHIFT,
1355 (last_index << PAGE_SHIFT) + PAGE_SIZE - 1,
1356 &cached_state);
7f458a38 1357 /*
e9eec721
QW
1358 * Now we have a consistent view about the extent map, re-check
1359 * which range really needs to be defragged.
1360 *
1361 * And this time we have extent locked already, pass @locked = true
1362 * so that we won't relock the extent range and cause deadlock.
7f458a38 1363 */
e9eec721
QW
1364 ret = defrag_collect_targets(inode, start, len, extent_thresh,
1365 newer_than, do_compress, true,
1366 &target_list);
1367 if (ret < 0)
1368 goto unlock_extent;
7f458a38 1369
e9eec721
QW
1370 list_for_each_entry(entry, &target_list, list) {
1371 ret = defrag_one_locked_target(inode, entry, pages, nr_pages,
1372 &cached_state);
1373 if (ret < 0)
1374 break;
1375 }
1376
1377 list_for_each_entry_safe(entry, tmp, &target_list, list) {
1378 list_del_init(&entry->list);
1379 kfree(entry);
1380 }
1381unlock_extent:
1382 unlock_extent_cached(&inode->io_tree, start_index << PAGE_SHIFT,
1383 (last_index << PAGE_SHIFT) + PAGE_SIZE - 1,
1384 &cached_state);
1385free_pages:
1386 for (i = 0; i < nr_pages; i++) {
1387 if (pages[i]) {
1388 unlock_page(pages[i]);
1389 put_page(pages[i]);
7f458a38 1390 }
7f458a38 1391 }
e9eec721
QW
1392 kfree(pages);
1393 return ret;
1394}
7f458a38 1395
b18c3ab2
QW
1396static int defrag_one_cluster(struct btrfs_inode *inode,
1397 struct file_ra_state *ra,
1398 u64 start, u32 len, u32 extent_thresh,
1399 u64 newer_than, bool do_compress,
1400 unsigned long *sectors_defragged,
1401 unsigned long max_sectors)
1402{
1403 const u32 sectorsize = inode->root->fs_info->sectorsize;
1404 struct defrag_target_range *entry;
1405 struct defrag_target_range *tmp;
1406 LIST_HEAD(target_list);
1407 int ret;
4cb5300b 1408
b18c3ab2
QW
1409 BUILD_BUG_ON(!IS_ALIGNED(CLUSTER_SIZE, PAGE_SIZE));
1410 ret = defrag_collect_targets(inode, start, len, extent_thresh,
1411 newer_than, do_compress, false,
1412 &target_list);
1413 if (ret < 0)
1414 goto out;
4cb5300b 1415
b18c3ab2
QW
1416 list_for_each_entry(entry, &target_list, list) {
1417 u32 range_len = entry->len;
4cb5300b 1418
b18c3ab2
QW
1419 /* Reached the limit */
1420 if (max_sectors && max_sectors == *sectors_defragged)
1421 break;
4cb5300b 1422
b18c3ab2
QW
1423 if (max_sectors)
1424 range_len = min_t(u32, range_len,
1425 (max_sectors - *sectors_defragged) * sectorsize);
4cb5300b 1426
b18c3ab2
QW
1427 if (ra)
1428 page_cache_sync_readahead(inode->vfs_inode.i_mapping,
1429 ra, NULL, entry->start >> PAGE_SHIFT,
1430 ((entry->start + range_len - 1) >> PAGE_SHIFT) -
1431 (entry->start >> PAGE_SHIFT) + 1);
1432 /*
1433 * Here we may not defrag any range if holes are punched before
1434 * we locked the pages.
1435 * But that's fine, it only affects the @sectors_defragged
1436 * accounting.
1437 */
1438 ret = defrag_one_range(inode, entry->start, range_len,
1439 extent_thresh, newer_than, do_compress);
1440 if (ret < 0)
1441 break;
1442 *sectors_defragged += range_len;
4cb5300b 1443 }
4cb5300b 1444out:
b18c3ab2
QW
1445 list_for_each_entry_safe(entry, tmp, &target_list, list) {
1446 list_del_init(&entry->list);
1447 kfree(entry);
4cb5300b 1448 }
4cb5300b 1449 return ret;
4cb5300b
CM
1450}
1451
1ccc2e8a
QW
1452/*
1453 * Entry point to file defragmentation.
1454 *
1455 * @inode: inode to be defragged
1456 * @ra: readahead state (can be NUL)
1457 * @range: defrag options including range and flags
1458 * @newer_than: minimum transid to defrag
1459 * @max_to_defrag: max number of sectors to be defragged, if 0, the whole inode
1460 * will be defragged.
1461 */
1462int btrfs_defrag_file(struct inode *inode, struct file_ra_state *ra,
4cb5300b
CM
1463 struct btrfs_ioctl_defrag_range_args *range,
1464 u64 newer_than, unsigned long max_to_defrag)
1465{
0b246afa 1466 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
7b508037 1467 unsigned long sectors_defragged = 0;
151a31b2 1468 u64 isize = i_size_read(inode);
7b508037
QW
1469 u64 cur;
1470 u64 last_byte;
1e2ef46d 1471 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
1ccc2e8a 1472 bool ra_allocated = false;
1a419d85 1473 int compress_type = BTRFS_COMPRESS_ZLIB;
7b508037 1474 int ret = 0;
aab110ab 1475 u32 extent_thresh = range->extent_thresh;
4cb5300b 1476
0abd5b17
LB
1477 if (isize == 0)
1478 return 0;
1479
1480 if (range->start >= isize)
1481 return -EINVAL;
1a419d85 1482
1e2ef46d 1483 if (do_compress) {
ce96b7ff 1484 if (range->compress_type >= BTRFS_NR_COMPRESS_TYPES)
1a419d85
LZ
1485 return -EINVAL;
1486 if (range->compress_type)
1487 compress_type = range->compress_type;
1488 }
f46b5a66 1489
0abd5b17 1490 if (extent_thresh == 0)
ee22184b 1491 extent_thresh = SZ_256K;
940100a4 1492
7b508037
QW
1493 if (range->start + range->len > range->start) {
1494 /* Got a specific range */
1495 last_byte = min(isize, range->start + range->len) - 1;
1496 } else {
1497 /* Defrag until file end */
1498 last_byte = isize - 1;
1499 }
1500
4cb5300b 1501 /*
1ccc2e8a 1502 * If we were not given a ra, allocate a readahead context. As
0a52d108
DS
1503 * readahead is just an optimization, defrag will work without it so
1504 * we don't error out.
4cb5300b 1505 */
1ccc2e8a
QW
1506 if (!ra) {
1507 ra_allocated = true;
63e727ec 1508 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
0a52d108
DS
1509 if (ra)
1510 file_ra_state_init(ra, inode->i_mapping);
4cb5300b 1511 }
4cb5300b 1512
7b508037
QW
1513 /* Align the range */
1514 cur = round_down(range->start, fs_info->sectorsize);
1515 last_byte = round_up(last_byte, fs_info->sectorsize) - 1;
210549eb 1516
7b508037
QW
1517 while (cur < last_byte) {
1518 u64 cluster_end;
008873ea 1519
7b508037
QW
1520 /* The cluster size 256K should always be page aligned */
1521 BUILD_BUG_ON(!IS_ALIGNED(CLUSTER_SIZE, PAGE_SIZE));
008873ea 1522
7b508037
QW
1523 /* We want the cluster end at page boundary when possible */
1524 cluster_end = (((cur >> PAGE_SHIFT) +
1525 (SZ_256K >> PAGE_SHIFT)) << PAGE_SHIFT) - 1;
1526 cluster_end = min(cluster_end, last_byte);
940100a4 1527
64708539 1528 btrfs_inode_lock(inode, 0);
eede2bf3
OS
1529 if (IS_SWAPFILE(inode)) {
1530 ret = -ETXTBSY;
7b508037
QW
1531 btrfs_inode_unlock(inode, 0);
1532 break;
eede2bf3 1533 }
7b508037 1534 if (!(inode->i_sb->s_flags & SB_ACTIVE)) {
64708539 1535 btrfs_inode_unlock(inode, 0);
7b508037 1536 break;
ecb8bea8 1537 }
7b508037
QW
1538 if (do_compress)
1539 BTRFS_I(inode)->defrag_compress = compress_type;
1540 ret = defrag_one_cluster(BTRFS_I(inode), ra, cur,
1541 cluster_end + 1 - cur, extent_thresh,
1542 newer_than, do_compress,
1543 &sectors_defragged, max_to_defrag);
64708539 1544 btrfs_inode_unlock(inode, 0);
7b508037
QW
1545 if (ret < 0)
1546 break;
1547 cur = cluster_end + 1;
f46b5a66
CH
1548 }
1549
7b508037
QW
1550 if (ra_allocated)
1551 kfree(ra);
1552 if (sectors_defragged) {
1553 /*
1554 * We have defragged some sectors, for compression case they
1555 * need to be written back immediately.
1556 */
1557 if (range->flags & BTRFS_DEFRAG_RANGE_START_IO) {
dec8ef90 1558 filemap_flush(inode->i_mapping);
7b508037
QW
1559 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1560 &BTRFS_I(inode)->runtime_flags))
1561 filemap_flush(inode->i_mapping);
1562 }
1563 if (range->compress_type == BTRFS_COMPRESS_LZO)
1564 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
1565 else if (range->compress_type == BTRFS_COMPRESS_ZSTD)
1566 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
1567 ret = sectors_defragged;
dec8ef90 1568 }
1e2ef46d 1569 if (do_compress) {
64708539 1570 btrfs_inode_lock(inode, 0);
eec63c65 1571 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
64708539 1572 btrfs_inode_unlock(inode, 0);
633085c7 1573 }
940100a4 1574 return ret;
f46b5a66
CH
1575}
1576
17aaa434
DS
1577/*
1578 * Try to start exclusive operation @type or cancel it if it's running.
1579 *
1580 * Return:
1581 * 0 - normal mode, newly claimed op started
1582 * >0 - normal mode, something else is running,
1583 * return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS to user space
1584 * ECANCELED - cancel mode, successful cancel
1585 * ENOTCONN - cancel mode, operation not running anymore
1586 */
1587static int exclop_start_or_cancel_reloc(struct btrfs_fs_info *fs_info,
1588 enum btrfs_exclusive_operation type, bool cancel)
1589{
1590 if (!cancel) {
1591 /* Start normal op */
1592 if (!btrfs_exclop_start(fs_info, type))
1593 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
1594 /* Exclusive operation is now claimed */
1595 return 0;
1596 }
1597
1598 /* Cancel running op */
1599 if (btrfs_exclop_start_try_lock(fs_info, type)) {
1600 /*
1601 * This blocks any exclop finish from setting it to NONE, so we
1602 * request cancellation. Either it runs and we will wait for it,
1603 * or it has finished and no waiting will happen.
1604 */
1605 atomic_inc(&fs_info->reloc_cancel_req);
1606 btrfs_exclop_start_unlock(fs_info);
1607
1608 if (test_bit(BTRFS_FS_RELOC_RUNNING, &fs_info->flags))
1609 wait_on_bit(&fs_info->flags, BTRFS_FS_RELOC_RUNNING,
1610 TASK_INTERRUPTIBLE);
1611
1612 return -ECANCELED;
1613 }
1614
1615 /* Something else is running or none */
1616 return -ENOTCONN;
1617}
1618
198605a8 1619static noinline int btrfs_ioctl_resize(struct file *file,
76dda93c 1620 void __user *arg)
f46b5a66 1621{
562d7b15 1622 BTRFS_DEV_LOOKUP_ARGS(args);
0b246afa
JM
1623 struct inode *inode = file_inode(file);
1624 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
f46b5a66
CH
1625 u64 new_size;
1626 u64 old_size;
1627 u64 devid = 1;
0b246afa 1628 struct btrfs_root *root = BTRFS_I(inode)->root;
f46b5a66
CH
1629 struct btrfs_ioctl_vol_args *vol_args;
1630 struct btrfs_trans_handle *trans;
1631 struct btrfs_device *device = NULL;
1632 char *sizestr;
9a40f122 1633 char *retptr;
f46b5a66
CH
1634 char *devstr = NULL;
1635 int ret = 0;
f46b5a66 1636 int mod = 0;
bb059a37 1637 bool cancel;
f46b5a66 1638
e441d54d
CM
1639 if (!capable(CAP_SYS_ADMIN))
1640 return -EPERM;
1641
198605a8
MX
1642 ret = mnt_want_write_file(file);
1643 if (ret)
1644 return ret;
1645
bb059a37
DS
1646 /*
1647 * Read the arguments before checking exclusivity to be able to
1648 * distinguish regular resize and cancel
1649 */
dae7b665 1650 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
1651 if (IS_ERR(vol_args)) {
1652 ret = PTR_ERR(vol_args);
bb059a37 1653 goto out_drop;
c9e9f97b 1654 }
5516e595 1655 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66 1656 sizestr = vol_args->name;
bb059a37
DS
1657 cancel = (strcmp("cancel", sizestr) == 0);
1658 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_RESIZE, cancel);
1659 if (ret)
1660 goto out_free;
1661 /* Exclusive operation is now claimed */
1662
f46b5a66
CH
1663 devstr = strchr(sizestr, ':');
1664 if (devstr) {
f46b5a66
CH
1665 sizestr = devstr + 1;
1666 *devstr = '\0';
1667 devstr = vol_args->name;
58dfae63
Z
1668 ret = kstrtoull(devstr, 10, &devid);
1669 if (ret)
bb059a37 1670 goto out_finish;
dfd79829
MX
1671 if (!devid) {
1672 ret = -EINVAL;
bb059a37 1673 goto out_finish;
dfd79829 1674 }
0b246afa 1675 btrfs_info(fs_info, "resizing devid %llu", devid);
f46b5a66 1676 }
dba60f3f 1677
562d7b15
JB
1678 args.devid = devid;
1679 device = btrfs_find_device(fs_info->fs_devices, &args);
f46b5a66 1680 if (!device) {
0b246afa
JM
1681 btrfs_info(fs_info, "resizer unable to find device %llu",
1682 devid);
dfd79829 1683 ret = -ENODEV;
bb059a37 1684 goto out_finish;
f46b5a66 1685 }
dba60f3f 1686
ebbede42 1687 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
0b246afa 1688 btrfs_info(fs_info,
efe120a0 1689 "resizer unable to apply on readonly device %llu",
c1c9ff7c 1690 devid);
dfd79829 1691 ret = -EPERM;
bb059a37 1692 goto out_finish;
4e42ae1b
LB
1693 }
1694
f46b5a66 1695 if (!strcmp(sizestr, "max"))
cda00eba 1696 new_size = bdev_nr_bytes(device->bdev);
f46b5a66
CH
1697 else {
1698 if (sizestr[0] == '-') {
1699 mod = -1;
1700 sizestr++;
1701 } else if (sizestr[0] == '+') {
1702 mod = 1;
1703 sizestr++;
1704 }
9a40f122
GH
1705 new_size = memparse(sizestr, &retptr);
1706 if (*retptr != '\0' || new_size == 0) {
f46b5a66 1707 ret = -EINVAL;
bb059a37 1708 goto out_finish;
f46b5a66
CH
1709 }
1710 }
1711
401e29c1 1712 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
dfd79829 1713 ret = -EPERM;
bb059a37 1714 goto out_finish;
63a212ab
SB
1715 }
1716
7cc8e58d 1717 old_size = btrfs_device_get_total_bytes(device);
f46b5a66
CH
1718
1719 if (mod < 0) {
1720 if (new_size > old_size) {
1721 ret = -EINVAL;
bb059a37 1722 goto out_finish;
f46b5a66
CH
1723 }
1724 new_size = old_size - new_size;
1725 } else if (mod > 0) {
eb8052e0 1726 if (new_size > ULLONG_MAX - old_size) {
902c68a4 1727 ret = -ERANGE;
bb059a37 1728 goto out_finish;
eb8052e0 1729 }
f46b5a66
CH
1730 new_size = old_size + new_size;
1731 }
1732
ee22184b 1733 if (new_size < SZ_256M) {
f46b5a66 1734 ret = -EINVAL;
bb059a37 1735 goto out_finish;
f46b5a66 1736 }
cda00eba 1737 if (new_size > bdev_nr_bytes(device->bdev)) {
f46b5a66 1738 ret = -EFBIG;
bb059a37 1739 goto out_finish;
f46b5a66
CH
1740 }
1741
47f08b96 1742 new_size = round_down(new_size, fs_info->sectorsize);
f46b5a66 1743
f46b5a66 1744 if (new_size > old_size) {
a22285a6 1745 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
1746 if (IS_ERR(trans)) {
1747 ret = PTR_ERR(trans);
bb059a37 1748 goto out_finish;
98d5dc13 1749 }
f46b5a66 1750 ret = btrfs_grow_device(trans, device, new_size);
3a45bb20 1751 btrfs_commit_transaction(trans);
ece7d20e 1752 } else if (new_size < old_size) {
f46b5a66 1753 ret = btrfs_shrink_device(device, new_size);
0253f40e 1754 } /* equal, nothing need to do */
f46b5a66 1755
faf8f7b9
MPS
1756 if (ret == 0 && new_size != old_size)
1757 btrfs_info_in_rcu(fs_info,
1758 "resize device %s (devid %llu) from %llu to %llu",
1759 rcu_str_deref(device->name), device->devid,
1760 old_size, new_size);
bb059a37
DS
1761out_finish:
1762 btrfs_exclop_finish(fs_info);
c9e9f97b 1763out_free:
f46b5a66 1764 kfree(vol_args);
bb059a37 1765out_drop:
18f39c41 1766 mnt_drop_write_file(file);
f46b5a66
CH
1767 return ret;
1768}
1769
5d54c67e 1770static noinline int __btrfs_ioctl_snap_create(struct file *file,
4d4340c9 1771 struct user_namespace *mnt_userns,
52f75f4f 1772 const char *name, unsigned long fd, int subvol,
5d54c67e 1773 bool readonly,
8696c533 1774 struct btrfs_qgroup_inherit *inherit)
f46b5a66 1775{
f46b5a66 1776 int namelen;
3de4586c 1777 int ret = 0;
f46b5a66 1778
325c50e3
JM
1779 if (!S_ISDIR(file_inode(file)->i_mode))
1780 return -ENOTDIR;
1781
a874a63e
LB
1782 ret = mnt_want_write_file(file);
1783 if (ret)
1784 goto out;
1785
72fd032e
SW
1786 namelen = strlen(name);
1787 if (strchr(name, '/')) {
f46b5a66 1788 ret = -EINVAL;
a874a63e 1789 goto out_drop_write;
f46b5a66
CH
1790 }
1791
16780cab
CM
1792 if (name[0] == '.' &&
1793 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1794 ret = -EEXIST;
a874a63e 1795 goto out_drop_write;
16780cab
CM
1796 }
1797
3de4586c 1798 if (subvol) {
4d4340c9
CB
1799 ret = btrfs_mksubvol(&file->f_path, mnt_userns, name,
1800 namelen, NULL, readonly, inherit);
cb8e7090 1801 } else {
2903ff01 1802 struct fd src = fdget(fd);
3de4586c 1803 struct inode *src_inode;
2903ff01 1804 if (!src.file) {
3de4586c 1805 ret = -EINVAL;
a874a63e 1806 goto out_drop_write;
3de4586c
CM
1807 }
1808
496ad9aa
AV
1809 src_inode = file_inode(src.file);
1810 if (src_inode->i_sb != file_inode(file)->i_sb) {
c79b4713 1811 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
efe120a0 1812 "Snapshot src from another FS");
23ad5b17 1813 ret = -EXDEV;
4d4340c9 1814 } else if (!inode_owner_or_capable(mnt_userns, src_inode)) {
d0242061
DS
1815 /*
1816 * Subvolume creation is not restricted, but snapshots
1817 * are limited to own subvolumes only
1818 */
1819 ret = -EPERM;
ecd18815 1820 } else {
4d4340c9
CB
1821 ret = btrfs_mksnapshot(&file->f_path, mnt_userns,
1822 name, namelen,
1823 BTRFS_I(src_inode)->root,
1824 readonly, inherit);
3de4586c 1825 }
2903ff01 1826 fdput(src);
cb8e7090 1827 }
a874a63e
LB
1828out_drop_write:
1829 mnt_drop_write_file(file);
f46b5a66 1830out:
72fd032e
SW
1831 return ret;
1832}
1833
1834static noinline int btrfs_ioctl_snap_create(struct file *file,
fa0d2b9b 1835 void __user *arg, int subvol)
72fd032e 1836{
fa0d2b9b 1837 struct btrfs_ioctl_vol_args *vol_args;
72fd032e
SW
1838 int ret;
1839
325c50e3
JM
1840 if (!S_ISDIR(file_inode(file)->i_mode))
1841 return -ENOTDIR;
1842
fa0d2b9b
LZ
1843 vol_args = memdup_user(arg, sizeof(*vol_args));
1844 if (IS_ERR(vol_args))
1845 return PTR_ERR(vol_args);
1846 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
72fd032e 1847
4d4340c9
CB
1848 ret = __btrfs_ioctl_snap_create(file, file_mnt_user_ns(file),
1849 vol_args->name, vol_args->fd, subvol,
1850 false, NULL);
fdfb1e4f 1851
fa0d2b9b
LZ
1852 kfree(vol_args);
1853 return ret;
1854}
fdfb1e4f 1855
fa0d2b9b
LZ
1856static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1857 void __user *arg, int subvol)
1858{
1859 struct btrfs_ioctl_vol_args_v2 *vol_args;
1860 int ret;
b83cc969 1861 bool readonly = false;
6f72c7e2 1862 struct btrfs_qgroup_inherit *inherit = NULL;
75eaa0e2 1863
325c50e3
JM
1864 if (!S_ISDIR(file_inode(file)->i_mode))
1865 return -ENOTDIR;
1866
fa0d2b9b
LZ
1867 vol_args = memdup_user(arg, sizeof(*vol_args));
1868 if (IS_ERR(vol_args))
1869 return PTR_ERR(vol_args);
1870 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
75eaa0e2 1871
673990db 1872 if (vol_args->flags & ~BTRFS_SUBVOL_CREATE_ARGS_MASK) {
b83cc969 1873 ret = -EOPNOTSUPP;
c47ca32d 1874 goto free_args;
72fd032e 1875 }
fa0d2b9b 1876
b83cc969
LZ
1877 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1878 readonly = true;
6f72c7e2 1879 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
5011c5a6
DC
1880 u64 nums;
1881
1882 if (vol_args->size < sizeof(*inherit) ||
1883 vol_args->size > PAGE_SIZE) {
6f72c7e2 1884 ret = -EINVAL;
c47ca32d 1885 goto free_args;
6f72c7e2
AJ
1886 }
1887 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1888 if (IS_ERR(inherit)) {
1889 ret = PTR_ERR(inherit);
c47ca32d 1890 goto free_args;
6f72c7e2 1891 }
5011c5a6
DC
1892
1893 if (inherit->num_qgroups > PAGE_SIZE ||
1894 inherit->num_ref_copies > PAGE_SIZE ||
1895 inherit->num_excl_copies > PAGE_SIZE) {
1896 ret = -EINVAL;
1897 goto free_inherit;
1898 }
1899
1900 nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
1901 2 * inherit->num_excl_copies;
1902 if (vol_args->size != struct_size(inherit, qgroups, nums)) {
1903 ret = -EINVAL;
1904 goto free_inherit;
1905 }
6f72c7e2 1906 }
fa0d2b9b 1907
4d4340c9
CB
1908 ret = __btrfs_ioctl_snap_create(file, file_mnt_user_ns(file),
1909 vol_args->name, vol_args->fd, subvol,
1910 readonly, inherit);
c47ca32d
DC
1911 if (ret)
1912 goto free_inherit;
c47ca32d 1913free_inherit:
6f72c7e2 1914 kfree(inherit);
c47ca32d
DC
1915free_args:
1916 kfree(vol_args);
f46b5a66
CH
1917 return ret;
1918}
1919
0caa102d
LZ
1920static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1921 void __user *arg)
1922{
496ad9aa 1923 struct inode *inode = file_inode(file);
0b246afa 1924 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
0caa102d
LZ
1925 struct btrfs_root *root = BTRFS_I(inode)->root;
1926 int ret = 0;
1927 u64 flags = 0;
1928
4a0cc7ca 1929 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
0caa102d
LZ
1930 return -EINVAL;
1931
0b246afa 1932 down_read(&fs_info->subvol_sem);
0caa102d
LZ
1933 if (btrfs_root_readonly(root))
1934 flags |= BTRFS_SUBVOL_RDONLY;
0b246afa 1935 up_read(&fs_info->subvol_sem);
0caa102d
LZ
1936
1937 if (copy_to_user(arg, &flags, sizeof(flags)))
1938 ret = -EFAULT;
1939
1940 return ret;
1941}
1942
1943static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1944 void __user *arg)
1945{
496ad9aa 1946 struct inode *inode = file_inode(file);
0b246afa 1947 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
0caa102d
LZ
1948 struct btrfs_root *root = BTRFS_I(inode)->root;
1949 struct btrfs_trans_handle *trans;
1950 u64 root_flags;
1951 u64 flags;
1952 int ret = 0;
1953
39e1674f 1954 if (!inode_owner_or_capable(file_mnt_user_ns(file), inode))
bd60ea0f
DS
1955 return -EPERM;
1956
b9ca0664
LB
1957 ret = mnt_want_write_file(file);
1958 if (ret)
1959 goto out;
0caa102d 1960
4a0cc7ca 1961 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
b9ca0664
LB
1962 ret = -EINVAL;
1963 goto out_drop_write;
1964 }
0caa102d 1965
b9ca0664
LB
1966 if (copy_from_user(&flags, arg, sizeof(flags))) {
1967 ret = -EFAULT;
1968 goto out_drop_write;
1969 }
0caa102d 1970
b9ca0664
LB
1971 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1972 ret = -EOPNOTSUPP;
1973 goto out_drop_write;
1974 }
0caa102d 1975
0b246afa 1976 down_write(&fs_info->subvol_sem);
0caa102d
LZ
1977
1978 /* nothing to do */
1979 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
b9ca0664 1980 goto out_drop_sem;
0caa102d
LZ
1981
1982 root_flags = btrfs_root_flags(&root->root_item);
2c686537 1983 if (flags & BTRFS_SUBVOL_RDONLY) {
0caa102d
LZ
1984 btrfs_set_root_flags(&root->root_item,
1985 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
2c686537
DS
1986 } else {
1987 /*
1988 * Block RO -> RW transition if this subvolume is involved in
1989 * send
1990 */
1991 spin_lock(&root->root_item_lock);
1992 if (root->send_in_progress == 0) {
1993 btrfs_set_root_flags(&root->root_item,
0caa102d 1994 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
2c686537
DS
1995 spin_unlock(&root->root_item_lock);
1996 } else {
1997 spin_unlock(&root->root_item_lock);
0b246afa
JM
1998 btrfs_warn(fs_info,
1999 "Attempt to set subvolume %llu read-write during send",
2000 root->root_key.objectid);
2c686537
DS
2001 ret = -EPERM;
2002 goto out_drop_sem;
2003 }
2004 }
0caa102d
LZ
2005
2006 trans = btrfs_start_transaction(root, 1);
2007 if (IS_ERR(trans)) {
2008 ret = PTR_ERR(trans);
2009 goto out_reset;
2010 }
2011
0b246afa 2012 ret = btrfs_update_root(trans, fs_info->tree_root,
0caa102d 2013 &root->root_key, &root->root_item);
9417ebc8
NB
2014 if (ret < 0) {
2015 btrfs_end_transaction(trans);
2016 goto out_reset;
2017 }
2018
2019 ret = btrfs_commit_transaction(trans);
0caa102d 2020
0caa102d
LZ
2021out_reset:
2022 if (ret)
2023 btrfs_set_root_flags(&root->root_item, root_flags);
b9ca0664 2024out_drop_sem:
0b246afa 2025 up_write(&fs_info->subvol_sem);
b9ca0664
LB
2026out_drop_write:
2027 mnt_drop_write_file(file);
2028out:
0caa102d
LZ
2029 return ret;
2030}
2031
ac8e9819
CM
2032static noinline int key_in_sk(struct btrfs_key *key,
2033 struct btrfs_ioctl_search_key *sk)
2034{
abc6e134
CM
2035 struct btrfs_key test;
2036 int ret;
2037
2038 test.objectid = sk->min_objectid;
2039 test.type = sk->min_type;
2040 test.offset = sk->min_offset;
2041
2042 ret = btrfs_comp_cpu_keys(key, &test);
2043 if (ret < 0)
ac8e9819 2044 return 0;
abc6e134
CM
2045
2046 test.objectid = sk->max_objectid;
2047 test.type = sk->max_type;
2048 test.offset = sk->max_offset;
2049
2050 ret = btrfs_comp_cpu_keys(key, &test);
2051 if (ret > 0)
ac8e9819
CM
2052 return 0;
2053 return 1;
2054}
2055
df397565 2056static noinline int copy_to_sk(struct btrfs_path *path,
ac8e9819
CM
2057 struct btrfs_key *key,
2058 struct btrfs_ioctl_search_key *sk,
9b6e817d 2059 size_t *buf_size,
ba346b35 2060 char __user *ubuf,
ac8e9819
CM
2061 unsigned long *sk_offset,
2062 int *num_found)
2063{
2064 u64 found_transid;
2065 struct extent_buffer *leaf;
2066 struct btrfs_ioctl_search_header sh;
dd81d459 2067 struct btrfs_key test;
ac8e9819
CM
2068 unsigned long item_off;
2069 unsigned long item_len;
2070 int nritems;
2071 int i;
2072 int slot;
ac8e9819
CM
2073 int ret = 0;
2074
2075 leaf = path->nodes[0];
2076 slot = path->slots[0];
2077 nritems = btrfs_header_nritems(leaf);
2078
2079 if (btrfs_header_generation(leaf) > sk->max_transid) {
2080 i = nritems;
2081 goto advance_key;
2082 }
2083 found_transid = btrfs_header_generation(leaf);
2084
2085 for (i = slot; i < nritems; i++) {
2086 item_off = btrfs_item_ptr_offset(leaf, i);
3212fa14 2087 item_len = btrfs_item_size(leaf, i);
ac8e9819 2088
03b71c6c
GP
2089 btrfs_item_key_to_cpu(leaf, key, i);
2090 if (!key_in_sk(key, sk))
2091 continue;
2092
9b6e817d 2093 if (sizeof(sh) + item_len > *buf_size) {
8f5f6178
GH
2094 if (*num_found) {
2095 ret = 1;
2096 goto out;
2097 }
2098
2099 /*
2100 * return one empty item back for v1, which does not
2101 * handle -EOVERFLOW
2102 */
2103
9b6e817d 2104 *buf_size = sizeof(sh) + item_len;
ac8e9819 2105 item_len = 0;
8f5f6178
GH
2106 ret = -EOVERFLOW;
2107 }
ac8e9819 2108
9b6e817d 2109 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
ac8e9819 2110 ret = 1;
25c9bc2e 2111 goto out;
ac8e9819
CM
2112 }
2113
ac8e9819
CM
2114 sh.objectid = key->objectid;
2115 sh.offset = key->offset;
2116 sh.type = key->type;
2117 sh.len = item_len;
2118 sh.transid = found_transid;
2119
a48b73ec
JB
2120 /*
2121 * Copy search result header. If we fault then loop again so we
2122 * can fault in the pages and -EFAULT there if there's a
2123 * problem. Otherwise we'll fault and then copy the buffer in
2124 * properly this next time through
2125 */
2126 if (copy_to_user_nofault(ubuf + *sk_offset, &sh, sizeof(sh))) {
2127 ret = 0;
ba346b35
GH
2128 goto out;
2129 }
2130
ac8e9819
CM
2131 *sk_offset += sizeof(sh);
2132
2133 if (item_len) {
ba346b35 2134 char __user *up = ubuf + *sk_offset;
a48b73ec
JB
2135 /*
2136 * Copy the item, same behavior as above, but reset the
2137 * * sk_offset so we copy the full thing again.
2138 */
2139 if (read_extent_buffer_to_user_nofault(leaf, up,
2140 item_off, item_len)) {
2141 ret = 0;
2142 *sk_offset -= sizeof(sh);
ba346b35
GH
2143 goto out;
2144 }
2145
ac8e9819 2146 *sk_offset += item_len;
ac8e9819 2147 }
e2156867 2148 (*num_found)++;
ac8e9819 2149
8f5f6178
GH
2150 if (ret) /* -EOVERFLOW from above */
2151 goto out;
2152
25c9bc2e
GH
2153 if (*num_found >= sk->nr_items) {
2154 ret = 1;
2155 goto out;
2156 }
ac8e9819
CM
2157 }
2158advance_key:
abc6e134 2159 ret = 0;
dd81d459
NA
2160 test.objectid = sk->max_objectid;
2161 test.type = sk->max_type;
2162 test.offset = sk->max_offset;
2163 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2164 ret = 1;
2165 else if (key->offset < (u64)-1)
ac8e9819 2166 key->offset++;
dd81d459 2167 else if (key->type < (u8)-1) {
abc6e134 2168 key->offset = 0;
ac8e9819 2169 key->type++;
dd81d459 2170 } else if (key->objectid < (u64)-1) {
abc6e134
CM
2171 key->offset = 0;
2172 key->type = 0;
ac8e9819 2173 key->objectid++;
abc6e134
CM
2174 } else
2175 ret = 1;
25c9bc2e 2176out:
ba346b35
GH
2177 /*
2178 * 0: all items from this leaf copied, continue with next
2179 * 1: * more items can be copied, but unused buffer is too small
2180 * * all items were found
2181 * Either way, it will stops the loop which iterates to the next
2182 * leaf
2183 * -EOVERFLOW: item was to large for buffer
2184 * -EFAULT: could not copy extent buffer back to userspace
2185 */
ac8e9819
CM
2186 return ret;
2187}
2188
2189static noinline int search_ioctl(struct inode *inode,
12544442 2190 struct btrfs_ioctl_search_key *sk,
9b6e817d 2191 size_t *buf_size,
ba346b35 2192 char __user *ubuf)
ac8e9819 2193{
0b246afa 2194 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
ac8e9819
CM
2195 struct btrfs_root *root;
2196 struct btrfs_key key;
ac8e9819 2197 struct btrfs_path *path;
ac8e9819
CM
2198 int ret;
2199 int num_found = 0;
2200 unsigned long sk_offset = 0;
2201
9b6e817d
GH
2202 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2203 *buf_size = sizeof(struct btrfs_ioctl_search_header);
12544442 2204 return -EOVERFLOW;
9b6e817d 2205 }
12544442 2206
ac8e9819
CM
2207 path = btrfs_alloc_path();
2208 if (!path)
2209 return -ENOMEM;
2210
2211 if (sk->tree_id == 0) {
2212 /* search the root of the inode that was passed */
00246528 2213 root = btrfs_grab_root(BTRFS_I(inode)->root);
ac8e9819 2214 } else {
56e9357a 2215 root = btrfs_get_fs_root(info, sk->tree_id, true);
ac8e9819 2216 if (IS_ERR(root)) {
ac8e9819 2217 btrfs_free_path(path);
ad1e3d56 2218 return PTR_ERR(root);
ac8e9819
CM
2219 }
2220 }
2221
2222 key.objectid = sk->min_objectid;
2223 key.type = sk->min_type;
2224 key.offset = sk->min_offset;
2225
67871254 2226 while (1) {
bb523b40
AG
2227 ret = -EFAULT;
2228 if (fault_in_writeable(ubuf + sk_offset, *buf_size - sk_offset))
a48b73ec
JB
2229 break;
2230
6174d3cb 2231 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
ac8e9819
CM
2232 if (ret != 0) {
2233 if (ret > 0)
2234 ret = 0;
2235 goto err;
2236 }
df397565 2237 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
ac8e9819 2238 &sk_offset, &num_found);
b3b4aa74 2239 btrfs_release_path(path);
25c9bc2e 2240 if (ret)
ac8e9819
CM
2241 break;
2242
2243 }
8f5f6178
GH
2244 if (ret > 0)
2245 ret = 0;
ac8e9819
CM
2246err:
2247 sk->nr_items = num_found;
00246528 2248 btrfs_put_root(root);
ac8e9819
CM
2249 btrfs_free_path(path);
2250 return ret;
2251}
2252
2253static noinline int btrfs_ioctl_tree_search(struct file *file,
2254 void __user *argp)
2255{
ba346b35
GH
2256 struct btrfs_ioctl_search_args __user *uargs;
2257 struct btrfs_ioctl_search_key sk;
9b6e817d
GH
2258 struct inode *inode;
2259 int ret;
2260 size_t buf_size;
ac8e9819
CM
2261
2262 if (!capable(CAP_SYS_ADMIN))
2263 return -EPERM;
2264
ba346b35
GH
2265 uargs = (struct btrfs_ioctl_search_args __user *)argp;
2266
2267 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2268 return -EFAULT;
ac8e9819 2269
ba346b35 2270 buf_size = sizeof(uargs->buf);
ac8e9819 2271
496ad9aa 2272 inode = file_inode(file);
ba346b35 2273 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
8f5f6178
GH
2274
2275 /*
2276 * In the origin implementation an overflow is handled by returning a
2277 * search header with a len of zero, so reset ret.
2278 */
2279 if (ret == -EOVERFLOW)
2280 ret = 0;
2281
ba346b35 2282 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
ac8e9819 2283 ret = -EFAULT;
ac8e9819
CM
2284 return ret;
2285}
2286
cc68a8a5
GH
2287static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2288 void __user *argp)
2289{
2290 struct btrfs_ioctl_search_args_v2 __user *uarg;
2291 struct btrfs_ioctl_search_args_v2 args;
2292 struct inode *inode;
2293 int ret;
2294 size_t buf_size;
ee22184b 2295 const size_t buf_limit = SZ_16M;
cc68a8a5
GH
2296
2297 if (!capable(CAP_SYS_ADMIN))
2298 return -EPERM;
2299
2300 /* copy search header and buffer size */
2301 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2302 if (copy_from_user(&args, uarg, sizeof(args)))
2303 return -EFAULT;
2304
2305 buf_size = args.buf_size;
2306
cc68a8a5
GH
2307 /* limit result size to 16MB */
2308 if (buf_size > buf_limit)
2309 buf_size = buf_limit;
2310
2311 inode = file_inode(file);
2312 ret = search_ioctl(inode, &args.key, &buf_size,
718dc5fa 2313 (char __user *)(&uarg->buf[0]));
cc68a8a5
GH
2314 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2315 ret = -EFAULT;
2316 else if (ret == -EOVERFLOW &&
2317 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2318 ret = -EFAULT;
2319
ac8e9819
CM
2320 return ret;
2321}
2322
98d377a0 2323/*
ac8e9819
CM
2324 * Search INODE_REFs to identify path name of 'dirid' directory
2325 * in a 'tree_id' tree. and sets path name to 'name'.
2326 */
98d377a0
TH
2327static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2328 u64 tree_id, u64 dirid, char *name)
2329{
2330 struct btrfs_root *root;
2331 struct btrfs_key key;
ac8e9819 2332 char *ptr;
98d377a0
TH
2333 int ret = -1;
2334 int slot;
2335 int len;
2336 int total_len = 0;
2337 struct btrfs_inode_ref *iref;
2338 struct extent_buffer *l;
2339 struct btrfs_path *path;
2340
2341 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2342 name[0]='\0';
2343 return 0;
2344 }
2345
2346 path = btrfs_alloc_path();
2347 if (!path)
2348 return -ENOMEM;
2349
c8bcbfbd 2350 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
98d377a0 2351
56e9357a 2352 root = btrfs_get_fs_root(info, tree_id, true);
98d377a0 2353 if (IS_ERR(root)) {
ad1e3d56 2354 ret = PTR_ERR(root);
88234012
JB
2355 root = NULL;
2356 goto out;
2357 }
98d377a0
TH
2358
2359 key.objectid = dirid;
2360 key.type = BTRFS_INODE_REF_KEY;
8ad6fcab 2361 key.offset = (u64)-1;
98d377a0 2362
67871254 2363 while (1) {
0ff40a91 2364 ret = btrfs_search_backwards(root, &key, path);
98d377a0
TH
2365 if (ret < 0)
2366 goto out;
18674c6c 2367 else if (ret > 0) {
0ff40a91
MPS
2368 ret = -ENOENT;
2369 goto out;
18674c6c 2370 }
98d377a0
TH
2371
2372 l = path->nodes[0];
2373 slot = path->slots[0];
98d377a0 2374
98d377a0
TH
2375 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2376 len = btrfs_inode_ref_name_len(l, iref);
2377 ptr -= len + 1;
2378 total_len += len + 1;
a696cf35
FDBM
2379 if (ptr < name) {
2380 ret = -ENAMETOOLONG;
98d377a0 2381 goto out;
a696cf35 2382 }
98d377a0
TH
2383
2384 *(ptr + len) = '/';
67871254 2385 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
98d377a0
TH
2386
2387 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2388 break;
2389
b3b4aa74 2390 btrfs_release_path(path);
98d377a0 2391 key.objectid = key.offset;
8ad6fcab 2392 key.offset = (u64)-1;
98d377a0 2393 dirid = key.objectid;
98d377a0 2394 }
77906a50 2395 memmove(name, ptr, total_len);
67871254 2396 name[total_len] = '\0';
98d377a0
TH
2397 ret = 0;
2398out:
00246528 2399 btrfs_put_root(root);
98d377a0 2400 btrfs_free_path(path);
ac8e9819
CM
2401 return ret;
2402}
2403
6623d9a0
CB
2404static int btrfs_search_path_in_tree_user(struct user_namespace *mnt_userns,
2405 struct inode *inode,
23d0b79d
TM
2406 struct btrfs_ioctl_ino_lookup_user_args *args)
2407{
2408 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2409 struct super_block *sb = inode->i_sb;
2410 struct btrfs_key upper_limit = BTRFS_I(inode)->location;
2411 u64 treeid = BTRFS_I(inode)->root->root_key.objectid;
2412 u64 dirid = args->dirid;
2413 unsigned long item_off;
2414 unsigned long item_len;
2415 struct btrfs_inode_ref *iref;
2416 struct btrfs_root_ref *rref;
b8a49ae1 2417 struct btrfs_root *root = NULL;
23d0b79d
TM
2418 struct btrfs_path *path;
2419 struct btrfs_key key, key2;
2420 struct extent_buffer *leaf;
2421 struct inode *temp_inode;
2422 char *ptr;
2423 int slot;
2424 int len;
2425 int total_len = 0;
2426 int ret;
2427
2428 path = btrfs_alloc_path();
2429 if (!path)
2430 return -ENOMEM;
2431
2432 /*
2433 * If the bottom subvolume does not exist directly under upper_limit,
2434 * construct the path in from the bottom up.
2435 */
2436 if (dirid != upper_limit.objectid) {
2437 ptr = &args->path[BTRFS_INO_LOOKUP_USER_PATH_MAX - 1];
2438
56e9357a 2439 root = btrfs_get_fs_root(fs_info, treeid, true);
23d0b79d
TM
2440 if (IS_ERR(root)) {
2441 ret = PTR_ERR(root);
2442 goto out;
2443 }
2444
2445 key.objectid = dirid;
2446 key.type = BTRFS_INODE_REF_KEY;
2447 key.offset = (u64)-1;
2448 while (1) {
0ff40a91
MPS
2449 ret = btrfs_search_backwards(root, &key, path);
2450 if (ret < 0)
2451 goto out_put;
2452 else if (ret > 0) {
2453 ret = -ENOENT;
b8a49ae1 2454 goto out_put;
23d0b79d
TM
2455 }
2456
2457 leaf = path->nodes[0];
2458 slot = path->slots[0];
23d0b79d
TM
2459
2460 iref = btrfs_item_ptr(leaf, slot, struct btrfs_inode_ref);
2461 len = btrfs_inode_ref_name_len(leaf, iref);
2462 ptr -= len + 1;
2463 total_len += len + 1;
2464 if (ptr < args->path) {
2465 ret = -ENAMETOOLONG;
b8a49ae1 2466 goto out_put;
23d0b79d
TM
2467 }
2468
2469 *(ptr + len) = '/';
2470 read_extent_buffer(leaf, ptr,
2471 (unsigned long)(iref + 1), len);
2472
2473 /* Check the read+exec permission of this directory */
2474 ret = btrfs_previous_item(root, path, dirid,
2475 BTRFS_INODE_ITEM_KEY);
2476 if (ret < 0) {
b8a49ae1 2477 goto out_put;
23d0b79d
TM
2478 } else if (ret > 0) {
2479 ret = -ENOENT;
b8a49ae1 2480 goto out_put;
23d0b79d
TM
2481 }
2482
2483 leaf = path->nodes[0];
2484 slot = path->slots[0];
2485 btrfs_item_key_to_cpu(leaf, &key2, slot);
2486 if (key2.objectid != dirid) {
2487 ret = -ENOENT;
b8a49ae1 2488 goto out_put;
23d0b79d
TM
2489 }
2490
0202e83f 2491 temp_inode = btrfs_iget(sb, key2.objectid, root);
3ca57bd6
MT
2492 if (IS_ERR(temp_inode)) {
2493 ret = PTR_ERR(temp_inode);
b8a49ae1 2494 goto out_put;
3ca57bd6 2495 }
6623d9a0 2496 ret = inode_permission(mnt_userns, temp_inode,
47291baa 2497 MAY_READ | MAY_EXEC);
23d0b79d
TM
2498 iput(temp_inode);
2499 if (ret) {
2500 ret = -EACCES;
b8a49ae1 2501 goto out_put;
23d0b79d
TM
2502 }
2503
2504 if (key.offset == upper_limit.objectid)
2505 break;
2506 if (key.objectid == BTRFS_FIRST_FREE_OBJECTID) {
2507 ret = -EACCES;
b8a49ae1 2508 goto out_put;
23d0b79d
TM
2509 }
2510
2511 btrfs_release_path(path);
2512 key.objectid = key.offset;
2513 key.offset = (u64)-1;
2514 dirid = key.objectid;
2515 }
2516
2517 memmove(args->path, ptr, total_len);
2518 args->path[total_len] = '\0';
00246528 2519 btrfs_put_root(root);
b8a49ae1 2520 root = NULL;
23d0b79d
TM
2521 btrfs_release_path(path);
2522 }
2523
2524 /* Get the bottom subvolume's name from ROOT_REF */
23d0b79d
TM
2525 key.objectid = treeid;
2526 key.type = BTRFS_ROOT_REF_KEY;
2527 key.offset = args->treeid;
b8a49ae1 2528 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
23d0b79d
TM
2529 if (ret < 0) {
2530 goto out;
2531 } else if (ret > 0) {
2532 ret = -ENOENT;
2533 goto out;
2534 }
2535
2536 leaf = path->nodes[0];
2537 slot = path->slots[0];
2538 btrfs_item_key_to_cpu(leaf, &key, slot);
2539
2540 item_off = btrfs_item_ptr_offset(leaf, slot);
3212fa14 2541 item_len = btrfs_item_size(leaf, slot);
23d0b79d
TM
2542 /* Check if dirid in ROOT_REF corresponds to passed dirid */
2543 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2544 if (args->dirid != btrfs_root_ref_dirid(leaf, rref)) {
2545 ret = -EINVAL;
2546 goto out;
2547 }
2548
2549 /* Copy subvolume's name */
2550 item_off += sizeof(struct btrfs_root_ref);
2551 item_len -= sizeof(struct btrfs_root_ref);
2552 read_extent_buffer(leaf, args->name, item_off, item_len);
2553 args->name[item_len] = 0;
2554
b8a49ae1 2555out_put:
00246528 2556 btrfs_put_root(root);
23d0b79d
TM
2557out:
2558 btrfs_free_path(path);
2559 return ret;
2560}
2561
ac8e9819
CM
2562static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2563 void __user *argp)
2564{
bece2e82
BVA
2565 struct btrfs_ioctl_ino_lookup_args *args;
2566 struct inode *inode;
01b810b8 2567 int ret = 0;
ac8e9819 2568
2354d08f
JL
2569 args = memdup_user(argp, sizeof(*args));
2570 if (IS_ERR(args))
2571 return PTR_ERR(args);
c2b96929 2572
496ad9aa 2573 inode = file_inode(file);
ac8e9819 2574
01b810b8
DS
2575 /*
2576 * Unprivileged query to obtain the containing subvolume root id. The
2577 * path is reset so it's consistent with btrfs_search_path_in_tree.
2578 */
1b53ac4d
CM
2579 if (args->treeid == 0)
2580 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2581
01b810b8
DS
2582 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2583 args->name[0] = 0;
2584 goto out;
2585 }
2586
2587 if (!capable(CAP_SYS_ADMIN)) {
2588 ret = -EPERM;
2589 goto out;
2590 }
2591
ac8e9819
CM
2592 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2593 args->treeid, args->objectid,
2594 args->name);
2595
01b810b8 2596out:
ac8e9819
CM
2597 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2598 ret = -EFAULT;
2599
2600 kfree(args);
98d377a0
TH
2601 return ret;
2602}
2603
23d0b79d
TM
2604/*
2605 * Version of ino_lookup ioctl (unprivileged)
2606 *
2607 * The main differences from ino_lookup ioctl are:
2608 *
2609 * 1. Read + Exec permission will be checked using inode_permission() during
2610 * path construction. -EACCES will be returned in case of failure.
2611 * 2. Path construction will be stopped at the inode number which corresponds
2612 * to the fd with which this ioctl is called. If constructed path does not
2613 * exist under fd's inode, -EACCES will be returned.
2614 * 3. The name of bottom subvolume is also searched and filled.
2615 */
2616static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
2617{
2618 struct btrfs_ioctl_ino_lookup_user_args *args;
2619 struct inode *inode;
2620 int ret;
2621
2622 args = memdup_user(argp, sizeof(*args));
2623 if (IS_ERR(args))
2624 return PTR_ERR(args);
2625
2626 inode = file_inode(file);
2627
2628 if (args->dirid == BTRFS_FIRST_FREE_OBJECTID &&
2629 BTRFS_I(inode)->location.objectid != BTRFS_FIRST_FREE_OBJECTID) {
2630 /*
2631 * The subvolume does not exist under fd with which this is
2632 * called
2633 */
2634 kfree(args);
2635 return -EACCES;
2636 }
2637
6623d9a0 2638 ret = btrfs_search_path_in_tree_user(file_mnt_user_ns(file), inode, args);
23d0b79d
TM
2639
2640 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2641 ret = -EFAULT;
2642
2643 kfree(args);
2644 return ret;
2645}
2646
b64ec075
TM
2647/* Get the subvolume information in BTRFS_ROOT_ITEM and BTRFS_ROOT_BACKREF */
2648static int btrfs_ioctl_get_subvol_info(struct file *file, void __user *argp)
2649{
2650 struct btrfs_ioctl_get_subvol_info_args *subvol_info;
2651 struct btrfs_fs_info *fs_info;
2652 struct btrfs_root *root;
2653 struct btrfs_path *path;
2654 struct btrfs_key key;
2655 struct btrfs_root_item *root_item;
2656 struct btrfs_root_ref *rref;
2657 struct extent_buffer *leaf;
2658 unsigned long item_off;
2659 unsigned long item_len;
2660 struct inode *inode;
2661 int slot;
2662 int ret = 0;
2663
2664 path = btrfs_alloc_path();
2665 if (!path)
2666 return -ENOMEM;
2667
2668 subvol_info = kzalloc(sizeof(*subvol_info), GFP_KERNEL);
2669 if (!subvol_info) {
2670 btrfs_free_path(path);
2671 return -ENOMEM;
2672 }
2673
2674 inode = file_inode(file);
2675 fs_info = BTRFS_I(inode)->root->fs_info;
2676
2677 /* Get root_item of inode's subvolume */
2678 key.objectid = BTRFS_I(inode)->root->root_key.objectid;
56e9357a 2679 root = btrfs_get_fs_root(fs_info, key.objectid, true);
b64ec075
TM
2680 if (IS_ERR(root)) {
2681 ret = PTR_ERR(root);
04734e84
JB
2682 goto out_free;
2683 }
b64ec075
TM
2684 root_item = &root->root_item;
2685
2686 subvol_info->treeid = key.objectid;
2687
2688 subvol_info->generation = btrfs_root_generation(root_item);
2689 subvol_info->flags = btrfs_root_flags(root_item);
2690
2691 memcpy(subvol_info->uuid, root_item->uuid, BTRFS_UUID_SIZE);
2692 memcpy(subvol_info->parent_uuid, root_item->parent_uuid,
2693 BTRFS_UUID_SIZE);
2694 memcpy(subvol_info->received_uuid, root_item->received_uuid,
2695 BTRFS_UUID_SIZE);
2696
2697 subvol_info->ctransid = btrfs_root_ctransid(root_item);
2698 subvol_info->ctime.sec = btrfs_stack_timespec_sec(&root_item->ctime);
2699 subvol_info->ctime.nsec = btrfs_stack_timespec_nsec(&root_item->ctime);
2700
2701 subvol_info->otransid = btrfs_root_otransid(root_item);
2702 subvol_info->otime.sec = btrfs_stack_timespec_sec(&root_item->otime);
2703 subvol_info->otime.nsec = btrfs_stack_timespec_nsec(&root_item->otime);
2704
2705 subvol_info->stransid = btrfs_root_stransid(root_item);
2706 subvol_info->stime.sec = btrfs_stack_timespec_sec(&root_item->stime);
2707 subvol_info->stime.nsec = btrfs_stack_timespec_nsec(&root_item->stime);
2708
2709 subvol_info->rtransid = btrfs_root_rtransid(root_item);
2710 subvol_info->rtime.sec = btrfs_stack_timespec_sec(&root_item->rtime);
2711 subvol_info->rtime.nsec = btrfs_stack_timespec_nsec(&root_item->rtime);
2712
2713 if (key.objectid != BTRFS_FS_TREE_OBJECTID) {
2714 /* Search root tree for ROOT_BACKREF of this subvolume */
b64ec075
TM
2715 key.type = BTRFS_ROOT_BACKREF_KEY;
2716 key.offset = 0;
04734e84 2717 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
b64ec075
TM
2718 if (ret < 0) {
2719 goto out;
2720 } else if (path->slots[0] >=
2721 btrfs_header_nritems(path->nodes[0])) {
04734e84 2722 ret = btrfs_next_leaf(fs_info->tree_root, path);
b64ec075
TM
2723 if (ret < 0) {
2724 goto out;
2725 } else if (ret > 0) {
2726 ret = -EUCLEAN;
2727 goto out;
2728 }
2729 }
2730
2731 leaf = path->nodes[0];
2732 slot = path->slots[0];
2733 btrfs_item_key_to_cpu(leaf, &key, slot);
2734 if (key.objectid == subvol_info->treeid &&
2735 key.type == BTRFS_ROOT_BACKREF_KEY) {
2736 subvol_info->parent_id = key.offset;
2737
2738 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2739 subvol_info->dirid = btrfs_root_ref_dirid(leaf, rref);
2740
2741 item_off = btrfs_item_ptr_offset(leaf, slot)
2742 + sizeof(struct btrfs_root_ref);
3212fa14 2743 item_len = btrfs_item_size(leaf, slot)
b64ec075
TM
2744 - sizeof(struct btrfs_root_ref);
2745 read_extent_buffer(leaf, subvol_info->name,
2746 item_off, item_len);
2747 } else {
2748 ret = -ENOENT;
2749 goto out;
2750 }
2751 }
2752
2753 if (copy_to_user(argp, subvol_info, sizeof(*subvol_info)))
2754 ret = -EFAULT;
2755
2756out:
00246528 2757 btrfs_put_root(root);
04734e84 2758out_free:
b64ec075 2759 btrfs_free_path(path);
b091f7fe 2760 kfree(subvol_info);
b64ec075
TM
2761 return ret;
2762}
2763
42e4b520
TM
2764/*
2765 * Return ROOT_REF information of the subvolume containing this inode
2766 * except the subvolume name.
2767 */
2768static int btrfs_ioctl_get_subvol_rootref(struct file *file, void __user *argp)
2769{
2770 struct btrfs_ioctl_get_subvol_rootref_args *rootrefs;
2771 struct btrfs_root_ref *rref;
2772 struct btrfs_root *root;
2773 struct btrfs_path *path;
2774 struct btrfs_key key;
2775 struct extent_buffer *leaf;
2776 struct inode *inode;
2777 u64 objectid;
2778 int slot;
2779 int ret;
2780 u8 found;
2781
2782 path = btrfs_alloc_path();
2783 if (!path)
2784 return -ENOMEM;
2785
2786 rootrefs = memdup_user(argp, sizeof(*rootrefs));
2787 if (IS_ERR(rootrefs)) {
2788 btrfs_free_path(path);
2789 return PTR_ERR(rootrefs);
2790 }
2791
2792 inode = file_inode(file);
2793 root = BTRFS_I(inode)->root->fs_info->tree_root;
2794 objectid = BTRFS_I(inode)->root->root_key.objectid;
2795
2796 key.objectid = objectid;
2797 key.type = BTRFS_ROOT_REF_KEY;
2798 key.offset = rootrefs->min_treeid;
2799 found = 0;
2800
2801 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2802 if (ret < 0) {
2803 goto out;
2804 } else if (path->slots[0] >=
2805 btrfs_header_nritems(path->nodes[0])) {
2806 ret = btrfs_next_leaf(root, path);
2807 if (ret < 0) {
2808 goto out;
2809 } else if (ret > 0) {
2810 ret = -EUCLEAN;
2811 goto out;
2812 }
2813 }
2814 while (1) {
2815 leaf = path->nodes[0];
2816 slot = path->slots[0];
2817
2818 btrfs_item_key_to_cpu(leaf, &key, slot);
2819 if (key.objectid != objectid || key.type != BTRFS_ROOT_REF_KEY) {
2820 ret = 0;
2821 goto out;
2822 }
2823
2824 if (found == BTRFS_MAX_ROOTREF_BUFFER_NUM) {
2825 ret = -EOVERFLOW;
2826 goto out;
2827 }
2828
2829 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2830 rootrefs->rootref[found].treeid = key.offset;
2831 rootrefs->rootref[found].dirid =
2832 btrfs_root_ref_dirid(leaf, rref);
2833 found++;
2834
2835 ret = btrfs_next_item(root, path);
2836 if (ret < 0) {
2837 goto out;
2838 } else if (ret > 0) {
2839 ret = -EUCLEAN;
2840 goto out;
2841 }
2842 }
2843
2844out:
2845 if (!ret || ret == -EOVERFLOW) {
2846 rootrefs->num_items = found;
2847 /* update min_treeid for next search */
2848 if (found)
2849 rootrefs->min_treeid =
2850 rootrefs->rootref[found - 1].treeid + 1;
2851 if (copy_to_user(argp, rootrefs, sizeof(*rootrefs)))
2852 ret = -EFAULT;
2853 }
2854
2855 kfree(rootrefs);
2856 btrfs_free_path(path);
2857
2858 return ret;
2859}
2860
76dda93c 2861static noinline int btrfs_ioctl_snap_destroy(struct file *file,
949964c9
MPS
2862 void __user *arg,
2863 bool destroy_v2)
76dda93c 2864{
54563d41 2865 struct dentry *parent = file->f_path.dentry;
0b246afa 2866 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
76dda93c 2867 struct dentry *dentry;
2b0143b5 2868 struct inode *dir = d_inode(parent);
76dda93c
YZ
2869 struct inode *inode;
2870 struct btrfs_root *root = BTRFS_I(dir)->root;
2871 struct btrfs_root *dest = NULL;
949964c9
MPS
2872 struct btrfs_ioctl_vol_args *vol_args = NULL;
2873 struct btrfs_ioctl_vol_args_v2 *vol_args2 = NULL;
c4ed533b 2874 struct user_namespace *mnt_userns = file_mnt_user_ns(file);
949964c9
MPS
2875 char *subvol_name, *subvol_name_ptr = NULL;
2876 int subvol_namelen;
76dda93c 2877 int err = 0;
949964c9 2878 bool destroy_parent = false;
76dda93c 2879
949964c9
MPS
2880 if (destroy_v2) {
2881 vol_args2 = memdup_user(arg, sizeof(*vol_args2));
2882 if (IS_ERR(vol_args2))
2883 return PTR_ERR(vol_args2);
325c50e3 2884
949964c9
MPS
2885 if (vol_args2->flags & ~BTRFS_SUBVOL_DELETE_ARGS_MASK) {
2886 err = -EOPNOTSUPP;
2887 goto out;
2888 }
76dda93c 2889
949964c9
MPS
2890 /*
2891 * If SPEC_BY_ID is not set, we are looking for the subvolume by
2892 * name, same as v1 currently does.
2893 */
2894 if (!(vol_args2->flags & BTRFS_SUBVOL_SPEC_BY_ID)) {
2895 vol_args2->name[BTRFS_SUBVOL_NAME_MAX] = 0;
2896 subvol_name = vol_args2->name;
2897
2898 err = mnt_want_write_file(file);
2899 if (err)
2900 goto out;
2901 } else {
aabb34e7 2902 struct inode *old_dir;
c4ed533b 2903
949964c9
MPS
2904 if (vol_args2->subvolid < BTRFS_FIRST_FREE_OBJECTID) {
2905 err = -EINVAL;
2906 goto out;
2907 }
2908
2909 err = mnt_want_write_file(file);
2910 if (err)
2911 goto out;
2912
2913 dentry = btrfs_get_dentry(fs_info->sb,
2914 BTRFS_FIRST_FREE_OBJECTID,
2915 vol_args2->subvolid, 0, 0);
2916 if (IS_ERR(dentry)) {
2917 err = PTR_ERR(dentry);
2918 goto out_drop_write;
2919 }
2920
2921 /*
2922 * Change the default parent since the subvolume being
2923 * deleted can be outside of the current mount point.
2924 */
2925 parent = btrfs_get_parent(dentry);
2926
2927 /*
2928 * At this point dentry->d_name can point to '/' if the
2929 * subvolume we want to destroy is outsite of the
2930 * current mount point, so we need to release the
2931 * current dentry and execute the lookup to return a new
2932 * one with ->d_name pointing to the
2933 * <mount point>/subvol_name.
2934 */
2935 dput(dentry);
2936 if (IS_ERR(parent)) {
2937 err = PTR_ERR(parent);
2938 goto out_drop_write;
2939 }
aabb34e7 2940 old_dir = dir;
949964c9
MPS
2941 dir = d_inode(parent);
2942
2943 /*
2944 * If v2 was used with SPEC_BY_ID, a new parent was
2945 * allocated since the subvolume can be outside of the
2946 * current mount point. Later on we need to release this
2947 * new parent dentry.
2948 */
2949 destroy_parent = true;
2950
aabb34e7
CB
2951 /*
2952 * On idmapped mounts, deletion via subvolid is
2953 * restricted to subvolumes that are immediate
2954 * ancestors of the inode referenced by the file
2955 * descriptor in the ioctl. Otherwise the idmapping
2956 * could potentially be abused to delete subvolumes
2957 * anywhere in the filesystem the user wouldn't be able
2958 * to delete without an idmapped mount.
2959 */
2960 if (old_dir != dir && mnt_userns != &init_user_ns) {
2961 err = -EOPNOTSUPP;
2962 goto free_parent;
2963 }
2964
949964c9
MPS
2965 subvol_name_ptr = btrfs_get_subvol_name_from_objectid(
2966 fs_info, vol_args2->subvolid);
2967 if (IS_ERR(subvol_name_ptr)) {
2968 err = PTR_ERR(subvol_name_ptr);
2969 goto free_parent;
2970 }
1a9fd417 2971 /* subvol_name_ptr is already nul terminated */
949964c9
MPS
2972 subvol_name = (char *)kbasename(subvol_name_ptr);
2973 }
2974 } else {
2975 vol_args = memdup_user(arg, sizeof(*vol_args));
2976 if (IS_ERR(vol_args))
2977 return PTR_ERR(vol_args);
2978
2979 vol_args->name[BTRFS_PATH_NAME_MAX] = 0;
2980 subvol_name = vol_args->name;
2981
2982 err = mnt_want_write_file(file);
2983 if (err)
2984 goto out;
76dda93c
YZ
2985 }
2986
949964c9 2987 subvol_namelen = strlen(subvol_name);
76dda93c 2988
949964c9
MPS
2989 if (strchr(subvol_name, '/') ||
2990 strncmp(subvol_name, "..", subvol_namelen) == 0) {
2991 err = -EINVAL;
2992 goto free_subvol_name;
2993 }
2994
2995 if (!S_ISDIR(dir->i_mode)) {
2996 err = -ENOTDIR;
2997 goto free_subvol_name;
2998 }
521e0546 2999
00235411
AV
3000 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
3001 if (err == -EINTR)
949964c9 3002 goto free_subvol_name;
c4ed533b 3003 dentry = lookup_one(mnt_userns, subvol_name, parent, subvol_namelen);
76dda93c
YZ
3004 if (IS_ERR(dentry)) {
3005 err = PTR_ERR(dentry);
3006 goto out_unlock_dir;
3007 }
3008
2b0143b5 3009 if (d_really_is_negative(dentry)) {
76dda93c
YZ
3010 err = -ENOENT;
3011 goto out_dput;
3012 }
3013
2b0143b5 3014 inode = d_inode(dentry);
4260f7c7 3015 dest = BTRFS_I(inode)->root;
67871254 3016 if (!capable(CAP_SYS_ADMIN)) {
4260f7c7
SW
3017 /*
3018 * Regular user. Only allow this with a special mount
3019 * option, when the user has write+exec access to the
3020 * subvol root, and when rmdir(2) would have been
3021 * allowed.
3022 *
3023 * Note that this is _not_ check that the subvol is
3024 * empty or doesn't contain data that we wouldn't
3025 * otherwise be able to delete.
3026 *
3027 * Users who want to delete empty subvols should try
3028 * rmdir(2).
3029 */
3030 err = -EPERM;
0b246afa 3031 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
4260f7c7
SW
3032 goto out_dput;
3033
3034 /*
3035 * Do not allow deletion if the parent dir is the same
3036 * as the dir to be deleted. That means the ioctl
3037 * must be called on the dentry referencing the root
3038 * of the subvol, not a random directory contained
3039 * within it.
3040 */
3041 err = -EINVAL;
3042 if (root == dest)
3043 goto out_dput;
3044
c4ed533b 3045 err = inode_permission(mnt_userns, inode, MAY_WRITE | MAY_EXEC);
4260f7c7
SW
3046 if (err)
3047 goto out_dput;
4260f7c7
SW
3048 }
3049
5c39da5b 3050 /* check if subvolume may be deleted by a user */
c4ed533b 3051 err = btrfs_may_delete(mnt_userns, dir, dentry, 1);
5c39da5b
MX
3052 if (err)
3053 goto out_dput;
3054
4a0cc7ca 3055 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
76dda93c
YZ
3056 err = -EINVAL;
3057 goto out_dput;
3058 }
3059
64708539 3060 btrfs_inode_lock(inode, 0);
f60a2364 3061 err = btrfs_delete_subvolume(dir, dentry);
64708539 3062 btrfs_inode_unlock(inode, 0);
46008d9d
AG
3063 if (!err) {
3064 fsnotify_rmdir(dir, dentry);
76dda93c 3065 d_delete(dentry);
46008d9d 3066 }
fa6ac876 3067
76dda93c
YZ
3068out_dput:
3069 dput(dentry);
3070out_unlock_dir:
64708539 3071 btrfs_inode_unlock(dir, 0);
949964c9
MPS
3072free_subvol_name:
3073 kfree(subvol_name_ptr);
3074free_parent:
3075 if (destroy_parent)
3076 dput(parent);
00235411 3077out_drop_write:
2a79f17e 3078 mnt_drop_write_file(file);
76dda93c 3079out:
949964c9 3080 kfree(vol_args2);
76dda93c
YZ
3081 kfree(vol_args);
3082 return err;
3083}
3084
1e701a32 3085static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
f46b5a66 3086{
496ad9aa 3087 struct inode *inode = file_inode(file);
f46b5a66 3088 struct btrfs_root *root = BTRFS_I(inode)->root;
c853a578 3089 struct btrfs_ioctl_defrag_range_args range = {0};
c146afad
YZ
3090 int ret;
3091
25122d15
ID
3092 ret = mnt_want_write_file(file);
3093 if (ret)
3094 return ret;
b83cc969 3095
25122d15
ID
3096 if (btrfs_root_readonly(root)) {
3097 ret = -EROFS;
3098 goto out;
5ac00add 3099 }
f46b5a66
CH
3100
3101 switch (inode->i_mode & S_IFMT) {
3102 case S_IFDIR:
e441d54d
CM
3103 if (!capable(CAP_SYS_ADMIN)) {
3104 ret = -EPERM;
3105 goto out;
3106 }
de78b51a 3107 ret = btrfs_defrag_root(root);
f46b5a66
CH
3108 break;
3109 case S_IFREG:
616d374e
AB
3110 /*
3111 * Note that this does not check the file descriptor for write
3112 * access. This prevents defragmenting executables that are
3113 * running and allows defrag on files open in read-only mode.
3114 */
3115 if (!capable(CAP_SYS_ADMIN) &&
47291baa 3116 inode_permission(&init_user_ns, inode, MAY_WRITE)) {
616d374e 3117 ret = -EPERM;
e441d54d
CM
3118 goto out;
3119 }
1e701a32 3120
1e701a32 3121 if (argp) {
c853a578 3122 if (copy_from_user(&range, argp, sizeof(range))) {
1e701a32 3123 ret = -EFAULT;
683be16e 3124 goto out;
1e701a32
CM
3125 }
3126 /* compression requires us to start the IO */
c853a578
GR
3127 if ((range.flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
3128 range.flags |= BTRFS_DEFRAG_RANGE_START_IO;
3129 range.extent_thresh = (u32)-1;
1e701a32
CM
3130 }
3131 } else {
3132 /* the rest are all set to zero by kzalloc */
c853a578 3133 range.len = (u64)-1;
1e701a32 3134 }
1ccc2e8a 3135 ret = btrfs_defrag_file(file_inode(file), &file->f_ra,
c853a578 3136 &range, BTRFS_OLDEST_GENERATION, 0);
4cb5300b
CM
3137 if (ret > 0)
3138 ret = 0;
f46b5a66 3139 break;
8929ecfa
YZ
3140 default:
3141 ret = -EINVAL;
f46b5a66 3142 }
e441d54d 3143out:
25122d15 3144 mnt_drop_write_file(file);
e441d54d 3145 return ret;
f46b5a66
CH
3146}
3147
2ff7e61e 3148static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
f46b5a66
CH
3149{
3150 struct btrfs_ioctl_vol_args *vol_args;
3151 int ret;
3152
e441d54d
CM
3153 if (!capable(CAP_SYS_ADMIN))
3154 return -EPERM;
3155
c3e1f96c 3156 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_ADD))
e57138b3 3157 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
c9e9f97b 3158
dae7b665 3159 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
3160 if (IS_ERR(vol_args)) {
3161 ret = PTR_ERR(vol_args);
3162 goto out;
3163 }
f46b5a66 3164
5516e595 3165 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2ff7e61e 3166 ret = btrfs_init_new_device(fs_info, vol_args->name);
f46b5a66 3167
43d20761 3168 if (!ret)
0b246afa 3169 btrfs_info(fs_info, "disk added %s", vol_args->name);
43d20761 3170
f46b5a66 3171 kfree(vol_args);
c9e9f97b 3172out:
c3e1f96c 3173 btrfs_exclop_finish(fs_info);
f46b5a66
CH
3174 return ret;
3175}
3176
6b526ed7 3177static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
f46b5a66 3178{
1a15eb72 3179 BTRFS_DEV_LOOKUP_ARGS(args);
0b246afa
JM
3180 struct inode *inode = file_inode(file);
3181 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
6b526ed7 3182 struct btrfs_ioctl_vol_args_v2 *vol_args;
3fa421de
JB
3183 struct block_device *bdev = NULL;
3184 fmode_t mode;
f46b5a66 3185 int ret;
67ae34b6 3186 bool cancel = false;
f46b5a66 3187
e441d54d
CM
3188 if (!capable(CAP_SYS_ADMIN))
3189 return -EPERM;
3190
dae7b665 3191 vol_args = memdup_user(arg, sizeof(*vol_args));
d815b3f2
DC
3192 if (IS_ERR(vol_args))
3193 return PTR_ERR(vol_args);
f46b5a66 3194
748449cd 3195 if (vol_args->flags & ~BTRFS_DEVICE_REMOVE_ARGS_MASK) {
fd4e994b
OS
3196 ret = -EOPNOTSUPP;
3197 goto out;
3198 }
1a15eb72 3199
67ae34b6 3200 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
1a15eb72
JB
3201 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
3202 args.devid = vol_args->devid;
3203 } else if (!strcmp("cancel", vol_args->name)) {
67ae34b6 3204 cancel = true;
1a15eb72
JB
3205 } else {
3206 ret = btrfs_get_dev_args_from_path(fs_info, &args, vol_args->name);
3207 if (ret)
3208 goto out;
3209 }
3210
3211 ret = mnt_want_write_file(file);
3212 if (ret)
3213 goto out;
f46b5a66 3214
67ae34b6
DS
3215 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
3216 cancel);
3217 if (ret)
1a15eb72 3218 goto err_drop;
183860f6 3219
1a15eb72
JB
3220 /* Exclusive operation is now claimed */
3221 ret = btrfs_rm_device(fs_info, &args, &bdev, &mode);
67ae34b6 3222
c3e1f96c 3223 btrfs_exclop_finish(fs_info);
183860f6 3224
6b526ed7 3225 if (!ret) {
735654ea 3226 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
0b246afa 3227 btrfs_info(fs_info, "device deleted: id %llu",
6b526ed7
AJ
3228 vol_args->devid);
3229 else
0b246afa 3230 btrfs_info(fs_info, "device deleted: %s",
6b526ed7
AJ
3231 vol_args->name);
3232 }
c47ca32d 3233err_drop:
4ac20c70 3234 mnt_drop_write_file(file);
3fa421de
JB
3235 if (bdev)
3236 blkdev_put(bdev, mode);
1a15eb72
JB
3237out:
3238 btrfs_put_dev_args_from_path(&args);
3239 kfree(vol_args);
f46b5a66
CH
3240 return ret;
3241}
3242
da24927b 3243static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
f46b5a66 3244{
1a15eb72 3245 BTRFS_DEV_LOOKUP_ARGS(args);
0b246afa
JM
3246 struct inode *inode = file_inode(file);
3247 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
f46b5a66 3248 struct btrfs_ioctl_vol_args *vol_args;
3fa421de
JB
3249 struct block_device *bdev = NULL;
3250 fmode_t mode;
f46b5a66 3251 int ret;
67ae34b6 3252 bool cancel;
f46b5a66 3253
e441d54d
CM
3254 if (!capable(CAP_SYS_ADMIN))
3255 return -EPERM;
3256
58d7bbf8 3257 vol_args = memdup_user(arg, sizeof(*vol_args));
1a15eb72
JB
3258 if (IS_ERR(vol_args))
3259 return PTR_ERR(vol_args);
3260
58d7bbf8 3261 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
1a15eb72
JB
3262 if (!strcmp("cancel", vol_args->name)) {
3263 cancel = true;
3264 } else {
3265 ret = btrfs_get_dev_args_from_path(fs_info, &args, vol_args->name);
3266 if (ret)
3267 goto out;
3268 }
3269
3270 ret = mnt_want_write_file(file);
3271 if (ret)
3272 goto out;
67ae34b6
DS
3273
3274 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
3275 cancel);
3276 if (ret == 0) {
1a15eb72 3277 ret = btrfs_rm_device(fs_info, &args, &bdev, &mode);
67ae34b6
DS
3278 if (!ret)
3279 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
3280 btrfs_exclop_finish(fs_info);
3281 }
183860f6 3282
4ac20c70 3283 mnt_drop_write_file(file);
3fa421de
JB
3284 if (bdev)
3285 blkdev_put(bdev, mode);
1a15eb72
JB
3286out:
3287 btrfs_put_dev_args_from_path(&args);
3288 kfree(vol_args);
f46b5a66
CH
3289 return ret;
3290}
3291
2ff7e61e
JM
3292static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
3293 void __user *arg)
475f6387 3294{
027ed2f0 3295 struct btrfs_ioctl_fs_info_args *fi_args;
475f6387 3296 struct btrfs_device *device;
0b246afa 3297 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
137c5418 3298 u64 flags_in;
027ed2f0 3299 int ret = 0;
475f6387 3300
137c5418
JT
3301 fi_args = memdup_user(arg, sizeof(*fi_args));
3302 if (IS_ERR(fi_args))
3303 return PTR_ERR(fi_args);
3304
3305 flags_in = fi_args->flags;
3306 memset(fi_args, 0, sizeof(*fi_args));
027ed2f0 3307
d03262c7 3308 rcu_read_lock();
027ed2f0 3309 fi_args->num_devices = fs_devices->num_devices;
475f6387 3310
d03262c7 3311 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
027ed2f0
LZ
3312 if (device->devid > fi_args->max_id)
3313 fi_args->max_id = device->devid;
475f6387 3314 }
d03262c7 3315 rcu_read_unlock();
475f6387 3316
de37aa51 3317 memcpy(&fi_args->fsid, fs_devices->fsid, sizeof(fi_args->fsid));
bea7eafd
OS
3318 fi_args->nodesize = fs_info->nodesize;
3319 fi_args->sectorsize = fs_info->sectorsize;
3320 fi_args->clone_alignment = fs_info->sectorsize;
80a773fb 3321
137c5418
JT
3322 if (flags_in & BTRFS_FS_INFO_FLAG_CSUM_INFO) {
3323 fi_args->csum_type = btrfs_super_csum_type(fs_info->super_copy);
3324 fi_args->csum_size = btrfs_super_csum_size(fs_info->super_copy);
3325 fi_args->flags |= BTRFS_FS_INFO_FLAG_CSUM_INFO;
3326 }
3327
0fb408a5
JT
3328 if (flags_in & BTRFS_FS_INFO_FLAG_GENERATION) {
3329 fi_args->generation = fs_info->generation;
3330 fi_args->flags |= BTRFS_FS_INFO_FLAG_GENERATION;
3331 }
3332
49bac897
JT
3333 if (flags_in & BTRFS_FS_INFO_FLAG_METADATA_UUID) {
3334 memcpy(&fi_args->metadata_uuid, fs_devices->metadata_uuid,
3335 sizeof(fi_args->metadata_uuid));
3336 fi_args->flags |= BTRFS_FS_INFO_FLAG_METADATA_UUID;
3337 }
3338
027ed2f0
LZ
3339 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
3340 ret = -EFAULT;
475f6387 3341
027ed2f0
LZ
3342 kfree(fi_args);
3343 return ret;
475f6387
JS
3344}
3345
2ff7e61e
JM
3346static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
3347 void __user *arg)
475f6387 3348{
562d7b15 3349 BTRFS_DEV_LOOKUP_ARGS(args);
475f6387
JS
3350 struct btrfs_ioctl_dev_info_args *di_args;
3351 struct btrfs_device *dev;
475f6387 3352 int ret = 0;
475f6387 3353
475f6387
JS
3354 di_args = memdup_user(arg, sizeof(*di_args));
3355 if (IS_ERR(di_args))
3356 return PTR_ERR(di_args);
3357
562d7b15 3358 args.devid = di_args->devid;
dd5f9615 3359 if (!btrfs_is_empty_uuid(di_args->uuid))
562d7b15 3360 args.uuid = di_args->uuid;
475f6387 3361
c5593ca3 3362 rcu_read_lock();
562d7b15 3363 dev = btrfs_find_device(fs_info->fs_devices, &args);
475f6387
JS
3364 if (!dev) {
3365 ret = -ENODEV;
3366 goto out;
3367 }
3368
3369 di_args->devid = dev->devid;
7cc8e58d
MX
3370 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
3371 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
475f6387 3372 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
a27202fb 3373 if (dev->name) {
672d5990
MT
3374 strncpy(di_args->path, rcu_str_deref(dev->name),
3375 sizeof(di_args->path) - 1);
a27202fb
JM
3376 di_args->path[sizeof(di_args->path) - 1] = 0;
3377 } else {
99ba55ad 3378 di_args->path[0] = '\0';
a27202fb 3379 }
475f6387
JS
3380
3381out:
c5593ca3 3382 rcu_read_unlock();
475f6387
JS
3383 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
3384 ret = -EFAULT;
3385
3386 kfree(di_args);
3387 return ret;
3388}
3389
6ef5ed0d
JB
3390static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3391{
496ad9aa 3392 struct inode *inode = file_inode(file);
0b246afa 3393 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
6ef5ed0d
JB
3394 struct btrfs_root *root = BTRFS_I(inode)->root;
3395 struct btrfs_root *new_root;
3396 struct btrfs_dir_item *di;
3397 struct btrfs_trans_handle *trans;
2a2b5d62 3398 struct btrfs_path *path = NULL;
6ef5ed0d 3399 struct btrfs_disk_key disk_key;
6ef5ed0d
JB
3400 u64 objectid = 0;
3401 u64 dir_id;
3c04ce01 3402 int ret;
6ef5ed0d
JB
3403
3404 if (!capable(CAP_SYS_ADMIN))
3405 return -EPERM;
3406
3c04ce01
MX
3407 ret = mnt_want_write_file(file);
3408 if (ret)
3409 return ret;
3410
3411 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3412 ret = -EFAULT;
3413 goto out;
3414 }
6ef5ed0d
JB
3415
3416 if (!objectid)
1cecf579 3417 objectid = BTRFS_FS_TREE_OBJECTID;
6ef5ed0d 3418
56e9357a 3419 new_root = btrfs_get_fs_root(fs_info, objectid, true);
3c04ce01
MX
3420 if (IS_ERR(new_root)) {
3421 ret = PTR_ERR(new_root);
3422 goto out;
3423 }
2a2b5d62
JB
3424 if (!is_fstree(new_root->root_key.objectid)) {
3425 ret = -ENOENT;
3426 goto out_free;
3427 }
6ef5ed0d 3428
6ef5ed0d 3429 path = btrfs_alloc_path();
3c04ce01
MX
3430 if (!path) {
3431 ret = -ENOMEM;
2a2b5d62 3432 goto out_free;
3c04ce01 3433 }
6ef5ed0d
JB
3434
3435 trans = btrfs_start_transaction(root, 1);
98d5dc13 3436 if (IS_ERR(trans)) {
3c04ce01 3437 ret = PTR_ERR(trans);
2a2b5d62 3438 goto out_free;
6ef5ed0d
JB
3439 }
3440
0b246afa
JM
3441 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3442 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
6ef5ed0d 3443 dir_id, "default", 7, 1);
cf1e99a4 3444 if (IS_ERR_OR_NULL(di)) {
2a2b5d62 3445 btrfs_release_path(path);
3a45bb20 3446 btrfs_end_transaction(trans);
0b246afa 3447 btrfs_err(fs_info,
5d163e0e 3448 "Umm, you don't have the default diritem, this isn't going to work");
3c04ce01 3449 ret = -ENOENT;
2a2b5d62 3450 goto out_free;
6ef5ed0d
JB
3451 }
3452
3453 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3454 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3455 btrfs_mark_buffer_dirty(path->nodes[0]);
2a2b5d62 3456 btrfs_release_path(path);
6ef5ed0d 3457
0b246afa 3458 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
3a45bb20 3459 btrfs_end_transaction(trans);
2a2b5d62 3460out_free:
00246528 3461 btrfs_put_root(new_root);
2a2b5d62 3462 btrfs_free_path(path);
3c04ce01
MX
3463out:
3464 mnt_drop_write_file(file);
3465 return ret;
6ef5ed0d
JB
3466}
3467
c065f5b1
SY
3468static void get_block_group_info(struct list_head *groups_list,
3469 struct btrfs_ioctl_space_info *space)
bf5fc093 3470{
32da5386 3471 struct btrfs_block_group *block_group;
bf5fc093
JB
3472
3473 space->total_bytes = 0;
3474 space->used_bytes = 0;
3475 space->flags = 0;
3476 list_for_each_entry(block_group, groups_list, list) {
3477 space->flags = block_group->flags;
b3470b5d 3478 space->total_bytes += block_group->length;
bf38be65 3479 space->used_bytes += block_group->used;
bf5fc093
JB
3480 }
3481}
3482
2ff7e61e
JM
3483static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
3484 void __user *arg)
1406e432
JB
3485{
3486 struct btrfs_ioctl_space_args space_args;
3487 struct btrfs_ioctl_space_info space;
3488 struct btrfs_ioctl_space_info *dest;
7fde62bf 3489 struct btrfs_ioctl_space_info *dest_orig;
13f2696f 3490 struct btrfs_ioctl_space_info __user *user_dest;
1406e432 3491 struct btrfs_space_info *info;
315d8e98
CIK
3492 static const u64 types[] = {
3493 BTRFS_BLOCK_GROUP_DATA,
3494 BTRFS_BLOCK_GROUP_SYSTEM,
3495 BTRFS_BLOCK_GROUP_METADATA,
3496 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
3497 };
bf5fc093 3498 int num_types = 4;
7fde62bf 3499 int alloc_size;
1406e432 3500 int ret = 0;
51788b1b 3501 u64 slot_count = 0;
bf5fc093 3502 int i, c;
1406e432
JB
3503
3504 if (copy_from_user(&space_args,
3505 (struct btrfs_ioctl_space_args __user *)arg,
3506 sizeof(space_args)))
3507 return -EFAULT;
3508
bf5fc093
JB
3509 for (i = 0; i < num_types; i++) {
3510 struct btrfs_space_info *tmp;
3511
3512 info = NULL;
72804905 3513 list_for_each_entry(tmp, &fs_info->space_info, list) {
bf5fc093
JB
3514 if (tmp->flags == types[i]) {
3515 info = tmp;
3516 break;
3517 }
3518 }
bf5fc093
JB
3519
3520 if (!info)
3521 continue;
3522
3523 down_read(&info->groups_sem);
3524 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3525 if (!list_empty(&info->block_groups[c]))
3526 slot_count++;
3527 }
3528 up_read(&info->groups_sem);
3529 }
7fde62bf 3530
36523e95
DS
3531 /*
3532 * Global block reserve, exported as a space_info
3533 */
3534 slot_count++;
3535
7fde62bf
CM
3536 /* space_slots == 0 means they are asking for a count */
3537 if (space_args.space_slots == 0) {
3538 space_args.total_spaces = slot_count;
3539 goto out;
3540 }
bf5fc093 3541
51788b1b 3542 slot_count = min_t(u64, space_args.space_slots, slot_count);
bf5fc093 3543
7fde62bf 3544 alloc_size = sizeof(*dest) * slot_count;
bf5fc093 3545
7fde62bf
CM
3546 /* we generally have at most 6 or so space infos, one for each raid
3547 * level. So, a whole page should be more than enough for everyone
3548 */
09cbfeaf 3549 if (alloc_size > PAGE_SIZE)
7fde62bf
CM
3550 return -ENOMEM;
3551
1406e432 3552 space_args.total_spaces = 0;
8d2db785 3553 dest = kmalloc(alloc_size, GFP_KERNEL);
7fde62bf
CM
3554 if (!dest)
3555 return -ENOMEM;
3556 dest_orig = dest;
1406e432 3557
7fde62bf 3558 /* now we have a buffer to copy into */
bf5fc093
JB
3559 for (i = 0; i < num_types; i++) {
3560 struct btrfs_space_info *tmp;
3561
51788b1b
DR
3562 if (!slot_count)
3563 break;
3564
bf5fc093 3565 info = NULL;
72804905 3566 list_for_each_entry(tmp, &fs_info->space_info, list) {
bf5fc093
JB
3567 if (tmp->flags == types[i]) {
3568 info = tmp;
3569 break;
3570 }
3571 }
7fde62bf 3572
bf5fc093
JB
3573 if (!info)
3574 continue;
3575 down_read(&info->groups_sem);
3576 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3577 if (!list_empty(&info->block_groups[c])) {
c065f5b1
SY
3578 get_block_group_info(&info->block_groups[c],
3579 &space);
bf5fc093
JB
3580 memcpy(dest, &space, sizeof(space));
3581 dest++;
3582 space_args.total_spaces++;
51788b1b 3583 slot_count--;
bf5fc093 3584 }
51788b1b
DR
3585 if (!slot_count)
3586 break;
bf5fc093
JB
3587 }
3588 up_read(&info->groups_sem);
1406e432 3589 }
1406e432 3590
36523e95
DS
3591 /*
3592 * Add global block reserve
3593 */
3594 if (slot_count) {
0b246afa 3595 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
36523e95
DS
3596
3597 spin_lock(&block_rsv->lock);
3598 space.total_bytes = block_rsv->size;
3599 space.used_bytes = block_rsv->size - block_rsv->reserved;
3600 spin_unlock(&block_rsv->lock);
3601 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3602 memcpy(dest, &space, sizeof(space));
3603 space_args.total_spaces++;
3604 }
3605
2eec6c81 3606 user_dest = (struct btrfs_ioctl_space_info __user *)
7fde62bf
CM
3607 (arg + sizeof(struct btrfs_ioctl_space_args));
3608
3609 if (copy_to_user(user_dest, dest_orig, alloc_size))
3610 ret = -EFAULT;
3611
3612 kfree(dest_orig);
3613out:
3614 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
1406e432
JB
3615 ret = -EFAULT;
3616
3617 return ret;
3618}
3619
9a8c28be
MX
3620static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3621 void __user *argp)
46204592 3622{
46204592
SW
3623 struct btrfs_trans_handle *trans;
3624 u64 transid;
3625
d4edf39b 3626 trans = btrfs_attach_transaction_barrier(root);
ff7c1d33
MX
3627 if (IS_ERR(trans)) {
3628 if (PTR_ERR(trans) != -ENOENT)
3629 return PTR_ERR(trans);
3630
3631 /* No running transaction, don't bother */
3632 transid = root->fs_info->last_trans_committed;
3633 goto out;
3634 }
46204592 3635 transid = trans->transid;
fdfbf020 3636 btrfs_commit_transaction_async(trans);
ff7c1d33 3637out:
46204592
SW
3638 if (argp)
3639 if (copy_to_user(argp, &transid, sizeof(transid)))
3640 return -EFAULT;
3641 return 0;
3642}
3643
2ff7e61e 3644static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
9a8c28be 3645 void __user *argp)
46204592 3646{
46204592
SW
3647 u64 transid;
3648
3649 if (argp) {
3650 if (copy_from_user(&transid, argp, sizeof(transid)))
3651 return -EFAULT;
3652 } else {
3653 transid = 0; /* current trans */
3654 }
2ff7e61e 3655 return btrfs_wait_for_commit(fs_info, transid);
46204592
SW
3656}
3657
b8e95489 3658static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
475f6387 3659{
0b246afa 3660 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
475f6387 3661 struct btrfs_ioctl_scrub_args *sa;
b8e95489 3662 int ret;
475f6387
JS
3663
3664 if (!capable(CAP_SYS_ADMIN))
3665 return -EPERM;
3666
3667 sa = memdup_user(arg, sizeof(*sa));
3668 if (IS_ERR(sa))
3669 return PTR_ERR(sa);
3670
b8e95489
MX
3671 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3672 ret = mnt_want_write_file(file);
3673 if (ret)
3674 goto out;
3675 }
3676
0b246afa 3677 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
63a212ab
SB
3678 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3679 0);
475f6387 3680
5afe6ce7
FM
3681 /*
3682 * Copy scrub args to user space even if btrfs_scrub_dev() returned an
3683 * error. This is important as it allows user space to know how much
3684 * progress scrub has done. For example, if scrub is canceled we get
3685 * -ECANCELED from btrfs_scrub_dev() and return that error back to user
3686 * space. Later user space can inspect the progress from the structure
3687 * btrfs_ioctl_scrub_args and resume scrub from where it left off
3688 * previously (btrfs-progs does this).
3689 * If we fail to copy the btrfs_ioctl_scrub_args structure to user space
3690 * then return -EFAULT to signal the structure was not copied or it may
3691 * be corrupt and unreliable due to a partial copy.
3692 */
3693 if (copy_to_user(arg, sa, sizeof(*sa)))
475f6387
JS
3694 ret = -EFAULT;
3695
b8e95489
MX
3696 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3697 mnt_drop_write_file(file);
3698out:
475f6387
JS
3699 kfree(sa);
3700 return ret;
3701}
3702
2ff7e61e 3703static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
475f6387
JS
3704{
3705 if (!capable(CAP_SYS_ADMIN))
3706 return -EPERM;
3707
2ff7e61e 3708 return btrfs_scrub_cancel(fs_info);
475f6387
JS
3709}
3710
2ff7e61e 3711static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
475f6387
JS
3712 void __user *arg)
3713{
3714 struct btrfs_ioctl_scrub_args *sa;
3715 int ret;
3716
3717 if (!capable(CAP_SYS_ADMIN))
3718 return -EPERM;
3719
3720 sa = memdup_user(arg, sizeof(*sa));
3721 if (IS_ERR(sa))
3722 return PTR_ERR(sa);
3723
2ff7e61e 3724 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
475f6387 3725
4fa99b00 3726 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
475f6387
JS
3727 ret = -EFAULT;
3728
3729 kfree(sa);
3730 return ret;
3731}
3732
2ff7e61e 3733static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
b27f7c0c 3734 void __user *arg)
c11d2c23
SB
3735{
3736 struct btrfs_ioctl_get_dev_stats *sa;
3737 int ret;
3738
c11d2c23
SB
3739 sa = memdup_user(arg, sizeof(*sa));
3740 if (IS_ERR(sa))
3741 return PTR_ERR(sa);
3742
b27f7c0c
DS
3743 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3744 kfree(sa);
3745 return -EPERM;
3746 }
3747
2ff7e61e 3748 ret = btrfs_get_dev_stats(fs_info, sa);
c11d2c23 3749
eee99577 3750 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
c11d2c23
SB
3751 ret = -EFAULT;
3752
3753 kfree(sa);
3754 return ret;
3755}
3756
2ff7e61e
JM
3757static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
3758 void __user *arg)
3f6bcfbd
SB
3759{
3760 struct btrfs_ioctl_dev_replace_args *p;
3761 int ret;
3762
3763 if (!capable(CAP_SYS_ADMIN))
3764 return -EPERM;
3765
3766 p = memdup_user(arg, sizeof(*p));
3767 if (IS_ERR(p))
3768 return PTR_ERR(p);
3769
3770 switch (p->cmd) {
3771 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
bc98a42c 3772 if (sb_rdonly(fs_info->sb)) {
adfa97cb
ID
3773 ret = -EROFS;
3774 goto out;
3775 }
c3e1f96c 3776 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REPLACE)) {
e57138b3 3777 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3f6bcfbd 3778 } else {
2ff7e61e 3779 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
c3e1f96c 3780 btrfs_exclop_finish(fs_info);
3f6bcfbd
SB
3781 }
3782 break;
3783 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
0b246afa 3784 btrfs_dev_replace_status(fs_info, p);
3f6bcfbd
SB
3785 ret = 0;
3786 break;
3787 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
17d202b9 3788 p->result = btrfs_dev_replace_cancel(fs_info);
97282031 3789 ret = 0;
3f6bcfbd
SB
3790 break;
3791 default:
3792 ret = -EINVAL;
3793 break;
3794 }
3795
d3a53286 3796 if ((ret == 0 || ret == -ECANCELED) && copy_to_user(arg, p, sizeof(*p)))
3f6bcfbd 3797 ret = -EFAULT;
adfa97cb 3798out:
3f6bcfbd
SB
3799 kfree(p);
3800 return ret;
3801}
3802
d7728c96
JS
3803static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3804{
3805 int ret = 0;
3806 int i;
740c3d22 3807 u64 rel_ptr;
d7728c96 3808 int size;
806468f8 3809 struct btrfs_ioctl_ino_path_args *ipa = NULL;
d7728c96
JS
3810 struct inode_fs_paths *ipath = NULL;
3811 struct btrfs_path *path;
3812
82b22ac8 3813 if (!capable(CAP_DAC_READ_SEARCH))
d7728c96
JS
3814 return -EPERM;
3815
3816 path = btrfs_alloc_path();
3817 if (!path) {
3818 ret = -ENOMEM;
3819 goto out;
3820 }
3821
3822 ipa = memdup_user(arg, sizeof(*ipa));
3823 if (IS_ERR(ipa)) {
3824 ret = PTR_ERR(ipa);
3825 ipa = NULL;
3826 goto out;
3827 }
3828
3829 size = min_t(u32, ipa->size, 4096);
3830 ipath = init_ipath(size, root, path);
3831 if (IS_ERR(ipath)) {
3832 ret = PTR_ERR(ipath);
3833 ipath = NULL;
3834 goto out;
3835 }
3836
3837 ret = paths_from_inode(ipa->inum, ipath);
3838 if (ret < 0)
3839 goto out;
3840
3841 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
745c4d8e
JM
3842 rel_ptr = ipath->fspath->val[i] -
3843 (u64)(unsigned long)ipath->fspath->val;
740c3d22 3844 ipath->fspath->val[i] = rel_ptr;
d7728c96
JS
3845 }
3846
718dc5fa
OS
3847 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
3848 ipath->fspath, size);
d7728c96
JS
3849 if (ret) {
3850 ret = -EFAULT;
3851 goto out;
3852 }
3853
3854out:
3855 btrfs_free_path(path);
3856 free_ipath(ipath);
3857 kfree(ipa);
3858
3859 return ret;
3860}
3861
3862static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3863{
3864 struct btrfs_data_container *inodes = ctx;
3865 const size_t c = 3 * sizeof(u64);
3866
3867 if (inodes->bytes_left >= c) {
3868 inodes->bytes_left -= c;
3869 inodes->val[inodes->elem_cnt] = inum;
3870 inodes->val[inodes->elem_cnt + 1] = offset;
3871 inodes->val[inodes->elem_cnt + 2] = root;
3872 inodes->elem_cnt += 3;
3873 } else {
3874 inodes->bytes_missing += c - inodes->bytes_left;
3875 inodes->bytes_left = 0;
3876 inodes->elem_missed += 3;
3877 }
3878
3879 return 0;
3880}
3881
2ff7e61e 3882static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
d24a67b2 3883 void __user *arg, int version)
d7728c96
JS
3884{
3885 int ret = 0;
3886 int size;
d7728c96
JS
3887 struct btrfs_ioctl_logical_ino_args *loi;
3888 struct btrfs_data_container *inodes = NULL;
3889 struct btrfs_path *path = NULL;
d24a67b2 3890 bool ignore_offset;
d7728c96
JS
3891
3892 if (!capable(CAP_SYS_ADMIN))
3893 return -EPERM;
3894
3895 loi = memdup_user(arg, sizeof(*loi));
7b9ea627
SV
3896 if (IS_ERR(loi))
3897 return PTR_ERR(loi);
d7728c96 3898
d24a67b2
ZB
3899 if (version == 1) {
3900 ignore_offset = false;
b115e3bc 3901 size = min_t(u32, loi->size, SZ_64K);
d24a67b2
ZB
3902 } else {
3903 /* All reserved bits must be 0 for now */
3904 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
3905 ret = -EINVAL;
3906 goto out_loi;
3907 }
3908 /* Only accept flags we have defined so far */
3909 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
3910 ret = -EINVAL;
3911 goto out_loi;
3912 }
3913 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
b115e3bc 3914 size = min_t(u32, loi->size, SZ_16M);
d24a67b2
ZB
3915 }
3916
d7728c96
JS
3917 path = btrfs_alloc_path();
3918 if (!path) {
3919 ret = -ENOMEM;
3920 goto out;
3921 }
3922
d7728c96
JS
3923 inodes = init_data_container(size);
3924 if (IS_ERR(inodes)) {
3925 ret = PTR_ERR(inodes);
3926 inodes = NULL;
3927 goto out;
3928 }
3929
2ff7e61e 3930 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
d24a67b2 3931 build_ino_list, inodes, ignore_offset);
df031f07 3932 if (ret == -EINVAL)
d7728c96
JS
3933 ret = -ENOENT;
3934 if (ret < 0)
3935 goto out;
3936
718dc5fa
OS
3937 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
3938 size);
d7728c96
JS
3939 if (ret)
3940 ret = -EFAULT;
3941
3942out:
3943 btrfs_free_path(path);
f54de068 3944 kvfree(inodes);
d24a67b2 3945out_loi:
d7728c96
JS
3946 kfree(loi);
3947
3948 return ret;
3949}
3950
008ef096 3951void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
c9e9f97b
ID
3952 struct btrfs_ioctl_balance_args *bargs)
3953{
3954 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3955
3956 bargs->flags = bctl->flags;
3957
3009a62f 3958 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags))
837d5b6e
ID
3959 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3960 if (atomic_read(&fs_info->balance_pause_req))
3961 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
a7e99c69
ID
3962 if (atomic_read(&fs_info->balance_cancel_req))
3963 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
837d5b6e 3964
c9e9f97b
ID
3965 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3966 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3967 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
19a39dce 3968
008ef096
DS
3969 spin_lock(&fs_info->balance_lock);
3970 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3971 spin_unlock(&fs_info->balance_lock);
c9e9f97b
ID
3972}
3973
9ba1f6e4 3974static long btrfs_ioctl_balance(struct file *file, void __user *arg)
c9e9f97b 3975{
496ad9aa 3976 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
c9e9f97b
ID
3977 struct btrfs_fs_info *fs_info = root->fs_info;
3978 struct btrfs_ioctl_balance_args *bargs;
3979 struct btrfs_balance_control *bctl;
ed0fb78f 3980 bool need_unlock; /* for mut. excl. ops lock */
c9e9f97b
ID
3981 int ret;
3982
6c405b24
NB
3983 if (!arg)
3984 btrfs_warn(fs_info,
3985 "IOC_BALANCE ioctl (v1) is deprecated and will be removed in kernel 5.18");
3986
c9e9f97b
ID
3987 if (!capable(CAP_SYS_ADMIN))
3988 return -EPERM;
3989
e54bfa31 3990 ret = mnt_want_write_file(file);
9ba1f6e4
LB
3991 if (ret)
3992 return ret;
3993
ed0fb78f 3994again:
c3e1f96c 3995 if (btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) {
ed0fb78f
ID
3996 mutex_lock(&fs_info->balance_mutex);
3997 need_unlock = true;
3998 goto locked;
3999 }
4000
4001 /*
01327610 4002 * mut. excl. ops lock is locked. Three possibilities:
ed0fb78f
ID
4003 * (1) some other op is running
4004 * (2) balance is running
4005 * (3) balance is paused -- special case (think resume)
4006 */
c9e9f97b 4007 mutex_lock(&fs_info->balance_mutex);
ed0fb78f
ID
4008 if (fs_info->balance_ctl) {
4009 /* this is either (2) or (3) */
3009a62f 4010 if (!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
ed0fb78f 4011 mutex_unlock(&fs_info->balance_mutex);
dccdb07b
DS
4012 /*
4013 * Lock released to allow other waiters to continue,
4014 * we'll reexamine the status again.
4015 */
ed0fb78f
ID
4016 mutex_lock(&fs_info->balance_mutex);
4017
4018 if (fs_info->balance_ctl &&
3009a62f 4019 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
ed0fb78f
ID
4020 /* this is (3) */
4021 need_unlock = false;
4022 goto locked;
4023 }
4024
4025 mutex_unlock(&fs_info->balance_mutex);
ed0fb78f
ID
4026 goto again;
4027 } else {
4028 /* this is (2) */
4029 mutex_unlock(&fs_info->balance_mutex);
4030 ret = -EINPROGRESS;
4031 goto out;
4032 }
4033 } else {
4034 /* this is (1) */
4035 mutex_unlock(&fs_info->balance_mutex);
e57138b3 4036 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
ed0fb78f
ID
4037 goto out;
4038 }
4039
4040locked:
c9e9f97b
ID
4041
4042 if (arg) {
4043 bargs = memdup_user(arg, sizeof(*bargs));
4044 if (IS_ERR(bargs)) {
4045 ret = PTR_ERR(bargs);
ed0fb78f 4046 goto out_unlock;
c9e9f97b 4047 }
de322263
ID
4048
4049 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4050 if (!fs_info->balance_ctl) {
4051 ret = -ENOTCONN;
4052 goto out_bargs;
4053 }
4054
4055 bctl = fs_info->balance_ctl;
4056 spin_lock(&fs_info->balance_lock);
4057 bctl->flags |= BTRFS_BALANCE_RESUME;
4058 spin_unlock(&fs_info->balance_lock);
4059
4060 goto do_balance;
4061 }
c9e9f97b
ID
4062 } else {
4063 bargs = NULL;
4064 }
4065
ed0fb78f 4066 if (fs_info->balance_ctl) {
837d5b6e
ID
4067 ret = -EINPROGRESS;
4068 goto out_bargs;
4069 }
4070
8d2db785 4071 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
c9e9f97b
ID
4072 if (!bctl) {
4073 ret = -ENOMEM;
4074 goto out_bargs;
4075 }
4076
c9e9f97b
ID
4077 if (arg) {
4078 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4079 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4080 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4081
4082 bctl->flags = bargs->flags;
f43ffb60
ID
4083 } else {
4084 /* balance everything - no filters */
4085 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
c9e9f97b
ID
4086 }
4087
8eb93459
DS
4088 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4089 ret = -EINVAL;
0f89abf5 4090 goto out_bctl;
8eb93459
DS
4091 }
4092
de322263 4093do_balance:
c9e9f97b 4094 /*
c3e1f96c
GR
4095 * Ownership of bctl and exclusive operation goes to btrfs_balance.
4096 * bctl is freed in reset_balance_state, or, if restriper was paused
4097 * all the way until unmount, in free_fs_info. The flag should be
4098 * cleared after reset_balance_state.
c9e9f97b 4099 */
ed0fb78f
ID
4100 need_unlock = false;
4101
6fcf6e2b 4102 ret = btrfs_balance(fs_info, bctl, bargs);
0f89abf5 4103 bctl = NULL;
ed0fb78f 4104
d00c2d9c 4105 if ((ret == 0 || ret == -ECANCELED) && arg) {
c9e9f97b
ID
4106 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4107 ret = -EFAULT;
4108 }
4109
0f89abf5
CE
4110out_bctl:
4111 kfree(bctl);
c9e9f97b
ID
4112out_bargs:
4113 kfree(bargs);
ed0fb78f 4114out_unlock:
c9e9f97b 4115 mutex_unlock(&fs_info->balance_mutex);
ed0fb78f 4116 if (need_unlock)
c3e1f96c 4117 btrfs_exclop_finish(fs_info);
ed0fb78f 4118out:
e54bfa31 4119 mnt_drop_write_file(file);
c9e9f97b
ID
4120 return ret;
4121}
4122
2ff7e61e 4123static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
837d5b6e
ID
4124{
4125 if (!capable(CAP_SYS_ADMIN))
4126 return -EPERM;
4127
4128 switch (cmd) {
4129 case BTRFS_BALANCE_CTL_PAUSE:
0b246afa 4130 return btrfs_pause_balance(fs_info);
a7e99c69 4131 case BTRFS_BALANCE_CTL_CANCEL:
0b246afa 4132 return btrfs_cancel_balance(fs_info);
837d5b6e
ID
4133 }
4134
4135 return -EINVAL;
4136}
4137
2ff7e61e 4138static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
19a39dce
ID
4139 void __user *arg)
4140{
19a39dce
ID
4141 struct btrfs_ioctl_balance_args *bargs;
4142 int ret = 0;
4143
4144 if (!capable(CAP_SYS_ADMIN))
4145 return -EPERM;
4146
4147 mutex_lock(&fs_info->balance_mutex);
4148 if (!fs_info->balance_ctl) {
4149 ret = -ENOTCONN;
4150 goto out;
4151 }
4152
8d2db785 4153 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
19a39dce
ID
4154 if (!bargs) {
4155 ret = -ENOMEM;
4156 goto out;
4157 }
4158
008ef096 4159 btrfs_update_ioctl_balance_args(fs_info, bargs);
19a39dce
ID
4160
4161 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4162 ret = -EFAULT;
4163
4164 kfree(bargs);
4165out:
4166 mutex_unlock(&fs_info->balance_mutex);
4167 return ret;
4168}
4169
905b0dda 4170static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
5d13a37b 4171{
0b246afa
JM
4172 struct inode *inode = file_inode(file);
4173 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5d13a37b 4174 struct btrfs_ioctl_quota_ctl_args *sa;
5d13a37b 4175 int ret;
5d13a37b
AJ
4176
4177 if (!capable(CAP_SYS_ADMIN))
4178 return -EPERM;
4179
905b0dda
MX
4180 ret = mnt_want_write_file(file);
4181 if (ret)
4182 return ret;
5d13a37b
AJ
4183
4184 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4185 if (IS_ERR(sa)) {
4186 ret = PTR_ERR(sa);
4187 goto drop_write;
4188 }
5d13a37b 4189
0b246afa 4190 down_write(&fs_info->subvol_sem);
5d13a37b
AJ
4191
4192 switch (sa->cmd) {
4193 case BTRFS_QUOTA_CTL_ENABLE:
340f1aa2 4194 ret = btrfs_quota_enable(fs_info);
5d13a37b
AJ
4195 break;
4196 case BTRFS_QUOTA_CTL_DISABLE:
340f1aa2 4197 ret = btrfs_quota_disable(fs_info);
5d13a37b 4198 break;
5d13a37b
AJ
4199 default:
4200 ret = -EINVAL;
4201 break;
4202 }
4203
5d13a37b 4204 kfree(sa);
0b246afa 4205 up_write(&fs_info->subvol_sem);
905b0dda
MX
4206drop_write:
4207 mnt_drop_write_file(file);
5d13a37b
AJ
4208 return ret;
4209}
4210
905b0dda 4211static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
5d13a37b 4212{
0b246afa
JM
4213 struct inode *inode = file_inode(file);
4214 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4215 struct btrfs_root *root = BTRFS_I(inode)->root;
5d13a37b
AJ
4216 struct btrfs_ioctl_qgroup_assign_args *sa;
4217 struct btrfs_trans_handle *trans;
4218 int ret;
4219 int err;
4220
4221 if (!capable(CAP_SYS_ADMIN))
4222 return -EPERM;
4223
905b0dda
MX
4224 ret = mnt_want_write_file(file);
4225 if (ret)
4226 return ret;
5d13a37b
AJ
4227
4228 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4229 if (IS_ERR(sa)) {
4230 ret = PTR_ERR(sa);
4231 goto drop_write;
4232 }
5d13a37b
AJ
4233
4234 trans = btrfs_join_transaction(root);
4235 if (IS_ERR(trans)) {
4236 ret = PTR_ERR(trans);
4237 goto out;
4238 }
4239
5d13a37b 4240 if (sa->assign) {
9f8a6ce6 4241 ret = btrfs_add_qgroup_relation(trans, sa->src, sa->dst);
5d13a37b 4242 } else {
39616c27 4243 ret = btrfs_del_qgroup_relation(trans, sa->src, sa->dst);
5d13a37b
AJ
4244 }
4245
e082f563 4246 /* update qgroup status and info */
280f8bd2 4247 err = btrfs_run_qgroups(trans);
e082f563 4248 if (err < 0)
0b246afa
JM
4249 btrfs_handle_fs_error(fs_info, err,
4250 "failed to update qgroup status and info");
3a45bb20 4251 err = btrfs_end_transaction(trans);
5d13a37b
AJ
4252 if (err && !ret)
4253 ret = err;
4254
4255out:
4256 kfree(sa);
905b0dda
MX
4257drop_write:
4258 mnt_drop_write_file(file);
5d13a37b
AJ
4259 return ret;
4260}
4261
905b0dda 4262static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
5d13a37b 4263{
0b246afa 4264 struct inode *inode = file_inode(file);
0b246afa 4265 struct btrfs_root *root = BTRFS_I(inode)->root;
5d13a37b
AJ
4266 struct btrfs_ioctl_qgroup_create_args *sa;
4267 struct btrfs_trans_handle *trans;
4268 int ret;
4269 int err;
4270
4271 if (!capable(CAP_SYS_ADMIN))
4272 return -EPERM;
4273
905b0dda
MX
4274 ret = mnt_want_write_file(file);
4275 if (ret)
4276 return ret;
5d13a37b
AJ
4277
4278 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4279 if (IS_ERR(sa)) {
4280 ret = PTR_ERR(sa);
4281 goto drop_write;
4282 }
5d13a37b 4283
d86e56cf
MX
4284 if (!sa->qgroupid) {
4285 ret = -EINVAL;
4286 goto out;
4287 }
4288
5d13a37b
AJ
4289 trans = btrfs_join_transaction(root);
4290 if (IS_ERR(trans)) {
4291 ret = PTR_ERR(trans);
4292 goto out;
4293 }
4294
5d13a37b 4295 if (sa->create) {
49a05ecd 4296 ret = btrfs_create_qgroup(trans, sa->qgroupid);
5d13a37b 4297 } else {
3efbee1d 4298 ret = btrfs_remove_qgroup(trans, sa->qgroupid);
5d13a37b
AJ
4299 }
4300
3a45bb20 4301 err = btrfs_end_transaction(trans);
5d13a37b
AJ
4302 if (err && !ret)
4303 ret = err;
4304
4305out:
4306 kfree(sa);
905b0dda
MX
4307drop_write:
4308 mnt_drop_write_file(file);
5d13a37b
AJ
4309 return ret;
4310}
4311
905b0dda 4312static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
5d13a37b 4313{
0b246afa 4314 struct inode *inode = file_inode(file);
0b246afa 4315 struct btrfs_root *root = BTRFS_I(inode)->root;
5d13a37b
AJ
4316 struct btrfs_ioctl_qgroup_limit_args *sa;
4317 struct btrfs_trans_handle *trans;
4318 int ret;
4319 int err;
4320 u64 qgroupid;
4321
4322 if (!capable(CAP_SYS_ADMIN))
4323 return -EPERM;
4324
905b0dda
MX
4325 ret = mnt_want_write_file(file);
4326 if (ret)
4327 return ret;
5d13a37b
AJ
4328
4329 sa = memdup_user(arg, sizeof(*sa));
905b0dda
MX
4330 if (IS_ERR(sa)) {
4331 ret = PTR_ERR(sa);
4332 goto drop_write;
4333 }
5d13a37b
AJ
4334
4335 trans = btrfs_join_transaction(root);
4336 if (IS_ERR(trans)) {
4337 ret = PTR_ERR(trans);
4338 goto out;
4339 }
4340
4341 qgroupid = sa->qgroupid;
4342 if (!qgroupid) {
4343 /* take the current subvol as qgroup */
4344 qgroupid = root->root_key.objectid;
4345 }
4346
f0042d5e 4347 ret = btrfs_limit_qgroup(trans, qgroupid, &sa->lim);
5d13a37b 4348
3a45bb20 4349 err = btrfs_end_transaction(trans);
5d13a37b
AJ
4350 if (err && !ret)
4351 ret = err;
4352
4353out:
4354 kfree(sa);
905b0dda
MX
4355drop_write:
4356 mnt_drop_write_file(file);
5d13a37b
AJ
4357 return ret;
4358}
4359
2f232036
JS
4360static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4361{
0b246afa
JM
4362 struct inode *inode = file_inode(file);
4363 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
2f232036
JS
4364 struct btrfs_ioctl_quota_rescan_args *qsa;
4365 int ret;
4366
4367 if (!capable(CAP_SYS_ADMIN))
4368 return -EPERM;
4369
4370 ret = mnt_want_write_file(file);
4371 if (ret)
4372 return ret;
4373
4374 qsa = memdup_user(arg, sizeof(*qsa));
4375 if (IS_ERR(qsa)) {
4376 ret = PTR_ERR(qsa);
4377 goto drop_write;
4378 }
4379
4380 if (qsa->flags) {
4381 ret = -EINVAL;
4382 goto out;
4383 }
4384
0b246afa 4385 ret = btrfs_qgroup_rescan(fs_info);
2f232036
JS
4386
4387out:
4388 kfree(qsa);
4389drop_write:
4390 mnt_drop_write_file(file);
4391 return ret;
4392}
4393
b929c1d8
MPS
4394static long btrfs_ioctl_quota_rescan_status(struct btrfs_fs_info *fs_info,
4395 void __user *arg)
2f232036 4396{
0afb603a 4397 struct btrfs_ioctl_quota_rescan_args qsa = {0};
2f232036
JS
4398
4399 if (!capable(CAP_SYS_ADMIN))
4400 return -EPERM;
4401
0b246afa 4402 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
0afb603a
GR
4403 qsa.flags = 1;
4404 qsa.progress = fs_info->qgroup_rescan_progress.objectid;
2f232036
JS
4405 }
4406
0afb603a 4407 if (copy_to_user(arg, &qsa, sizeof(qsa)))
991a3dae 4408 return -EFAULT;
2f232036 4409
991a3dae 4410 return 0;
2f232036
JS
4411}
4412
b929c1d8
MPS
4413static long btrfs_ioctl_quota_rescan_wait(struct btrfs_fs_info *fs_info,
4414 void __user *arg)
57254b6e 4415{
57254b6e
JS
4416 if (!capable(CAP_SYS_ADMIN))
4417 return -EPERM;
4418
0b246afa 4419 return btrfs_qgroup_wait_for_completion(fs_info, true);
57254b6e
JS
4420}
4421
abccd00f 4422static long _btrfs_ioctl_set_received_subvol(struct file *file,
e4fed17a 4423 struct user_namespace *mnt_userns,
abccd00f 4424 struct btrfs_ioctl_received_subvol_args *sa)
8ea05e3a 4425{
496ad9aa 4426 struct inode *inode = file_inode(file);
0b246afa 4427 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
8ea05e3a
AB
4428 struct btrfs_root *root = BTRFS_I(inode)->root;
4429 struct btrfs_root_item *root_item = &root->root_item;
4430 struct btrfs_trans_handle *trans;
95582b00 4431 struct timespec64 ct = current_time(inode);
8ea05e3a 4432 int ret = 0;
dd5f9615 4433 int received_uuid_changed;
8ea05e3a 4434
e4fed17a 4435 if (!inode_owner_or_capable(mnt_userns, inode))
bd60ea0f
DS
4436 return -EPERM;
4437
8ea05e3a
AB
4438 ret = mnt_want_write_file(file);
4439 if (ret < 0)
4440 return ret;
4441
0b246afa 4442 down_write(&fs_info->subvol_sem);
8ea05e3a 4443
4a0cc7ca 4444 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
8ea05e3a
AB
4445 ret = -EINVAL;
4446 goto out;
4447 }
4448
4449 if (btrfs_root_readonly(root)) {
4450 ret = -EROFS;
4451 goto out;
4452 }
4453
dd5f9615
SB
4454 /*
4455 * 1 - root item
4456 * 2 - uuid items (received uuid + subvol uuid)
4457 */
4458 trans = btrfs_start_transaction(root, 3);
8ea05e3a
AB
4459 if (IS_ERR(trans)) {
4460 ret = PTR_ERR(trans);
4461 trans = NULL;
4462 goto out;
4463 }
4464
4465 sa->rtransid = trans->transid;
4466 sa->rtime.sec = ct.tv_sec;
4467 sa->rtime.nsec = ct.tv_nsec;
4468
dd5f9615
SB
4469 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4470 BTRFS_UUID_SIZE);
4471 if (received_uuid_changed &&
d87ff758 4472 !btrfs_is_empty_uuid(root_item->received_uuid)) {
d1957791 4473 ret = btrfs_uuid_tree_remove(trans, root_item->received_uuid,
d87ff758
NB
4474 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4475 root->root_key.objectid);
4476 if (ret && ret != -ENOENT) {
4477 btrfs_abort_transaction(trans, ret);
4478 btrfs_end_transaction(trans);
4479 goto out;
4480 }
4481 }
8ea05e3a
AB
4482 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4483 btrfs_set_root_stransid(root_item, sa->stransid);
4484 btrfs_set_root_rtransid(root_item, sa->rtransid);
3cae210f
QW
4485 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4486 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4487 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4488 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
8ea05e3a 4489
0b246afa 4490 ret = btrfs_update_root(trans, fs_info->tree_root,
8ea05e3a
AB
4491 &root->root_key, &root->root_item);
4492 if (ret < 0) {
3a45bb20 4493 btrfs_end_transaction(trans);
8ea05e3a 4494 goto out;
dd5f9615
SB
4495 }
4496 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
cdb345a8 4497 ret = btrfs_uuid_tree_add(trans, sa->uuid,
dd5f9615
SB
4498 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4499 root->root_key.objectid);
4500 if (ret < 0 && ret != -EEXIST) {
66642832 4501 btrfs_abort_transaction(trans, ret);
efd38150 4502 btrfs_end_transaction(trans);
8ea05e3a 4503 goto out;
dd5f9615
SB
4504 }
4505 }
3a45bb20 4506 ret = btrfs_commit_transaction(trans);
abccd00f 4507out:
0b246afa 4508 up_write(&fs_info->subvol_sem);
abccd00f
HM
4509 mnt_drop_write_file(file);
4510 return ret;
4511}
4512
4513#ifdef CONFIG_64BIT
4514static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4515 void __user *arg)
4516{
4517 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4518 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4519 int ret = 0;
4520
4521 args32 = memdup_user(arg, sizeof(*args32));
7b9ea627
SV
4522 if (IS_ERR(args32))
4523 return PTR_ERR(args32);
abccd00f 4524
8d2db785 4525 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
84dbeb87
DC
4526 if (!args64) {
4527 ret = -ENOMEM;
abccd00f
HM
4528 goto out;
4529 }
4530
4531 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4532 args64->stransid = args32->stransid;
4533 args64->rtransid = args32->rtransid;
4534 args64->stime.sec = args32->stime.sec;
4535 args64->stime.nsec = args32->stime.nsec;
4536 args64->rtime.sec = args32->rtime.sec;
4537 args64->rtime.nsec = args32->rtime.nsec;
4538 args64->flags = args32->flags;
4539
e4fed17a 4540 ret = _btrfs_ioctl_set_received_subvol(file, file_mnt_user_ns(file), args64);
abccd00f
HM
4541 if (ret)
4542 goto out;
4543
4544 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4545 args32->stransid = args64->stransid;
4546 args32->rtransid = args64->rtransid;
4547 args32->stime.sec = args64->stime.sec;
4548 args32->stime.nsec = args64->stime.nsec;
4549 args32->rtime.sec = args64->rtime.sec;
4550 args32->rtime.nsec = args64->rtime.nsec;
4551 args32->flags = args64->flags;
4552
4553 ret = copy_to_user(arg, args32, sizeof(*args32));
4554 if (ret)
4555 ret = -EFAULT;
4556
4557out:
4558 kfree(args32);
4559 kfree(args64);
4560 return ret;
4561}
4562#endif
4563
4564static long btrfs_ioctl_set_received_subvol(struct file *file,
4565 void __user *arg)
4566{
4567 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4568 int ret = 0;
4569
4570 sa = memdup_user(arg, sizeof(*sa));
7b9ea627
SV
4571 if (IS_ERR(sa))
4572 return PTR_ERR(sa);
abccd00f 4573
e4fed17a 4574 ret = _btrfs_ioctl_set_received_subvol(file, file_mnt_user_ns(file), sa);
abccd00f
HM
4575
4576 if (ret)
4577 goto out;
4578
8ea05e3a
AB
4579 ret = copy_to_user(arg, sa, sizeof(*sa));
4580 if (ret)
4581 ret = -EFAULT;
4582
4583out:
4584 kfree(sa);
8ea05e3a
AB
4585 return ret;
4586}
4587
b929c1d8
MPS
4588static int btrfs_ioctl_get_fslabel(struct btrfs_fs_info *fs_info,
4589 void __user *arg)
867ab667 4590{
a1b83ac5 4591 size_t len;
867ab667 4592 int ret;
a1b83ac5
AJ
4593 char label[BTRFS_LABEL_SIZE];
4594
0b246afa
JM
4595 spin_lock(&fs_info->super_lock);
4596 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4597 spin_unlock(&fs_info->super_lock);
a1b83ac5
AJ
4598
4599 len = strnlen(label, BTRFS_LABEL_SIZE);
867ab667 4600
4601 if (len == BTRFS_LABEL_SIZE) {
0b246afa
JM
4602 btrfs_warn(fs_info,
4603 "label is too long, return the first %zu bytes",
4604 --len);
867ab667 4605 }
4606
867ab667 4607 ret = copy_to_user(arg, label, len);
867ab667 4608
4609 return ret ? -EFAULT : 0;
4610}
4611
a8bfd4ab 4612static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4613{
0b246afa
JM
4614 struct inode *inode = file_inode(file);
4615 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4616 struct btrfs_root *root = BTRFS_I(inode)->root;
4617 struct btrfs_super_block *super_block = fs_info->super_copy;
a8bfd4ab 4618 struct btrfs_trans_handle *trans;
4619 char label[BTRFS_LABEL_SIZE];
4620 int ret;
4621
4622 if (!capable(CAP_SYS_ADMIN))
4623 return -EPERM;
4624
4625 if (copy_from_user(label, arg, sizeof(label)))
4626 return -EFAULT;
4627
4628 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
0b246afa 4629 btrfs_err(fs_info,
5d163e0e
JM
4630 "unable to set label with more than %d bytes",
4631 BTRFS_LABEL_SIZE - 1);
a8bfd4ab 4632 return -EINVAL;
4633 }
4634
4635 ret = mnt_want_write_file(file);
4636 if (ret)
4637 return ret;
4638
a8bfd4ab 4639 trans = btrfs_start_transaction(root, 0);
4640 if (IS_ERR(trans)) {
4641 ret = PTR_ERR(trans);
4642 goto out_unlock;
4643 }
4644
0b246afa 4645 spin_lock(&fs_info->super_lock);
a8bfd4ab 4646 strcpy(super_block->label, label);
0b246afa 4647 spin_unlock(&fs_info->super_lock);
3a45bb20 4648 ret = btrfs_commit_transaction(trans);
a8bfd4ab 4649
4650out_unlock:
a8bfd4ab 4651 mnt_drop_write_file(file);
4652 return ret;
4653}
4654
2eaa055f
JM
4655#define INIT_FEATURE_FLAGS(suffix) \
4656 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
4657 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
4658 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
4659
d5131b65 4660int btrfs_ioctl_get_supported_features(void __user *arg)
2eaa055f 4661{
4d4ab6d6 4662 static const struct btrfs_ioctl_feature_flags features[3] = {
2eaa055f
JM
4663 INIT_FEATURE_FLAGS(SUPP),
4664 INIT_FEATURE_FLAGS(SAFE_SET),
4665 INIT_FEATURE_FLAGS(SAFE_CLEAR)
4666 };
4667
4668 if (copy_to_user(arg, &features, sizeof(features)))
4669 return -EFAULT;
4670
4671 return 0;
4672}
4673
b929c1d8
MPS
4674static int btrfs_ioctl_get_features(struct btrfs_fs_info *fs_info,
4675 void __user *arg)
2eaa055f 4676{
0b246afa 4677 struct btrfs_super_block *super_block = fs_info->super_copy;
2eaa055f
JM
4678 struct btrfs_ioctl_feature_flags features;
4679
4680 features.compat_flags = btrfs_super_compat_flags(super_block);
4681 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
4682 features.incompat_flags = btrfs_super_incompat_flags(super_block);
4683
4684 if (copy_to_user(arg, &features, sizeof(features)))
4685 return -EFAULT;
4686
4687 return 0;
4688}
4689
2ff7e61e 4690static int check_feature_bits(struct btrfs_fs_info *fs_info,
3b02a68a 4691 enum btrfs_feature_set set,
2eaa055f
JM
4692 u64 change_mask, u64 flags, u64 supported_flags,
4693 u64 safe_set, u64 safe_clear)
4694{
f10152bc 4695 const char *type = btrfs_feature_set_name(set);
3b02a68a 4696 char *names;
2eaa055f
JM
4697 u64 disallowed, unsupported;
4698 u64 set_mask = flags & change_mask;
4699 u64 clear_mask = ~flags & change_mask;
4700
4701 unsupported = set_mask & ~supported_flags;
4702 if (unsupported) {
3b02a68a
JM
4703 names = btrfs_printable_features(set, unsupported);
4704 if (names) {
0b246afa
JM
4705 btrfs_warn(fs_info,
4706 "this kernel does not support the %s feature bit%s",
4707 names, strchr(names, ',') ? "s" : "");
3b02a68a
JM
4708 kfree(names);
4709 } else
0b246afa
JM
4710 btrfs_warn(fs_info,
4711 "this kernel does not support %s bits 0x%llx",
4712 type, unsupported);
2eaa055f
JM
4713 return -EOPNOTSUPP;
4714 }
4715
4716 disallowed = set_mask & ~safe_set;
4717 if (disallowed) {
3b02a68a
JM
4718 names = btrfs_printable_features(set, disallowed);
4719 if (names) {
0b246afa
JM
4720 btrfs_warn(fs_info,
4721 "can't set the %s feature bit%s while mounted",
4722 names, strchr(names, ',') ? "s" : "");
3b02a68a
JM
4723 kfree(names);
4724 } else
0b246afa
JM
4725 btrfs_warn(fs_info,
4726 "can't set %s bits 0x%llx while mounted",
4727 type, disallowed);
2eaa055f
JM
4728 return -EPERM;
4729 }
4730
4731 disallowed = clear_mask & ~safe_clear;
4732 if (disallowed) {
3b02a68a
JM
4733 names = btrfs_printable_features(set, disallowed);
4734 if (names) {
0b246afa
JM
4735 btrfs_warn(fs_info,
4736 "can't clear the %s feature bit%s while mounted",
4737 names, strchr(names, ',') ? "s" : "");
3b02a68a
JM
4738 kfree(names);
4739 } else
0b246afa
JM
4740 btrfs_warn(fs_info,
4741 "can't clear %s bits 0x%llx while mounted",
4742 type, disallowed);
2eaa055f
JM
4743 return -EPERM;
4744 }
4745
4746 return 0;
4747}
4748
2ff7e61e
JM
4749#define check_feature(fs_info, change_mask, flags, mask_base) \
4750check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
2eaa055f
JM
4751 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
4752 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
4753 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
4754
4755static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
4756{
0b246afa
JM
4757 struct inode *inode = file_inode(file);
4758 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4759 struct btrfs_root *root = BTRFS_I(inode)->root;
4760 struct btrfs_super_block *super_block = fs_info->super_copy;
2eaa055f
JM
4761 struct btrfs_ioctl_feature_flags flags[2];
4762 struct btrfs_trans_handle *trans;
4763 u64 newflags;
4764 int ret;
4765
4766 if (!capable(CAP_SYS_ADMIN))
4767 return -EPERM;
4768
4769 if (copy_from_user(flags, arg, sizeof(flags)))
4770 return -EFAULT;
4771
4772 /* Nothing to do */
4773 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
4774 !flags[0].incompat_flags)
4775 return 0;
4776
2ff7e61e 4777 ret = check_feature(fs_info, flags[0].compat_flags,
2eaa055f
JM
4778 flags[1].compat_flags, COMPAT);
4779 if (ret)
4780 return ret;
4781
2ff7e61e 4782 ret = check_feature(fs_info, flags[0].compat_ro_flags,
2eaa055f
JM
4783 flags[1].compat_ro_flags, COMPAT_RO);
4784 if (ret)
4785 return ret;
4786
2ff7e61e 4787 ret = check_feature(fs_info, flags[0].incompat_flags,
2eaa055f
JM
4788 flags[1].incompat_flags, INCOMPAT);
4789 if (ret)
4790 return ret;
4791
7ab19625
DS
4792 ret = mnt_want_write_file(file);
4793 if (ret)
4794 return ret;
4795
8051aa1a 4796 trans = btrfs_start_transaction(root, 0);
7ab19625
DS
4797 if (IS_ERR(trans)) {
4798 ret = PTR_ERR(trans);
4799 goto out_drop_write;
4800 }
2eaa055f 4801
0b246afa 4802 spin_lock(&fs_info->super_lock);
2eaa055f
JM
4803 newflags = btrfs_super_compat_flags(super_block);
4804 newflags |= flags[0].compat_flags & flags[1].compat_flags;
4805 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
4806 btrfs_set_super_compat_flags(super_block, newflags);
4807
4808 newflags = btrfs_super_compat_ro_flags(super_block);
4809 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
4810 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
4811 btrfs_set_super_compat_ro_flags(super_block, newflags);
4812
4813 newflags = btrfs_super_incompat_flags(super_block);
4814 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
4815 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
4816 btrfs_set_super_incompat_flags(super_block, newflags);
0b246afa 4817 spin_unlock(&fs_info->super_lock);
2eaa055f 4818
3a45bb20 4819 ret = btrfs_commit_transaction(trans);
7ab19625
DS
4820out_drop_write:
4821 mnt_drop_write_file(file);
4822
4823 return ret;
2eaa055f
JM
4824}
4825
2351f431
JB
4826static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
4827{
4828 struct btrfs_ioctl_send_args *arg;
4829 int ret;
4830
4831 if (compat) {
4832#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
4833 struct btrfs_ioctl_send_args_32 args32;
4834
4835 ret = copy_from_user(&args32, argp, sizeof(args32));
4836 if (ret)
4837 return -EFAULT;
4838 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
4839 if (!arg)
4840 return -ENOMEM;
4841 arg->send_fd = args32.send_fd;
4842 arg->clone_sources_count = args32.clone_sources_count;
4843 arg->clone_sources = compat_ptr(args32.clone_sources);
4844 arg->parent_root = args32.parent_root;
4845 arg->flags = args32.flags;
4846 memcpy(arg->reserved, args32.reserved,
4847 sizeof(args32.reserved));
4848#else
4849 return -ENOTTY;
4850#endif
4851 } else {
4852 arg = memdup_user(argp, sizeof(*arg));
4853 if (IS_ERR(arg))
4854 return PTR_ERR(arg);
4855 }
4856 ret = btrfs_ioctl_send(file, arg);
4857 kfree(arg);
4858 return ret;
4859}
4860
f46b5a66
CH
4861long btrfs_ioctl(struct file *file, unsigned int
4862 cmd, unsigned long arg)
4863{
0b246afa
JM
4864 struct inode *inode = file_inode(file);
4865 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4866 struct btrfs_root *root = BTRFS_I(inode)->root;
4bcabaa3 4867 void __user *argp = (void __user *)arg;
f46b5a66
CH
4868
4869 switch (cmd) {
6cbff00f
CH
4870 case FS_IOC_GETVERSION:
4871 return btrfs_ioctl_getversion(file, argp);
40cf931f 4872 case FS_IOC_GETFSLABEL:
b929c1d8 4873 return btrfs_ioctl_get_fslabel(fs_info, argp);
40cf931f
ES
4874 case FS_IOC_SETFSLABEL:
4875 return btrfs_ioctl_set_fslabel(file, argp);
f7039b1d 4876 case FITRIM:
b929c1d8 4877 return btrfs_ioctl_fitrim(fs_info, argp);
f46b5a66 4878 case BTRFS_IOC_SNAP_CREATE:
fa0d2b9b 4879 return btrfs_ioctl_snap_create(file, argp, 0);
fdfb1e4f 4880 case BTRFS_IOC_SNAP_CREATE_V2:
fa0d2b9b 4881 return btrfs_ioctl_snap_create_v2(file, argp, 0);
3de4586c 4882 case BTRFS_IOC_SUBVOL_CREATE:
fa0d2b9b 4883 return btrfs_ioctl_snap_create(file, argp, 1);
6f72c7e2
AJ
4884 case BTRFS_IOC_SUBVOL_CREATE_V2:
4885 return btrfs_ioctl_snap_create_v2(file, argp, 1);
76dda93c 4886 case BTRFS_IOC_SNAP_DESTROY:
949964c9
MPS
4887 return btrfs_ioctl_snap_destroy(file, argp, false);
4888 case BTRFS_IOC_SNAP_DESTROY_V2:
4889 return btrfs_ioctl_snap_destroy(file, argp, true);
0caa102d
LZ
4890 case BTRFS_IOC_SUBVOL_GETFLAGS:
4891 return btrfs_ioctl_subvol_getflags(file, argp);
4892 case BTRFS_IOC_SUBVOL_SETFLAGS:
4893 return btrfs_ioctl_subvol_setflags(file, argp);
6ef5ed0d
JB
4894 case BTRFS_IOC_DEFAULT_SUBVOL:
4895 return btrfs_ioctl_default_subvol(file, argp);
f46b5a66 4896 case BTRFS_IOC_DEFRAG:
1e701a32
CM
4897 return btrfs_ioctl_defrag(file, NULL);
4898 case BTRFS_IOC_DEFRAG_RANGE:
4899 return btrfs_ioctl_defrag(file, argp);
f46b5a66 4900 case BTRFS_IOC_RESIZE:
198605a8 4901 return btrfs_ioctl_resize(file, argp);
f46b5a66 4902 case BTRFS_IOC_ADD_DEV:
2ff7e61e 4903 return btrfs_ioctl_add_dev(fs_info, argp);
f46b5a66 4904 case BTRFS_IOC_RM_DEV:
da24927b 4905 return btrfs_ioctl_rm_dev(file, argp);
6b526ed7
AJ
4906 case BTRFS_IOC_RM_DEV_V2:
4907 return btrfs_ioctl_rm_dev_v2(file, argp);
475f6387 4908 case BTRFS_IOC_FS_INFO:
2ff7e61e 4909 return btrfs_ioctl_fs_info(fs_info, argp);
475f6387 4910 case BTRFS_IOC_DEV_INFO:
2ff7e61e 4911 return btrfs_ioctl_dev_info(fs_info, argp);
f46b5a66 4912 case BTRFS_IOC_BALANCE:
9ba1f6e4 4913 return btrfs_ioctl_balance(file, NULL);
ac8e9819
CM
4914 case BTRFS_IOC_TREE_SEARCH:
4915 return btrfs_ioctl_tree_search(file, argp);
cc68a8a5
GH
4916 case BTRFS_IOC_TREE_SEARCH_V2:
4917 return btrfs_ioctl_tree_search_v2(file, argp);
ac8e9819
CM
4918 case BTRFS_IOC_INO_LOOKUP:
4919 return btrfs_ioctl_ino_lookup(file, argp);
d7728c96
JS
4920 case BTRFS_IOC_INO_PATHS:
4921 return btrfs_ioctl_ino_to_path(root, argp);
4922 case BTRFS_IOC_LOGICAL_INO:
d24a67b2
ZB
4923 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
4924 case BTRFS_IOC_LOGICAL_INO_V2:
4925 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
1406e432 4926 case BTRFS_IOC_SPACE_INFO:
2ff7e61e 4927 return btrfs_ioctl_space_info(fs_info, argp);
9b199859
FDBM
4928 case BTRFS_IOC_SYNC: {
4929 int ret;
4930
9db4dc24 4931 ret = btrfs_start_delalloc_roots(fs_info, LONG_MAX, false);
9b199859
FDBM
4932 if (ret)
4933 return ret;
0b246afa 4934 ret = btrfs_sync_fs(inode->i_sb, 1);
2fad4e83
DS
4935 /*
4936 * The transaction thread may want to do more work,
01327610 4937 * namely it pokes the cleaner kthread that will start
2fad4e83
DS
4938 * processing uncleaned subvols.
4939 */
0b246afa 4940 wake_up_process(fs_info->transaction_kthread);
9b199859
FDBM
4941 return ret;
4942 }
46204592 4943 case BTRFS_IOC_START_SYNC:
9a8c28be 4944 return btrfs_ioctl_start_sync(root, argp);
46204592 4945 case BTRFS_IOC_WAIT_SYNC:
2ff7e61e 4946 return btrfs_ioctl_wait_sync(fs_info, argp);
475f6387 4947 case BTRFS_IOC_SCRUB:
b8e95489 4948 return btrfs_ioctl_scrub(file, argp);
475f6387 4949 case BTRFS_IOC_SCRUB_CANCEL:
2ff7e61e 4950 return btrfs_ioctl_scrub_cancel(fs_info);
475f6387 4951 case BTRFS_IOC_SCRUB_PROGRESS:
2ff7e61e 4952 return btrfs_ioctl_scrub_progress(fs_info, argp);
c9e9f97b 4953 case BTRFS_IOC_BALANCE_V2:
9ba1f6e4 4954 return btrfs_ioctl_balance(file, argp);
837d5b6e 4955 case BTRFS_IOC_BALANCE_CTL:
2ff7e61e 4956 return btrfs_ioctl_balance_ctl(fs_info, arg);
19a39dce 4957 case BTRFS_IOC_BALANCE_PROGRESS:
2ff7e61e 4958 return btrfs_ioctl_balance_progress(fs_info, argp);
8ea05e3a
AB
4959 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
4960 return btrfs_ioctl_set_received_subvol(file, argp);
abccd00f
HM
4961#ifdef CONFIG_64BIT
4962 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
4963 return btrfs_ioctl_set_received_subvol_32(file, argp);
4964#endif
31db9f7c 4965 case BTRFS_IOC_SEND:
2351f431
JB
4966 return _btrfs_ioctl_send(file, argp, false);
4967#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
4968 case BTRFS_IOC_SEND_32:
4969 return _btrfs_ioctl_send(file, argp, true);
4970#endif
c11d2c23 4971 case BTRFS_IOC_GET_DEV_STATS:
2ff7e61e 4972 return btrfs_ioctl_get_dev_stats(fs_info, argp);
5d13a37b 4973 case BTRFS_IOC_QUOTA_CTL:
905b0dda 4974 return btrfs_ioctl_quota_ctl(file, argp);
5d13a37b 4975 case BTRFS_IOC_QGROUP_ASSIGN:
905b0dda 4976 return btrfs_ioctl_qgroup_assign(file, argp);
5d13a37b 4977 case BTRFS_IOC_QGROUP_CREATE:
905b0dda 4978 return btrfs_ioctl_qgroup_create(file, argp);
5d13a37b 4979 case BTRFS_IOC_QGROUP_LIMIT:
905b0dda 4980 return btrfs_ioctl_qgroup_limit(file, argp);
2f232036
JS
4981 case BTRFS_IOC_QUOTA_RESCAN:
4982 return btrfs_ioctl_quota_rescan(file, argp);
4983 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
b929c1d8 4984 return btrfs_ioctl_quota_rescan_status(fs_info, argp);
57254b6e 4985 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
b929c1d8 4986 return btrfs_ioctl_quota_rescan_wait(fs_info, argp);
3f6bcfbd 4987 case BTRFS_IOC_DEV_REPLACE:
2ff7e61e 4988 return btrfs_ioctl_dev_replace(fs_info, argp);
2eaa055f 4989 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
d5131b65 4990 return btrfs_ioctl_get_supported_features(argp);
2eaa055f 4991 case BTRFS_IOC_GET_FEATURES:
b929c1d8 4992 return btrfs_ioctl_get_features(fs_info, argp);
2eaa055f
JM
4993 case BTRFS_IOC_SET_FEATURES:
4994 return btrfs_ioctl_set_features(file, argp);
b64ec075
TM
4995 case BTRFS_IOC_GET_SUBVOL_INFO:
4996 return btrfs_ioctl_get_subvol_info(file, argp);
42e4b520
TM
4997 case BTRFS_IOC_GET_SUBVOL_ROOTREF:
4998 return btrfs_ioctl_get_subvol_rootref(file, argp);
23d0b79d
TM
4999 case BTRFS_IOC_INO_LOOKUP_USER:
5000 return btrfs_ioctl_ino_lookup_user(file, argp);
14605409
BB
5001 case FS_IOC_ENABLE_VERITY:
5002 return fsverity_ioctl_enable(file, (const void __user *)argp);
5003 case FS_IOC_MEASURE_VERITY:
5004 return fsverity_ioctl_measure(file, argp);
f46b5a66
CH
5005 }
5006
5007 return -ENOTTY;
5008}
4c63c245
LD
5009
5010#ifdef CONFIG_COMPAT
5011long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5012{
2a362249
JM
5013 /*
5014 * These all access 32-bit values anyway so no further
5015 * handling is necessary.
5016 */
4c63c245 5017 switch (cmd) {
4c63c245
LD
5018 case FS_IOC32_GETVERSION:
5019 cmd = FS_IOC_GETVERSION;
5020 break;
4c63c245
LD
5021 }
5022
5023 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5024}
5025#endif