]> git.ipfire.org Git - people/ms/linux.git/blame - fs/btrfs/ioctl.c
btrfs: allow idmapped permission inode op
[people/ms/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"
f46b5a66 51
abccd00f
HM
52#ifdef CONFIG_64BIT
53/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
54 * structures are incorrect, as the timespec structure from userspace
55 * is 4 bytes too small. We define these alternatives here to teach
56 * the kernel about the 32-bit struct packing.
57 */
58struct btrfs_ioctl_timespec_32 {
59 __u64 sec;
60 __u32 nsec;
61} __attribute__ ((__packed__));
62
63struct btrfs_ioctl_received_subvol_args_32 {
64 char uuid[BTRFS_UUID_SIZE]; /* in */
65 __u64 stransid; /* in */
66 __u64 rtransid; /* out */
67 struct btrfs_ioctl_timespec_32 stime; /* in */
68 struct btrfs_ioctl_timespec_32 rtime; /* out */
69 __u64 flags; /* in */
70 __u64 reserved[16]; /* in */
71} __attribute__ ((__packed__));
72
73#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
74 struct btrfs_ioctl_received_subvol_args_32)
75#endif
76
2351f431
JB
77#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
78struct btrfs_ioctl_send_args_32 {
79 __s64 send_fd; /* in */
80 __u64 clone_sources_count; /* in */
81 compat_uptr_t clone_sources; /* in */
82 __u64 parent_root; /* in */
83 __u64 flags; /* in */
84 __u64 reserved[4]; /* in */
85} __attribute__ ((__packed__));
86
87#define BTRFS_IOC_SEND_32 _IOW(BTRFS_IOCTL_MAGIC, 38, \
88 struct btrfs_ioctl_send_args_32)
89#endif
abccd00f 90
6cbff00f 91/* Mask out flags that are inappropriate for the given type of inode. */
1905a0f7
DS
92static unsigned int btrfs_mask_fsflags_for_type(struct inode *inode,
93 unsigned int flags)
6cbff00f 94{
1905a0f7 95 if (S_ISDIR(inode->i_mode))
6cbff00f 96 return flags;
1905a0f7 97 else if (S_ISREG(inode->i_mode))
6cbff00f
CH
98 return flags & ~FS_DIRSYNC_FL;
99 else
100 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
101}
102
103/*
a157d4fd
DS
104 * Export internal inode flags to the format expected by the FS_IOC_GETFLAGS
105 * ioctl.
6cbff00f 106 */
77eea05e 107static unsigned int btrfs_inode_flags_to_fsflags(struct btrfs_inode *binode)
6cbff00f
CH
108{
109 unsigned int iflags = 0;
77eea05e 110 u32 flags = binode->flags;
14605409 111 u32 ro_flags = binode->ro_flags;
6cbff00f
CH
112
113 if (flags & BTRFS_INODE_SYNC)
114 iflags |= FS_SYNC_FL;
115 if (flags & BTRFS_INODE_IMMUTABLE)
116 iflags |= FS_IMMUTABLE_FL;
117 if (flags & BTRFS_INODE_APPEND)
118 iflags |= FS_APPEND_FL;
119 if (flags & BTRFS_INODE_NODUMP)
120 iflags |= FS_NODUMP_FL;
121 if (flags & BTRFS_INODE_NOATIME)
122 iflags |= FS_NOATIME_FL;
123 if (flags & BTRFS_INODE_DIRSYNC)
124 iflags |= FS_DIRSYNC_FL;
d0092bdd
LZ
125 if (flags & BTRFS_INODE_NODATACOW)
126 iflags |= FS_NOCOW_FL;
14605409
BB
127 if (ro_flags & BTRFS_INODE_RO_VERITY)
128 iflags |= FS_VERITY_FL;
d0092bdd 129
13f48dc9 130 if (flags & BTRFS_INODE_NOCOMPRESS)
d0092bdd 131 iflags |= FS_NOCOMP_FL;
13f48dc9
ST
132 else if (flags & BTRFS_INODE_COMPRESS)
133 iflags |= FS_COMPR_FL;
6cbff00f
CH
134
135 return iflags;
136}
137
138/*
139 * Update inode->i_flags based on the btrfs internal flags.
140 */
7b6a221e 141void btrfs_sync_inode_flags_to_i_flags(struct inode *inode)
6cbff00f 142{
5c57b8b6 143 struct btrfs_inode *binode = BTRFS_I(inode);
3cc79392 144 unsigned int new_fl = 0;
6cbff00f 145
5c57b8b6 146 if (binode->flags & BTRFS_INODE_SYNC)
3cc79392 147 new_fl |= S_SYNC;
5c57b8b6 148 if (binode->flags & BTRFS_INODE_IMMUTABLE)
3cc79392 149 new_fl |= S_IMMUTABLE;
5c57b8b6 150 if (binode->flags & BTRFS_INODE_APPEND)
3cc79392 151 new_fl |= S_APPEND;
5c57b8b6 152 if (binode->flags & BTRFS_INODE_NOATIME)
3cc79392 153 new_fl |= S_NOATIME;
5c57b8b6 154 if (binode->flags & BTRFS_INODE_DIRSYNC)
3cc79392 155 new_fl |= S_DIRSYNC;
14605409
BB
156 if (binode->ro_flags & BTRFS_INODE_RO_VERITY)
157 new_fl |= S_VERITY;
3cc79392
FM
158
159 set_mask_bits(&inode->i_flags,
14605409
BB
160 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC |
161 S_VERITY, new_fl);
6cbff00f
CH
162}
163
f37c563b
DS
164/*
165 * Check if @flags are a supported and valid set of FS_*_FL flags and that
166 * the old and new flags are not conflicting
167 */
168static int check_fsflags(unsigned int old_flags, unsigned int flags)
75e7cb7f
LB
169{
170 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
171 FS_NOATIME_FL | FS_NODUMP_FL | \
172 FS_SYNC_FL | FS_DIRSYNC_FL | \
e1e8fb6a
LZ
173 FS_NOCOMP_FL | FS_COMPR_FL |
174 FS_NOCOW_FL))
75e7cb7f
LB
175 return -EOPNOTSUPP;
176
f37c563b 177 /* COMPR and NOCOMP on new/old are valid */
75e7cb7f
LB
178 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
179 return -EINVAL;
180
f37c563b
DS
181 if ((flags & FS_COMPR_FL) && (flags & FS_NOCOW_FL))
182 return -EINVAL;
183
184 /* NOCOW and compression options are mutually exclusive */
185 if ((old_flags & FS_NOCOW_FL) && (flags & (FS_COMPR_FL | FS_NOCOMP_FL)))
186 return -EINVAL;
187 if ((flags & FS_NOCOW_FL) && (old_flags & (FS_COMPR_FL | FS_NOCOMP_FL)))
188 return -EINVAL;
189
75e7cb7f
LB
190 return 0;
191}
192
d206e9c9
NA
193static int check_fsflags_compatible(struct btrfs_fs_info *fs_info,
194 unsigned int flags)
195{
196 if (btrfs_is_zoned(fs_info) && (flags & FS_NOCOW_FL))
197 return -EPERM;
198
199 return 0;
200}
201
97fc2977
MS
202/*
203 * Set flags/xflags from the internal inode flags. The remaining items of
204 * fsxattr are zeroed.
205 */
206int btrfs_fileattr_get(struct dentry *dentry, struct fileattr *fa)
6cbff00f 207{
97fc2977
MS
208 struct btrfs_inode *binode = BTRFS_I(d_inode(dentry));
209
77eea05e 210 fileattr_fill_flags(fa, btrfs_inode_flags_to_fsflags(binode));
97fc2977
MS
211 return 0;
212}
213
214int btrfs_fileattr_set(struct user_namespace *mnt_userns,
215 struct dentry *dentry, struct fileattr *fa)
216{
217 struct inode *inode = d_inode(dentry);
0b246afa 218 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5c57b8b6
DS
219 struct btrfs_inode *binode = BTRFS_I(inode);
220 struct btrfs_root *root = binode->root;
6cbff00f 221 struct btrfs_trans_handle *trans;
5aca2842 222 unsigned int fsflags, old_fsflags;
6cbff00f 223 int ret;
ff9fef55 224 const char *comp = NULL;
f37c563b 225 u32 binode_flags;
6cbff00f 226
b83cc969
LZ
227 if (btrfs_root_readonly(root))
228 return -EROFS;
229
97fc2977
MS
230 if (fileattr_has_fsx(fa))
231 return -EOPNOTSUPP;
e7848683 232
97fc2977 233 fsflags = btrfs_mask_fsflags_for_type(inode, fa->flags);
77eea05e 234 old_fsflags = btrfs_inode_flags_to_fsflags(binode);
f37c563b
DS
235 ret = check_fsflags(old_fsflags, fsflags);
236 if (ret)
97fc2977 237 return ret;
f37c563b 238
d206e9c9
NA
239 ret = check_fsflags_compatible(fs_info, fsflags);
240 if (ret)
97fc2977 241 return ret;
d206e9c9 242
f37c563b 243 binode_flags = binode->flags;
5c57b8b6 244 if (fsflags & FS_SYNC_FL)
d2b8fcfe 245 binode_flags |= BTRFS_INODE_SYNC;
6cbff00f 246 else
d2b8fcfe 247 binode_flags &= ~BTRFS_INODE_SYNC;
5c57b8b6 248 if (fsflags & FS_IMMUTABLE_FL)
d2b8fcfe 249 binode_flags |= BTRFS_INODE_IMMUTABLE;
6cbff00f 250 else
d2b8fcfe 251 binode_flags &= ~BTRFS_INODE_IMMUTABLE;
5c57b8b6 252 if (fsflags & FS_APPEND_FL)
d2b8fcfe 253 binode_flags |= BTRFS_INODE_APPEND;
6cbff00f 254 else
d2b8fcfe 255 binode_flags &= ~BTRFS_INODE_APPEND;
5c57b8b6 256 if (fsflags & FS_NODUMP_FL)
d2b8fcfe 257 binode_flags |= BTRFS_INODE_NODUMP;
6cbff00f 258 else
d2b8fcfe 259 binode_flags &= ~BTRFS_INODE_NODUMP;
5c57b8b6 260 if (fsflags & FS_NOATIME_FL)
d2b8fcfe 261 binode_flags |= BTRFS_INODE_NOATIME;
6cbff00f 262 else
d2b8fcfe 263 binode_flags &= ~BTRFS_INODE_NOATIME;
97fc2977
MS
264
265 /* If coming from FS_IOC_FSSETXATTR then skip unconverted flags */
266 if (!fa->flags_valid) {
267 /* 1 item for the inode */
268 trans = btrfs_start_transaction(root, 1);
9b8a233b
RH
269 if (IS_ERR(trans))
270 return PTR_ERR(trans);
97fc2977
MS
271 goto update_flags;
272 }
273
5c57b8b6 274 if (fsflags & FS_DIRSYNC_FL)
d2b8fcfe 275 binode_flags |= BTRFS_INODE_DIRSYNC;
6cbff00f 276 else
d2b8fcfe 277 binode_flags &= ~BTRFS_INODE_DIRSYNC;
5c57b8b6 278 if (fsflags & FS_NOCOW_FL) {
44e5194b 279 if (S_ISREG(inode->i_mode)) {
7e97b8da
DS
280 /*
281 * It's safe to turn csums off here, no extents exist.
282 * Otherwise we want the flag to reflect the real COW
283 * status of the file and will not set it.
284 */
285 if (inode->i_size == 0)
d2b8fcfe
AJ
286 binode_flags |= BTRFS_INODE_NODATACOW |
287 BTRFS_INODE_NODATASUM;
7e97b8da 288 } else {
d2b8fcfe 289 binode_flags |= BTRFS_INODE_NODATACOW;
7e97b8da
DS
290 }
291 } else {
292 /*
01327610 293 * Revert back under same assumptions as above
7e97b8da 294 */
44e5194b 295 if (S_ISREG(inode->i_mode)) {
7e97b8da 296 if (inode->i_size == 0)
d2b8fcfe
AJ
297 binode_flags &= ~(BTRFS_INODE_NODATACOW |
298 BTRFS_INODE_NODATASUM);
7e97b8da 299 } else {
d2b8fcfe 300 binode_flags &= ~BTRFS_INODE_NODATACOW;
7e97b8da
DS
301 }
302 }
6cbff00f 303
75e7cb7f
LB
304 /*
305 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
306 * flag may be changed automatically if compression code won't make
307 * things smaller.
308 */
5c57b8b6 309 if (fsflags & FS_NOCOMP_FL) {
d2b8fcfe
AJ
310 binode_flags &= ~BTRFS_INODE_COMPRESS;
311 binode_flags |= BTRFS_INODE_NOCOMPRESS;
5c57b8b6 312 } else if (fsflags & FS_COMPR_FL) {
63541927 313
97fc2977
MS
314 if (IS_SWAPFILE(inode))
315 return -ETXTBSY;
eede2bf3 316
d2b8fcfe
AJ
317 binode_flags |= BTRFS_INODE_COMPRESS;
318 binode_flags &= ~BTRFS_INODE_NOCOMPRESS;
63541927 319
93370509
DS
320 comp = btrfs_compress_type2str(fs_info->compress_type);
321 if (!comp || comp[0] == 0)
322 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
ebcb904d 323 } else {
d2b8fcfe 324 binode_flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
75e7cb7f 325 }
6cbff00f 326
ff9fef55
AJ
327 /*
328 * 1 for inode item
329 * 2 for properties
330 */
331 trans = btrfs_start_transaction(root, 3);
97fc2977
MS
332 if (IS_ERR(trans))
333 return PTR_ERR(trans);
6cbff00f 334
ff9fef55
AJ
335 if (comp) {
336 ret = btrfs_set_prop(trans, inode, "btrfs.compression", comp,
337 strlen(comp), 0);
338 if (ret) {
339 btrfs_abort_transaction(trans, ret);
340 goto out_end_trans;
341 }
ff9fef55
AJ
342 } else {
343 ret = btrfs_set_prop(trans, inode, "btrfs.compression", NULL,
344 0, 0);
345 if (ret && ret != -ENODATA) {
346 btrfs_abort_transaction(trans, ret);
347 goto out_end_trans;
348 }
349 }
350
97fc2977 351update_flags:
d2b8fcfe 352 binode->flags = binode_flags;
7b6a221e 353 btrfs_sync_inode_flags_to_i_flags(inode);
0c4d2d95 354 inode_inc_iversion(inode);
c2050a45 355 inode->i_ctime = current_time(inode);
9a56fcd1 356 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
6cbff00f 357
ff9fef55 358 out_end_trans:
3a45bb20 359 btrfs_end_transaction(trans);
2d4e6f6a 360 return ret;
6cbff00f
CH
361}
362
0d7ed32c
DS
363/*
364 * Start exclusive operation @type, return true on success
365 */
c3e1f96c
GR
366bool btrfs_exclop_start(struct btrfs_fs_info *fs_info,
367 enum btrfs_exclusive_operation type)
368{
0d7ed32c
DS
369 bool ret = false;
370
371 spin_lock(&fs_info->super_lock);
372 if (fs_info->exclusive_operation == BTRFS_EXCLOP_NONE) {
373 fs_info->exclusive_operation = type;
374 ret = true;
375 }
376 spin_unlock(&fs_info->super_lock);
377
378 return ret;
c3e1f96c
GR
379}
380
578bda9e
DS
381/*
382 * Conditionally allow to enter the exclusive operation in case it's compatible
383 * with the running one. This must be paired with btrfs_exclop_start_unlock and
384 * btrfs_exclop_finish.
385 *
386 * Compatibility:
387 * - the same type is already running
388 * - not BTRFS_EXCLOP_NONE - this is intentionally incompatible and the caller
389 * must check the condition first that would allow none -> @type
390 */
391bool btrfs_exclop_start_try_lock(struct btrfs_fs_info *fs_info,
392 enum btrfs_exclusive_operation type)
393{
394 spin_lock(&fs_info->super_lock);
395 if (fs_info->exclusive_operation == type)
396 return true;
397
398 spin_unlock(&fs_info->super_lock);
399 return false;
400}
401
402void btrfs_exclop_start_unlock(struct btrfs_fs_info *fs_info)
403{
404 spin_unlock(&fs_info->super_lock);
405}
406
c3e1f96c
GR
407void btrfs_exclop_finish(struct btrfs_fs_info *fs_info)
408{
0d7ed32c 409 spin_lock(&fs_info->super_lock);
c3e1f96c 410 WRITE_ONCE(fs_info->exclusive_operation, BTRFS_EXCLOP_NONE);
0d7ed32c 411 spin_unlock(&fs_info->super_lock);
66a2823c 412 sysfs_notify(&fs_info->fs_devices->fsid_kobj, NULL, "exclusive_operation");
c3e1f96c
GR
413}
414
6cbff00f
CH
415static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
416{
496ad9aa 417 struct inode *inode = file_inode(file);
6cbff00f
CH
418
419 return put_user(inode->i_generation, arg);
420}
f46b5a66 421
b929c1d8
MPS
422static noinline int btrfs_ioctl_fitrim(struct btrfs_fs_info *fs_info,
423 void __user *arg)
f7039b1d 424{
f7039b1d
LD
425 struct btrfs_device *device;
426 struct request_queue *q;
427 struct fstrim_range range;
428 u64 minlen = ULLONG_MAX;
429 u64 num_devices = 0;
430 int ret;
431
432 if (!capable(CAP_SYS_ADMIN))
433 return -EPERM;
434
1cb3dc3f
NA
435 /*
436 * btrfs_trim_block_group() depends on space cache, which is not
437 * available in zoned filesystem. So, disallow fitrim on a zoned
438 * filesystem for now.
439 */
440 if (btrfs_is_zoned(fs_info))
441 return -EOPNOTSUPP;
442
f35f06c3
FM
443 /*
444 * If the fs is mounted with nologreplay, which requires it to be
445 * mounted in RO mode as well, we can not allow discard on free space
446 * inside block groups, because log trees refer to extents that are not
447 * pinned in a block group's free space cache (pinning the extents is
448 * precisely the first phase of replaying a log tree).
449 */
450 if (btrfs_test_opt(fs_info, NOLOGREPLAY))
451 return -EROFS;
452
1f78160c
XG
453 rcu_read_lock();
454 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
455 dev_list) {
f7039b1d
LD
456 if (!device->bdev)
457 continue;
458 q = bdev_get_queue(device->bdev);
459 if (blk_queue_discard(q)) {
460 num_devices++;
50d0446e 461 minlen = min_t(u64, q->limits.discard_granularity,
f7039b1d
LD
462 minlen);
463 }
464 }
1f78160c 465 rcu_read_unlock();
f4c697e6 466
f7039b1d
LD
467 if (!num_devices)
468 return -EOPNOTSUPP;
f7039b1d
LD
469 if (copy_from_user(&range, arg, sizeof(range)))
470 return -EFAULT;
6ba9fc8e
QW
471
472 /*
473 * NOTE: Don't truncate the range using super->total_bytes. Bytenr of
474 * block group is in the logical address space, which can be any
475 * sectorsize aligned bytenr in the range [0, U64_MAX].
476 */
477 if (range.len < fs_info->sb->s_blocksize)
f4c697e6 478 return -EINVAL;
f7039b1d
LD
479
480 range.minlen = max(range.minlen, minlen);
2ff7e61e 481 ret = btrfs_trim_fs(fs_info, &range);
f7039b1d
LD
482 if (ret < 0)
483 return ret;
484
485 if (copy_to_user(arg, &range, sizeof(range)))
486 return -EFAULT;
487
488 return 0;
489}
490
e1f60a65 491int __pure btrfs_is_empty_uuid(u8 *uuid)
dd5f9615 492{
46e0f66a
CM
493 int i;
494
495 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
496 if (uuid[i])
497 return 0;
498 }
499 return 1;
dd5f9615
SB
500}
501
d5c12070 502static noinline int create_subvol(struct inode *dir,
cb8e7090 503 struct dentry *dentry,
52f75f4f 504 const char *name, int namelen,
8696c533 505 struct btrfs_qgroup_inherit *inherit)
f46b5a66 506{
0b246afa 507 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
f46b5a66
CH
508 struct btrfs_trans_handle *trans;
509 struct btrfs_key key;
49a3c4d9 510 struct btrfs_root_item *root_item;
f46b5a66
CH
511 struct btrfs_inode_item *inode_item;
512 struct extent_buffer *leaf;
d5c12070 513 struct btrfs_root *root = BTRFS_I(dir)->root;
76dda93c 514 struct btrfs_root *new_root;
d5c12070 515 struct btrfs_block_rsv block_rsv;
95582b00 516 struct timespec64 cur_time = current_time(dir);
5662344b 517 struct inode *inode;
f46b5a66
CH
518 int ret;
519 int err;
2dfb1e43 520 dev_t anon_dev = 0;
f46b5a66 521 u64 objectid;
3de4586c 522 u64 index = 0;
f46b5a66 523
49a3c4d9
DS
524 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
525 if (!root_item)
526 return -ENOMEM;
527
543068a2 528 ret = btrfs_get_free_objectid(fs_info->tree_root, &objectid);
2fbe8c8a 529 if (ret)
49a3c4d9 530 goto fail_free;
6a912213 531
2dfb1e43
QW
532 ret = get_anon_bdev(&anon_dev);
533 if (ret < 0)
534 goto fail_free;
535
e09fe2d2
QW
536 /*
537 * Don't create subvolume whose level is not zero. Or qgroup will be
01327610 538 * screwed up since it assumes subvolume qgroup's level to be 0.
e09fe2d2 539 */
49a3c4d9
DS
540 if (btrfs_qgroup_level(objectid)) {
541 ret = -ENOSPC;
542 goto fail_free;
543 }
e09fe2d2 544
d5c12070 545 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
9ed74f2d 546 /*
d5c12070
MX
547 * The same as the snapshot creation, please see the comment
548 * of create_snapshot().
9ed74f2d 549 */
c4c129db 550 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 8, false);
d5c12070 551 if (ret)
49a3c4d9 552 goto fail_free;
d5c12070
MX
553
554 trans = btrfs_start_transaction(root, 0);
555 if (IS_ERR(trans)) {
556 ret = PTR_ERR(trans);
e85fde51 557 btrfs_subvolume_release_metadata(root, &block_rsv);
49a3c4d9 558 goto fail_free;
d5c12070
MX
559 }
560 trans->block_rsv = &block_rsv;
561 trans->bytes_reserved = block_rsv.size;
f46b5a66 562
a9377422 563 ret = btrfs_qgroup_inherit(trans, 0, objectid, inherit);
6f72c7e2
AJ
564 if (ret)
565 goto fail;
566
9631e4cc
JB
567 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0,
568 BTRFS_NESTING_NORMAL);
8e8a1e31
JB
569 if (IS_ERR(leaf)) {
570 ret = PTR_ERR(leaf);
571 goto fail;
572 }
f46b5a66 573
f46b5a66
CH
574 btrfs_mark_buffer_dirty(leaf);
575
49a3c4d9 576 inode_item = &root_item->inode;
3cae210f
QW
577 btrfs_set_stack_inode_generation(inode_item, 1);
578 btrfs_set_stack_inode_size(inode_item, 3);
579 btrfs_set_stack_inode_nlink(inode_item, 1);
da17066c 580 btrfs_set_stack_inode_nbytes(inode_item,
0b246afa 581 fs_info->nodesize);
3cae210f 582 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
f46b5a66 583
49a3c4d9
DS
584 btrfs_set_root_flags(root_item, 0);
585 btrfs_set_root_limit(root_item, 0);
3cae210f 586 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
08fe4db1 587
49a3c4d9
DS
588 btrfs_set_root_bytenr(root_item, leaf->start);
589 btrfs_set_root_generation(root_item, trans->transid);
590 btrfs_set_root_level(root_item, 0);
591 btrfs_set_root_refs(root_item, 1);
592 btrfs_set_root_used(root_item, leaf->len);
593 btrfs_set_root_last_snapshot(root_item, 0);
f46b5a66 594
49a3c4d9
DS
595 btrfs_set_root_generation_v2(root_item,
596 btrfs_root_generation(root_item));
807fc790 597 generate_random_guid(root_item->uuid);
49a3c4d9
DS
598 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
599 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
600 root_item->ctime = root_item->otime;
601 btrfs_set_root_ctransid(root_item, trans->transid);
602 btrfs_set_root_otransid(root_item, trans->transid);
f46b5a66 603
925baedd 604 btrfs_tree_unlock(leaf);
f46b5a66 605
69948022 606 btrfs_set_root_dirid(root_item, BTRFS_FIRST_FREE_OBJECTID);
f46b5a66
CH
607
608 key.objectid = objectid;
5d4f98a2 609 key.offset = 0;
962a298f 610 key.type = BTRFS_ROOT_ITEM_KEY;
0b246afa 611 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
49a3c4d9 612 root_item);
67addf29
FM
613 if (ret) {
614 /*
615 * Since we don't abort the transaction in this case, free the
616 * tree block so that we don't leak space and leave the
617 * filesystem in an inconsistent state (an extent item in the
618 * extent tree without backreferences). Also no need to have
619 * the tree block locked since it is not in any tree at this
620 * point, so no other task can find it and use it.
621 */
622 btrfs_free_tree_block(trans, root, leaf, 0, 1);
623 free_extent_buffer(leaf);
f46b5a66 624 goto fail;
67addf29
FM
625 }
626
627 free_extent_buffer(leaf);
628 leaf = NULL;
f46b5a66 629
76dda93c 630 key.offset = (u64)-1;
2dfb1e43 631 new_root = btrfs_get_new_fs_root(fs_info, objectid, anon_dev);
79787eaa 632 if (IS_ERR(new_root)) {
2dfb1e43 633 free_anon_bdev(anon_dev);
79787eaa 634 ret = PTR_ERR(new_root);
66642832 635 btrfs_abort_transaction(trans, ret);
79787eaa
JM
636 goto fail;
637 }
2dfb1e43
QW
638 /* Freeing will be done in btrfs_put_root() of new_root */
639 anon_dev = 0;
76dda93c 640
221581e4
JB
641 ret = btrfs_record_root_in_trans(trans, new_root);
642 if (ret) {
643 btrfs_put_root(new_root);
644 btrfs_abort_transaction(trans, ret);
645 goto fail;
646 }
76dda93c 647
69948022 648 ret = btrfs_create_subvol_root(trans, new_root, root);
00246528 649 btrfs_put_root(new_root);
ce598979
MF
650 if (ret) {
651 /* We potentially lose an unused inode item here */
66642832 652 btrfs_abort_transaction(trans, ret);
ce598979
MF
653 goto fail;
654 }
655
f46b5a66
CH
656 /*
657 * insert the directory item
658 */
877574e2 659 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
79787eaa 660 if (ret) {
66642832 661 btrfs_abort_transaction(trans, ret);
79787eaa
JM
662 goto fail;
663 }
3de4586c 664
684572df 665 ret = btrfs_insert_dir_item(trans, name, namelen, BTRFS_I(dir), &key,
3de4586c 666 BTRFS_FT_DIR, index);
79787eaa 667 if (ret) {
66642832 668 btrfs_abort_transaction(trans, ret);
f46b5a66 669 goto fail;
79787eaa 670 }
0660b5af 671
6ef06d27 672 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
9a56fcd1 673 ret = btrfs_update_inode(trans, root, BTRFS_I(dir));
c7e54b51
JB
674 if (ret) {
675 btrfs_abort_transaction(trans, ret);
676 goto fail;
677 }
52c26179 678
6025c19f 679 ret = btrfs_add_root_ref(trans, objectid, root->root_key.objectid,
4a0cc7ca 680 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
c7e54b51
JB
681 if (ret) {
682 btrfs_abort_transaction(trans, ret);
683 goto fail;
684 }
f46b5a66 685
cdb345a8 686 ret = btrfs_uuid_tree_add(trans, root_item->uuid,
6bccf3ab 687 BTRFS_UUID_KEY_SUBVOL, objectid);
dd5f9615 688 if (ret)
66642832 689 btrfs_abort_transaction(trans, ret);
dd5f9615 690
f46b5a66 691fail:
49a3c4d9 692 kfree(root_item);
d5c12070
MX
693 trans->block_rsv = NULL;
694 trans->bytes_reserved = 0;
e85fde51 695 btrfs_subvolume_release_metadata(root, &block_rsv);
de6e8200 696
9babda9f 697 err = btrfs_commit_transaction(trans);
f46b5a66
CH
698 if (err && !ret)
699 ret = err;
1a65e24b 700
5662344b
TI
701 if (!ret) {
702 inode = btrfs_lookup_dentry(dir, dentry);
de6e8200
LB
703 if (IS_ERR(inode))
704 return PTR_ERR(inode);
5662344b
TI
705 d_instantiate(dentry, inode);
706 }
f46b5a66 707 return ret;
49a3c4d9
DS
708
709fail_free:
2dfb1e43
QW
710 if (anon_dev)
711 free_anon_bdev(anon_dev);
49a3c4d9
DS
712 kfree(root_item);
713 return ret;
f46b5a66
CH
714}
715
e9662f70 716static int create_snapshot(struct btrfs_root *root, struct inode *dir,
9babda9f 717 struct dentry *dentry, bool readonly,
e9662f70 718 struct btrfs_qgroup_inherit *inherit)
f46b5a66 719{
0b246afa 720 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
2e4bfab9 721 struct inode *inode;
f46b5a66
CH
722 struct btrfs_pending_snapshot *pending_snapshot;
723 struct btrfs_trans_handle *trans;
2e4bfab9 724 int ret;
f46b5a66 725
92a7cc42 726 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
f46b5a66
CH
727 return -EINVAL;
728
eede2bf3
OS
729 if (atomic_read(&root->nr_swapfiles)) {
730 btrfs_warn(fs_info,
731 "cannot snapshot subvolume with active swapfile");
732 return -ETXTBSY;
733 }
734
23269bf5 735 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
a1ee7362
DS
736 if (!pending_snapshot)
737 return -ENOMEM;
738
2dfb1e43
QW
739 ret = get_anon_bdev(&pending_snapshot->anon_dev);
740 if (ret < 0)
741 goto free_pending;
b0c0ea63 742 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
23269bf5 743 GFP_KERNEL);
8546b570
DS
744 pending_snapshot->path = btrfs_alloc_path();
745 if (!pending_snapshot->root_item || !pending_snapshot->path) {
b0c0ea63
DS
746 ret = -ENOMEM;
747 goto free_pending;
748 }
749
66d8f3dd
MX
750 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
751 BTRFS_BLOCK_RSV_TEMP);
d5c12070
MX
752 /*
753 * 1 - parent dir inode
754 * 2 - dir entries
755 * 1 - root item
756 * 2 - root ref/backref
757 * 1 - root of snapshot
dd5f9615 758 * 1 - UUID item
d5c12070
MX
759 */
760 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
dd5f9615 761 &pending_snapshot->block_rsv, 8,
ee3441b4 762 false);
d5c12070 763 if (ret)
c11fbb6e 764 goto free_pending;
d5c12070 765
3de4586c 766 pending_snapshot->dentry = dentry;
f46b5a66 767 pending_snapshot->root = root;
b83cc969 768 pending_snapshot->readonly = readonly;
e9662f70 769 pending_snapshot->dir = dir;
8696c533 770 pending_snapshot->inherit = inherit;
a22285a6 771
d5c12070 772 trans = btrfs_start_transaction(root, 0);
a22285a6
YZ
773 if (IS_ERR(trans)) {
774 ret = PTR_ERR(trans);
775 goto fail;
776 }
777
0b246afa 778 spin_lock(&fs_info->trans_lock);
f46b5a66
CH
779 list_add(&pending_snapshot->list,
780 &trans->transaction->pending_snapshots);
0b246afa 781 spin_unlock(&fs_info->trans_lock);
9babda9f
NB
782
783 ret = btrfs_commit_transaction(trans);
aec8030a 784 if (ret)
c37b2b62 785 goto fail;
a22285a6
YZ
786
787 ret = pending_snapshot->error;
788 if (ret)
789 goto fail;
790
d3797308
CM
791 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
792 if (ret)
793 goto fail;
794
2b0143b5 795 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
2e4bfab9
YZ
796 if (IS_ERR(inode)) {
797 ret = PTR_ERR(inode);
798 goto fail;
799 }
5662344b 800
2e4bfab9
YZ
801 d_instantiate(dentry, inode);
802 ret = 0;
2dfb1e43 803 pending_snapshot->anon_dev = 0;
2e4bfab9 804fail:
2dfb1e43
QW
805 /* Prevent double freeing of anon_dev */
806 if (ret && pending_snapshot->snap)
807 pending_snapshot->snap->anon_dev = 0;
00246528 808 btrfs_put_root(pending_snapshot->snap);
e85fde51 809 btrfs_subvolume_release_metadata(root, &pending_snapshot->block_rsv);
b0c0ea63 810free_pending:
2dfb1e43
QW
811 if (pending_snapshot->anon_dev)
812 free_anon_bdev(pending_snapshot->anon_dev);
b0c0ea63 813 kfree(pending_snapshot->root_item);
8546b570 814 btrfs_free_path(pending_snapshot->path);
a1ee7362
DS
815 kfree(pending_snapshot);
816
f46b5a66
CH
817 return ret;
818}
819
4260f7c7
SW
820/* copy of may_delete in fs/namei.c()
821 * Check whether we can remove a link victim from directory dir, check
822 * whether the type of victim is right.
823 * 1. We can't do it if dir is read-only (done in permission())
824 * 2. We should have write and exec permissions on dir
825 * 3. We can't remove anything from append-only dir
826 * 4. We can't do anything with immutable dir (done in permission())
827 * 5. If the sticky bit on dir is set we should either
828 * a. be owner of dir, or
829 * b. be owner of victim, or
830 * c. have CAP_FOWNER capability
01327610 831 * 6. If the victim is append-only or immutable we can't do anything with
4260f7c7
SW
832 * links pointing to it.
833 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
834 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
835 * 9. We can't remove a root or mountpoint.
836 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
837 * nfs_async_unlink().
838 */
839
67871254 840static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
4260f7c7
SW
841{
842 int error;
843
2b0143b5 844 if (d_really_is_negative(victim))
4260f7c7
SW
845 return -ENOENT;
846
2b0143b5 847 BUG_ON(d_inode(victim->d_parent) != dir);
4fa6b5ec 848 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
4260f7c7 849
47291baa 850 error = inode_permission(&init_user_ns, dir, MAY_WRITE | MAY_EXEC);
4260f7c7
SW
851 if (error)
852 return error;
853 if (IS_APPEND(dir))
854 return -EPERM;
ba73d987
CB
855 if (check_sticky(&init_user_ns, dir, d_inode(victim)) ||
856 IS_APPEND(d_inode(victim)) || IS_IMMUTABLE(d_inode(victim)) ||
857 IS_SWAPFILE(d_inode(victim)))
4260f7c7
SW
858 return -EPERM;
859 if (isdir) {
e36cb0b8 860 if (!d_is_dir(victim))
4260f7c7
SW
861 return -ENOTDIR;
862 if (IS_ROOT(victim))
863 return -EBUSY;
e36cb0b8 864 } else if (d_is_dir(victim))
4260f7c7
SW
865 return -EISDIR;
866 if (IS_DEADDIR(dir))
867 return -ENOENT;
868 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
869 return -EBUSY;
870 return 0;
871}
872
cb8e7090
CH
873/* copy of may_create in fs/namei.c() */
874static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
875{
2b0143b5 876 if (d_really_is_positive(child))
cb8e7090
CH
877 return -EEXIST;
878 if (IS_DEADDIR(dir))
879 return -ENOENT;
47291baa 880 return inode_permission(&init_user_ns, dir, MAY_WRITE | MAY_EXEC);
cb8e7090
CH
881}
882
883/*
884 * Create a new subvolume below @parent. This is largely modeled after
885 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
886 * inside this filesystem so it's quite a bit simpler.
887 */
92872094 888static noinline int btrfs_mksubvol(const struct path *parent,
52f75f4f 889 const char *name, int namelen,
72fd032e 890 struct btrfs_root *snap_src,
9babda9f 891 bool readonly,
8696c533 892 struct btrfs_qgroup_inherit *inherit)
cb8e7090 893{
0b246afa
JM
894 struct inode *dir = d_inode(parent->dentry);
895 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
cb8e7090
CH
896 struct dentry *dentry;
897 int error;
898
00235411
AV
899 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
900 if (error == -EINTR)
901 return error;
cb8e7090
CH
902
903 dentry = lookup_one_len(name, parent->dentry, namelen);
904 error = PTR_ERR(dentry);
905 if (IS_ERR(dentry))
906 goto out_unlock;
907
76dda93c 908 error = btrfs_may_create(dir, dentry);
cb8e7090 909 if (error)
a874a63e 910 goto out_dput;
cb8e7090 911
9c52057c
CM
912 /*
913 * even if this name doesn't exist, we may get hash collisions.
914 * check for them now when we can safely fail
915 */
916 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
917 dir->i_ino, name,
918 namelen);
919 if (error)
920 goto out_dput;
921
0b246afa 922 down_read(&fs_info->subvol_sem);
76dda93c
YZ
923
924 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
925 goto out_up_read;
926
9babda9f
NB
927 if (snap_src)
928 error = create_snapshot(snap_src, dir, dentry, readonly, inherit);
929 else
930 error = create_subvol(dir, dentry, name, namelen, inherit);
931
76dda93c
YZ
932 if (!error)
933 fsnotify_mkdir(dir, dentry);
934out_up_read:
0b246afa 935 up_read(&fs_info->subvol_sem);
cb8e7090
CH
936out_dput:
937 dput(dentry);
938out_unlock:
64708539 939 btrfs_inode_unlock(dir, 0);
cb8e7090
CH
940 return error;
941}
942
c11fbb6e
RK
943static noinline int btrfs_mksnapshot(const struct path *parent,
944 const char *name, int namelen,
945 struct btrfs_root *root,
946 bool readonly,
947 struct btrfs_qgroup_inherit *inherit)
948{
949 int ret;
950 bool snapshot_force_cow = false;
951
952 /*
953 * Force new buffered writes to reserve space even when NOCOW is
954 * possible. This is to avoid later writeback (running dealloc) to
955 * fallback to COW mode and unexpectedly fail with ENOSPC.
956 */
957 btrfs_drew_read_lock(&root->snapshot_lock);
958
f9baa501 959 ret = btrfs_start_delalloc_snapshot(root, false);
c11fbb6e
RK
960 if (ret)
961 goto out;
962
963 /*
964 * All previous writes have started writeback in NOCOW mode, so now
965 * we force future writes to fallback to COW mode during snapshot
966 * creation.
967 */
968 atomic_inc(&root->snapshot_force_cow);
969 snapshot_force_cow = true;
970
971 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
972
973 ret = btrfs_mksubvol(parent, name, namelen,
974 root, readonly, inherit);
975out:
976 if (snapshot_force_cow)
977 atomic_dec(&root->snapshot_force_cow);
978 btrfs_drew_read_unlock(&root->snapshot_lock);
979 return ret;
980}
981
4cb5300b
CM
982/*
983 * When we're defragging a range, we don't want to kick it off again
984 * if it is really just waiting for delalloc to send it down.
985 * If we find a nice big extent or delalloc range for the bytes in the
986 * file you want to defrag, we return 0 to let you know to skip this
987 * part of the file
988 */
aab110ab 989static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
4cb5300b
CM
990{
991 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
992 struct extent_map *em = NULL;
993 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
994 u64 end;
995
996 read_lock(&em_tree->lock);
09cbfeaf 997 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
4cb5300b
CM
998 read_unlock(&em_tree->lock);
999
1000 if (em) {
1001 end = extent_map_end(em);
1002 free_extent_map(em);
1003 if (end - offset > thresh)
1004 return 0;
1005 }
1006 /* if we already have a nice delalloc here, just stop */
1007 thresh /= 2;
1008 end = count_range_bits(io_tree, &offset, offset + thresh,
1009 thresh, EXTENT_DELALLOC, 1);
1010 if (end >= thresh)
1011 return 0;
1012 return 1;
1013}
1014
1015/*
1016 * helper function to walk through a file and find extents
1017 * newer than a specific transid, and smaller than thresh.
1018 *
1019 * This is used by the defragging code to find new and small
1020 * extents
1021 */
1022static int find_new_extents(struct btrfs_root *root,
1023 struct inode *inode, u64 newer_than,
aab110ab 1024 u64 *off, u32 thresh)
4cb5300b
CM
1025{
1026 struct btrfs_path *path;
1027 struct btrfs_key min_key;
4cb5300b
CM
1028 struct extent_buffer *leaf;
1029 struct btrfs_file_extent_item *extent;
1030 int type;
1031 int ret;
4a0cc7ca 1032 u64 ino = btrfs_ino(BTRFS_I(inode));
4cb5300b
CM
1033
1034 path = btrfs_alloc_path();
1035 if (!path)
1036 return -ENOMEM;
1037
a4689d2b 1038 min_key.objectid = ino;
4cb5300b
CM
1039 min_key.type = BTRFS_EXTENT_DATA_KEY;
1040 min_key.offset = *off;
1041
67871254 1042 while (1) {
6174d3cb 1043 ret = btrfs_search_forward(root, &min_key, path, newer_than);
4cb5300b
CM
1044 if (ret != 0)
1045 goto none;
f094c9bd 1046process_slot:
a4689d2b 1047 if (min_key.objectid != ino)
4cb5300b
CM
1048 goto none;
1049 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
1050 goto none;
1051
1052 leaf = path->nodes[0];
1053 extent = btrfs_item_ptr(leaf, path->slots[0],
1054 struct btrfs_file_extent_item);
1055
1056 type = btrfs_file_extent_type(leaf, extent);
1057 if (type == BTRFS_FILE_EXTENT_REG &&
1058 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
1059 check_defrag_in_cache(inode, min_key.offset, thresh)) {
1060 *off = min_key.offset;
1061 btrfs_free_path(path);
1062 return 0;
1063 }
1064
f094c9bd
FM
1065 path->slots[0]++;
1066 if (path->slots[0] < btrfs_header_nritems(leaf)) {
1067 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
1068 goto process_slot;
1069 }
1070
4cb5300b
CM
1071 if (min_key.offset == (u64)-1)
1072 goto none;
1073
1074 min_key.offset++;
1075 btrfs_release_path(path);
1076 }
1077none:
1078 btrfs_free_path(path);
1079 return -ENOENT;
1080}
1081
6c282eb4 1082static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
17ce6ef8
LB
1083{
1084 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
6c282eb4
LZ
1085 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1086 struct extent_map *em;
09cbfeaf 1087 u64 len = PAGE_SIZE;
17ce6ef8 1088
6c282eb4
LZ
1089 /*
1090 * hopefully we have this extent in the tree already, try without
1091 * the full extent lock
1092 */
17ce6ef8 1093 read_lock(&em_tree->lock);
6c282eb4 1094 em = lookup_extent_mapping(em_tree, start, len);
17ce6ef8
LB
1095 read_unlock(&em_tree->lock);
1096
6c282eb4 1097 if (!em) {
308d9800
FM
1098 struct extent_state *cached = NULL;
1099 u64 end = start + len - 1;
1100
6c282eb4 1101 /* get the big lock and read metadata off disk */
ff13db41 1102 lock_extent_bits(io_tree, start, end, &cached);
39b07b5d 1103 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
e43bbe5e 1104 unlock_extent_cached(io_tree, start, end, &cached);
6c282eb4
LZ
1105
1106 if (IS_ERR(em))
1107 return NULL;
1108 }
1109
1110 return em;
1111}
17ce6ef8 1112
6c282eb4
LZ
1113static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1114{
1115 struct extent_map *next;
1116 bool ret = true;
1117
1118 /* this is the last extent */
1119 if (em->start + em->len >= i_size_read(inode))
1120 return false;
1121
1122 next = defrag_lookup_extent(inode, em->start + em->len);
e9512d72
CM
1123 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1124 ret = false;
1125 else if ((em->block_start + em->block_len == next->block_start) &&
ee22184b 1126 (em->block_len > SZ_128K && next->block_len > SZ_128K))
6c282eb4
LZ
1127 ret = false;
1128
1129 free_extent_map(next);
17ce6ef8
LB
1130 return ret;
1131}
1132
aab110ab 1133static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
a43a2111
AM
1134 u64 *last_len, u64 *skip, u64 *defrag_end,
1135 int compress)
940100a4 1136{
6c282eb4 1137 struct extent_map *em;
940100a4 1138 int ret = 1;
6c282eb4 1139 bool next_mergeable = true;
4a3560c4 1140 bool prev_mergeable = true;
940100a4
CM
1141
1142 /*
008873ea 1143 * make sure that once we start defragging an extent, we keep on
940100a4
CM
1144 * defragging it
1145 */
1146 if (start < *defrag_end)
1147 return 1;
1148
1149 *skip = 0;
1150
6c282eb4
LZ
1151 em = defrag_lookup_extent(inode, start);
1152 if (!em)
1153 return 0;
940100a4
CM
1154
1155 /* this will cover holes, and inline extents */
17ce6ef8 1156 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
940100a4 1157 ret = 0;
17ce6ef8
LB
1158 goto out;
1159 }
1160
4a3560c4
LB
1161 if (!*defrag_end)
1162 prev_mergeable = false;
1163
6c282eb4 1164 next_mergeable = defrag_check_next_extent(inode, em);
940100a4 1165 /*
6c282eb4
LZ
1166 * we hit a real extent, if it is big or the next extent is not a
1167 * real extent, don't bother defragging it
940100a4 1168 */
a43a2111 1169 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
4a3560c4 1170 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
940100a4 1171 ret = 0;
17ce6ef8 1172out:
940100a4
CM
1173 /*
1174 * last_len ends up being a counter of how many bytes we've defragged.
1175 * every time we choose not to defrag an extent, we reset *last_len
1176 * so that the next tiny extent will force a defrag.
1177 *
1178 * The end result of this is that tiny extents before a single big
1179 * extent will force at least part of that big extent to be defragged.
1180 */
1181 if (ret) {
940100a4
CM
1182 *defrag_end = extent_map_end(em);
1183 } else {
1184 *last_len = 0;
1185 *skip = extent_map_end(em);
1186 *defrag_end = 0;
1187 }
1188
1189 free_extent_map(em);
1190 return ret;
1191}
1192
4cb5300b
CM
1193/*
1194 * it doesn't do much good to defrag one or two pages
1195 * at a time. This pulls in a nice chunk of pages
1196 * to COW and defrag.
1197 *
1198 * It also makes sure the delalloc code has enough
1199 * dirty data to avoid making new small extents as part
1200 * of the defrag
1201 *
1202 * It's a good idea to start RA on this range
1203 * before calling this.
1204 */
1205static int cluster_pages_for_defrag(struct inode *inode,
1206 struct page **pages,
1207 unsigned long start_index,
c41570c9 1208 unsigned long num_pages)
f46b5a66 1209{
4cb5300b
CM
1210 unsigned long file_end;
1211 u64 isize = i_size_read(inode);
1212 u64 page_start;
1213 u64 page_end;
1f12bd06 1214 u64 page_cnt;
a1fbc675 1215 u64 start = (u64)start_index << PAGE_SHIFT;
7f458a38 1216 u64 search_start;
4cb5300b
CM
1217 int ret;
1218 int i;
1219 int i_done;
3eaa2885 1220 struct btrfs_ordered_extent *ordered;
4cb5300b 1221 struct extent_state *cached_state = NULL;
600a45e1 1222 struct extent_io_tree *tree;
364ecf36 1223 struct extent_changeset *data_reserved = NULL;
3b16a4e3 1224 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
4cb5300b 1225
09cbfeaf 1226 file_end = (isize - 1) >> PAGE_SHIFT;
1f12bd06
LB
1227 if (!isize || start_index > file_end)
1228 return 0;
1229
1230 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
4cb5300b 1231
e5b7231e 1232 ret = btrfs_delalloc_reserve_space(BTRFS_I(inode), &data_reserved,
a1fbc675 1233 start, page_cnt << PAGE_SHIFT);
4cb5300b
CM
1234 if (ret)
1235 return ret;
4cb5300b 1236 i_done = 0;
600a45e1 1237 tree = &BTRFS_I(inode)->io_tree;
4cb5300b
CM
1238
1239 /* step one, lock all the pages */
1f12bd06 1240 for (i = 0; i < page_cnt; i++) {
4cb5300b 1241 struct page *page;
600a45e1 1242again:
a94733d0 1243 page = find_or_create_page(inode->i_mapping,
600a45e1 1244 start_index + i, mask);
4cb5300b
CM
1245 if (!page)
1246 break;
1247
32443de3
QW
1248 ret = set_page_extent_mapped(page);
1249 if (ret < 0) {
1250 unlock_page(page);
1251 put_page(page);
1252 break;
1253 }
1254
600a45e1 1255 page_start = page_offset(page);
09cbfeaf 1256 page_end = page_start + PAGE_SIZE - 1;
600a45e1 1257 while (1) {
308d9800 1258 lock_extent_bits(tree, page_start, page_end,
ff13db41 1259 &cached_state);
c3504372 1260 ordered = btrfs_lookup_ordered_extent(BTRFS_I(inode),
600a45e1 1261 page_start);
308d9800 1262 unlock_extent_cached(tree, page_start, page_end,
e43bbe5e 1263 &cached_state);
600a45e1
MX
1264 if (!ordered)
1265 break;
1266
1267 unlock_page(page);
c0a43603 1268 btrfs_start_ordered_extent(ordered, 1);
600a45e1
MX
1269 btrfs_put_ordered_extent(ordered);
1270 lock_page(page);
1f12bd06
LB
1271 /*
1272 * we unlocked the page above, so we need check if
1273 * it was released or not.
1274 */
1275 if (page->mapping != inode->i_mapping) {
1276 unlock_page(page);
09cbfeaf 1277 put_page(page);
1f12bd06
LB
1278 goto again;
1279 }
600a45e1
MX
1280 }
1281
4cb5300b
CM
1282 if (!PageUptodate(page)) {
1283 btrfs_readpage(NULL, page);
1284 lock_page(page);
1285 if (!PageUptodate(page)) {
1286 unlock_page(page);
09cbfeaf 1287 put_page(page);
4cb5300b
CM
1288 ret = -EIO;
1289 break;
1290 }
1291 }
600a45e1 1292
600a45e1
MX
1293 if (page->mapping != inode->i_mapping) {
1294 unlock_page(page);
09cbfeaf 1295 put_page(page);
600a45e1
MX
1296 goto again;
1297 }
1298
4cb5300b
CM
1299 pages[i] = page;
1300 i_done++;
1301 }
1302 if (!i_done || ret)
1303 goto out;
1304
1751e8a6 1305 if (!(inode->i_sb->s_flags & SB_ACTIVE))
4cb5300b
CM
1306 goto out;
1307
1308 /*
1309 * so now we have a nice long stream of locked
1310 * and up to date pages, lets wait on them
1311 */
1312 for (i = 0; i < i_done; i++)
1313 wait_on_page_writeback(pages[i]);
1314
1315 page_start = page_offset(pages[0]);
09cbfeaf 1316 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
4cb5300b
CM
1317
1318 lock_extent_bits(&BTRFS_I(inode)->io_tree,
ff13db41 1319 page_start, page_end - 1, &cached_state);
7f458a38
FM
1320
1321 /*
1322 * When defragmenting we skip ranges that have holes or inline extents,
1323 * (check should_defrag_range()), to avoid unnecessary IO and wasting
1324 * space. At btrfs_defrag_file(), we check if a range should be defragged
1325 * before locking the inode and then, if it should, we trigger a sync
1326 * page cache readahead - we lock the inode only after that to avoid
1327 * blocking for too long other tasks that possibly want to operate on
1328 * other file ranges. But before we were able to get the inode lock,
1329 * some other task may have punched a hole in the range, or we may have
1330 * now an inline extent, in which case we should not defrag. So check
1331 * for that here, where we have the inode and the range locked, and bail
1332 * out if that happened.
1333 */
1334 search_start = page_start;
1335 while (search_start < page_end) {
1336 struct extent_map *em;
1337
1338 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, search_start,
1339 page_end - search_start);
1340 if (IS_ERR(em)) {
1341 ret = PTR_ERR(em);
1342 goto out_unlock_range;
1343 }
1344 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1345 free_extent_map(em);
1346 /* Ok, 0 means we did not defrag anything */
1347 ret = 0;
1348 goto out_unlock_range;
1349 }
1350 search_start = extent_map_end(em);
1351 free_extent_map(em);
1352 }
1353
4cb5300b 1354 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
e182163d
OS
1355 page_end - 1, EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
1356 EXTENT_DEFRAG, 0, 0, &cached_state);
4cb5300b 1357
1f12bd06 1358 if (i_done != page_cnt) {
9e0baf60 1359 spin_lock(&BTRFS_I(inode)->lock);
28c4a3e2 1360 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
9e0baf60 1361 spin_unlock(&BTRFS_I(inode)->lock);
86d52921 1362 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
a1fbc675 1363 start, (page_cnt - i_done) << PAGE_SHIFT, true);
4cb5300b
CM
1364 }
1365
1366
9e8a4a8b 1367 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
018ed4f7 1368 &cached_state);
4cb5300b
CM
1369
1370 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
e43bbe5e 1371 page_start, page_end - 1, &cached_state);
4cb5300b
CM
1372
1373 for (i = 0; i < i_done; i++) {
1374 clear_page_dirty_for_io(pages[i]);
1375 ClearPageChecked(pages[i]);
4cb5300b
CM
1376 set_page_dirty(pages[i]);
1377 unlock_page(pages[i]);
09cbfeaf 1378 put_page(pages[i]);
4cb5300b 1379 }
8702ba93 1380 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
364ecf36 1381 extent_changeset_free(data_reserved);
4cb5300b 1382 return i_done;
7f458a38
FM
1383
1384out_unlock_range:
1385 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1386 page_start, page_end - 1, &cached_state);
4cb5300b
CM
1387out:
1388 for (i = 0; i < i_done; i++) {
1389 unlock_page(pages[i]);
09cbfeaf 1390 put_page(pages[i]);
4cb5300b 1391 }
86d52921 1392 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
a1fbc675 1393 start, page_cnt << PAGE_SHIFT, true);
8702ba93 1394 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
364ecf36 1395 extent_changeset_free(data_reserved);
4cb5300b
CM
1396 return ret;
1397
1398}
1399
1400int btrfs_defrag_file(struct inode *inode, struct file *file,
1401 struct btrfs_ioctl_defrag_range_args *range,
1402 u64 newer_than, unsigned long max_to_defrag)
1403{
0b246afa 1404 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4cb5300b 1405 struct btrfs_root *root = BTRFS_I(inode)->root;
4cb5300b 1406 struct file_ra_state *ra = NULL;
f46b5a66 1407 unsigned long last_index;
151a31b2 1408 u64 isize = i_size_read(inode);
940100a4
CM
1409 u64 last_len = 0;
1410 u64 skip = 0;
1411 u64 defrag_end = 0;
4cb5300b 1412 u64 newer_off = range->start;
f46b5a66 1413 unsigned long i;
008873ea 1414 unsigned long ra_index = 0;
f46b5a66 1415 int ret;
4cb5300b 1416 int defrag_count = 0;
1a419d85 1417 int compress_type = BTRFS_COMPRESS_ZLIB;
aab110ab 1418 u32 extent_thresh = range->extent_thresh;
09cbfeaf 1419 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
c41570c9 1420 unsigned long cluster = max_cluster;
ee22184b 1421 u64 new_align = ~((u64)SZ_128K - 1);
4cb5300b 1422 struct page **pages = NULL;
1e2ef46d 1423 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
4cb5300b 1424
0abd5b17
LB
1425 if (isize == 0)
1426 return 0;
1427
1428 if (range->start >= isize)
1429 return -EINVAL;
1a419d85 1430
1e2ef46d 1431 if (do_compress) {
ce96b7ff 1432 if (range->compress_type >= BTRFS_NR_COMPRESS_TYPES)
1a419d85
LZ
1433 return -EINVAL;
1434 if (range->compress_type)
1435 compress_type = range->compress_type;
1436 }
f46b5a66 1437
0abd5b17 1438 if (extent_thresh == 0)
ee22184b 1439 extent_thresh = SZ_256K;
940100a4 1440
4cb5300b 1441 /*
0a52d108
DS
1442 * If we were not given a file, allocate a readahead context. As
1443 * readahead is just an optimization, defrag will work without it so
1444 * we don't error out.
4cb5300b
CM
1445 */
1446 if (!file) {
63e727ec 1447 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
0a52d108
DS
1448 if (ra)
1449 file_ra_state_init(ra, inode->i_mapping);
4cb5300b
CM
1450 } else {
1451 ra = &file->f_ra;
1452 }
1453
63e727ec 1454 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
4cb5300b
CM
1455 if (!pages) {
1456 ret = -ENOMEM;
1457 goto out_ra;
1458 }
1459
1460 /* find the last page to defrag */
1e701a32 1461 if (range->start + range->len > range->start) {
151a31b2 1462 last_index = min_t(u64, isize - 1,
09cbfeaf 1463 range->start + range->len - 1) >> PAGE_SHIFT;
1e701a32 1464 } else {
09cbfeaf 1465 last_index = (isize - 1) >> PAGE_SHIFT;
1e701a32
CM
1466 }
1467
4cb5300b
CM
1468 if (newer_than) {
1469 ret = find_new_extents(root, inode, newer_than,
ee22184b 1470 &newer_off, SZ_64K);
4cb5300b
CM
1471 if (!ret) {
1472 range->start = newer_off;
1473 /*
1474 * we always align our defrag to help keep
1475 * the extents in the file evenly spaced
1476 */
09cbfeaf 1477 i = (newer_off & new_align) >> PAGE_SHIFT;
4cb5300b
CM
1478 } else
1479 goto out_ra;
1480 } else {
09cbfeaf 1481 i = range->start >> PAGE_SHIFT;
4cb5300b
CM
1482 }
1483 if (!max_to_defrag)
070034bd 1484 max_to_defrag = last_index - i + 1;
4cb5300b 1485
2a0f7f57
LZ
1486 /*
1487 * make writeback starts from i, so the defrag range can be
1488 * written sequentially.
1489 */
1490 if (i < inode->i_mapping->writeback_index)
1491 inode->i_mapping->writeback_index = i;
1492
f7f43cc8 1493 while (i <= last_index && defrag_count < max_to_defrag &&
09cbfeaf 1494 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
4cb5300b
CM
1495 /*
1496 * make sure we stop running if someone unmounts
1497 * the FS
1498 */
1751e8a6 1499 if (!(inode->i_sb->s_flags & SB_ACTIVE))
4cb5300b
CM
1500 break;
1501
0b246afa
JM
1502 if (btrfs_defrag_cancelled(fs_info)) {
1503 btrfs_debug(fs_info, "defrag_file cancelled");
210549eb 1504 ret = -EAGAIN;
50535db8 1505 goto error;
210549eb
DS
1506 }
1507
09cbfeaf 1508 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
6c282eb4 1509 extent_thresh, &last_len, &skip,
1e2ef46d 1510 &defrag_end, do_compress)){
940100a4
CM
1511 unsigned long next;
1512 /*
1513 * the should_defrag function tells us how much to skip
1514 * bump our counter by the suggested amount
1515 */
09cbfeaf 1516 next = DIV_ROUND_UP(skip, PAGE_SIZE);
940100a4
CM
1517 i = max(i + 1, next);
1518 continue;
1519 }
008873ea
LZ
1520
1521 if (!newer_than) {
09cbfeaf
KS
1522 cluster = (PAGE_ALIGN(defrag_end) >>
1523 PAGE_SHIFT) - i;
008873ea
LZ
1524 cluster = min(cluster, max_cluster);
1525 } else {
1526 cluster = max_cluster;
1527 }
1528
008873ea
LZ
1529 if (i + cluster > ra_index) {
1530 ra_index = max(i, ra_index);
0a52d108 1531 if (ra)
d3c0bab5
DS
1532 page_cache_sync_readahead(inode->i_mapping, ra,
1533 file, ra_index, cluster);
e4826a5b 1534 ra_index += cluster;
008873ea 1535 }
940100a4 1536
64708539 1537 btrfs_inode_lock(inode, 0);
eede2bf3
OS
1538 if (IS_SWAPFILE(inode)) {
1539 ret = -ETXTBSY;
1540 } else {
1541 if (do_compress)
1542 BTRFS_I(inode)->defrag_compress = compress_type;
1543 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
1544 }
ecb8bea8 1545 if (ret < 0) {
64708539 1546 btrfs_inode_unlock(inode, 0);
4cb5300b 1547 goto out_ra;
ecb8bea8 1548 }
4cb5300b
CM
1549
1550 defrag_count += ret;
d0e1d66b 1551 balance_dirty_pages_ratelimited(inode->i_mapping);
64708539 1552 btrfs_inode_unlock(inode, 0);
4cb5300b
CM
1553
1554 if (newer_than) {
1555 if (newer_off == (u64)-1)
1556 break;
1557
e1f041e1
LB
1558 if (ret > 0)
1559 i += ret;
1560
4cb5300b 1561 newer_off = max(newer_off + 1,
09cbfeaf 1562 (u64)i << PAGE_SHIFT);
4cb5300b 1563
ee22184b
BL
1564 ret = find_new_extents(root, inode, newer_than,
1565 &newer_off, SZ_64K);
4cb5300b
CM
1566 if (!ret) {
1567 range->start = newer_off;
09cbfeaf 1568 i = (newer_off & new_align) >> PAGE_SHIFT;
4cb5300b
CM
1569 } else {
1570 break;
f46b5a66 1571 }
4cb5300b 1572 } else {
008873ea 1573 if (ret > 0) {
cbcc8326 1574 i += ret;
09cbfeaf 1575 last_len += ret << PAGE_SHIFT;
008873ea 1576 } else {
cbcc8326 1577 i++;
008873ea
LZ
1578 last_len = 0;
1579 }
f46b5a66 1580 }
f46b5a66
CH
1581 }
1582
50535db8
TT
1583 ret = defrag_count;
1584error:
dec8ef90 1585 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
1e701a32 1586 filemap_flush(inode->i_mapping);
dec8ef90
FM
1587 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1588 &BTRFS_I(inode)->runtime_flags))
1589 filemap_flush(inode->i_mapping);
1590 }
1e701a32 1591
1a419d85 1592 if (range->compress_type == BTRFS_COMPRESS_LZO) {
0b246afa 1593 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
5c1aab1d
NT
1594 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1595 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
1a419d85
LZ
1596 }
1597
4cb5300b 1598out_ra:
1e2ef46d 1599 if (do_compress) {
64708539 1600 btrfs_inode_lock(inode, 0);
eec63c65 1601 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
64708539 1602 btrfs_inode_unlock(inode, 0);
633085c7 1603 }
4cb5300b
CM
1604 if (!file)
1605 kfree(ra);
1606 kfree(pages);
940100a4 1607 return ret;
f46b5a66
CH
1608}
1609
17aaa434
DS
1610/*
1611 * Try to start exclusive operation @type or cancel it if it's running.
1612 *
1613 * Return:
1614 * 0 - normal mode, newly claimed op started
1615 * >0 - normal mode, something else is running,
1616 * return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS to user space
1617 * ECANCELED - cancel mode, successful cancel
1618 * ENOTCONN - cancel mode, operation not running anymore
1619 */
1620static int exclop_start_or_cancel_reloc(struct btrfs_fs_info *fs_info,
1621 enum btrfs_exclusive_operation type, bool cancel)
1622{
1623 if (!cancel) {
1624 /* Start normal op */
1625 if (!btrfs_exclop_start(fs_info, type))
1626 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
1627 /* Exclusive operation is now claimed */
1628 return 0;
1629 }
1630
1631 /* Cancel running op */
1632 if (btrfs_exclop_start_try_lock(fs_info, type)) {
1633 /*
1634 * This blocks any exclop finish from setting it to NONE, so we
1635 * request cancellation. Either it runs and we will wait for it,
1636 * or it has finished and no waiting will happen.
1637 */
1638 atomic_inc(&fs_info->reloc_cancel_req);
1639 btrfs_exclop_start_unlock(fs_info);
1640
1641 if (test_bit(BTRFS_FS_RELOC_RUNNING, &fs_info->flags))
1642 wait_on_bit(&fs_info->flags, BTRFS_FS_RELOC_RUNNING,
1643 TASK_INTERRUPTIBLE);
1644
1645 return -ECANCELED;
1646 }
1647
1648 /* Something else is running or none */
1649 return -ENOTCONN;
1650}
1651
198605a8 1652static noinline int btrfs_ioctl_resize(struct file *file,
76dda93c 1653 void __user *arg)
f46b5a66 1654{
0b246afa
JM
1655 struct inode *inode = file_inode(file);
1656 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
f46b5a66
CH
1657 u64 new_size;
1658 u64 old_size;
1659 u64 devid = 1;
0b246afa 1660 struct btrfs_root *root = BTRFS_I(inode)->root;
f46b5a66
CH
1661 struct btrfs_ioctl_vol_args *vol_args;
1662 struct btrfs_trans_handle *trans;
1663 struct btrfs_device *device = NULL;
1664 char *sizestr;
9a40f122 1665 char *retptr;
f46b5a66
CH
1666 char *devstr = NULL;
1667 int ret = 0;
f46b5a66 1668 int mod = 0;
bb059a37 1669 bool cancel;
f46b5a66 1670
e441d54d
CM
1671 if (!capable(CAP_SYS_ADMIN))
1672 return -EPERM;
1673
198605a8
MX
1674 ret = mnt_want_write_file(file);
1675 if (ret)
1676 return ret;
1677
bb059a37
DS
1678 /*
1679 * Read the arguments before checking exclusivity to be able to
1680 * distinguish regular resize and cancel
1681 */
dae7b665 1682 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
1683 if (IS_ERR(vol_args)) {
1684 ret = PTR_ERR(vol_args);
bb059a37 1685 goto out_drop;
c9e9f97b 1686 }
5516e595 1687 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
f46b5a66 1688 sizestr = vol_args->name;
bb059a37
DS
1689 cancel = (strcmp("cancel", sizestr) == 0);
1690 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_RESIZE, cancel);
1691 if (ret)
1692 goto out_free;
1693 /* Exclusive operation is now claimed */
1694
f46b5a66
CH
1695 devstr = strchr(sizestr, ':');
1696 if (devstr) {
f46b5a66
CH
1697 sizestr = devstr + 1;
1698 *devstr = '\0';
1699 devstr = vol_args->name;
58dfae63
Z
1700 ret = kstrtoull(devstr, 10, &devid);
1701 if (ret)
bb059a37 1702 goto out_finish;
dfd79829
MX
1703 if (!devid) {
1704 ret = -EINVAL;
bb059a37 1705 goto out_finish;
dfd79829 1706 }
0b246afa 1707 btrfs_info(fs_info, "resizing devid %llu", devid);
f46b5a66 1708 }
dba60f3f 1709
b2598edf 1710 device = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL);
f46b5a66 1711 if (!device) {
0b246afa
JM
1712 btrfs_info(fs_info, "resizer unable to find device %llu",
1713 devid);
dfd79829 1714 ret = -ENODEV;
bb059a37 1715 goto out_finish;
f46b5a66 1716 }
dba60f3f 1717
ebbede42 1718 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
0b246afa 1719 btrfs_info(fs_info,
efe120a0 1720 "resizer unable to apply on readonly device %llu",
c1c9ff7c 1721 devid);
dfd79829 1722 ret = -EPERM;
bb059a37 1723 goto out_finish;
4e42ae1b
LB
1724 }
1725
f46b5a66
CH
1726 if (!strcmp(sizestr, "max"))
1727 new_size = device->bdev->bd_inode->i_size;
1728 else {
1729 if (sizestr[0] == '-') {
1730 mod = -1;
1731 sizestr++;
1732 } else if (sizestr[0] == '+') {
1733 mod = 1;
1734 sizestr++;
1735 }
9a40f122
GH
1736 new_size = memparse(sizestr, &retptr);
1737 if (*retptr != '\0' || new_size == 0) {
f46b5a66 1738 ret = -EINVAL;
bb059a37 1739 goto out_finish;
f46b5a66
CH
1740 }
1741 }
1742
401e29c1 1743 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
dfd79829 1744 ret = -EPERM;
bb059a37 1745 goto out_finish;
63a212ab
SB
1746 }
1747
7cc8e58d 1748 old_size = btrfs_device_get_total_bytes(device);
f46b5a66
CH
1749
1750 if (mod < 0) {
1751 if (new_size > old_size) {
1752 ret = -EINVAL;
bb059a37 1753 goto out_finish;
f46b5a66
CH
1754 }
1755 new_size = old_size - new_size;
1756 } else if (mod > 0) {
eb8052e0 1757 if (new_size > ULLONG_MAX - old_size) {
902c68a4 1758 ret = -ERANGE;
bb059a37 1759 goto out_finish;
eb8052e0 1760 }
f46b5a66
CH
1761 new_size = old_size + new_size;
1762 }
1763
ee22184b 1764 if (new_size < SZ_256M) {
f46b5a66 1765 ret = -EINVAL;
bb059a37 1766 goto out_finish;
f46b5a66
CH
1767 }
1768 if (new_size > device->bdev->bd_inode->i_size) {
1769 ret = -EFBIG;
bb059a37 1770 goto out_finish;
f46b5a66
CH
1771 }
1772
47f08b96 1773 new_size = round_down(new_size, fs_info->sectorsize);
f46b5a66 1774
f46b5a66 1775 if (new_size > old_size) {
a22285a6 1776 trans = btrfs_start_transaction(root, 0);
98d5dc13
TI
1777 if (IS_ERR(trans)) {
1778 ret = PTR_ERR(trans);
bb059a37 1779 goto out_finish;
98d5dc13 1780 }
f46b5a66 1781 ret = btrfs_grow_device(trans, device, new_size);
3a45bb20 1782 btrfs_commit_transaction(trans);
ece7d20e 1783 } else if (new_size < old_size) {
f46b5a66 1784 ret = btrfs_shrink_device(device, new_size);
0253f40e 1785 } /* equal, nothing need to do */
f46b5a66 1786
faf8f7b9
MPS
1787 if (ret == 0 && new_size != old_size)
1788 btrfs_info_in_rcu(fs_info,
1789 "resize device %s (devid %llu) from %llu to %llu",
1790 rcu_str_deref(device->name), device->devid,
1791 old_size, new_size);
bb059a37
DS
1792out_finish:
1793 btrfs_exclop_finish(fs_info);
c9e9f97b 1794out_free:
f46b5a66 1795 kfree(vol_args);
bb059a37 1796out_drop:
18f39c41 1797 mnt_drop_write_file(file);
f46b5a66
CH
1798 return ret;
1799}
1800
5d54c67e 1801static noinline int __btrfs_ioctl_snap_create(struct file *file,
52f75f4f 1802 const char *name, unsigned long fd, int subvol,
5d54c67e 1803 bool readonly,
8696c533 1804 struct btrfs_qgroup_inherit *inherit)
f46b5a66 1805{
f46b5a66 1806 int namelen;
3de4586c 1807 int ret = 0;
f46b5a66 1808
325c50e3
JM
1809 if (!S_ISDIR(file_inode(file)->i_mode))
1810 return -ENOTDIR;
1811
a874a63e
LB
1812 ret = mnt_want_write_file(file);
1813 if (ret)
1814 goto out;
1815
72fd032e
SW
1816 namelen = strlen(name);
1817 if (strchr(name, '/')) {
f46b5a66 1818 ret = -EINVAL;
a874a63e 1819 goto out_drop_write;
f46b5a66
CH
1820 }
1821
16780cab
CM
1822 if (name[0] == '.' &&
1823 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1824 ret = -EEXIST;
a874a63e 1825 goto out_drop_write;
16780cab
CM
1826 }
1827
3de4586c 1828 if (subvol) {
72fd032e 1829 ret = btrfs_mksubvol(&file->f_path, name, namelen,
5d54c67e 1830 NULL, readonly, inherit);
cb8e7090 1831 } else {
2903ff01 1832 struct fd src = fdget(fd);
3de4586c 1833 struct inode *src_inode;
2903ff01 1834 if (!src.file) {
3de4586c 1835 ret = -EINVAL;
a874a63e 1836 goto out_drop_write;
3de4586c
CM
1837 }
1838
496ad9aa
AV
1839 src_inode = file_inode(src.file);
1840 if (src_inode->i_sb != file_inode(file)->i_sb) {
c79b4713 1841 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
efe120a0 1842 "Snapshot src from another FS");
23ad5b17 1843 ret = -EXDEV;
21cb47be 1844 } else if (!inode_owner_or_capable(&init_user_ns, src_inode)) {
d0242061
DS
1845 /*
1846 * Subvolume creation is not restricted, but snapshots
1847 * are limited to own subvolumes only
1848 */
1849 ret = -EPERM;
ecd18815 1850 } else {
c11fbb6e 1851 ret = btrfs_mksnapshot(&file->f_path, name, namelen,
ecd18815 1852 BTRFS_I(src_inode)->root,
5d54c67e 1853 readonly, inherit);
3de4586c 1854 }
2903ff01 1855 fdput(src);
cb8e7090 1856 }
a874a63e
LB
1857out_drop_write:
1858 mnt_drop_write_file(file);
f46b5a66 1859out:
72fd032e
SW
1860 return ret;
1861}
1862
1863static noinline int btrfs_ioctl_snap_create(struct file *file,
fa0d2b9b 1864 void __user *arg, int subvol)
72fd032e 1865{
fa0d2b9b 1866 struct btrfs_ioctl_vol_args *vol_args;
72fd032e
SW
1867 int ret;
1868
325c50e3
JM
1869 if (!S_ISDIR(file_inode(file)->i_mode))
1870 return -ENOTDIR;
1871
fa0d2b9b
LZ
1872 vol_args = memdup_user(arg, sizeof(*vol_args));
1873 if (IS_ERR(vol_args))
1874 return PTR_ERR(vol_args);
1875 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
72fd032e 1876
5d54c67e
NB
1877 ret = __btrfs_ioctl_snap_create(file, vol_args->name, vol_args->fd,
1878 subvol, false, NULL);
fdfb1e4f 1879
fa0d2b9b
LZ
1880 kfree(vol_args);
1881 return ret;
1882}
fdfb1e4f 1883
fa0d2b9b
LZ
1884static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1885 void __user *arg, int subvol)
1886{
1887 struct btrfs_ioctl_vol_args_v2 *vol_args;
1888 int ret;
b83cc969 1889 bool readonly = false;
6f72c7e2 1890 struct btrfs_qgroup_inherit *inherit = NULL;
75eaa0e2 1891
325c50e3
JM
1892 if (!S_ISDIR(file_inode(file)->i_mode))
1893 return -ENOTDIR;
1894
fa0d2b9b
LZ
1895 vol_args = memdup_user(arg, sizeof(*vol_args));
1896 if (IS_ERR(vol_args))
1897 return PTR_ERR(vol_args);
1898 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
75eaa0e2 1899
673990db 1900 if (vol_args->flags & ~BTRFS_SUBVOL_CREATE_ARGS_MASK) {
b83cc969 1901 ret = -EOPNOTSUPP;
c47ca32d 1902 goto free_args;
72fd032e 1903 }
fa0d2b9b 1904
b83cc969
LZ
1905 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1906 readonly = true;
6f72c7e2 1907 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
5011c5a6
DC
1908 u64 nums;
1909
1910 if (vol_args->size < sizeof(*inherit) ||
1911 vol_args->size > PAGE_SIZE) {
6f72c7e2 1912 ret = -EINVAL;
c47ca32d 1913 goto free_args;
6f72c7e2
AJ
1914 }
1915 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1916 if (IS_ERR(inherit)) {
1917 ret = PTR_ERR(inherit);
c47ca32d 1918 goto free_args;
6f72c7e2 1919 }
5011c5a6
DC
1920
1921 if (inherit->num_qgroups > PAGE_SIZE ||
1922 inherit->num_ref_copies > PAGE_SIZE ||
1923 inherit->num_excl_copies > PAGE_SIZE) {
1924 ret = -EINVAL;
1925 goto free_inherit;
1926 }
1927
1928 nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
1929 2 * inherit->num_excl_copies;
1930 if (vol_args->size != struct_size(inherit, qgroups, nums)) {
1931 ret = -EINVAL;
1932 goto free_inherit;
1933 }
6f72c7e2 1934 }
fa0d2b9b 1935
5d54c67e
NB
1936 ret = __btrfs_ioctl_snap_create(file, vol_args->name, vol_args->fd,
1937 subvol, readonly, inherit);
c47ca32d
DC
1938 if (ret)
1939 goto free_inherit;
c47ca32d 1940free_inherit:
6f72c7e2 1941 kfree(inherit);
c47ca32d
DC
1942free_args:
1943 kfree(vol_args);
f46b5a66
CH
1944 return ret;
1945}
1946
0caa102d
LZ
1947static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1948 void __user *arg)
1949{
496ad9aa 1950 struct inode *inode = file_inode(file);
0b246afa 1951 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
0caa102d
LZ
1952 struct btrfs_root *root = BTRFS_I(inode)->root;
1953 int ret = 0;
1954 u64 flags = 0;
1955
4a0cc7ca 1956 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
0caa102d
LZ
1957 return -EINVAL;
1958
0b246afa 1959 down_read(&fs_info->subvol_sem);
0caa102d
LZ
1960 if (btrfs_root_readonly(root))
1961 flags |= BTRFS_SUBVOL_RDONLY;
0b246afa 1962 up_read(&fs_info->subvol_sem);
0caa102d
LZ
1963
1964 if (copy_to_user(arg, &flags, sizeof(flags)))
1965 ret = -EFAULT;
1966
1967 return ret;
1968}
1969
1970static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1971 void __user *arg)
1972{
496ad9aa 1973 struct inode *inode = file_inode(file);
0b246afa 1974 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
0caa102d
LZ
1975 struct btrfs_root *root = BTRFS_I(inode)->root;
1976 struct btrfs_trans_handle *trans;
1977 u64 root_flags;
1978 u64 flags;
1979 int ret = 0;
1980
21cb47be 1981 if (!inode_owner_or_capable(&init_user_ns, inode))
bd60ea0f
DS
1982 return -EPERM;
1983
b9ca0664
LB
1984 ret = mnt_want_write_file(file);
1985 if (ret)
1986 goto out;
0caa102d 1987
4a0cc7ca 1988 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
b9ca0664
LB
1989 ret = -EINVAL;
1990 goto out_drop_write;
1991 }
0caa102d 1992
b9ca0664
LB
1993 if (copy_from_user(&flags, arg, sizeof(flags))) {
1994 ret = -EFAULT;
1995 goto out_drop_write;
1996 }
0caa102d 1997
b9ca0664
LB
1998 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1999 ret = -EOPNOTSUPP;
2000 goto out_drop_write;
2001 }
0caa102d 2002
0b246afa 2003 down_write(&fs_info->subvol_sem);
0caa102d
LZ
2004
2005 /* nothing to do */
2006 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
b9ca0664 2007 goto out_drop_sem;
0caa102d
LZ
2008
2009 root_flags = btrfs_root_flags(&root->root_item);
2c686537 2010 if (flags & BTRFS_SUBVOL_RDONLY) {
0caa102d
LZ
2011 btrfs_set_root_flags(&root->root_item,
2012 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
2c686537
DS
2013 } else {
2014 /*
2015 * Block RO -> RW transition if this subvolume is involved in
2016 * send
2017 */
2018 spin_lock(&root->root_item_lock);
2019 if (root->send_in_progress == 0) {
2020 btrfs_set_root_flags(&root->root_item,
0caa102d 2021 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
2c686537
DS
2022 spin_unlock(&root->root_item_lock);
2023 } else {
2024 spin_unlock(&root->root_item_lock);
0b246afa
JM
2025 btrfs_warn(fs_info,
2026 "Attempt to set subvolume %llu read-write during send",
2027 root->root_key.objectid);
2c686537
DS
2028 ret = -EPERM;
2029 goto out_drop_sem;
2030 }
2031 }
0caa102d
LZ
2032
2033 trans = btrfs_start_transaction(root, 1);
2034 if (IS_ERR(trans)) {
2035 ret = PTR_ERR(trans);
2036 goto out_reset;
2037 }
2038
0b246afa 2039 ret = btrfs_update_root(trans, fs_info->tree_root,
0caa102d 2040 &root->root_key, &root->root_item);
9417ebc8
NB
2041 if (ret < 0) {
2042 btrfs_end_transaction(trans);
2043 goto out_reset;
2044 }
2045
2046 ret = btrfs_commit_transaction(trans);
0caa102d 2047
0caa102d
LZ
2048out_reset:
2049 if (ret)
2050 btrfs_set_root_flags(&root->root_item, root_flags);
b9ca0664 2051out_drop_sem:
0b246afa 2052 up_write(&fs_info->subvol_sem);
b9ca0664
LB
2053out_drop_write:
2054 mnt_drop_write_file(file);
2055out:
0caa102d
LZ
2056 return ret;
2057}
2058
ac8e9819
CM
2059static noinline int key_in_sk(struct btrfs_key *key,
2060 struct btrfs_ioctl_search_key *sk)
2061{
abc6e134
CM
2062 struct btrfs_key test;
2063 int ret;
2064
2065 test.objectid = sk->min_objectid;
2066 test.type = sk->min_type;
2067 test.offset = sk->min_offset;
2068
2069 ret = btrfs_comp_cpu_keys(key, &test);
2070 if (ret < 0)
ac8e9819 2071 return 0;
abc6e134
CM
2072
2073 test.objectid = sk->max_objectid;
2074 test.type = sk->max_type;
2075 test.offset = sk->max_offset;
2076
2077 ret = btrfs_comp_cpu_keys(key, &test);
2078 if (ret > 0)
ac8e9819
CM
2079 return 0;
2080 return 1;
2081}
2082
df397565 2083static noinline int copy_to_sk(struct btrfs_path *path,
ac8e9819
CM
2084 struct btrfs_key *key,
2085 struct btrfs_ioctl_search_key *sk,
9b6e817d 2086 size_t *buf_size,
ba346b35 2087 char __user *ubuf,
ac8e9819
CM
2088 unsigned long *sk_offset,
2089 int *num_found)
2090{
2091 u64 found_transid;
2092 struct extent_buffer *leaf;
2093 struct btrfs_ioctl_search_header sh;
dd81d459 2094 struct btrfs_key test;
ac8e9819
CM
2095 unsigned long item_off;
2096 unsigned long item_len;
2097 int nritems;
2098 int i;
2099 int slot;
ac8e9819
CM
2100 int ret = 0;
2101
2102 leaf = path->nodes[0];
2103 slot = path->slots[0];
2104 nritems = btrfs_header_nritems(leaf);
2105
2106 if (btrfs_header_generation(leaf) > sk->max_transid) {
2107 i = nritems;
2108 goto advance_key;
2109 }
2110 found_transid = btrfs_header_generation(leaf);
2111
2112 for (i = slot; i < nritems; i++) {
2113 item_off = btrfs_item_ptr_offset(leaf, i);
2114 item_len = btrfs_item_size_nr(leaf, i);
2115
03b71c6c
GP
2116 btrfs_item_key_to_cpu(leaf, key, i);
2117 if (!key_in_sk(key, sk))
2118 continue;
2119
9b6e817d 2120 if (sizeof(sh) + item_len > *buf_size) {
8f5f6178
GH
2121 if (*num_found) {
2122 ret = 1;
2123 goto out;
2124 }
2125
2126 /*
2127 * return one empty item back for v1, which does not
2128 * handle -EOVERFLOW
2129 */
2130
9b6e817d 2131 *buf_size = sizeof(sh) + item_len;
ac8e9819 2132 item_len = 0;
8f5f6178
GH
2133 ret = -EOVERFLOW;
2134 }
ac8e9819 2135
9b6e817d 2136 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
ac8e9819 2137 ret = 1;
25c9bc2e 2138 goto out;
ac8e9819
CM
2139 }
2140
ac8e9819
CM
2141 sh.objectid = key->objectid;
2142 sh.offset = key->offset;
2143 sh.type = key->type;
2144 sh.len = item_len;
2145 sh.transid = found_transid;
2146
a48b73ec
JB
2147 /*
2148 * Copy search result header. If we fault then loop again so we
2149 * can fault in the pages and -EFAULT there if there's a
2150 * problem. Otherwise we'll fault and then copy the buffer in
2151 * properly this next time through
2152 */
2153 if (copy_to_user_nofault(ubuf + *sk_offset, &sh, sizeof(sh))) {
2154 ret = 0;
ba346b35
GH
2155 goto out;
2156 }
2157
ac8e9819
CM
2158 *sk_offset += sizeof(sh);
2159
2160 if (item_len) {
ba346b35 2161 char __user *up = ubuf + *sk_offset;
a48b73ec
JB
2162 /*
2163 * Copy the item, same behavior as above, but reset the
2164 * * sk_offset so we copy the full thing again.
2165 */
2166 if (read_extent_buffer_to_user_nofault(leaf, up,
2167 item_off, item_len)) {
2168 ret = 0;
2169 *sk_offset -= sizeof(sh);
ba346b35
GH
2170 goto out;
2171 }
2172
ac8e9819 2173 *sk_offset += item_len;
ac8e9819 2174 }
e2156867 2175 (*num_found)++;
ac8e9819 2176
8f5f6178
GH
2177 if (ret) /* -EOVERFLOW from above */
2178 goto out;
2179
25c9bc2e
GH
2180 if (*num_found >= sk->nr_items) {
2181 ret = 1;
2182 goto out;
2183 }
ac8e9819
CM
2184 }
2185advance_key:
abc6e134 2186 ret = 0;
dd81d459
NA
2187 test.objectid = sk->max_objectid;
2188 test.type = sk->max_type;
2189 test.offset = sk->max_offset;
2190 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2191 ret = 1;
2192 else if (key->offset < (u64)-1)
ac8e9819 2193 key->offset++;
dd81d459 2194 else if (key->type < (u8)-1) {
abc6e134 2195 key->offset = 0;
ac8e9819 2196 key->type++;
dd81d459 2197 } else if (key->objectid < (u64)-1) {
abc6e134
CM
2198 key->offset = 0;
2199 key->type = 0;
ac8e9819 2200 key->objectid++;
abc6e134
CM
2201 } else
2202 ret = 1;
25c9bc2e 2203out:
ba346b35
GH
2204 /*
2205 * 0: all items from this leaf copied, continue with next
2206 * 1: * more items can be copied, but unused buffer is too small
2207 * * all items were found
2208 * Either way, it will stops the loop which iterates to the next
2209 * leaf
2210 * -EOVERFLOW: item was to large for buffer
2211 * -EFAULT: could not copy extent buffer back to userspace
2212 */
ac8e9819
CM
2213 return ret;
2214}
2215
2216static noinline int search_ioctl(struct inode *inode,
12544442 2217 struct btrfs_ioctl_search_key *sk,
9b6e817d 2218 size_t *buf_size,
ba346b35 2219 char __user *ubuf)
ac8e9819 2220{
0b246afa 2221 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
ac8e9819
CM
2222 struct btrfs_root *root;
2223 struct btrfs_key key;
ac8e9819 2224 struct btrfs_path *path;
ac8e9819
CM
2225 int ret;
2226 int num_found = 0;
2227 unsigned long sk_offset = 0;
2228
9b6e817d
GH
2229 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2230 *buf_size = sizeof(struct btrfs_ioctl_search_header);
12544442 2231 return -EOVERFLOW;
9b6e817d 2232 }
12544442 2233
ac8e9819
CM
2234 path = btrfs_alloc_path();
2235 if (!path)
2236 return -ENOMEM;
2237
2238 if (sk->tree_id == 0) {
2239 /* search the root of the inode that was passed */
00246528 2240 root = btrfs_grab_root(BTRFS_I(inode)->root);
ac8e9819 2241 } else {
56e9357a 2242 root = btrfs_get_fs_root(info, sk->tree_id, true);
ac8e9819 2243 if (IS_ERR(root)) {
ac8e9819 2244 btrfs_free_path(path);
ad1e3d56 2245 return PTR_ERR(root);
ac8e9819
CM
2246 }
2247 }
2248
2249 key.objectid = sk->min_objectid;
2250 key.type = sk->min_type;
2251 key.offset = sk->min_offset;
2252
67871254 2253 while (1) {
1c78544e
FM
2254 ret = fault_in_pages_writeable(ubuf + sk_offset,
2255 *buf_size - sk_offset);
a48b73ec
JB
2256 if (ret)
2257 break;
2258
6174d3cb 2259 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
ac8e9819
CM
2260 if (ret != 0) {
2261 if (ret > 0)
2262 ret = 0;
2263 goto err;
2264 }
df397565 2265 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
ac8e9819 2266 &sk_offset, &num_found);
b3b4aa74 2267 btrfs_release_path(path);
25c9bc2e 2268 if (ret)
ac8e9819
CM
2269 break;
2270
2271 }
8f5f6178
GH
2272 if (ret > 0)
2273 ret = 0;
ac8e9819
CM
2274err:
2275 sk->nr_items = num_found;
00246528 2276 btrfs_put_root(root);
ac8e9819
CM
2277 btrfs_free_path(path);
2278 return ret;
2279}
2280
2281static noinline int btrfs_ioctl_tree_search(struct file *file,
2282 void __user *argp)
2283{
ba346b35
GH
2284 struct btrfs_ioctl_search_args __user *uargs;
2285 struct btrfs_ioctl_search_key sk;
9b6e817d
GH
2286 struct inode *inode;
2287 int ret;
2288 size_t buf_size;
ac8e9819
CM
2289
2290 if (!capable(CAP_SYS_ADMIN))
2291 return -EPERM;
2292
ba346b35
GH
2293 uargs = (struct btrfs_ioctl_search_args __user *)argp;
2294
2295 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2296 return -EFAULT;
ac8e9819 2297
ba346b35 2298 buf_size = sizeof(uargs->buf);
ac8e9819 2299
496ad9aa 2300 inode = file_inode(file);
ba346b35 2301 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
8f5f6178
GH
2302
2303 /*
2304 * In the origin implementation an overflow is handled by returning a
2305 * search header with a len of zero, so reset ret.
2306 */
2307 if (ret == -EOVERFLOW)
2308 ret = 0;
2309
ba346b35 2310 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
ac8e9819 2311 ret = -EFAULT;
ac8e9819
CM
2312 return ret;
2313}
2314
cc68a8a5
GH
2315static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2316 void __user *argp)
2317{
2318 struct btrfs_ioctl_search_args_v2 __user *uarg;
2319 struct btrfs_ioctl_search_args_v2 args;
2320 struct inode *inode;
2321 int ret;
2322 size_t buf_size;
ee22184b 2323 const size_t buf_limit = SZ_16M;
cc68a8a5
GH
2324
2325 if (!capable(CAP_SYS_ADMIN))
2326 return -EPERM;
2327
2328 /* copy search header and buffer size */
2329 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2330 if (copy_from_user(&args, uarg, sizeof(args)))
2331 return -EFAULT;
2332
2333 buf_size = args.buf_size;
2334
cc68a8a5
GH
2335 /* limit result size to 16MB */
2336 if (buf_size > buf_limit)
2337 buf_size = buf_limit;
2338
2339 inode = file_inode(file);
2340 ret = search_ioctl(inode, &args.key, &buf_size,
718dc5fa 2341 (char __user *)(&uarg->buf[0]));
cc68a8a5
GH
2342 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2343 ret = -EFAULT;
2344 else if (ret == -EOVERFLOW &&
2345 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2346 ret = -EFAULT;
2347
ac8e9819
CM
2348 return ret;
2349}
2350
98d377a0 2351/*
ac8e9819
CM
2352 * Search INODE_REFs to identify path name of 'dirid' directory
2353 * in a 'tree_id' tree. and sets path name to 'name'.
2354 */
98d377a0
TH
2355static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2356 u64 tree_id, u64 dirid, char *name)
2357{
2358 struct btrfs_root *root;
2359 struct btrfs_key key;
ac8e9819 2360 char *ptr;
98d377a0
TH
2361 int ret = -1;
2362 int slot;
2363 int len;
2364 int total_len = 0;
2365 struct btrfs_inode_ref *iref;
2366 struct extent_buffer *l;
2367 struct btrfs_path *path;
2368
2369 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2370 name[0]='\0';
2371 return 0;
2372 }
2373
2374 path = btrfs_alloc_path();
2375 if (!path)
2376 return -ENOMEM;
2377
c8bcbfbd 2378 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
98d377a0 2379
56e9357a 2380 root = btrfs_get_fs_root(info, tree_id, true);
98d377a0 2381 if (IS_ERR(root)) {
ad1e3d56 2382 ret = PTR_ERR(root);
88234012
JB
2383 root = NULL;
2384 goto out;
2385 }
98d377a0
TH
2386
2387 key.objectid = dirid;
2388 key.type = BTRFS_INODE_REF_KEY;
8ad6fcab 2389 key.offset = (u64)-1;
98d377a0 2390
67871254 2391 while (1) {
0ff40a91 2392 ret = btrfs_search_backwards(root, &key, path);
98d377a0
TH
2393 if (ret < 0)
2394 goto out;
18674c6c 2395 else if (ret > 0) {
0ff40a91
MPS
2396 ret = -ENOENT;
2397 goto out;
18674c6c 2398 }
98d377a0
TH
2399
2400 l = path->nodes[0];
2401 slot = path->slots[0];
98d377a0 2402
98d377a0
TH
2403 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2404 len = btrfs_inode_ref_name_len(l, iref);
2405 ptr -= len + 1;
2406 total_len += len + 1;
a696cf35
FDBM
2407 if (ptr < name) {
2408 ret = -ENAMETOOLONG;
98d377a0 2409 goto out;
a696cf35 2410 }
98d377a0
TH
2411
2412 *(ptr + len) = '/';
67871254 2413 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
98d377a0
TH
2414
2415 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2416 break;
2417
b3b4aa74 2418 btrfs_release_path(path);
98d377a0 2419 key.objectid = key.offset;
8ad6fcab 2420 key.offset = (u64)-1;
98d377a0 2421 dirid = key.objectid;
98d377a0 2422 }
77906a50 2423 memmove(name, ptr, total_len);
67871254 2424 name[total_len] = '\0';
98d377a0
TH
2425 ret = 0;
2426out:
00246528 2427 btrfs_put_root(root);
98d377a0 2428 btrfs_free_path(path);
ac8e9819
CM
2429 return ret;
2430}
2431
23d0b79d
TM
2432static int btrfs_search_path_in_tree_user(struct inode *inode,
2433 struct btrfs_ioctl_ino_lookup_user_args *args)
2434{
2435 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2436 struct super_block *sb = inode->i_sb;
2437 struct btrfs_key upper_limit = BTRFS_I(inode)->location;
2438 u64 treeid = BTRFS_I(inode)->root->root_key.objectid;
2439 u64 dirid = args->dirid;
2440 unsigned long item_off;
2441 unsigned long item_len;
2442 struct btrfs_inode_ref *iref;
2443 struct btrfs_root_ref *rref;
b8a49ae1 2444 struct btrfs_root *root = NULL;
23d0b79d
TM
2445 struct btrfs_path *path;
2446 struct btrfs_key key, key2;
2447 struct extent_buffer *leaf;
2448 struct inode *temp_inode;
2449 char *ptr;
2450 int slot;
2451 int len;
2452 int total_len = 0;
2453 int ret;
2454
2455 path = btrfs_alloc_path();
2456 if (!path)
2457 return -ENOMEM;
2458
2459 /*
2460 * If the bottom subvolume does not exist directly under upper_limit,
2461 * construct the path in from the bottom up.
2462 */
2463 if (dirid != upper_limit.objectid) {
2464 ptr = &args->path[BTRFS_INO_LOOKUP_USER_PATH_MAX - 1];
2465
56e9357a 2466 root = btrfs_get_fs_root(fs_info, treeid, true);
23d0b79d
TM
2467 if (IS_ERR(root)) {
2468 ret = PTR_ERR(root);
2469 goto out;
2470 }
2471
2472 key.objectid = dirid;
2473 key.type = BTRFS_INODE_REF_KEY;
2474 key.offset = (u64)-1;
2475 while (1) {
0ff40a91
MPS
2476 ret = btrfs_search_backwards(root, &key, path);
2477 if (ret < 0)
2478 goto out_put;
2479 else if (ret > 0) {
2480 ret = -ENOENT;
b8a49ae1 2481 goto out_put;
23d0b79d
TM
2482 }
2483
2484 leaf = path->nodes[0];
2485 slot = path->slots[0];
23d0b79d
TM
2486
2487 iref = btrfs_item_ptr(leaf, slot, struct btrfs_inode_ref);
2488 len = btrfs_inode_ref_name_len(leaf, iref);
2489 ptr -= len + 1;
2490 total_len += len + 1;
2491 if (ptr < args->path) {
2492 ret = -ENAMETOOLONG;
b8a49ae1 2493 goto out_put;
23d0b79d
TM
2494 }
2495
2496 *(ptr + len) = '/';
2497 read_extent_buffer(leaf, ptr,
2498 (unsigned long)(iref + 1), len);
2499
2500 /* Check the read+exec permission of this directory */
2501 ret = btrfs_previous_item(root, path, dirid,
2502 BTRFS_INODE_ITEM_KEY);
2503 if (ret < 0) {
b8a49ae1 2504 goto out_put;
23d0b79d
TM
2505 } else if (ret > 0) {
2506 ret = -ENOENT;
b8a49ae1 2507 goto out_put;
23d0b79d
TM
2508 }
2509
2510 leaf = path->nodes[0];
2511 slot = path->slots[0];
2512 btrfs_item_key_to_cpu(leaf, &key2, slot);
2513 if (key2.objectid != dirid) {
2514 ret = -ENOENT;
b8a49ae1 2515 goto out_put;
23d0b79d
TM
2516 }
2517
0202e83f 2518 temp_inode = btrfs_iget(sb, key2.objectid, root);
3ca57bd6
MT
2519 if (IS_ERR(temp_inode)) {
2520 ret = PTR_ERR(temp_inode);
b8a49ae1 2521 goto out_put;
3ca57bd6 2522 }
47291baa
CB
2523 ret = inode_permission(&init_user_ns, temp_inode,
2524 MAY_READ | MAY_EXEC);
23d0b79d
TM
2525 iput(temp_inode);
2526 if (ret) {
2527 ret = -EACCES;
b8a49ae1 2528 goto out_put;
23d0b79d
TM
2529 }
2530
2531 if (key.offset == upper_limit.objectid)
2532 break;
2533 if (key.objectid == BTRFS_FIRST_FREE_OBJECTID) {
2534 ret = -EACCES;
b8a49ae1 2535 goto out_put;
23d0b79d
TM
2536 }
2537
2538 btrfs_release_path(path);
2539 key.objectid = key.offset;
2540 key.offset = (u64)-1;
2541 dirid = key.objectid;
2542 }
2543
2544 memmove(args->path, ptr, total_len);
2545 args->path[total_len] = '\0';
00246528 2546 btrfs_put_root(root);
b8a49ae1 2547 root = NULL;
23d0b79d
TM
2548 btrfs_release_path(path);
2549 }
2550
2551 /* Get the bottom subvolume's name from ROOT_REF */
23d0b79d
TM
2552 key.objectid = treeid;
2553 key.type = BTRFS_ROOT_REF_KEY;
2554 key.offset = args->treeid;
b8a49ae1 2555 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
23d0b79d
TM
2556 if (ret < 0) {
2557 goto out;
2558 } else if (ret > 0) {
2559 ret = -ENOENT;
2560 goto out;
2561 }
2562
2563 leaf = path->nodes[0];
2564 slot = path->slots[0];
2565 btrfs_item_key_to_cpu(leaf, &key, slot);
2566
2567 item_off = btrfs_item_ptr_offset(leaf, slot);
2568 item_len = btrfs_item_size_nr(leaf, slot);
2569 /* Check if dirid in ROOT_REF corresponds to passed dirid */
2570 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2571 if (args->dirid != btrfs_root_ref_dirid(leaf, rref)) {
2572 ret = -EINVAL;
2573 goto out;
2574 }
2575
2576 /* Copy subvolume's name */
2577 item_off += sizeof(struct btrfs_root_ref);
2578 item_len -= sizeof(struct btrfs_root_ref);
2579 read_extent_buffer(leaf, args->name, item_off, item_len);
2580 args->name[item_len] = 0;
2581
b8a49ae1 2582out_put:
00246528 2583 btrfs_put_root(root);
23d0b79d
TM
2584out:
2585 btrfs_free_path(path);
2586 return ret;
2587}
2588
ac8e9819
CM
2589static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2590 void __user *argp)
2591{
bece2e82
BVA
2592 struct btrfs_ioctl_ino_lookup_args *args;
2593 struct inode *inode;
01b810b8 2594 int ret = 0;
ac8e9819 2595
2354d08f
JL
2596 args = memdup_user(argp, sizeof(*args));
2597 if (IS_ERR(args))
2598 return PTR_ERR(args);
c2b96929 2599
496ad9aa 2600 inode = file_inode(file);
ac8e9819 2601
01b810b8
DS
2602 /*
2603 * Unprivileged query to obtain the containing subvolume root id. The
2604 * path is reset so it's consistent with btrfs_search_path_in_tree.
2605 */
1b53ac4d
CM
2606 if (args->treeid == 0)
2607 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2608
01b810b8
DS
2609 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2610 args->name[0] = 0;
2611 goto out;
2612 }
2613
2614 if (!capable(CAP_SYS_ADMIN)) {
2615 ret = -EPERM;
2616 goto out;
2617 }
2618
ac8e9819
CM
2619 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2620 args->treeid, args->objectid,
2621 args->name);
2622
01b810b8 2623out:
ac8e9819
CM
2624 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2625 ret = -EFAULT;
2626
2627 kfree(args);
98d377a0
TH
2628 return ret;
2629}
2630
23d0b79d
TM
2631/*
2632 * Version of ino_lookup ioctl (unprivileged)
2633 *
2634 * The main differences from ino_lookup ioctl are:
2635 *
2636 * 1. Read + Exec permission will be checked using inode_permission() during
2637 * path construction. -EACCES will be returned in case of failure.
2638 * 2. Path construction will be stopped at the inode number which corresponds
2639 * to the fd with which this ioctl is called. If constructed path does not
2640 * exist under fd's inode, -EACCES will be returned.
2641 * 3. The name of bottom subvolume is also searched and filled.
2642 */
2643static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
2644{
2645 struct btrfs_ioctl_ino_lookup_user_args *args;
2646 struct inode *inode;
2647 int ret;
2648
2649 args = memdup_user(argp, sizeof(*args));
2650 if (IS_ERR(args))
2651 return PTR_ERR(args);
2652
2653 inode = file_inode(file);
2654
2655 if (args->dirid == BTRFS_FIRST_FREE_OBJECTID &&
2656 BTRFS_I(inode)->location.objectid != BTRFS_FIRST_FREE_OBJECTID) {
2657 /*
2658 * The subvolume does not exist under fd with which this is
2659 * called
2660 */
2661 kfree(args);
2662 return -EACCES;
2663 }
2664
2665 ret = btrfs_search_path_in_tree_user(inode, args);
2666
2667 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2668 ret = -EFAULT;
2669
2670 kfree(args);
2671 return ret;
2672}
2673
b64ec075
TM
2674/* Get the subvolume information in BTRFS_ROOT_ITEM and BTRFS_ROOT_BACKREF */
2675static int btrfs_ioctl_get_subvol_info(struct file *file, void __user *argp)
2676{
2677 struct btrfs_ioctl_get_subvol_info_args *subvol_info;
2678 struct btrfs_fs_info *fs_info;
2679 struct btrfs_root *root;
2680 struct btrfs_path *path;
2681 struct btrfs_key key;
2682 struct btrfs_root_item *root_item;
2683 struct btrfs_root_ref *rref;
2684 struct extent_buffer *leaf;
2685 unsigned long item_off;
2686 unsigned long item_len;
2687 struct inode *inode;
2688 int slot;
2689 int ret = 0;
2690
2691 path = btrfs_alloc_path();
2692 if (!path)
2693 return -ENOMEM;
2694
2695 subvol_info = kzalloc(sizeof(*subvol_info), GFP_KERNEL);
2696 if (!subvol_info) {
2697 btrfs_free_path(path);
2698 return -ENOMEM;
2699 }
2700
2701 inode = file_inode(file);
2702 fs_info = BTRFS_I(inode)->root->fs_info;
2703
2704 /* Get root_item of inode's subvolume */
2705 key.objectid = BTRFS_I(inode)->root->root_key.objectid;
56e9357a 2706 root = btrfs_get_fs_root(fs_info, key.objectid, true);
b64ec075
TM
2707 if (IS_ERR(root)) {
2708 ret = PTR_ERR(root);
04734e84
JB
2709 goto out_free;
2710 }
b64ec075
TM
2711 root_item = &root->root_item;
2712
2713 subvol_info->treeid = key.objectid;
2714
2715 subvol_info->generation = btrfs_root_generation(root_item);
2716 subvol_info->flags = btrfs_root_flags(root_item);
2717
2718 memcpy(subvol_info->uuid, root_item->uuid, BTRFS_UUID_SIZE);
2719 memcpy(subvol_info->parent_uuid, root_item->parent_uuid,
2720 BTRFS_UUID_SIZE);
2721 memcpy(subvol_info->received_uuid, root_item->received_uuid,
2722 BTRFS_UUID_SIZE);
2723
2724 subvol_info->ctransid = btrfs_root_ctransid(root_item);
2725 subvol_info->ctime.sec = btrfs_stack_timespec_sec(&root_item->ctime);
2726 subvol_info->ctime.nsec = btrfs_stack_timespec_nsec(&root_item->ctime);
2727
2728 subvol_info->otransid = btrfs_root_otransid(root_item);
2729 subvol_info->otime.sec = btrfs_stack_timespec_sec(&root_item->otime);
2730 subvol_info->otime.nsec = btrfs_stack_timespec_nsec(&root_item->otime);
2731
2732 subvol_info->stransid = btrfs_root_stransid(root_item);
2733 subvol_info->stime.sec = btrfs_stack_timespec_sec(&root_item->stime);
2734 subvol_info->stime.nsec = btrfs_stack_timespec_nsec(&root_item->stime);
2735
2736 subvol_info->rtransid = btrfs_root_rtransid(root_item);
2737 subvol_info->rtime.sec = btrfs_stack_timespec_sec(&root_item->rtime);
2738 subvol_info->rtime.nsec = btrfs_stack_timespec_nsec(&root_item->rtime);
2739
2740 if (key.objectid != BTRFS_FS_TREE_OBJECTID) {
2741 /* Search root tree for ROOT_BACKREF of this subvolume */
b64ec075
TM
2742 key.type = BTRFS_ROOT_BACKREF_KEY;
2743 key.offset = 0;
04734e84 2744 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
b64ec075
TM
2745 if (ret < 0) {
2746 goto out;
2747 } else if (path->slots[0] >=
2748 btrfs_header_nritems(path->nodes[0])) {
04734e84 2749 ret = btrfs_next_leaf(fs_info->tree_root, path);
b64ec075
TM
2750 if (ret < 0) {
2751 goto out;
2752 } else if (ret > 0) {
2753 ret = -EUCLEAN;
2754 goto out;
2755 }
2756 }
2757
2758 leaf = path->nodes[0];
2759 slot = path->slots[0];
2760 btrfs_item_key_to_cpu(leaf, &key, slot);
2761 if (key.objectid == subvol_info->treeid &&
2762 key.type == BTRFS_ROOT_BACKREF_KEY) {
2763 subvol_info->parent_id = key.offset;
2764
2765 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2766 subvol_info->dirid = btrfs_root_ref_dirid(leaf, rref);
2767
2768 item_off = btrfs_item_ptr_offset(leaf, slot)
2769 + sizeof(struct btrfs_root_ref);
2770 item_len = btrfs_item_size_nr(leaf, slot)
2771 - sizeof(struct btrfs_root_ref);
2772 read_extent_buffer(leaf, subvol_info->name,
2773 item_off, item_len);
2774 } else {
2775 ret = -ENOENT;
2776 goto out;
2777 }
2778 }
2779
2780 if (copy_to_user(argp, subvol_info, sizeof(*subvol_info)))
2781 ret = -EFAULT;
2782
2783out:
00246528 2784 btrfs_put_root(root);
04734e84 2785out_free:
b64ec075 2786 btrfs_free_path(path);
b091f7fe 2787 kfree(subvol_info);
b64ec075
TM
2788 return ret;
2789}
2790
42e4b520
TM
2791/*
2792 * Return ROOT_REF information of the subvolume containing this inode
2793 * except the subvolume name.
2794 */
2795static int btrfs_ioctl_get_subvol_rootref(struct file *file, void __user *argp)
2796{
2797 struct btrfs_ioctl_get_subvol_rootref_args *rootrefs;
2798 struct btrfs_root_ref *rref;
2799 struct btrfs_root *root;
2800 struct btrfs_path *path;
2801 struct btrfs_key key;
2802 struct extent_buffer *leaf;
2803 struct inode *inode;
2804 u64 objectid;
2805 int slot;
2806 int ret;
2807 u8 found;
2808
2809 path = btrfs_alloc_path();
2810 if (!path)
2811 return -ENOMEM;
2812
2813 rootrefs = memdup_user(argp, sizeof(*rootrefs));
2814 if (IS_ERR(rootrefs)) {
2815 btrfs_free_path(path);
2816 return PTR_ERR(rootrefs);
2817 }
2818
2819 inode = file_inode(file);
2820 root = BTRFS_I(inode)->root->fs_info->tree_root;
2821 objectid = BTRFS_I(inode)->root->root_key.objectid;
2822
2823 key.objectid = objectid;
2824 key.type = BTRFS_ROOT_REF_KEY;
2825 key.offset = rootrefs->min_treeid;
2826 found = 0;
2827
2828 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2829 if (ret < 0) {
2830 goto out;
2831 } else if (path->slots[0] >=
2832 btrfs_header_nritems(path->nodes[0])) {
2833 ret = btrfs_next_leaf(root, path);
2834 if (ret < 0) {
2835 goto out;
2836 } else if (ret > 0) {
2837 ret = -EUCLEAN;
2838 goto out;
2839 }
2840 }
2841 while (1) {
2842 leaf = path->nodes[0];
2843 slot = path->slots[0];
2844
2845 btrfs_item_key_to_cpu(leaf, &key, slot);
2846 if (key.objectid != objectid || key.type != BTRFS_ROOT_REF_KEY) {
2847 ret = 0;
2848 goto out;
2849 }
2850
2851 if (found == BTRFS_MAX_ROOTREF_BUFFER_NUM) {
2852 ret = -EOVERFLOW;
2853 goto out;
2854 }
2855
2856 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2857 rootrefs->rootref[found].treeid = key.offset;
2858 rootrefs->rootref[found].dirid =
2859 btrfs_root_ref_dirid(leaf, rref);
2860 found++;
2861
2862 ret = btrfs_next_item(root, path);
2863 if (ret < 0) {
2864 goto out;
2865 } else if (ret > 0) {
2866 ret = -EUCLEAN;
2867 goto out;
2868 }
2869 }
2870
2871out:
2872 if (!ret || ret == -EOVERFLOW) {
2873 rootrefs->num_items = found;
2874 /* update min_treeid for next search */
2875 if (found)
2876 rootrefs->min_treeid =
2877 rootrefs->rootref[found - 1].treeid + 1;
2878 if (copy_to_user(argp, rootrefs, sizeof(*rootrefs)))
2879 ret = -EFAULT;
2880 }
2881
2882 kfree(rootrefs);
2883 btrfs_free_path(path);
2884
2885 return ret;
2886}
2887
76dda93c 2888static noinline int btrfs_ioctl_snap_destroy(struct file *file,
949964c9
MPS
2889 void __user *arg,
2890 bool destroy_v2)
76dda93c 2891{
54563d41 2892 struct dentry *parent = file->f_path.dentry;
0b246afa 2893 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
76dda93c 2894 struct dentry *dentry;
2b0143b5 2895 struct inode *dir = d_inode(parent);
76dda93c
YZ
2896 struct inode *inode;
2897 struct btrfs_root *root = BTRFS_I(dir)->root;
2898 struct btrfs_root *dest = NULL;
949964c9
MPS
2899 struct btrfs_ioctl_vol_args *vol_args = NULL;
2900 struct btrfs_ioctl_vol_args_v2 *vol_args2 = NULL;
2901 char *subvol_name, *subvol_name_ptr = NULL;
2902 int subvol_namelen;
76dda93c 2903 int err = 0;
949964c9 2904 bool destroy_parent = false;
76dda93c 2905
949964c9
MPS
2906 if (destroy_v2) {
2907 vol_args2 = memdup_user(arg, sizeof(*vol_args2));
2908 if (IS_ERR(vol_args2))
2909 return PTR_ERR(vol_args2);
325c50e3 2910
949964c9
MPS
2911 if (vol_args2->flags & ~BTRFS_SUBVOL_DELETE_ARGS_MASK) {
2912 err = -EOPNOTSUPP;
2913 goto out;
2914 }
76dda93c 2915
949964c9
MPS
2916 /*
2917 * If SPEC_BY_ID is not set, we are looking for the subvolume by
2918 * name, same as v1 currently does.
2919 */
2920 if (!(vol_args2->flags & BTRFS_SUBVOL_SPEC_BY_ID)) {
2921 vol_args2->name[BTRFS_SUBVOL_NAME_MAX] = 0;
2922 subvol_name = vol_args2->name;
2923
2924 err = mnt_want_write_file(file);
2925 if (err)
2926 goto out;
2927 } else {
2928 if (vol_args2->subvolid < BTRFS_FIRST_FREE_OBJECTID) {
2929 err = -EINVAL;
2930 goto out;
2931 }
2932
2933 err = mnt_want_write_file(file);
2934 if (err)
2935 goto out;
2936
2937 dentry = btrfs_get_dentry(fs_info->sb,
2938 BTRFS_FIRST_FREE_OBJECTID,
2939 vol_args2->subvolid, 0, 0);
2940 if (IS_ERR(dentry)) {
2941 err = PTR_ERR(dentry);
2942 goto out_drop_write;
2943 }
2944
2945 /*
2946 * Change the default parent since the subvolume being
2947 * deleted can be outside of the current mount point.
2948 */
2949 parent = btrfs_get_parent(dentry);
2950
2951 /*
2952 * At this point dentry->d_name can point to '/' if the
2953 * subvolume we want to destroy is outsite of the
2954 * current mount point, so we need to release the
2955 * current dentry and execute the lookup to return a new
2956 * one with ->d_name pointing to the
2957 * <mount point>/subvol_name.
2958 */
2959 dput(dentry);
2960 if (IS_ERR(parent)) {
2961 err = PTR_ERR(parent);
2962 goto out_drop_write;
2963 }
2964 dir = d_inode(parent);
2965
2966 /*
2967 * If v2 was used with SPEC_BY_ID, a new parent was
2968 * allocated since the subvolume can be outside of the
2969 * current mount point. Later on we need to release this
2970 * new parent dentry.
2971 */
2972 destroy_parent = true;
2973
2974 subvol_name_ptr = btrfs_get_subvol_name_from_objectid(
2975 fs_info, vol_args2->subvolid);
2976 if (IS_ERR(subvol_name_ptr)) {
2977 err = PTR_ERR(subvol_name_ptr);
2978 goto free_parent;
2979 }
1a9fd417 2980 /* subvol_name_ptr is already nul terminated */
949964c9
MPS
2981 subvol_name = (char *)kbasename(subvol_name_ptr);
2982 }
2983 } else {
2984 vol_args = memdup_user(arg, sizeof(*vol_args));
2985 if (IS_ERR(vol_args))
2986 return PTR_ERR(vol_args);
2987
2988 vol_args->name[BTRFS_PATH_NAME_MAX] = 0;
2989 subvol_name = vol_args->name;
2990
2991 err = mnt_want_write_file(file);
2992 if (err)
2993 goto out;
76dda93c
YZ
2994 }
2995
949964c9 2996 subvol_namelen = strlen(subvol_name);
76dda93c 2997
949964c9
MPS
2998 if (strchr(subvol_name, '/') ||
2999 strncmp(subvol_name, "..", subvol_namelen) == 0) {
3000 err = -EINVAL;
3001 goto free_subvol_name;
3002 }
3003
3004 if (!S_ISDIR(dir->i_mode)) {
3005 err = -ENOTDIR;
3006 goto free_subvol_name;
3007 }
521e0546 3008
00235411
AV
3009 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
3010 if (err == -EINTR)
949964c9
MPS
3011 goto free_subvol_name;
3012 dentry = lookup_one_len(subvol_name, parent, subvol_namelen);
76dda93c
YZ
3013 if (IS_ERR(dentry)) {
3014 err = PTR_ERR(dentry);
3015 goto out_unlock_dir;
3016 }
3017
2b0143b5 3018 if (d_really_is_negative(dentry)) {
76dda93c
YZ
3019 err = -ENOENT;
3020 goto out_dput;
3021 }
3022
2b0143b5 3023 inode = d_inode(dentry);
4260f7c7 3024 dest = BTRFS_I(inode)->root;
67871254 3025 if (!capable(CAP_SYS_ADMIN)) {
4260f7c7
SW
3026 /*
3027 * Regular user. Only allow this with a special mount
3028 * option, when the user has write+exec access to the
3029 * subvol root, and when rmdir(2) would have been
3030 * allowed.
3031 *
3032 * Note that this is _not_ check that the subvol is
3033 * empty or doesn't contain data that we wouldn't
3034 * otherwise be able to delete.
3035 *
3036 * Users who want to delete empty subvols should try
3037 * rmdir(2).
3038 */
3039 err = -EPERM;
0b246afa 3040 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
4260f7c7
SW
3041 goto out_dput;
3042
3043 /*
3044 * Do not allow deletion if the parent dir is the same
3045 * as the dir to be deleted. That means the ioctl
3046 * must be called on the dentry referencing the root
3047 * of the subvol, not a random directory contained
3048 * within it.
3049 */
3050 err = -EINVAL;
3051 if (root == dest)
3052 goto out_dput;
3053
47291baa
CB
3054 err = inode_permission(&init_user_ns, inode,
3055 MAY_WRITE | MAY_EXEC);
4260f7c7
SW
3056 if (err)
3057 goto out_dput;
4260f7c7
SW
3058 }
3059
5c39da5b
MX
3060 /* check if subvolume may be deleted by a user */
3061 err = btrfs_may_delete(dir, dentry, 1);
3062 if (err)
3063 goto out_dput;
3064
4a0cc7ca 3065 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
76dda93c
YZ
3066 err = -EINVAL;
3067 goto out_dput;
3068 }
3069
64708539 3070 btrfs_inode_lock(inode, 0);
f60a2364 3071 err = btrfs_delete_subvolume(dir, dentry);
64708539 3072 btrfs_inode_unlock(inode, 0);
46008d9d
AG
3073 if (!err) {
3074 fsnotify_rmdir(dir, dentry);
76dda93c 3075 d_delete(dentry);
46008d9d 3076 }
fa6ac876 3077
76dda93c
YZ
3078out_dput:
3079 dput(dentry);
3080out_unlock_dir:
64708539 3081 btrfs_inode_unlock(dir, 0);
949964c9
MPS
3082free_subvol_name:
3083 kfree(subvol_name_ptr);
3084free_parent:
3085 if (destroy_parent)
3086 dput(parent);
00235411 3087out_drop_write:
2a79f17e 3088 mnt_drop_write_file(file);
76dda93c 3089out:
949964c9 3090 kfree(vol_args2);
76dda93c
YZ
3091 kfree(vol_args);
3092 return err;
3093}
3094
1e701a32 3095static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
f46b5a66 3096{
496ad9aa 3097 struct inode *inode = file_inode(file);
f46b5a66 3098 struct btrfs_root *root = BTRFS_I(inode)->root;
c853a578 3099 struct btrfs_ioctl_defrag_range_args range = {0};
c146afad
YZ
3100 int ret;
3101
25122d15
ID
3102 ret = mnt_want_write_file(file);
3103 if (ret)
3104 return ret;
b83cc969 3105
25122d15
ID
3106 if (btrfs_root_readonly(root)) {
3107 ret = -EROFS;
3108 goto out;
5ac00add 3109 }
f46b5a66 3110
95ea0486
QW
3111 /* Subpage defrag will be supported in later commits */
3112 if (root->fs_info->sectorsize < PAGE_SIZE) {
3113 ret = -ENOTTY;
3114 goto out;
3115 }
3116
f46b5a66
CH
3117 switch (inode->i_mode & S_IFMT) {
3118 case S_IFDIR:
e441d54d
CM
3119 if (!capable(CAP_SYS_ADMIN)) {
3120 ret = -EPERM;
3121 goto out;
3122 }
de78b51a 3123 ret = btrfs_defrag_root(root);
f46b5a66
CH
3124 break;
3125 case S_IFREG:
616d374e
AB
3126 /*
3127 * Note that this does not check the file descriptor for write
3128 * access. This prevents defragmenting executables that are
3129 * running and allows defrag on files open in read-only mode.
3130 */
3131 if (!capable(CAP_SYS_ADMIN) &&
47291baa 3132 inode_permission(&init_user_ns, inode, MAY_WRITE)) {
616d374e 3133 ret = -EPERM;
e441d54d
CM
3134 goto out;
3135 }
1e701a32 3136
1e701a32 3137 if (argp) {
c853a578 3138 if (copy_from_user(&range, argp, sizeof(range))) {
1e701a32 3139 ret = -EFAULT;
683be16e 3140 goto out;
1e701a32
CM
3141 }
3142 /* compression requires us to start the IO */
c853a578
GR
3143 if ((range.flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
3144 range.flags |= BTRFS_DEFRAG_RANGE_START_IO;
3145 range.extent_thresh = (u32)-1;
1e701a32
CM
3146 }
3147 } else {
3148 /* the rest are all set to zero by kzalloc */
c853a578 3149 range.len = (u64)-1;
1e701a32 3150 }
496ad9aa 3151 ret = btrfs_defrag_file(file_inode(file), file,
c853a578 3152 &range, BTRFS_OLDEST_GENERATION, 0);
4cb5300b
CM
3153 if (ret > 0)
3154 ret = 0;
f46b5a66 3155 break;
8929ecfa
YZ
3156 default:
3157 ret = -EINVAL;
f46b5a66 3158 }
e441d54d 3159out:
25122d15 3160 mnt_drop_write_file(file);
e441d54d 3161 return ret;
f46b5a66
CH
3162}
3163
2ff7e61e 3164static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
f46b5a66
CH
3165{
3166 struct btrfs_ioctl_vol_args *vol_args;
3167 int ret;
3168
e441d54d
CM
3169 if (!capable(CAP_SYS_ADMIN))
3170 return -EPERM;
3171
c3e1f96c 3172 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_ADD))
e57138b3 3173 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
c9e9f97b 3174
dae7b665 3175 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
3176 if (IS_ERR(vol_args)) {
3177 ret = PTR_ERR(vol_args);
3178 goto out;
3179 }
f46b5a66 3180
5516e595 3181 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2ff7e61e 3182 ret = btrfs_init_new_device(fs_info, vol_args->name);
f46b5a66 3183
43d20761 3184 if (!ret)
0b246afa 3185 btrfs_info(fs_info, "disk added %s", vol_args->name);
43d20761 3186
f46b5a66 3187 kfree(vol_args);
c9e9f97b 3188out:
c3e1f96c 3189 btrfs_exclop_finish(fs_info);
f46b5a66
CH
3190 return ret;
3191}
3192
6b526ed7 3193static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
f46b5a66 3194{
0b246afa
JM
3195 struct inode *inode = file_inode(file);
3196 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
6b526ed7 3197 struct btrfs_ioctl_vol_args_v2 *vol_args;
f46b5a66 3198 int ret;
67ae34b6 3199 bool cancel = false;
f46b5a66 3200
e441d54d
CM
3201 if (!capable(CAP_SYS_ADMIN))
3202 return -EPERM;
3203
da24927b
MX
3204 ret = mnt_want_write_file(file);
3205 if (ret)
3206 return ret;
c146afad 3207
dae7b665 3208 vol_args = memdup_user(arg, sizeof(*vol_args));
c9e9f97b
ID
3209 if (IS_ERR(vol_args)) {
3210 ret = PTR_ERR(vol_args);
c47ca32d 3211 goto err_drop;
c9e9f97b 3212 }
f46b5a66 3213
748449cd 3214 if (vol_args->flags & ~BTRFS_DEVICE_REMOVE_ARGS_MASK) {
fd4e994b
OS
3215 ret = -EOPNOTSUPP;
3216 goto out;
3217 }
67ae34b6
DS
3218 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
3219 if (!(vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) &&
3220 strcmp("cancel", vol_args->name) == 0)
3221 cancel = true;
f46b5a66 3222
67ae34b6
DS
3223 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
3224 cancel);
3225 if (ret)
183860f6 3226 goto out;
67ae34b6 3227 /* Exclusive operation is now claimed */
183860f6 3228
67ae34b6 3229 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
2ff7e61e 3230 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
67ae34b6 3231 else
2ff7e61e 3232 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
67ae34b6 3233
c3e1f96c 3234 btrfs_exclop_finish(fs_info);
183860f6 3235
6b526ed7 3236 if (!ret) {
735654ea 3237 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
0b246afa 3238 btrfs_info(fs_info, "device deleted: id %llu",
6b526ed7
AJ
3239 vol_args->devid);
3240 else
0b246afa 3241 btrfs_info(fs_info, "device deleted: %s",
6b526ed7
AJ
3242 vol_args->name);
3243 }
183860f6
AJ
3244out:
3245 kfree(vol_args);
c47ca32d 3246err_drop:
4ac20c70 3247 mnt_drop_write_file(file);
f46b5a66
CH
3248 return ret;
3249}
3250
da24927b 3251static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
f46b5a66 3252{
0b246afa
JM
3253 struct inode *inode = file_inode(file);
3254 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
f46b5a66
CH
3255 struct btrfs_ioctl_vol_args *vol_args;
3256 int ret;
67ae34b6 3257 bool cancel;
f46b5a66 3258
e441d54d
CM
3259 if (!capable(CAP_SYS_ADMIN))
3260 return -EPERM;
3261
da24927b
MX
3262 ret = mnt_want_write_file(file);
3263 if (ret)
3264 return ret;
c146afad 3265
58d7bbf8
DS
3266 vol_args = memdup_user(arg, sizeof(*vol_args));
3267 if (IS_ERR(vol_args)) {
3268 ret = PTR_ERR(vol_args);
67ae34b6 3269 goto out_drop_write;
183860f6 3270 }
58d7bbf8 3271 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
67ae34b6
DS
3272 cancel = (strcmp("cancel", vol_args->name) == 0);
3273
3274 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
3275 cancel);
3276 if (ret == 0) {
3277 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
3278 if (!ret)
3279 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
3280 btrfs_exclop_finish(fs_info);
3281 }
183860f6 3282
183860f6 3283 kfree(vol_args);
58d7bbf8 3284out_drop_write:
4ac20c70 3285 mnt_drop_write_file(file);
58d7bbf8 3286
f46b5a66
CH
3287 return ret;
3288}
3289
2ff7e61e
JM
3290static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
3291 void __user *arg)
475f6387 3292{
027ed2f0 3293 struct btrfs_ioctl_fs_info_args *fi_args;
475f6387 3294 struct btrfs_device *device;
0b246afa 3295 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
137c5418 3296 u64 flags_in;
027ed2f0 3297 int ret = 0;
475f6387 3298
137c5418
JT
3299 fi_args = memdup_user(arg, sizeof(*fi_args));
3300 if (IS_ERR(fi_args))
3301 return PTR_ERR(fi_args);
3302
3303 flags_in = fi_args->flags;
3304 memset(fi_args, 0, sizeof(*fi_args));
027ed2f0 3305
d03262c7 3306 rcu_read_lock();
027ed2f0 3307 fi_args->num_devices = fs_devices->num_devices;
475f6387 3308
d03262c7 3309 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
027ed2f0
LZ
3310 if (device->devid > fi_args->max_id)
3311 fi_args->max_id = device->devid;
475f6387 3312 }
d03262c7 3313 rcu_read_unlock();
475f6387 3314
de37aa51 3315 memcpy(&fi_args->fsid, fs_devices->fsid, sizeof(fi_args->fsid));
bea7eafd
OS
3316 fi_args->nodesize = fs_info->nodesize;
3317 fi_args->sectorsize = fs_info->sectorsize;
3318 fi_args->clone_alignment = fs_info->sectorsize;
80a773fb 3319
137c5418
JT
3320 if (flags_in & BTRFS_FS_INFO_FLAG_CSUM_INFO) {
3321 fi_args->csum_type = btrfs_super_csum_type(fs_info->super_copy);
3322 fi_args->csum_size = btrfs_super_csum_size(fs_info->super_copy);
3323 fi_args->flags |= BTRFS_FS_INFO_FLAG_CSUM_INFO;
3324 }
3325
0fb408a5
JT
3326 if (flags_in & BTRFS_FS_INFO_FLAG_GENERATION) {
3327 fi_args->generation = fs_info->generation;
3328 fi_args->flags |= BTRFS_FS_INFO_FLAG_GENERATION;
3329 }
3330
49bac897
JT
3331 if (flags_in & BTRFS_FS_INFO_FLAG_METADATA_UUID) {
3332 memcpy(&fi_args->metadata_uuid, fs_devices->metadata_uuid,
3333 sizeof(fi_args->metadata_uuid));
3334 fi_args->flags |= BTRFS_FS_INFO_FLAG_METADATA_UUID;
3335 }
3336
027ed2f0
LZ
3337 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
3338 ret = -EFAULT;
475f6387 3339
027ed2f0
LZ
3340 kfree(fi_args);
3341 return ret;
475f6387
JS
3342}
3343
2ff7e61e
JM
3344static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
3345 void __user *arg)
475f6387
JS
3346{
3347 struct btrfs_ioctl_dev_info_args *di_args;
3348 struct btrfs_device *dev;
475f6387
JS
3349 int ret = 0;
3350 char *s_uuid = NULL;
475f6387 3351
475f6387
JS
3352 di_args = memdup_user(arg, sizeof(*di_args));
3353 if (IS_ERR(di_args))
3354 return PTR_ERR(di_args);
3355
dd5f9615 3356 if (!btrfs_is_empty_uuid(di_args->uuid))
475f6387
JS
3357 s_uuid = di_args->uuid;
3358
c5593ca3 3359 rcu_read_lock();
e4319cd9 3360 dev = btrfs_find_device(fs_info->fs_devices, di_args->devid, s_uuid,
b2598edf 3361 NULL);
475f6387
JS
3362
3363 if (!dev) {
3364 ret = -ENODEV;
3365 goto out;
3366 }
3367
3368 di_args->devid = dev->devid;
7cc8e58d
MX
3369 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
3370 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
475f6387 3371 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
a27202fb 3372 if (dev->name) {
672d5990
MT
3373 strncpy(di_args->path, rcu_str_deref(dev->name),
3374 sizeof(di_args->path) - 1);
a27202fb
JM
3375 di_args->path[sizeof(di_args->path) - 1] = 0;
3376 } else {
99ba55ad 3377 di_args->path[0] = '\0';
a27202fb 3378 }
475f6387
JS
3379
3380out:
c5593ca3 3381 rcu_read_unlock();
475f6387
JS
3382 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
3383 ret = -EFAULT;
3384
3385 kfree(di_args);
3386 return ret;
3387}
3388
6ef5ed0d
JB
3389static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3390{
496ad9aa 3391 struct inode *inode = file_inode(file);
0b246afa 3392 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
6ef5ed0d
JB
3393 struct btrfs_root *root = BTRFS_I(inode)->root;
3394 struct btrfs_root *new_root;
3395 struct btrfs_dir_item *di;
3396 struct btrfs_trans_handle *trans;
2a2b5d62 3397 struct btrfs_path *path = NULL;
6ef5ed0d 3398 struct btrfs_disk_key disk_key;
6ef5ed0d
JB
3399 u64 objectid = 0;
3400 u64 dir_id;
3c04ce01 3401 int ret;
6ef5ed0d
JB
3402
3403 if (!capable(CAP_SYS_ADMIN))
3404 return -EPERM;
3405
3c04ce01
MX
3406 ret = mnt_want_write_file(file);
3407 if (ret)
3408 return ret;
3409
3410 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3411 ret = -EFAULT;
3412 goto out;
3413 }
6ef5ed0d
JB
3414
3415 if (!objectid)
1cecf579 3416 objectid = BTRFS_FS_TREE_OBJECTID;
6ef5ed0d 3417
56e9357a 3418 new_root = btrfs_get_fs_root(fs_info, objectid, true);
3c04ce01
MX
3419 if (IS_ERR(new_root)) {
3420 ret = PTR_ERR(new_root);
3421 goto out;
3422 }
2a2b5d62
JB
3423 if (!is_fstree(new_root->root_key.objectid)) {
3424 ret = -ENOENT;
3425 goto out_free;
3426 }
6ef5ed0d 3427
6ef5ed0d 3428 path = btrfs_alloc_path();
3c04ce01
MX
3429 if (!path) {
3430 ret = -ENOMEM;
2a2b5d62 3431 goto out_free;
3c04ce01 3432 }
6ef5ed0d
JB
3433
3434 trans = btrfs_start_transaction(root, 1);
98d5dc13 3435 if (IS_ERR(trans)) {
3c04ce01 3436 ret = PTR_ERR(trans);
2a2b5d62 3437 goto out_free;
6ef5ed0d
JB
3438 }
3439
0b246afa
JM
3440 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3441 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
6ef5ed0d 3442 dir_id, "default", 7, 1);
cf1e99a4 3443 if (IS_ERR_OR_NULL(di)) {
2a2b5d62 3444 btrfs_release_path(path);
3a45bb20 3445 btrfs_end_transaction(trans);
0b246afa 3446 btrfs_err(fs_info,
5d163e0e 3447 "Umm, you don't have the default diritem, this isn't going to work");
3c04ce01 3448 ret = -ENOENT;
2a2b5d62 3449 goto out_free;
6ef5ed0d
JB
3450 }
3451
3452 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3453 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3454 btrfs_mark_buffer_dirty(path->nodes[0]);
2a2b5d62 3455 btrfs_release_path(path);
6ef5ed0d 3456
0b246afa 3457 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
3a45bb20 3458 btrfs_end_transaction(trans);
2a2b5d62 3459out_free:
00246528 3460 btrfs_put_root(new_root);
2a2b5d62 3461 btrfs_free_path(path);
3c04ce01
MX
3462out:
3463 mnt_drop_write_file(file);
3464 return ret;
6ef5ed0d
JB
3465}
3466
c065f5b1
SY
3467static void get_block_group_info(struct list_head *groups_list,
3468 struct btrfs_ioctl_space_info *space)
bf5fc093 3469{
32da5386 3470 struct btrfs_block_group *block_group;
bf5fc093
JB
3471
3472 space->total_bytes = 0;
3473 space->used_bytes = 0;
3474 space->flags = 0;
3475 list_for_each_entry(block_group, groups_list, list) {
3476 space->flags = block_group->flags;
b3470b5d 3477 space->total_bytes += block_group->length;
bf38be65 3478 space->used_bytes += block_group->used;
bf5fc093
JB
3479 }
3480}
3481
2ff7e61e
JM
3482static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
3483 void __user *arg)
1406e432
JB
3484{
3485 struct btrfs_ioctl_space_args space_args;
3486 struct btrfs_ioctl_space_info space;
3487 struct btrfs_ioctl_space_info *dest;
7fde62bf 3488 struct btrfs_ioctl_space_info *dest_orig;
13f2696f 3489 struct btrfs_ioctl_space_info __user *user_dest;
1406e432 3490 struct btrfs_space_info *info;
315d8e98
CIK
3491 static const u64 types[] = {
3492 BTRFS_BLOCK_GROUP_DATA,
3493 BTRFS_BLOCK_GROUP_SYSTEM,
3494 BTRFS_BLOCK_GROUP_METADATA,
3495 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
3496 };
bf5fc093 3497 int num_types = 4;
7fde62bf 3498 int alloc_size;
1406e432 3499 int ret = 0;
51788b1b 3500 u64 slot_count = 0;
bf5fc093 3501 int i, c;
1406e432
JB
3502
3503 if (copy_from_user(&space_args,
3504 (struct btrfs_ioctl_space_args __user *)arg,
3505 sizeof(space_args)))
3506 return -EFAULT;
3507
bf5fc093
JB
3508 for (i = 0; i < num_types; i++) {
3509 struct btrfs_space_info *tmp;
3510
3511 info = NULL;
72804905 3512 list_for_each_entry(tmp, &fs_info->space_info, list) {
bf5fc093
JB
3513 if (tmp->flags == types[i]) {
3514 info = tmp;
3515 break;
3516 }
3517 }
bf5fc093
JB
3518
3519 if (!info)
3520 continue;
3521
3522 down_read(&info->groups_sem);
3523 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3524 if (!list_empty(&info->block_groups[c]))
3525 slot_count++;
3526 }
3527 up_read(&info->groups_sem);
3528 }
7fde62bf 3529
36523e95
DS
3530 /*
3531 * Global block reserve, exported as a space_info
3532 */
3533 slot_count++;
3534
7fde62bf
CM
3535 /* space_slots == 0 means they are asking for a count */
3536 if (space_args.space_slots == 0) {
3537 space_args.total_spaces = slot_count;
3538 goto out;
3539 }
bf5fc093 3540
51788b1b 3541 slot_count = min_t(u64, space_args.space_slots, slot_count);
bf5fc093 3542
7fde62bf 3543 alloc_size = sizeof(*dest) * slot_count;
bf5fc093 3544
7fde62bf
CM
3545 /* we generally have at most 6 or so space infos, one for each raid
3546 * level. So, a whole page should be more than enough for everyone
3547 */
09cbfeaf 3548 if (alloc_size > PAGE_SIZE)
7fde62bf
CM
3549 return -ENOMEM;
3550
1406e432 3551 space_args.total_spaces = 0;
8d2db785 3552 dest = kmalloc(alloc_size, GFP_KERNEL);
7fde62bf
CM
3553 if (!dest)
3554 return -ENOMEM;
3555 dest_orig = dest;
1406e432 3556
7fde62bf 3557 /* now we have a buffer to copy into */
bf5fc093
JB
3558 for (i = 0; i < num_types; i++) {
3559 struct btrfs_space_info *tmp;
3560
51788b1b
DR
3561 if (!slot_count)
3562 break;
3563
bf5fc093 3564 info = NULL;
72804905 3565 list_for_each_entry(tmp, &fs_info->space_info, list) {
bf5fc093
JB
3566 if (tmp->flags == types[i]) {
3567 info = tmp;
3568 break;
3569 }
3570 }
7fde62bf 3571
bf5fc093
JB
3572 if (!info)
3573 continue;
3574 down_read(&info->groups_sem);
3575 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3576 if (!list_empty(&info->block_groups[c])) {
c065f5b1
SY
3577 get_block_group_info(&info->block_groups[c],
3578 &space);
bf5fc093
JB
3579 memcpy(dest, &space, sizeof(space));
3580 dest++;
3581 space_args.total_spaces++;
51788b1b 3582 slot_count--;
bf5fc093 3583 }
51788b1b
DR
3584 if (!slot_count)
3585 break;
bf5fc093
JB
3586 }
3587 up_read(&info->groups_sem);
1406e432 3588 }
1406e432 3589
36523e95
DS
3590 /*
3591 * Add global block reserve
3592 */
3593 if (slot_count) {
0b246afa 3594 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
36523e95
DS
3595
3596 spin_lock(&block_rsv->lock);
3597 space.total_bytes = block_rsv->size;
3598 space.used_bytes = block_rsv->size - block_rsv->reserved;
3599 spin_unlock(&block_rsv->lock);
3600 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3601 memcpy(dest, &space, sizeof(space));
3602 space_args.total_spaces++;
3603 }
3604
2eec6c81 3605 user_dest = (struct btrfs_ioctl_space_info __user *)
7fde62bf
CM
3606 (arg + sizeof(struct btrfs_ioctl_space_args));
3607
3608 if (copy_to_user(user_dest, dest_orig, alloc_size))
3609 ret = -EFAULT;
3610
3611 kfree(dest_orig);
3612out:
3613 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
1406e432
JB
3614 ret = -EFAULT;
3615
3616 return ret;
3617}
3618
9a8c28be
MX
3619static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3620 void __user *argp)
46204592 3621{
46204592
SW
3622 struct btrfs_trans_handle *trans;
3623 u64 transid;
db5b493a 3624 int ret;
46204592 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;
32cc4f87 3636 ret = btrfs_commit_transaction_async(trans);
8b2b2d3c 3637 if (ret) {
3a45bb20 3638 btrfs_end_transaction(trans);
db5b493a 3639 return ret;
8b2b2d3c 3640 }
ff7c1d33 3641out:
46204592
SW
3642 if (argp)
3643 if (copy_to_user(argp, &transid, sizeof(transid)))
3644 return -EFAULT;
3645 return 0;
3646}
3647
2ff7e61e 3648static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
9a8c28be 3649 void __user *argp)
46204592 3650{
46204592
SW
3651 u64 transid;
3652
3653 if (argp) {
3654 if (copy_from_user(&transid, argp, sizeof(transid)))
3655 return -EFAULT;
3656 } else {
3657 transid = 0; /* current trans */
3658 }
2ff7e61e 3659 return btrfs_wait_for_commit(fs_info, transid);
46204592
SW
3660}
3661
b8e95489 3662static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
475f6387 3663{
0b246afa 3664 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
475f6387 3665 struct btrfs_ioctl_scrub_args *sa;
b8e95489 3666 int ret;
475f6387
JS
3667
3668 if (!capable(CAP_SYS_ADMIN))
3669 return -EPERM;
3670
3671 sa = memdup_user(arg, sizeof(*sa));
3672 if (IS_ERR(sa))
3673 return PTR_ERR(sa);
3674
b8e95489
MX
3675 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3676 ret = mnt_want_write_file(file);
3677 if (ret)
3678 goto out;
3679 }
3680
0b246afa 3681 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
63a212ab
SB
3682 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3683 0);
475f6387 3684
5afe6ce7
FM
3685 /*
3686 * Copy scrub args to user space even if btrfs_scrub_dev() returned an
3687 * error. This is important as it allows user space to know how much
3688 * progress scrub has done. For example, if scrub is canceled we get
3689 * -ECANCELED from btrfs_scrub_dev() and return that error back to user
3690 * space. Later user space can inspect the progress from the structure
3691 * btrfs_ioctl_scrub_args and resume scrub from where it left off
3692 * previously (btrfs-progs does this).
3693 * If we fail to copy the btrfs_ioctl_scrub_args structure to user space
3694 * then return -EFAULT to signal the structure was not copied or it may
3695 * be corrupt and unreliable due to a partial copy.
3696 */
3697 if (copy_to_user(arg, sa, sizeof(*sa)))
475f6387
JS
3698 ret = -EFAULT;
3699
b8e95489
MX
3700 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3701 mnt_drop_write_file(file);
3702out:
475f6387
JS
3703 kfree(sa);
3704 return ret;
3705}
3706
2ff7e61e 3707static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
475f6387
JS
3708{
3709 if (!capable(CAP_SYS_ADMIN))
3710 return -EPERM;
3711
2ff7e61e 3712 return btrfs_scrub_cancel(fs_info);
475f6387
JS
3713}
3714
2ff7e61e 3715static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
475f6387
JS
3716 void __user *arg)
3717{
3718 struct btrfs_ioctl_scrub_args *sa;
3719 int ret;
3720
3721 if (!capable(CAP_SYS_ADMIN))
3722 return -EPERM;
3723
3724 sa = memdup_user(arg, sizeof(*sa));
3725 if (IS_ERR(sa))
3726 return PTR_ERR(sa);
3727
2ff7e61e 3728 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
475f6387 3729
4fa99b00 3730 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
475f6387
JS
3731 ret = -EFAULT;
3732
3733 kfree(sa);
3734 return ret;
3735}
3736
2ff7e61e 3737static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
b27f7c0c 3738 void __user *arg)
c11d2c23
SB
3739{
3740 struct btrfs_ioctl_get_dev_stats *sa;
3741 int ret;
3742
c11d2c23
SB
3743 sa = memdup_user(arg, sizeof(*sa));
3744 if (IS_ERR(sa))
3745 return PTR_ERR(sa);
3746
b27f7c0c
DS
3747 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3748 kfree(sa);
3749 return -EPERM;
3750 }
3751
2ff7e61e 3752 ret = btrfs_get_dev_stats(fs_info, sa);
c11d2c23 3753
eee99577 3754 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
c11d2c23
SB
3755 ret = -EFAULT;
3756
3757 kfree(sa);
3758 return ret;
3759}
3760
2ff7e61e
JM
3761static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
3762 void __user *arg)
3f6bcfbd
SB
3763{
3764 struct btrfs_ioctl_dev_replace_args *p;
3765 int ret;
3766
3767 if (!capable(CAP_SYS_ADMIN))
3768 return -EPERM;
3769
3770 p = memdup_user(arg, sizeof(*p));
3771 if (IS_ERR(p))
3772 return PTR_ERR(p);
3773
3774 switch (p->cmd) {
3775 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
bc98a42c 3776 if (sb_rdonly(fs_info->sb)) {
adfa97cb
ID
3777 ret = -EROFS;
3778 goto out;
3779 }
c3e1f96c 3780 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REPLACE)) {
e57138b3 3781 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3f6bcfbd 3782 } else {
2ff7e61e 3783 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
c3e1f96c 3784 btrfs_exclop_finish(fs_info);
3f6bcfbd
SB
3785 }
3786 break;
3787 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
0b246afa 3788 btrfs_dev_replace_status(fs_info, p);
3f6bcfbd
SB
3789 ret = 0;
3790 break;
3791 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
17d202b9 3792 p->result = btrfs_dev_replace_cancel(fs_info);
97282031 3793 ret = 0;
3f6bcfbd
SB
3794 break;
3795 default:
3796 ret = -EINVAL;
3797 break;
3798 }
3799
d3a53286 3800 if ((ret == 0 || ret == -ECANCELED) && copy_to_user(arg, p, sizeof(*p)))
3f6bcfbd 3801 ret = -EFAULT;
adfa97cb 3802out:
3f6bcfbd
SB
3803 kfree(p);
3804 return ret;
3805}
3806
d7728c96
JS
3807static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3808{
3809 int ret = 0;
3810 int i;
740c3d22 3811 u64 rel_ptr;
d7728c96 3812 int size;
806468f8 3813 struct btrfs_ioctl_ino_path_args *ipa = NULL;
d7728c96
JS
3814 struct inode_fs_paths *ipath = NULL;
3815 struct btrfs_path *path;
3816
82b22ac8 3817 if (!capable(CAP_DAC_READ_SEARCH))
d7728c96
JS
3818 return -EPERM;
3819
3820 path = btrfs_alloc_path();
3821 if (!path) {
3822 ret = -ENOMEM;
3823 goto out;
3824 }
3825
3826 ipa = memdup_user(arg, sizeof(*ipa));
3827 if (IS_ERR(ipa)) {
3828 ret = PTR_ERR(ipa);
3829 ipa = NULL;
3830 goto out;
3831 }
3832
3833 size = min_t(u32, ipa->size, 4096);
3834 ipath = init_ipath(size, root, path);
3835 if (IS_ERR(ipath)) {
3836 ret = PTR_ERR(ipath);
3837 ipath = NULL;
3838 goto out;
3839 }
3840
3841 ret = paths_from_inode(ipa->inum, ipath);
3842 if (ret < 0)
3843 goto out;
3844
3845 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
745c4d8e
JM
3846 rel_ptr = ipath->fspath->val[i] -
3847 (u64)(unsigned long)ipath->fspath->val;
740c3d22 3848 ipath->fspath->val[i] = rel_ptr;
d7728c96
JS
3849 }
3850
718dc5fa
OS
3851 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
3852 ipath->fspath, size);
d7728c96
JS
3853 if (ret) {
3854 ret = -EFAULT;
3855 goto out;
3856 }
3857
3858out:
3859 btrfs_free_path(path);
3860 free_ipath(ipath);
3861 kfree(ipa);
3862
3863 return ret;
3864}
3865
3866static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3867{
3868 struct btrfs_data_container *inodes = ctx;
3869 const size_t c = 3 * sizeof(u64);
3870
3871 if (inodes->bytes_left >= c) {
3872 inodes->bytes_left -= c;
3873 inodes->val[inodes->elem_cnt] = inum;
3874 inodes->val[inodes->elem_cnt + 1] = offset;
3875 inodes->val[inodes->elem_cnt + 2] = root;
3876 inodes->elem_cnt += 3;
3877 } else {
3878 inodes->bytes_missing += c - inodes->bytes_left;
3879 inodes->bytes_left = 0;
3880 inodes->elem_missed += 3;
3881 }
3882
3883 return 0;
3884}
3885
2ff7e61e 3886static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
d24a67b2 3887 void __user *arg, int version)
d7728c96
JS
3888{
3889 int ret = 0;
3890 int size;
d7728c96
JS
3891 struct btrfs_ioctl_logical_ino_args *loi;
3892 struct btrfs_data_container *inodes = NULL;
3893 struct btrfs_path *path = NULL;
d24a67b2 3894 bool ignore_offset;
d7728c96
JS
3895
3896 if (!capable(CAP_SYS_ADMIN))
3897 return -EPERM;
3898
3899 loi = memdup_user(arg, sizeof(*loi));
7b9ea627
SV
3900 if (IS_ERR(loi))
3901 return PTR_ERR(loi);
d7728c96 3902
d24a67b2
ZB
3903 if (version == 1) {
3904 ignore_offset = false;
b115e3bc 3905 size = min_t(u32, loi->size, SZ_64K);
d24a67b2
ZB
3906 } else {
3907 /* All reserved bits must be 0 for now */
3908 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
3909 ret = -EINVAL;
3910 goto out_loi;
3911 }
3912 /* Only accept flags we have defined so far */
3913 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
3914 ret = -EINVAL;
3915 goto out_loi;
3916 }
3917 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
b115e3bc 3918 size = min_t(u32, loi->size, SZ_16M);
d24a67b2
ZB
3919 }
3920
d7728c96
JS
3921 path = btrfs_alloc_path();
3922 if (!path) {
3923 ret = -ENOMEM;
3924 goto out;
3925 }
3926
d7728c96
JS
3927 inodes = init_data_container(size);
3928 if (IS_ERR(inodes)) {
3929 ret = PTR_ERR(inodes);
3930 inodes = NULL;
3931 goto out;
3932 }
3933
2ff7e61e 3934 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
d24a67b2 3935 build_ino_list, inodes, ignore_offset);
df031f07 3936 if (ret == -EINVAL)
d7728c96
JS
3937 ret = -ENOENT;
3938 if (ret < 0)
3939 goto out;
3940
718dc5fa
OS
3941 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
3942 size);
d7728c96
JS
3943 if (ret)
3944 ret = -EFAULT;
3945
3946out:
3947 btrfs_free_path(path);
f54de068 3948 kvfree(inodes);
d24a67b2 3949out_loi:
d7728c96
JS
3950 kfree(loi);
3951
3952 return ret;
3953}
3954
008ef096 3955void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
c9e9f97b
ID
3956 struct btrfs_ioctl_balance_args *bargs)
3957{
3958 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3959
3960 bargs->flags = bctl->flags;
3961
3009a62f 3962 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags))
837d5b6e
ID
3963 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3964 if (atomic_read(&fs_info->balance_pause_req))
3965 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
a7e99c69
ID
3966 if (atomic_read(&fs_info->balance_cancel_req))
3967 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
837d5b6e 3968
c9e9f97b
ID
3969 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3970 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3971 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
19a39dce 3972
008ef096
DS
3973 spin_lock(&fs_info->balance_lock);
3974 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
3975 spin_unlock(&fs_info->balance_lock);
c9e9f97b
ID
3976}
3977
9ba1f6e4 3978static long btrfs_ioctl_balance(struct file *file, void __user *arg)
c9e9f97b 3979{
496ad9aa 3980 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
c9e9f97b
ID
3981 struct btrfs_fs_info *fs_info = root->fs_info;
3982 struct btrfs_ioctl_balance_args *bargs;
3983 struct btrfs_balance_control *bctl;
ed0fb78f 3984 bool need_unlock; /* for mut. excl. ops lock */
c9e9f97b
ID
3985 int ret;
3986
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 int ret = 0;
4399
4400 if (!capable(CAP_SYS_ADMIN))
4401 return -EPERM;
4402
0b246afa 4403 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
0afb603a
GR
4404 qsa.flags = 1;
4405 qsa.progress = fs_info->qgroup_rescan_progress.objectid;
2f232036
JS
4406 }
4407
0afb603a 4408 if (copy_to_user(arg, &qsa, sizeof(qsa)))
2f232036
JS
4409 ret = -EFAULT;
4410
2f232036
JS
4411 return ret;
4412}
4413
b929c1d8
MPS
4414static long btrfs_ioctl_quota_rescan_wait(struct btrfs_fs_info *fs_info,
4415 void __user *arg)
57254b6e 4416{
57254b6e
JS
4417 if (!capable(CAP_SYS_ADMIN))
4418 return -EPERM;
4419
0b246afa 4420 return btrfs_qgroup_wait_for_completion(fs_info, true);
57254b6e
JS
4421}
4422
abccd00f
HM
4423static long _btrfs_ioctl_set_received_subvol(struct file *file,
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
21cb47be 4435 if (!inode_owner_or_capable(&init_user_ns, 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
4540 ret = _btrfs_ioctl_set_received_subvol(file, args64);
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
HM
4573
4574 ret = _btrfs_ioctl_set_received_subvol(file, sa);
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