blob: 9d54149bad6ecbd77aeb7bafb70075500970435a [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004 */
5
6#include <linux/kernel.h>
7#include <linux/bio.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04008#include <linux/file.h>
9#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040010#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040011#include <linux/pagemap.h>
12#include <linux/highmem.h>
13#include <linux/time.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040014#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040015#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040016#include <linux/mount.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040017#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040018#include <linux/writeback.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040019#include <linux/compat.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040020#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040021#include <linux/xattr.h>
David Sterbaf54de062017-05-31 19:32:09 +020022#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000024#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020025#include <linux/uuid.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000026#include <linux/btrfs.h>
Mark Fasheh416161d2013-08-06 11:42:51 -070027#include <linux/uaccess.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050028#include <linux/iversion.h>
Miklos Szeredi97fc2972021-04-07 14:36:43 +020029#include <linux/fileattr.h>
Boris Burkov14605402021-06-30 13:01:49 -070030#include <linux/fsverity.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040031#include "ctree.h"
32#include "disk-io.h"
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -030033#include "export.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include "transaction.h"
35#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040036#include "print-tree.h"
37#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040038#include "locking.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020039#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040040#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020041#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010042#include "dev-replace.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000043#include "props.h"
Jeff Mahoney3b02a682013-11-01 13:07:02 -040044#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070045#include "qgroup.h"
Filipe Manana1ec9a1a2016-02-10 10:42:25 +000046#include "tree-log.h"
Anand Jainebb87652016-03-10 17:26:59 +080047#include "compression.h"
Josef Bacik8719aaa2019-06-18 16:09:16 -040048#include "space-info.h"
Josef Bacik86736342019-06-19 15:12:00 -040049#include "delalloc-space.h"
Josef Bacikaac00232019-06-20 15:37:44 -040050#include "block-group.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040051
Hugo Millsabccd002014-01-30 20:17:00 +000052#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
Josef Bacik2351f432017-09-27 10:43:13 -040077#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
Hugo Millsabccd002014-01-30 20:17:00 +000090
Christoph Hellwig6cbff002009-04-17 10:37:41 +020091/* Mask out flags that are inappropriate for the given type of inode. */
David Sterba1905a0f2018-03-26 18:52:15 +020092static unsigned int btrfs_mask_fsflags_for_type(struct inode *inode,
93 unsigned int flags)
Christoph Hellwig6cbff002009-04-17 10:37:41 +020094{
David Sterba1905a0f2018-03-26 18:52:15 +020095 if (S_ISDIR(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +020096 return flags;
David Sterba1905a0f2018-03-26 18:52:15 +020097 else if (S_ISREG(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +020098 return flags & ~FS_DIRSYNC_FL;
99 else
100 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
101}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400102
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200103/*
David Sterbaa157d4f2018-03-26 19:12:25 +0200104 * Export internal inode flags to the format expected by the FS_IOC_GETFLAGS
105 * ioctl.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200106 */
Boris Burkov77eea052021-06-30 13:01:48 -0700107static unsigned int btrfs_inode_flags_to_fsflags(struct btrfs_inode *binode)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200108{
109 unsigned int iflags = 0;
Boris Burkov77eea052021-06-30 13:01:48 -0700110 u32 flags = binode->flags;
Boris Burkov14605402021-06-30 13:01:49 -0700111 u32 ro_flags = binode->ro_flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200112
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;
Li Zefand0092bd2011-04-15 03:03:06 +0000125 if (flags & BTRFS_INODE_NODATACOW)
126 iflags |= FS_NOCOW_FL;
Boris Burkov14605402021-06-30 13:01:49 -0700127 if (ro_flags & BTRFS_INODE_RO_VERITY)
128 iflags |= FS_VERITY_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000129
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900130 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000131 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900132 else if (flags & BTRFS_INODE_COMPRESS)
133 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200134
135 return iflags;
136}
137
138/*
139 * Update inode->i_flags based on the btrfs internal flags.
140 */
David Sterba7b6a2212018-03-26 18:40:21 +0200141void btrfs_sync_inode_flags_to_i_flags(struct inode *inode)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200142{
David Sterba5c57b8b2018-04-23 15:45:18 +0200143 struct btrfs_inode *binode = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100144 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200145
David Sterba5c57b8b2018-04-23 15:45:18 +0200146 if (binode->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100147 new_fl |= S_SYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200148 if (binode->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100149 new_fl |= S_IMMUTABLE;
David Sterba5c57b8b2018-04-23 15:45:18 +0200150 if (binode->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100151 new_fl |= S_APPEND;
David Sterba5c57b8b2018-04-23 15:45:18 +0200152 if (binode->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100153 new_fl |= S_NOATIME;
David Sterba5c57b8b2018-04-23 15:45:18 +0200154 if (binode->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100155 new_fl |= S_DIRSYNC;
Boris Burkov14605402021-06-30 13:01:49 -0700156 if (binode->ro_flags & BTRFS_INODE_RO_VERITY)
157 new_fl |= S_VERITY;
Filipe Manana3cc79392014-06-25 22:36:02 +0100158
159 set_mask_bits(&inode->i_flags,
Boris Burkov14605402021-06-30 13:01:49 -0700160 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC |
161 S_VERITY, new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200162}
163
David Sterbaf37c5632020-07-10 09:49:56 +0200164/*
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)
Liu Bo75e7cb72011-03-22 10:12:20 +0000169{
170 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
171 FS_NOATIME_FL | FS_NODUMP_FL | \
172 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000173 FS_NOCOMP_FL | FS_COMPR_FL |
174 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000175 return -EOPNOTSUPP;
176
David Sterbaf37c5632020-07-10 09:49:56 +0200177 /* COMPR and NOCOMP on new/old are valid */
Liu Bo75e7cb72011-03-22 10:12:20 +0000178 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
179 return -EINVAL;
180
David Sterbaf37c5632020-07-10 09:49:56 +0200181 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
Liu Bo75e7cb72011-03-22 10:12:20 +0000190 return 0;
191}
192
Naohiro Aotad206e9c2020-11-10 20:26:11 +0900193static 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
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200202/*
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)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200207{
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200208 struct btrfs_inode *binode = BTRFS_I(d_inode(dentry));
209
Boris Burkov77eea052021-06-30 13:01:48 -0700210 fileattr_fill_flags(fa, btrfs_inode_flags_to_fsflags(binode));
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200211 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);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400218 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba5c57b8b2018-04-23 15:45:18 +0200219 struct btrfs_inode *binode = BTRFS_I(inode);
220 struct btrfs_root *root = binode->root;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200221 struct btrfs_trans_handle *trans;
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700222 unsigned int fsflags, old_fsflags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200223 int ret;
Anand Jainff9fef552019-04-20 19:48:53 +0800224 const char *comp = NULL;
David Sterbaf37c5632020-07-10 09:49:56 +0200225 u32 binode_flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200226
Li Zefanb83cc962010-12-20 16:04:08 +0800227 if (btrfs_root_readonly(root))
228 return -EROFS;
229
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200230 if (fileattr_has_fsx(fa))
231 return -EOPNOTSUPP;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200232
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200233 fsflags = btrfs_mask_fsflags_for_type(inode, fa->flags);
Boris Burkov77eea052021-06-30 13:01:48 -0700234 old_fsflags = btrfs_inode_flags_to_fsflags(binode);
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200235 ret = check_fsflags(old_fsflags, fsflags);
Jan Karae7848682012-06-12 16:20:32 +0200236 if (ret)
237 return ret;
238
Naohiro Aotad206e9c2020-11-10 20:26:11 +0900239 ret = check_fsflags_compatible(fs_info, fsflags);
240 if (ret)
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200241 return ret;
Naohiro Aotad206e9c2020-11-10 20:26:11 +0900242
David Sterbaf37c5632020-07-10 09:49:56 +0200243 binode_flags = binode->flags;
David Sterba5c57b8b2018-04-23 15:45:18 +0200244 if (fsflags & FS_SYNC_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800245 binode_flags |= BTRFS_INODE_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200246 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800247 binode_flags &= ~BTRFS_INODE_SYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200248 if (fsflags & FS_IMMUTABLE_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800249 binode_flags |= BTRFS_INODE_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200250 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800251 binode_flags &= ~BTRFS_INODE_IMMUTABLE;
David Sterba5c57b8b2018-04-23 15:45:18 +0200252 if (fsflags & FS_APPEND_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800253 binode_flags |= BTRFS_INODE_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200254 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800255 binode_flags &= ~BTRFS_INODE_APPEND;
David Sterba5c57b8b2018-04-23 15:45:18 +0200256 if (fsflags & FS_NODUMP_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800257 binode_flags |= BTRFS_INODE_NODUMP;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200258 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800259 binode_flags &= ~BTRFS_INODE_NODUMP;
David Sterba5c57b8b2018-04-23 15:45:18 +0200260 if (fsflags & FS_NOATIME_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800261 binode_flags |= BTRFS_INODE_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200262 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800263 binode_flags &= ~BTRFS_INODE_NOATIME;
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200264
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);
Ritesh Harjani9b8a2332021-04-30 21:30:55 +0530269 if (IS_ERR(trans))
270 return PTR_ERR(trans);
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200271 goto update_flags;
272 }
273
David Sterba5c57b8b2018-04-23 15:45:18 +0200274 if (fsflags & FS_DIRSYNC_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800275 binode_flags |= BTRFS_INODE_DIRSYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200276 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800277 binode_flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200278 if (fsflags & FS_NOCOW_FL) {
Anand Jain44e51942019-04-20 19:48:57 +0800279 if (S_ISREG(inode->i_mode)) {
David Sterba7e97b8d2012-09-07 05:56:55 -0600280 /*
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)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800286 binode_flags |= BTRFS_INODE_NODATACOW |
287 BTRFS_INODE_NODATASUM;
David Sterba7e97b8d2012-09-07 05:56:55 -0600288 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800289 binode_flags |= BTRFS_INODE_NODATACOW;
David Sterba7e97b8d2012-09-07 05:56:55 -0600290 }
291 } else {
292 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400293 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600294 */
Anand Jain44e51942019-04-20 19:48:57 +0800295 if (S_ISREG(inode->i_mode)) {
David Sterba7e97b8d2012-09-07 05:56:55 -0600296 if (inode->i_size == 0)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800297 binode_flags &= ~(BTRFS_INODE_NODATACOW |
298 BTRFS_INODE_NODATASUM);
David Sterba7e97b8d2012-09-07 05:56:55 -0600299 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800300 binode_flags &= ~BTRFS_INODE_NODATACOW;
David Sterba7e97b8d2012-09-07 05:56:55 -0600301 }
302 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200303
Liu Bo75e7cb72011-03-22 10:12:20 +0000304 /*
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 */
David Sterba5c57b8b2018-04-23 15:45:18 +0200309 if (fsflags & FS_NOCOMP_FL) {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800310 binode_flags &= ~BTRFS_INODE_COMPRESS;
311 binode_flags |= BTRFS_INODE_NOCOMPRESS;
David Sterba5c57b8b2018-04-23 15:45:18 +0200312 } else if (fsflags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000313
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200314 if (IS_SWAPFILE(inode))
315 return -ETXTBSY;
Omar Sandovaleede2bf2016-11-03 10:28:12 -0700316
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800317 binode_flags |= BTRFS_INODE_COMPRESS;
318 binode_flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000319
David Sterba93370502017-10-31 17:32:41 +0100320 comp = btrfs_compress_type2str(fs_info->compress_type);
321 if (!comp || comp[0] == 0)
322 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
Li Zefanebcb9042011-04-15 03:03:17 +0000323 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800324 binode_flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000325 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200326
Anand Jainff9fef552019-04-20 19:48:53 +0800327 /*
328 * 1 for inode item
329 * 2 for properties
330 */
331 trans = btrfs_start_transaction(root, 3);
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200332 if (IS_ERR(trans))
333 return PTR_ERR(trans);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200334
Anand Jainff9fef552019-04-20 19:48:53 +0800335 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 }
Anand Jainff9fef552019-04-20 19:48:53 +0800342 } 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
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200351update_flags:
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800352 binode->flags = binode_flags;
David Sterba7b6a2212018-03-26 18:40:21 +0200353 btrfs_sync_inode_flags_to_i_flags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400354 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700355 inode->i_ctime = current_time(inode);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +0200356 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200357
Anand Jainff9fef552019-04-20 19:48:53 +0800358 out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400359 btrfs_end_transaction(trans);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000360 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200361}
362
David Sterba0d7ed322021-05-14 17:42:30 +0200363/*
364 * Start exclusive operation @type, return true on success
365 */
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500366bool btrfs_exclop_start(struct btrfs_fs_info *fs_info,
367 enum btrfs_exclusive_operation type)
368{
David Sterba0d7ed322021-05-14 17:42:30 +0200369 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;
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500379}
380
David Sterba578bda92021-05-18 21:05:52 +0200381/*
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
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500407void btrfs_exclop_finish(struct btrfs_fs_info *fs_info)
408{
David Sterba0d7ed322021-05-14 17:42:30 +0200409 spin_lock(&fs_info->super_lock);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500410 WRITE_ONCE(fs_info->exclusive_operation, BTRFS_EXCLOP_NONE);
David Sterba0d7ed322021-05-14 17:42:30 +0200411 spin_unlock(&fs_info->super_lock);
Goldwyn Rodrigues66a28232020-08-25 10:02:33 -0500412 sysfs_notify(&fs_info->fs_devices->fsid_kobj, NULL, "exclusive_operation");
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500413}
414
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200415static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
416{
Al Viro496ad9a2013-01-23 17:07:38 -0500417 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200418
419 return put_user(inode->i_generation, arg);
420}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400421
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -0300422static noinline int btrfs_ioctl_fitrim(struct btrfs_fs_info *fs_info,
423 void __user *arg)
Li Dongyangf7039b12011-03-24 10:24:28 +0000424{
Li Dongyangf7039b12011-03-24 10:24:28 +0000425 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
Filipe Mananaf35f06c2019-03-26 10:49:56 +0000435 /*
Naohiro Aota1cb3dc32021-02-04 19:21:46 +0900436 * 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
443 /*
Filipe Mananaf35f06c2019-03-26 10:49:56 +0000444 * 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
Xiao Guangrong1f781602011-04-20 10:09:16 +0000453 rcu_read_lock();
454 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
455 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000456 if (!device->bdev)
457 continue;
458 q = bdev_get_queue(device->bdev);
459 if (blk_queue_discard(q)) {
460 num_devices++;
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100461 minlen = min_t(u64, q->limits.discard_granularity,
Li Dongyangf7039b12011-03-24 10:24:28 +0000462 minlen);
463 }
464 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000465 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200466
Li Dongyangf7039b12011-03-24 10:24:28 +0000467 if (!num_devices)
468 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000469 if (copy_from_user(&range, arg, sizeof(range)))
470 return -EFAULT;
Qu Wenruo6ba9fc82018-09-07 14:16:24 +0800471
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)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200478 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000479
480 range.minlen = max(range.minlen, minlen);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400481 ret = btrfs_trim_fs(fs_info, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000482 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
David Sterbae1f60a62019-10-01 19:57:39 +0200491int __pure btrfs_is_empty_uuid(u8 *uuid)
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200492{
Chris Mason46e0f662013-11-15 12:14:55 +0100493 int i;
494
495 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
496 if (uuid[i])
497 return 0;
498 }
499 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200500}
501
Christian Brauner4d4340c2021-07-27 12:48:52 +0200502static noinline int create_subvol(struct user_namespace *mnt_userns,
503 struct inode *dir, struct dentry *dentry,
David Sterba52f75f42017-02-14 18:33:53 +0100504 const char *name, int namelen,
Miao Xie8696c532013-02-07 06:02:44 +0000505 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400506{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400507 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400508 struct btrfs_trans_handle *trans;
509 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100510 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400511 struct btrfs_inode_item *inode_item;
512 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000513 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400514 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000515 struct btrfs_block_rsv block_rsv;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700516 struct timespec64 cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900517 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400518 int ret;
519 int err;
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800520 dev_t anon_dev = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400521 u64 objectid;
Chris Mason3de45862008-11-17 21:02:50 -0500522 u64 index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400523
David Sterba49a3c4d2016-03-24 17:49:22 +0100524 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
525 if (!root_item)
526 return -ENOMEM;
527
Nikolay Borisov543068a2020-12-07 17:32:33 +0200528 ret = btrfs_get_free_objectid(fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400529 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100530 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000531
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800532 ret = get_anon_bdev(&anon_dev);
533 if (ret < 0)
534 goto fail_free;
535
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800536 /*
537 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400538 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800539 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100540 if (btrfs_qgroup_level(objectid)) {
541 ret = -ENOSPC;
542 goto fail_free;
543 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800544
Miao Xied5c12072013-02-28 10:04:33 +0000545 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400546 /*
Miao Xied5c12072013-02-28 10:04:33 +0000547 * The same as the snapshot creation, please see the comment
548 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400549 */
Gu JinXiangc4c129d2018-05-30 11:00:38 +0800550 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 8, false);
Miao Xied5c12072013-02-28 10:04:33 +0000551 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100552 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400553
Miao Xied5c12072013-02-28 10:04:33 +0000554 trans = btrfs_start_transaction(root, 0);
555 if (IS_ERR(trans)) {
556 ret = PTR_ERR(trans);
Qu Wenruoe85fde52020-07-24 14:46:10 +0800557 btrfs_subvolume_release_metadata(root, &block_rsv);
David Sterba49a3c4d2016-03-24 17:49:22 +0100558 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000559 }
560 trans->block_rsv = &block_rsv;
561 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400562
Lu Fengqia93774222018-07-18 14:45:41 +0800563 ret = btrfs_qgroup_inherit(trans, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200564 if (ret)
565 goto fail;
566
Josef Bacik9631e4c2020-08-20 11:46:03 -0400567 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0,
568 BTRFS_NESTING_NORMAL);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400569 if (IS_ERR(leaf)) {
570 ret = PTR_ERR(leaf);
571 goto fail;
572 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400573
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400574 btrfs_mark_buffer_dirty(leaf);
575
David Sterba49a3c4d2016-03-24 17:49:22 +0100576 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800577 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);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400580 btrfs_set_stack_inode_nbytes(inode_item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400581 fs_info->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800582 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400583
David Sterba49a3c4d2016-03-24 17:49:22 +0100584 btrfs_set_root_flags(root_item, 0);
585 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800586 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000587
David Sterba49a3c4d2016-03-24 17:49:22 +0100588 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);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400594
David Sterba49a3c4d2016-03-24 17:49:22 +0100595 btrfs_set_root_generation_v2(root_item,
596 btrfs_root_generation(root_item));
Andy Shevchenko807fc792020-02-24 17:37:51 +0200597 generate_random_guid(root_item->uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100598 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);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400603
Chris Mason925baed2008-06-25 16:01:30 -0400604 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400605
Nikolay Borisov69948022020-12-07 17:32:37 +0200606 btrfs_set_root_dirid(root_item, BTRFS_FIRST_FREE_OBJECTID);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400607
608 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400609 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200610 key.type = BTRFS_ROOT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400611 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100612 root_item);
Filipe Manana67addf22021-04-20 10:55:12 +0100613 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);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400624 goto fail;
Filipe Manana67addf22021-04-20 10:55:12 +0100625 }
626
627 free_extent_buffer(leaf);
628 leaf = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400629
Yan, Zheng76dda932009-09-21 16:00:26 -0400630 key.offset = (u64)-1;
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800631 new_root = btrfs_get_new_fs_root(fs_info, objectid, anon_dev);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100632 if (IS_ERR(new_root)) {
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800633 free_anon_bdev(anon_dev);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100634 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400635 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100636 goto fail;
637 }
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800638 /* Freeing will be done in btrfs_put_root() of new_root */
639 anon_dev = 0;
Yan, Zheng76dda932009-09-21 16:00:26 -0400640
Josef Bacik221581e2021-03-12 15:25:06 -0500641 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 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400647
Christian Brauner4d4340c2021-07-27 12:48:52 +0200648 ret = btrfs_create_subvol_root(trans, new_root, root, mnt_userns);
Josef Bacik00246522020-01-24 09:33:01 -0500649 btrfs_put_root(new_root);
Mark Fashehce598972011-07-26 11:32:23 -0700650 if (ret) {
651 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400652 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700653 goto fail;
654 }
655
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400656 /*
657 * insert the directory item
658 */
Nikolay Borisov877574e2017-02-20 13:50:33 +0200659 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100660 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400661 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100662 goto fail;
663 }
Chris Mason3de45862008-11-17 21:02:50 -0500664
Lu Fengqi684572d2018-08-04 21:10:57 +0800665 ret = btrfs_insert_dir_item(trans, name, namelen, BTRFS_I(dir), &key,
Chris Mason3de45862008-11-17 21:02:50 -0500666 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100667 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400668 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400669 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100670 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500671
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200672 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +0200673 ret = btrfs_update_inode(trans, root, BTRFS_I(dir));
Josef Bacikc7e54b52019-12-06 09:37:15 -0500674 if (ret) {
675 btrfs_abort_transaction(trans, ret);
676 goto fail;
677 }
Yan Zheng52c26172009-01-05 15:43:43 -0500678
Lu Fengqi6025c192018-08-01 11:32:29 +0800679 ret = btrfs_add_root_ref(trans, objectid, root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200680 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
Josef Bacikc7e54b52019-12-06 09:37:15 -0500681 if (ret) {
682 btrfs_abort_transaction(trans, ret);
683 goto fail;
684 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500685
Lu Fengqicdb345a2018-05-29 15:01:53 +0800686 ret = btrfs_uuid_tree_add(trans, root_item->uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400687 BTRFS_UUID_KEY_SUBVOL, objectid);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200688 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400689 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200690
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400691fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100692 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000693 trans->block_rsv = NULL;
694 trans->bytes_reserved = 0;
Qu Wenruoe85fde52020-07-24 14:46:10 +0800695 btrfs_subvolume_release_metadata(root, &block_rsv);
Liu Bode6e8202014-01-09 14:57:06 +0800696
Nikolay Borisov9babda92020-03-13 17:23:20 +0200697 err = btrfs_commit_transaction(trans);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400698 if (err && !ret)
699 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500700
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900701 if (!ret) {
702 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800703 if (IS_ERR(inode))
704 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900705 d_instantiate(dentry, inode);
706 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400707 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100708
709fail_free:
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800710 if (anon_dev)
711 free_anon_bdev(anon_dev);
David Sterba49a3c4d2016-03-24 17:49:22 +0100712 kfree(root_item);
713 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400714}
715
Miao Xiee9662f72013-02-28 10:01:15 +0000716static int create_snapshot(struct btrfs_root *root, struct inode *dir,
Nikolay Borisov9babda92020-03-13 17:23:20 +0200717 struct dentry *dentry, bool readonly,
Miao Xiee9662f72013-02-28 10:01:15 +0000718 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400719{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400720 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000721 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400722 struct btrfs_pending_snapshot *pending_snapshot;
723 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000724 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400725
Qu Wenruo92a7cc42020-05-15 14:01:40 +0800726 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400727 return -EINVAL;
728
Omar Sandovaleede2bf2016-11-03 10:28:12 -0700729 if (atomic_read(&root->nr_swapfiles)) {
730 btrfs_warn(fs_info,
731 "cannot snapshot subvolume with active swapfile");
732 return -ETXTBSY;
733 }
734
David Sterba23269bf2017-02-13 11:03:44 +0100735 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100736 if (!pending_snapshot)
737 return -ENOMEM;
738
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800739 ret = get_anon_bdev(&pending_snapshot->anon_dev);
740 if (ret < 0)
741 goto free_pending;
David Sterbab0c0ea62015-11-10 18:54:00 +0100742 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100743 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100744 pending_snapshot->path = btrfs_alloc_path();
745 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100746 ret = -ENOMEM;
747 goto free_pending;
748 }
749
Miao Xie66d8f3d2012-09-06 04:02:28 -0600750 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
751 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000752 /*
753 * 1 - parent dir inode
754 * 2 - dir entries
755 * 1 - root item
756 * 2 - root ref/backref
757 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200758 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000759 */
760 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200761 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400762 false);
Miao Xied5c12072013-02-28 10:04:33 +0000763 if (ret)
Robbie Koc11fbb62020-05-14 17:19:18 +0800764 goto free_pending;
Miao Xied5c12072013-02-28 10:04:33 +0000765
Yan, Zhenga22285a2010-05-16 10:48:46 -0400766 pending_snapshot->dentry = dentry;
767 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800768 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000769 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000770 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400771
Miao Xied5c12072013-02-28 10:04:33 +0000772 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400773 if (IS_ERR(trans)) {
774 ret = PTR_ERR(trans);
775 goto fail;
776 }
777
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400778 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400779 list_add(&pending_snapshot->list,
780 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400781 spin_unlock(&fs_info->trans_lock);
Nikolay Borisov9babda92020-03-13 17:23:20 +0200782
783 ret = btrfs_commit_transaction(trans);
Miao Xieaec80302013-03-04 09:44:29 +0000784 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400785 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400786
787 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400788 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000789 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400790
Chris Masond3797302014-10-15 13:50:56 -0700791 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
792 if (ret)
793 goto fail;
794
David Howells2b0143b2015-03-17 22:25:59 +0000795 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000796 if (IS_ERR(inode)) {
797 ret = PTR_ERR(inode);
798 goto fail;
799 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900800
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000801 d_instantiate(dentry, inode);
802 ret = 0;
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800803 pending_snapshot->anon_dev = 0;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000804fail:
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800805 /* Prevent double freeing of anon_dev */
806 if (ret && pending_snapshot->snap)
807 pending_snapshot->snap->anon_dev = 0;
Josef Bacik00246522020-01-24 09:33:01 -0500808 btrfs_put_root(pending_snapshot->snap);
Qu Wenruoe85fde52020-07-24 14:46:10 +0800809 btrfs_subvolume_release_metadata(root, &pending_snapshot->block_rsv);
David Sterbab0c0ea62015-11-10 18:54:00 +0100810free_pending:
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800811 if (pending_snapshot->anon_dev)
812 free_anon_bdev(pending_snapshot->anon_dev);
David Sterbab0c0ea62015-11-10 18:54:00 +0100813 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100814 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100815 kfree(pending_snapshot);
816
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400817 return ret;
818}
819
Sage Weil4260f7c2010-10-29 15:46:43 -0400820/* 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
Nicholas D Steeves01327612016-05-19 21:18:45 -0400831 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400832 * 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
Christian Braunerc4ed5332021-07-27 12:48:53 +0200840static int btrfs_may_delete(struct user_namespace *mnt_userns,
841 struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400842{
843 int error;
844
David Howells2b0143b2015-03-17 22:25:59 +0000845 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400846 return -ENOENT;
847
David Howells2b0143b2015-03-17 22:25:59 +0000848 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400849 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400850
Christian Braunerc4ed5332021-07-27 12:48:53 +0200851 error = inode_permission(mnt_userns, dir, MAY_WRITE | MAY_EXEC);
Sage Weil4260f7c2010-10-29 15:46:43 -0400852 if (error)
853 return error;
854 if (IS_APPEND(dir))
855 return -EPERM;
Christian Braunerc4ed5332021-07-27 12:48:53 +0200856 if (check_sticky(mnt_userns, dir, d_inode(victim)) ||
Christian Braunerba73d982021-01-21 14:19:31 +0100857 IS_APPEND(d_inode(victim)) || IS_IMMUTABLE(d_inode(victim)) ||
858 IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400859 return -EPERM;
860 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000861 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400862 return -ENOTDIR;
863 if (IS_ROOT(victim))
864 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000865 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400866 return -EISDIR;
867 if (IS_DEADDIR(dir))
868 return -ENOENT;
869 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
870 return -EBUSY;
871 return 0;
872}
873
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400874/* copy of may_create in fs/namei.c() */
Christian Brauner4d4340c2021-07-27 12:48:52 +0200875static inline int btrfs_may_create(struct user_namespace *mnt_userns,
876 struct inode *dir, struct dentry *child)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400877{
David Howells2b0143b2015-03-17 22:25:59 +0000878 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400879 return -EEXIST;
880 if (IS_DEADDIR(dir))
881 return -ENOENT;
Christian Brauner4d4340c2021-07-27 12:48:52 +0200882 if (!fsuidgid_has_mapping(dir->i_sb, mnt_userns))
Christian Brauner5474bf42021-07-27 12:48:51 +0200883 return -EOVERFLOW;
Christian Brauner4d4340c2021-07-27 12:48:52 +0200884 return inode_permission(mnt_userns, dir, MAY_WRITE | MAY_EXEC);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400885}
886
887/*
888 * Create a new subvolume below @parent. This is largely modeled after
889 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
890 * inside this filesystem so it's quite a bit simpler.
891 */
Al Viro92872092016-11-20 19:34:31 -0500892static noinline int btrfs_mksubvol(const struct path *parent,
Christian Brauner4d4340c2021-07-27 12:48:52 +0200893 struct user_namespace *mnt_userns,
David Sterba52f75f42017-02-14 18:33:53 +0100894 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400895 struct btrfs_root *snap_src,
Nikolay Borisov9babda92020-03-13 17:23:20 +0200896 bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000897 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400898{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400899 struct inode *dir = d_inode(parent->dentry);
900 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400901 struct dentry *dentry;
902 int error;
903
Al Viro00235412016-05-26 00:05:12 -0400904 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
905 if (error == -EINTR)
906 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400907
Christian Brauner4d4340c2021-07-27 12:48:52 +0200908 dentry = lookup_one(mnt_userns, name, parent->dentry, namelen);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400909 error = PTR_ERR(dentry);
910 if (IS_ERR(dentry))
911 goto out_unlock;
912
Christian Brauner4d4340c2021-07-27 12:48:52 +0200913 error = btrfs_may_create(mnt_userns, dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400914 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600915 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400916
Chris Mason9c520572012-12-17 14:26:57 -0500917 /*
918 * even if this name doesn't exist, we may get hash collisions.
919 * check for them now when we can safely fail
920 */
921 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
922 dir->i_ino, name,
923 namelen);
924 if (error)
925 goto out_dput;
926
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400927 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400928
929 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
930 goto out_up_read;
931
Nikolay Borisov9babda92020-03-13 17:23:20 +0200932 if (snap_src)
933 error = create_snapshot(snap_src, dir, dentry, readonly, inherit);
934 else
Christian Brauner4d4340c2021-07-27 12:48:52 +0200935 error = create_subvol(mnt_userns, dir, dentry, name, namelen, inherit);
Nikolay Borisov9babda92020-03-13 17:23:20 +0200936
Yan, Zheng76dda932009-09-21 16:00:26 -0400937 if (!error)
938 fsnotify_mkdir(dir, dentry);
939out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400940 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400941out_dput:
942 dput(dentry);
943out_unlock:
Josef Bacik64708532021-02-10 17:14:34 -0500944 btrfs_inode_unlock(dir, 0);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400945 return error;
946}
947
Robbie Koc11fbb62020-05-14 17:19:18 +0800948static noinline int btrfs_mksnapshot(const struct path *parent,
Christian Brauner4d4340c2021-07-27 12:48:52 +0200949 struct user_namespace *mnt_userns,
Robbie Koc11fbb62020-05-14 17:19:18 +0800950 const char *name, int namelen,
951 struct btrfs_root *root,
952 bool readonly,
953 struct btrfs_qgroup_inherit *inherit)
954{
955 int ret;
956 bool snapshot_force_cow = false;
957
958 /*
959 * Force new buffered writes to reserve space even when NOCOW is
960 * possible. This is to avoid later writeback (running dealloc) to
961 * fallback to COW mode and unexpectedly fail with ENOSPC.
962 */
963 btrfs_drew_read_lock(&root->snapshot_lock);
964
Filipe Mananaf9baa502021-04-22 12:08:05 +0100965 ret = btrfs_start_delalloc_snapshot(root, false);
Robbie Koc11fbb62020-05-14 17:19:18 +0800966 if (ret)
967 goto out;
968
969 /*
970 * All previous writes have started writeback in NOCOW mode, so now
971 * we force future writes to fallback to COW mode during snapshot
972 * creation.
973 */
974 atomic_inc(&root->snapshot_force_cow);
975 snapshot_force_cow = true;
976
977 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
978
Christian Brauner4d4340c2021-07-27 12:48:52 +0200979 ret = btrfs_mksubvol(parent, mnt_userns, name, namelen,
Robbie Koc11fbb62020-05-14 17:19:18 +0800980 root, readonly, inherit);
981out:
982 if (snapshot_force_cow)
983 atomic_dec(&root->snapshot_force_cow);
984 btrfs_drew_read_unlock(&root->snapshot_lock);
985 return ret;
986}
987
Chris Mason4cb53002011-05-24 15:35:30 -0400988/*
989 * When we're defragging a range, we don't want to kick it off again
990 * if it is really just waiting for delalloc to send it down.
991 * If we find a nice big extent or delalloc range for the bytes in the
992 * file you want to defrag, we return 0 to let you know to skip this
993 * part of the file
994 */
David Sterbaaab110a2014-07-29 17:32:10 +0200995static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400996{
997 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
998 struct extent_map *em = NULL;
999 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1000 u64 end;
1001
1002 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001003 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -04001004 read_unlock(&em_tree->lock);
1005
1006 if (em) {
1007 end = extent_map_end(em);
1008 free_extent_map(em);
1009 if (end - offset > thresh)
1010 return 0;
1011 }
1012 /* if we already have a nice delalloc here, just stop */
1013 thresh /= 2;
1014 end = count_range_bits(io_tree, &offset, offset + thresh,
1015 thresh, EXTENT_DELALLOC, 1);
1016 if (end >= thresh)
1017 return 0;
1018 return 1;
1019}
1020
1021/*
1022 * helper function to walk through a file and find extents
1023 * newer than a specific transid, and smaller than thresh.
1024 *
1025 * This is used by the defragging code to find new and small
1026 * extents
1027 */
1028static int find_new_extents(struct btrfs_root *root,
1029 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +02001030 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -04001031{
1032 struct btrfs_path *path;
1033 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -04001034 struct extent_buffer *leaf;
1035 struct btrfs_file_extent_item *extent;
1036 int type;
1037 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001038 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -04001039
1040 path = btrfs_alloc_path();
1041 if (!path)
1042 return -ENOMEM;
1043
David Sterbaa4689d22011-05-31 17:08:14 +00001044 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -04001045 min_key.type = BTRFS_EXTENT_DATA_KEY;
1046 min_key.offset = *off;
1047
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05301048 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01001049 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -04001050 if (ret != 0)
1051 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +00001052process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +00001053 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -04001054 goto none;
1055 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
1056 goto none;
1057
1058 leaf = path->nodes[0];
1059 extent = btrfs_item_ptr(leaf, path->slots[0],
1060 struct btrfs_file_extent_item);
1061
1062 type = btrfs_file_extent_type(leaf, extent);
1063 if (type == BTRFS_FILE_EXTENT_REG &&
1064 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
1065 check_defrag_in_cache(inode, min_key.offset, thresh)) {
1066 *off = min_key.offset;
1067 btrfs_free_path(path);
1068 return 0;
1069 }
1070
Filipe Mananaf094c9bd2014-03-12 01:28:24 +00001071 path->slots[0]++;
1072 if (path->slots[0] < btrfs_header_nritems(leaf)) {
1073 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
1074 goto process_slot;
1075 }
1076
Chris Mason4cb53002011-05-24 15:35:30 -04001077 if (min_key.offset == (u64)-1)
1078 goto none;
1079
1080 min_key.offset++;
1081 btrfs_release_path(path);
1082 }
1083none:
1084 btrfs_free_path(path);
1085 return -ENOENT;
1086}
1087
Li Zefan6c282eb2012-06-11 16:03:35 +08001088static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -04001089{
1090 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -05001091 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +08001092 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001093 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -05001094
1095 /*
1096 * hopefully we have this extent in the tree already, try without
1097 * the full extent lock
1098 */
1099 read_lock(&em_tree->lock);
1100 em = lookup_extent_mapping(em_tree, start, len);
1101 read_unlock(&em_tree->lock);
1102
1103 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +00001104 struct extent_state *cached = NULL;
1105 u64 end = start + len - 1;
1106
Chris Mason940100a2010-03-10 10:52:59 -05001107 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +01001108 lock_extent_bits(io_tree, start, end, &cached);
Omar Sandoval39b07b52019-12-02 17:34:23 -08001109 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
David Sterbae43bbe52017-12-12 21:43:52 +01001110 unlock_extent_cached(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -05001111
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +00001112 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001113 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001114 }
1115
Li Zefan6c282eb2012-06-11 16:03:35 +08001116 return em;
1117}
1118
1119static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1120{
1121 struct extent_map *next;
1122 bool ret = true;
1123
1124 /* this is the last extent */
1125 if (em->start + em->len >= i_size_read(inode))
1126 return false;
1127
1128 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001129 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1130 ret = false;
1131 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001132 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001133 ret = false;
1134
1135 free_extent_map(next);
1136 return ret;
1137}
1138
David Sterbaaab110a2014-07-29 17:32:10 +02001139static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001140 u64 *last_len, u64 *skip, u64 *defrag_end,
1141 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001142{
1143 struct extent_map *em;
1144 int ret = 1;
1145 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001146 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001147
1148 /*
1149 * make sure that once we start defragging an extent, we keep on
1150 * defragging it
1151 */
1152 if (start < *defrag_end)
1153 return 1;
1154
1155 *skip = 0;
1156
1157 em = defrag_lookup_extent(inode, start);
1158 if (!em)
1159 return 0;
1160
Chris Mason940100a2010-03-10 10:52:59 -05001161 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001162 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001163 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001164 goto out;
1165 }
1166
Liu Bo4a3560c2015-08-07 16:48:41 +08001167 if (!*defrag_end)
1168 prev_mergeable = false;
1169
Li Zefan6c282eb2012-06-11 16:03:35 +08001170 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001171 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001172 * we hit a real extent, if it is big or the next extent is not a
1173 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001174 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001175 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001176 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001177 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001178out:
Chris Mason940100a2010-03-10 10:52:59 -05001179 /*
1180 * last_len ends up being a counter of how many bytes we've defragged.
1181 * every time we choose not to defrag an extent, we reset *last_len
1182 * so that the next tiny extent will force a defrag.
1183 *
1184 * The end result of this is that tiny extents before a single big
1185 * extent will force at least part of that big extent to be defragged.
1186 */
1187 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001188 *defrag_end = extent_map_end(em);
1189 } else {
1190 *last_len = 0;
1191 *skip = extent_map_end(em);
1192 *defrag_end = 0;
1193 }
1194
1195 free_extent_map(em);
1196 return ret;
1197}
1198
Chris Mason4cb53002011-05-24 15:35:30 -04001199/*
1200 * it doesn't do much good to defrag one or two pages
1201 * at a time. This pulls in a nice chunk of pages
1202 * to COW and defrag.
1203 *
1204 * It also makes sure the delalloc code has enough
1205 * dirty data to avoid making new small extents as part
1206 * of the defrag
1207 *
1208 * It's a good idea to start RA on this range
1209 * before calling this.
1210 */
1211static int cluster_pages_for_defrag(struct inode *inode,
1212 struct page **pages,
1213 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001214 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001215{
Chris Mason4cb53002011-05-24 15:35:30 -04001216 unsigned long file_end;
1217 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001218 u64 page_start;
1219 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001220 u64 page_cnt;
Matthew Wilcox (Oracle)a1fbc672020-10-04 19:04:26 +01001221 u64 start = (u64)start_index << PAGE_SHIFT;
Filipe Manana7f458a32020-11-04 11:07:33 +00001222 u64 search_start;
Chris Mason4cb53002011-05-24 15:35:30 -04001223 int ret;
1224 int i;
1225 int i_done;
1226 struct btrfs_ordered_extent *ordered;
1227 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001228 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001229 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001230 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001231
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001232 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001233 if (!isize || start_index > file_end)
1234 return 0;
1235
1236 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001237
Nikolay Borisove5b7231e2020-06-03 08:55:42 +03001238 ret = btrfs_delalloc_reserve_space(BTRFS_I(inode), &data_reserved,
Matthew Wilcox (Oracle)a1fbc672020-10-04 19:04:26 +01001239 start, page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001240 if (ret)
1241 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001242 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001243 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001244
1245 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001246 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001247 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001248again:
Josef Bacika94733d2011-07-11 10:47:06 -04001249 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001250 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001251 if (!page)
1252 break;
1253
Qu Wenruo32443de2021-01-26 16:34:00 +08001254 ret = set_page_extent_mapped(page);
1255 if (ret < 0) {
1256 unlock_page(page);
1257 put_page(page);
1258 break;
1259 }
1260
Miao Xie600a45e2012-02-16 15:01:24 +08001261 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001262 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001263 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001264 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001265 &cached_state);
Nikolay Borisovc3504372020-06-03 08:55:03 +03001266 ordered = btrfs_lookup_ordered_extent(BTRFS_I(inode),
Miao Xie600a45e2012-02-16 15:01:24 +08001267 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001268 unlock_extent_cached(tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001269 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001270 if (!ordered)
1271 break;
1272
1273 unlock_page(page);
Nikolay Borisovc0a43602020-09-18 12:15:53 +03001274 btrfs_start_ordered_extent(ordered, 1);
Miao Xie600a45e2012-02-16 15:01:24 +08001275 btrfs_put_ordered_extent(ordered);
1276 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001277 /*
1278 * we unlocked the page above, so we need check if
1279 * it was released or not.
1280 */
1281 if (page->mapping != inode->i_mapping) {
1282 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001283 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001284 goto again;
1285 }
Miao Xie600a45e2012-02-16 15:01:24 +08001286 }
1287
Chris Mason4cb53002011-05-24 15:35:30 -04001288 if (!PageUptodate(page)) {
1289 btrfs_readpage(NULL, page);
1290 lock_page(page);
1291 if (!PageUptodate(page)) {
1292 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001293 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001294 ret = -EIO;
1295 break;
1296 }
1297 }
Miao Xie600a45e2012-02-16 15:01:24 +08001298
Miao Xie600a45e2012-02-16 15:01:24 +08001299 if (page->mapping != inode->i_mapping) {
1300 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001301 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001302 goto again;
1303 }
1304
Chris Mason4cb53002011-05-24 15:35:30 -04001305 pages[i] = page;
1306 i_done++;
1307 }
1308 if (!i_done || ret)
1309 goto out;
1310
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001311 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001312 goto out;
1313
1314 /*
1315 * so now we have a nice long stream of locked
1316 * and up to date pages, lets wait on them
1317 */
1318 for (i = 0; i < i_done; i++)
1319 wait_on_page_writeback(pages[i]);
1320
1321 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001322 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001323
1324 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001325 page_start, page_end - 1, &cached_state);
Filipe Manana7f458a32020-11-04 11:07:33 +00001326
1327 /*
1328 * When defragmenting we skip ranges that have holes or inline extents,
1329 * (check should_defrag_range()), to avoid unnecessary IO and wasting
1330 * space. At btrfs_defrag_file(), we check if a range should be defragged
1331 * before locking the inode and then, if it should, we trigger a sync
1332 * page cache readahead - we lock the inode only after that to avoid
1333 * blocking for too long other tasks that possibly want to operate on
1334 * other file ranges. But before we were able to get the inode lock,
1335 * some other task may have punched a hole in the range, or we may have
1336 * now an inline extent, in which case we should not defrag. So check
1337 * for that here, where we have the inode and the range locked, and bail
1338 * out if that happened.
1339 */
1340 search_start = page_start;
1341 while (search_start < page_end) {
1342 struct extent_map *em;
1343
1344 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, search_start,
1345 page_end - search_start);
1346 if (IS_ERR(em)) {
1347 ret = PTR_ERR(em);
1348 goto out_unlock_range;
1349 }
1350 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1351 free_extent_map(em);
1352 /* Ok, 0 means we did not defrag anything */
1353 ret = 0;
1354 goto out_unlock_range;
1355 }
1356 search_start = extent_map_end(em);
1357 free_extent_map(em);
1358 }
1359
Chris Mason4cb53002011-05-24 15:35:30 -04001360 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
Omar Sandovale1821632019-08-15 14:04:04 -07001361 page_end - 1, EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
1362 EXTENT_DEFRAG, 0, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001363
Liu Bo1f12bd02012-03-29 09:57:44 -04001364 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001365 spin_lock(&BTRFS_I(inode)->lock);
Su Yue28c4a3e2018-09-05 11:07:33 +08001366 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001367 spin_unlock(&BTRFS_I(inode)->lock);
Nikolay Borisov86d52922020-06-03 08:55:40 +03001368 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
Matthew Wilcox (Oracle)a1fbc672020-10-04 19:04:26 +01001369 start, (page_cnt - i_done) << PAGE_SHIFT, true);
Chris Mason4cb53002011-05-24 15:35:30 -04001370 }
1371
1372
Liu Bo9e8a4a82012-09-05 19:10:51 -06001373 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001374 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001375
1376 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001377 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001378
1379 for (i = 0; i < i_done; i++) {
1380 clear_page_dirty_for_io(pages[i]);
1381 ClearPageChecked(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001382 set_page_dirty(pages[i]);
1383 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001384 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001385 }
Qu Wenruo8702ba92019-10-14 14:34:51 +08001386 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001387 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001388 return i_done;
Filipe Manana7f458a32020-11-04 11:07:33 +00001389
1390out_unlock_range:
1391 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1392 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001393out:
1394 for (i = 0; i < i_done; i++) {
1395 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001396 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001397 }
Nikolay Borisov86d52922020-06-03 08:55:40 +03001398 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
Matthew Wilcox (Oracle)a1fbc672020-10-04 19:04:26 +01001399 start, page_cnt << PAGE_SHIFT, true);
Qu Wenruo8702ba92019-10-14 14:34:51 +08001400 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001401 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001402 return ret;
1403
1404}
1405
1406int btrfs_defrag_file(struct inode *inode, struct file *file,
1407 struct btrfs_ioctl_defrag_range_args *range,
1408 u64 newer_than, unsigned long max_to_defrag)
1409{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001410 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001411 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001412 struct file_ra_state *ra = NULL;
1413 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001414 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001415 u64 last_len = 0;
1416 u64 skip = 0;
1417 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001418 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001419 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001420 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001421 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001422 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001423 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001424 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001425 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001426 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001427 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001428 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001429 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001430
Liu Bo0abd5b12013-04-16 09:20:28 +00001431 if (isize == 0)
1432 return 0;
1433
1434 if (range->start >= isize)
1435 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001436
David Sterba1e2ef462017-07-17 20:01:59 +02001437 if (do_compress) {
Chengguang Xuce96b7f2019-10-10 15:59:57 +08001438 if (range->compress_type >= BTRFS_NR_COMPRESS_TYPES)
Li Zefan1a419d82010-10-25 15:12:50 +08001439 return -EINVAL;
1440 if (range->compress_type)
1441 compress_type = range->compress_type;
1442 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001443
Liu Bo0abd5b12013-04-16 09:20:28 +00001444 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001445 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001446
Chris Mason4cb53002011-05-24 15:35:30 -04001447 /*
David Sterba0a52d102017-06-22 03:22:58 +02001448 * If we were not given a file, allocate a readahead context. As
1449 * readahead is just an optimization, defrag will work without it so
1450 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001451 */
1452 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001453 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001454 if (ra)
1455 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001456 } else {
1457 ra = &file->f_ra;
1458 }
1459
David Sterba63e727e2017-06-22 03:13:02 +02001460 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001461 if (!pages) {
1462 ret = -ENOMEM;
1463 goto out_ra;
1464 }
1465
1466 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001467 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001468 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001469 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001470 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001471 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001472 }
1473
Chris Mason4cb53002011-05-24 15:35:30 -04001474 if (newer_than) {
1475 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001476 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001477 if (!ret) {
1478 range->start = newer_off;
1479 /*
1480 * we always align our defrag to help keep
1481 * the extents in the file evenly spaced
1482 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001483 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001484 } else
1485 goto out_ra;
1486 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001487 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001488 }
1489 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301490 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001491
Li Zefan2a0f7f52011-10-10 15:43:34 -04001492 /*
1493 * make writeback starts from i, so the defrag range can be
1494 * written sequentially.
1495 */
1496 if (i < inode->i_mapping->writeback_index)
1497 inode->i_mapping->writeback_index = i;
1498
Chris Masonf7f43cc2011-10-11 11:41:40 -04001499 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001500 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001501 /*
1502 * make sure we stop running if someone unmounts
1503 * the FS
1504 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001505 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001506 break;
1507
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001508 if (btrfs_defrag_cancelled(fs_info)) {
1509 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001510 ret = -EAGAIN;
Tian Tao50535db2021-05-05 09:26:28 +08001511 goto error;
David Sterba210549e2013-02-09 23:38:06 +00001512 }
1513
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001514 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001515 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001516 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001517 unsigned long next;
1518 /*
1519 * the should_defrag function tells us how much to skip
1520 * bump our counter by the suggested amount
1521 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001522 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001523 i = max(i + 1, next);
1524 continue;
1525 }
Li Zefan008873e2011-09-02 15:57:07 +08001526
1527 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001528 cluster = (PAGE_ALIGN(defrag_end) >>
1529 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001530 cluster = min(cluster, max_cluster);
1531 } else {
1532 cluster = max_cluster;
1533 }
1534
Li Zefan008873e2011-09-02 15:57:07 +08001535 if (i + cluster > ra_index) {
1536 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001537 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001538 page_cache_sync_readahead(inode->i_mapping, ra,
1539 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301540 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001541 }
Chris Mason940100a2010-03-10 10:52:59 -05001542
Josef Bacik64708532021-02-10 17:14:34 -05001543 btrfs_inode_lock(inode, 0);
Omar Sandovaleede2bf2016-11-03 10:28:12 -07001544 if (IS_SWAPFILE(inode)) {
1545 ret = -ETXTBSY;
1546 } else {
1547 if (do_compress)
1548 BTRFS_I(inode)->defrag_compress = compress_type;
1549 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
1550 }
Liu Boecb8bea2012-03-29 09:57:44 -04001551 if (ret < 0) {
Josef Bacik64708532021-02-10 17:14:34 -05001552 btrfs_inode_unlock(inode, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04001553 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001554 }
Chris Mason940100a2010-03-10 10:52:59 -05001555
Chris Mason4cb53002011-05-24 15:35:30 -04001556 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001557 balance_dirty_pages_ratelimited(inode->i_mapping);
Josef Bacik64708532021-02-10 17:14:34 -05001558 btrfs_inode_unlock(inode, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04001559
1560 if (newer_than) {
1561 if (newer_off == (u64)-1)
1562 break;
1563
Liu Boe1f041e2012-03-29 09:57:45 -04001564 if (ret > 0)
1565 i += ret;
1566
Chris Mason4cb53002011-05-24 15:35:30 -04001567 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001568 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001569
Byongho Leeee221842015-12-15 01:42:10 +09001570 ret = find_new_extents(root, inode, newer_than,
1571 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001572 if (!ret) {
1573 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001574 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001575 } else {
1576 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001577 }
Chris Mason4cb53002011-05-24 15:35:30 -04001578 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001579 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001580 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001581 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001582 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001583 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001584 last_len = 0;
1585 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001586 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001587 }
1588
Tian Tao50535db2021-05-05 09:26:28 +08001589 ret = defrag_count;
1590error:
Filipe Mananadec8ef92014-03-01 10:55:54 +00001591 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001592 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001593 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1594 &BTRFS_I(inode)->runtime_flags))
1595 filemap_flush(inode->i_mapping);
1596 }
Chris Mason1e701a32010-03-11 09:42:04 -05001597
Li Zefan1a419d82010-10-25 15:12:50 +08001598 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001599 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
Nick Terrell5c1aab12017-08-09 19:39:02 -07001600 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1601 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
Li Zefan1a419d82010-10-25 15:12:50 +08001602 }
1603
Chris Mason4cb53002011-05-24 15:35:30 -04001604out_ra:
David Sterba1e2ef462017-07-17 20:01:59 +02001605 if (do_compress) {
Josef Bacik64708532021-02-10 17:14:34 -05001606 btrfs_inode_lock(inode, 0);
David Sterbaeec63c62017-07-17 19:41:31 +02001607 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
Josef Bacik64708532021-02-10 17:14:34 -05001608 btrfs_inode_unlock(inode, 0);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001609 }
Chris Mason4cb53002011-05-24 15:35:30 -04001610 if (!file)
1611 kfree(ra);
1612 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001613 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001614}
1615
David Sterba17aaa432021-05-14 21:32:44 +02001616/*
1617 * Try to start exclusive operation @type or cancel it if it's running.
1618 *
1619 * Return:
1620 * 0 - normal mode, newly claimed op started
1621 * >0 - normal mode, something else is running,
1622 * return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS to user space
1623 * ECANCELED - cancel mode, successful cancel
1624 * ENOTCONN - cancel mode, operation not running anymore
1625 */
1626static int exclop_start_or_cancel_reloc(struct btrfs_fs_info *fs_info,
1627 enum btrfs_exclusive_operation type, bool cancel)
1628{
1629 if (!cancel) {
1630 /* Start normal op */
1631 if (!btrfs_exclop_start(fs_info, type))
1632 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
1633 /* Exclusive operation is now claimed */
1634 return 0;
1635 }
1636
1637 /* Cancel running op */
1638 if (btrfs_exclop_start_try_lock(fs_info, type)) {
1639 /*
1640 * This blocks any exclop finish from setting it to NONE, so we
1641 * request cancellation. Either it runs and we will wait for it,
1642 * or it has finished and no waiting will happen.
1643 */
1644 atomic_inc(&fs_info->reloc_cancel_req);
1645 btrfs_exclop_start_unlock(fs_info);
1646
1647 if (test_bit(BTRFS_FS_RELOC_RUNNING, &fs_info->flags))
1648 wait_on_bit(&fs_info->flags, BTRFS_FS_RELOC_RUNNING,
1649 TASK_INTERRUPTIBLE);
1650
1651 return -ECANCELED;
1652 }
1653
1654 /* Something else is running or none */
1655 return -ENOTCONN;
1656}
1657
Miao Xie198605a2012-11-26 08:43:45 +00001658static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001659 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001660{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001661 struct inode *inode = file_inode(file);
1662 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001663 u64 new_size;
1664 u64 old_size;
1665 u64 devid = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001666 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001667 struct btrfs_ioctl_vol_args *vol_args;
1668 struct btrfs_trans_handle *trans;
1669 struct btrfs_device *device = NULL;
1670 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001671 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001672 char *devstr = NULL;
1673 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001674 int mod = 0;
David Sterbabb059a32021-05-18 21:12:33 +02001675 bool cancel;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001676
Chris Masone441d542009-01-05 16:57:23 -05001677 if (!capable(CAP_SYS_ADMIN))
1678 return -EPERM;
1679
Miao Xie198605a2012-11-26 08:43:45 +00001680 ret = mnt_want_write_file(file);
1681 if (ret)
1682 return ret;
1683
David Sterbabb059a32021-05-18 21:12:33 +02001684 /*
1685 * Read the arguments before checking exclusivity to be able to
1686 * distinguish regular resize and cancel
1687 */
Li Zefandae7b662009-04-08 15:06:54 +08001688 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001689 if (IS_ERR(vol_args)) {
1690 ret = PTR_ERR(vol_args);
David Sterbabb059a32021-05-18 21:12:33 +02001691 goto out_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001692 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001693 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001694 sizestr = vol_args->name;
David Sterbabb059a32021-05-18 21:12:33 +02001695 cancel = (strcmp("cancel", sizestr) == 0);
1696 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_RESIZE, cancel);
1697 if (ret)
1698 goto out_free;
1699 /* Exclusive operation is now claimed */
1700
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001701 devstr = strchr(sizestr, ':');
1702 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001703 sizestr = devstr + 1;
1704 *devstr = '\0';
1705 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001706 ret = kstrtoull(devstr, 10, &devid);
1707 if (ret)
David Sterbabb059a32021-05-18 21:12:33 +02001708 goto out_finish;
Miao Xiedfd79822012-12-21 09:21:30 +00001709 if (!devid) {
1710 ret = -EINVAL;
David Sterbabb059a32021-05-18 21:12:33 +02001711 goto out_finish;
Miao Xiedfd79822012-12-21 09:21:30 +00001712 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001713 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001714 }
Miao Xiedba60f32012-12-21 09:19:51 +00001715
Anand Jainb2598ed2020-11-03 13:49:43 +08001716 device = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001717 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001718 btrfs_info(fs_info, "resizer unable to find device %llu",
1719 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001720 ret = -ENODEV;
David Sterbabb059a32021-05-18 21:12:33 +02001721 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001722 }
Miao Xiedba60f32012-12-21 09:19:51 +00001723
Anand Jainebbede42017-12-04 12:54:52 +08001724 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001725 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001726 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001727 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001728 ret = -EPERM;
David Sterbabb059a32021-05-18 21:12:33 +02001729 goto out_finish;
Liu Bo4e42ae12012-06-14 02:23:19 -06001730 }
1731
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001732 if (!strcmp(sizestr, "max"))
1733 new_size = device->bdev->bd_inode->i_size;
1734 else {
1735 if (sizestr[0] == '-') {
1736 mod = -1;
1737 sizestr++;
1738 } else if (sizestr[0] == '+') {
1739 mod = 1;
1740 sizestr++;
1741 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001742 new_size = memparse(sizestr, &retptr);
1743 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001744 ret = -EINVAL;
David Sterbabb059a32021-05-18 21:12:33 +02001745 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001746 }
1747 }
1748
Anand Jain401e29c2017-12-04 12:54:55 +08001749 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xiedfd79822012-12-21 09:21:30 +00001750 ret = -EPERM;
David Sterbabb059a32021-05-18 21:12:33 +02001751 goto out_finish;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001752 }
1753
Miao Xie7cc8e582014-09-03 21:35:38 +08001754 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001755
1756 if (mod < 0) {
1757 if (new_size > old_size) {
1758 ret = -EINVAL;
David Sterbabb059a32021-05-18 21:12:33 +02001759 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001760 }
1761 new_size = old_size - new_size;
1762 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001763 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001764 ret = -ERANGE;
David Sterbabb059a32021-05-18 21:12:33 +02001765 goto out_finish;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001766 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001767 new_size = old_size + new_size;
1768 }
1769
Byongho Leeee221842015-12-15 01:42:10 +09001770 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001771 ret = -EINVAL;
David Sterbabb059a32021-05-18 21:12:33 +02001772 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001773 }
1774 if (new_size > device->bdev->bd_inode->i_size) {
1775 ret = -EFBIG;
David Sterbabb059a32021-05-18 21:12:33 +02001776 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001777 }
1778
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001779 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001780
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001781 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001782 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001783 if (IS_ERR(trans)) {
1784 ret = PTR_ERR(trans);
David Sterbabb059a32021-05-18 21:12:33 +02001785 goto out_finish;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001786 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001787 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001788 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001789 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001790 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001791 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001792
Marcos Paulo de Souzafaf8f7b2020-02-11 10:55:26 -03001793 if (ret == 0 && new_size != old_size)
1794 btrfs_info_in_rcu(fs_info,
1795 "resize device %s (devid %llu) from %llu to %llu",
1796 rcu_str_deref(device->name), device->devid,
1797 old_size, new_size);
David Sterbabb059a32021-05-18 21:12:33 +02001798out_finish:
1799 btrfs_exclop_finish(fs_info);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001800out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001801 kfree(vol_args);
David Sterbabb059a32021-05-18 21:12:33 +02001802out_drop:
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001803 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001804 return ret;
1805}
1806
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001807static noinline int __btrfs_ioctl_snap_create(struct file *file,
Christian Brauner4d4340c2021-07-27 12:48:52 +02001808 struct user_namespace *mnt_userns,
David Sterba52f75f42017-02-14 18:33:53 +01001809 const char *name, unsigned long fd, int subvol,
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001810 bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001811 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001812{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001813 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001814 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001815
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001816 if (!S_ISDIR(file_inode(file)->i_mode))
1817 return -ENOTDIR;
1818
Liu Boa874a632012-06-29 03:58:46 -06001819 ret = mnt_want_write_file(file);
1820 if (ret)
1821 goto out;
1822
Sage Weil72fd0322010-10-29 15:41:32 -04001823 namelen = strlen(name);
1824 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001825 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001826 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001827 }
1828
Chris Mason16780ca2012-02-20 22:14:55 -05001829 if (name[0] == '.' &&
1830 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1831 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001832 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001833 }
1834
Chris Mason3de45862008-11-17 21:02:50 -05001835 if (subvol) {
Christian Brauner4d4340c2021-07-27 12:48:52 +02001836 ret = btrfs_mksubvol(&file->f_path, mnt_userns, name,
1837 namelen, NULL, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001838 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001839 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001840 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001841 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001842 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001843 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001844 }
1845
Al Viro496ad9a2013-01-23 17:07:38 -05001846 src_inode = file_inode(src.file);
1847 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001848 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001849 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001850 ret = -EXDEV;
Christian Brauner4d4340c2021-07-27 12:48:52 +02001851 } else if (!inode_owner_or_capable(mnt_userns, src_inode)) {
David Sterbad0242062014-01-15 18:15:52 +01001852 /*
1853 * Subvolume creation is not restricted, but snapshots
1854 * are limited to own subvolumes only
1855 */
1856 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001857 } else {
Christian Brauner4d4340c2021-07-27 12:48:52 +02001858 ret = btrfs_mksnapshot(&file->f_path, mnt_userns,
1859 name, namelen,
1860 BTRFS_I(src_inode)->root,
1861 readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001862 }
Al Viro2903ff02012-08-28 12:52:22 -04001863 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001864 }
Liu Boa874a632012-06-29 03:58:46 -06001865out_drop_write:
1866 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001867out:
Sage Weil72fd0322010-10-29 15:41:32 -04001868 return ret;
1869}
1870
1871static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001872 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001873{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001874 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001875 int ret;
1876
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001877 if (!S_ISDIR(file_inode(file)->i_mode))
1878 return -ENOTDIR;
1879
Li Zefanfa0d2b92010-12-20 15:53:28 +08001880 vol_args = memdup_user(arg, sizeof(*vol_args));
1881 if (IS_ERR(vol_args))
1882 return PTR_ERR(vol_args);
1883 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001884
Christian Brauner4d4340c2021-07-27 12:48:52 +02001885 ret = __btrfs_ioctl_snap_create(file, file_mnt_user_ns(file),
1886 vol_args->name, vol_args->fd, subvol,
1887 false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001888
Li Zefanfa0d2b92010-12-20 15:53:28 +08001889 kfree(vol_args);
1890 return ret;
1891}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001892
Li Zefanfa0d2b92010-12-20 15:53:28 +08001893static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1894 void __user *arg, int subvol)
1895{
1896 struct btrfs_ioctl_vol_args_v2 *vol_args;
1897 int ret;
Li Zefanb83cc962010-12-20 16:04:08 +08001898 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001899 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001900
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001901 if (!S_ISDIR(file_inode(file)->i_mode))
1902 return -ENOTDIR;
1903
Li Zefanfa0d2b92010-12-20 15:53:28 +08001904 vol_args = memdup_user(arg, sizeof(*vol_args));
1905 if (IS_ERR(vol_args))
1906 return PTR_ERR(vol_args);
1907 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001908
David Sterba673990d2020-02-21 13:24:37 +01001909 if (vol_args->flags & ~BTRFS_SUBVOL_CREATE_ARGS_MASK) {
Li Zefanb83cc962010-12-20 16:04:08 +08001910 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001911 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001912 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001913
Li Zefanb83cc962010-12-20 16:04:08 +08001914 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1915 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001916 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Dan Carpenter5011c5a2021-02-17 09:04:34 +03001917 u64 nums;
1918
1919 if (vol_args->size < sizeof(*inherit) ||
1920 vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001921 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001922 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001923 }
1924 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1925 if (IS_ERR(inherit)) {
1926 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001927 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001928 }
Dan Carpenter5011c5a2021-02-17 09:04:34 +03001929
1930 if (inherit->num_qgroups > PAGE_SIZE ||
1931 inherit->num_ref_copies > PAGE_SIZE ||
1932 inherit->num_excl_copies > PAGE_SIZE) {
1933 ret = -EINVAL;
1934 goto free_inherit;
1935 }
1936
1937 nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
1938 2 * inherit->num_excl_copies;
1939 if (vol_args->size != struct_size(inherit, qgroups, nums)) {
1940 ret = -EINVAL;
1941 goto free_inherit;
1942 }
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001943 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001944
Christian Brauner4d4340c2021-07-27 12:48:52 +02001945 ret = __btrfs_ioctl_snap_create(file, file_mnt_user_ns(file),
1946 vol_args->name, vol_args->fd, subvol,
1947 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001948 if (ret)
1949 goto free_inherit;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001950free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001951 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001952free_args:
1953 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001954 return ret;
1955}
1956
Li Zefan0caa1022010-12-20 16:30:25 +08001957static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1958 void __user *arg)
1959{
Al Viro496ad9a2013-01-23 17:07:38 -05001960 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001961 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001962 struct btrfs_root *root = BTRFS_I(inode)->root;
1963 int ret = 0;
1964 u64 flags = 0;
1965
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001966 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001967 return -EINVAL;
1968
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001969 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001970 if (btrfs_root_readonly(root))
1971 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001972 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001973
1974 if (copy_to_user(arg, &flags, sizeof(flags)))
1975 ret = -EFAULT;
1976
1977 return ret;
1978}
1979
1980static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1981 void __user *arg)
1982{
Al Viro496ad9a2013-01-23 17:07:38 -05001983 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001984 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001985 struct btrfs_root *root = BTRFS_I(inode)->root;
1986 struct btrfs_trans_handle *trans;
1987 u64 root_flags;
1988 u64 flags;
1989 int ret = 0;
1990
Christian Brauner39e16742021-07-27 12:48:56 +02001991 if (!inode_owner_or_capable(file_mnt_user_ns(file), inode))
David Sterbabd60ea02014-01-16 15:50:22 +01001992 return -EPERM;
1993
Liu Bob9ca0662012-06-29 03:58:49 -06001994 ret = mnt_want_write_file(file);
1995 if (ret)
1996 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001997
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001998 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06001999 ret = -EINVAL;
2000 goto out_drop_write;
2001 }
Li Zefan0caa1022010-12-20 16:30:25 +08002002
Liu Bob9ca0662012-06-29 03:58:49 -06002003 if (copy_from_user(&flags, arg, sizeof(flags))) {
2004 ret = -EFAULT;
2005 goto out_drop_write;
2006 }
Li Zefan0caa1022010-12-20 16:30:25 +08002007
Liu Bob9ca0662012-06-29 03:58:49 -06002008 if (flags & ~BTRFS_SUBVOL_RDONLY) {
2009 ret = -EOPNOTSUPP;
2010 goto out_drop_write;
2011 }
Li Zefan0caa1022010-12-20 16:30:25 +08002012
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002013 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08002014
2015 /* nothing to do */
2016 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06002017 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08002018
2019 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01002020 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08002021 btrfs_set_root_flags(&root->root_item,
2022 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01002023 } else {
2024 /*
2025 * Block RO -> RW transition if this subvolume is involved in
2026 * send
2027 */
2028 spin_lock(&root->root_item_lock);
2029 if (root->send_in_progress == 0) {
2030 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08002031 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01002032 spin_unlock(&root->root_item_lock);
2033 } else {
2034 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002035 btrfs_warn(fs_info,
2036 "Attempt to set subvolume %llu read-write during send",
2037 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01002038 ret = -EPERM;
2039 goto out_drop_sem;
2040 }
2041 }
Li Zefan0caa1022010-12-20 16:30:25 +08002042
2043 trans = btrfs_start_transaction(root, 1);
2044 if (IS_ERR(trans)) {
2045 ret = PTR_ERR(trans);
2046 goto out_reset;
2047 }
2048
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002049 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08002050 &root->root_key, &root->root_item);
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03002051 if (ret < 0) {
2052 btrfs_end_transaction(trans);
2053 goto out_reset;
2054 }
Li Zefan0caa1022010-12-20 16:30:25 +08002055
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03002056 ret = btrfs_commit_transaction(trans);
2057
Li Zefan0caa1022010-12-20 16:30:25 +08002058out_reset:
2059 if (ret)
2060 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06002061out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002062 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06002063out_drop_write:
2064 mnt_drop_write_file(file);
2065out:
Li Zefan0caa1022010-12-20 16:30:25 +08002066 return ret;
2067}
2068
Chris Masonac8e9812010-02-28 15:39:26 -05002069static noinline int key_in_sk(struct btrfs_key *key,
2070 struct btrfs_ioctl_search_key *sk)
2071{
Chris Masonabc6e132010-03-18 12:10:08 -04002072 struct btrfs_key test;
2073 int ret;
2074
2075 test.objectid = sk->min_objectid;
2076 test.type = sk->min_type;
2077 test.offset = sk->min_offset;
2078
2079 ret = btrfs_comp_cpu_keys(key, &test);
2080 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05002081 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002082
2083 test.objectid = sk->max_objectid;
2084 test.type = sk->max_type;
2085 test.offset = sk->max_offset;
2086
2087 ret = btrfs_comp_cpu_keys(key, &test);
2088 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05002089 return 0;
2090 return 1;
2091}
2092
Jeff Mahoneydf397562016-06-21 20:18:21 -04002093static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05002094 struct btrfs_key *key,
2095 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002096 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002097 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002098 unsigned long *sk_offset,
2099 int *num_found)
2100{
2101 u64 found_transid;
2102 struct extent_buffer *leaf;
2103 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002104 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05002105 unsigned long item_off;
2106 unsigned long item_len;
2107 int nritems;
2108 int i;
2109 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05002110 int ret = 0;
2111
2112 leaf = path->nodes[0];
2113 slot = path->slots[0];
2114 nritems = btrfs_header_nritems(leaf);
2115
2116 if (btrfs_header_generation(leaf) > sk->max_transid) {
2117 i = nritems;
2118 goto advance_key;
2119 }
2120 found_transid = btrfs_header_generation(leaf);
2121
2122 for (i = slot; i < nritems; i++) {
2123 item_off = btrfs_item_ptr_offset(leaf, i);
2124 item_len = btrfs_item_size_nr(leaf, i);
2125
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00002126 btrfs_item_key_to_cpu(leaf, key, i);
2127 if (!key_in_sk(key, sk))
2128 continue;
2129
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002130 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002131 if (*num_found) {
2132 ret = 1;
2133 goto out;
2134 }
Chris Masonac8e9812010-02-28 15:39:26 -05002135
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002136 /*
2137 * return one empty item back for v1, which does not
2138 * handle -EOVERFLOW
2139 */
2140
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002141 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002142 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002143 ret = -EOVERFLOW;
2144 }
Chris Masonac8e9812010-02-28 15:39:26 -05002145
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002146 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05002147 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002148 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05002149 }
2150
Chris Masonac8e9812010-02-28 15:39:26 -05002151 sh.objectid = key->objectid;
2152 sh.offset = key->offset;
2153 sh.type = key->type;
2154 sh.len = item_len;
2155 sh.transid = found_transid;
2156
Josef Bacika48b73e2020-08-10 11:42:27 -04002157 /*
2158 * Copy search result header. If we fault then loop again so we
2159 * can fault in the pages and -EFAULT there if there's a
2160 * problem. Otherwise we'll fault and then copy the buffer in
2161 * properly this next time through
2162 */
2163 if (copy_to_user_nofault(ubuf + *sk_offset, &sh, sizeof(sh))) {
2164 ret = 0;
Gerhard Heiftba346b32014-01-30 16:24:02 +01002165 goto out;
2166 }
2167
Chris Masonac8e9812010-02-28 15:39:26 -05002168 *sk_offset += sizeof(sh);
2169
2170 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002171 char __user *up = ubuf + *sk_offset;
Josef Bacika48b73e2020-08-10 11:42:27 -04002172 /*
2173 * Copy the item, same behavior as above, but reset the
2174 * * sk_offset so we copy the full thing again.
2175 */
2176 if (read_extent_buffer_to_user_nofault(leaf, up,
2177 item_off, item_len)) {
2178 ret = 0;
2179 *sk_offset -= sizeof(sh);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002180 goto out;
2181 }
2182
Chris Masonac8e9812010-02-28 15:39:26 -05002183 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002184 }
Hugo Millse2156862011-05-14 17:43:41 +00002185 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002186
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002187 if (ret) /* -EOVERFLOW from above */
2188 goto out;
2189
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002190 if (*num_found >= sk->nr_items) {
2191 ret = 1;
2192 goto out;
2193 }
Chris Masonac8e9812010-02-28 15:39:26 -05002194 }
2195advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002196 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002197 test.objectid = sk->max_objectid;
2198 test.type = sk->max_type;
2199 test.offset = sk->max_offset;
2200 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2201 ret = 1;
2202 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002203 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002204 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002205 key->offset = 0;
2206 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002207 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002208 key->offset = 0;
2209 key->type = 0;
2210 key->objectid++;
2211 } else
2212 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002213out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002214 /*
2215 * 0: all items from this leaf copied, continue with next
2216 * 1: * more items can be copied, but unused buffer is too small
2217 * * all items were found
2218 * Either way, it will stops the loop which iterates to the next
2219 * leaf
2220 * -EOVERFLOW: item was to large for buffer
2221 * -EFAULT: could not copy extent buffer back to userspace
2222 */
Chris Masonac8e9812010-02-28 15:39:26 -05002223 return ret;
2224}
2225
2226static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002227 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002228 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002229 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002230{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002231 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05002232 struct btrfs_root *root;
2233 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002234 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002235 int ret;
2236 int num_found = 0;
2237 unsigned long sk_offset = 0;
2238
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002239 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2240 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002241 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002242 }
Gerhard Heift12544442014-01-30 16:23:58 +01002243
Chris Masonac8e9812010-02-28 15:39:26 -05002244 path = btrfs_alloc_path();
2245 if (!path)
2246 return -ENOMEM;
2247
2248 if (sk->tree_id == 0) {
2249 /* search the root of the inode that was passed */
Josef Bacik00246522020-01-24 09:33:01 -05002250 root = btrfs_grab_root(BTRFS_I(inode)->root);
Chris Masonac8e9812010-02-28 15:39:26 -05002251 } else {
David Sterba56e93572020-05-15 19:35:55 +02002252 root = btrfs_get_fs_root(info, sk->tree_id, true);
Chris Masonac8e9812010-02-28 15:39:26 -05002253 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002254 btrfs_free_path(path);
Misono Tomohiroad1e3d52018-05-21 13:57:27 +09002255 return PTR_ERR(root);
Chris Masonac8e9812010-02-28 15:39:26 -05002256 }
2257 }
2258
2259 key.objectid = sk->min_objectid;
2260 key.type = sk->min_type;
2261 key.offset = sk->min_offset;
2262
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302263 while (1) {
Filipe Manana1c785442020-09-14 09:01:04 +01002264 ret = fault_in_pages_writeable(ubuf + sk_offset,
2265 *buf_size - sk_offset);
Josef Bacika48b73e2020-08-10 11:42:27 -04002266 if (ret)
2267 break;
2268
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002269 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002270 if (ret != 0) {
2271 if (ret > 0)
2272 ret = 0;
2273 goto err;
2274 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002275 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002276 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002277 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002278 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002279 break;
2280
2281 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002282 if (ret > 0)
2283 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002284err:
2285 sk->nr_items = num_found;
Josef Bacik00246522020-01-24 09:33:01 -05002286 btrfs_put_root(root);
Chris Masonac8e9812010-02-28 15:39:26 -05002287 btrfs_free_path(path);
2288 return ret;
2289}
2290
2291static noinline int btrfs_ioctl_tree_search(struct file *file,
2292 void __user *argp)
2293{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002294 struct btrfs_ioctl_search_args __user *uargs;
2295 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002296 struct inode *inode;
2297 int ret;
2298 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002299
2300 if (!capable(CAP_SYS_ADMIN))
2301 return -EPERM;
2302
Gerhard Heiftba346b32014-01-30 16:24:02 +01002303 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002304
Gerhard Heiftba346b32014-01-30 16:24:02 +01002305 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2306 return -EFAULT;
2307
2308 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002309
Al Viro496ad9a2013-01-23 17:07:38 -05002310 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002311 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002312
2313 /*
2314 * In the origin implementation an overflow is handled by returning a
2315 * search header with a len of zero, so reset ret.
2316 */
2317 if (ret == -EOVERFLOW)
2318 ret = 0;
2319
Gerhard Heiftba346b32014-01-30 16:24:02 +01002320 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002321 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002322 return ret;
2323}
2324
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002325static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2326 void __user *argp)
2327{
2328 struct btrfs_ioctl_search_args_v2 __user *uarg;
2329 struct btrfs_ioctl_search_args_v2 args;
2330 struct inode *inode;
2331 int ret;
2332 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002333 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002334
2335 if (!capable(CAP_SYS_ADMIN))
2336 return -EPERM;
2337
2338 /* copy search header and buffer size */
2339 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2340 if (copy_from_user(&args, uarg, sizeof(args)))
2341 return -EFAULT;
2342
2343 buf_size = args.buf_size;
2344
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002345 /* limit result size to 16MB */
2346 if (buf_size > buf_limit)
2347 buf_size = buf_limit;
2348
2349 inode = file_inode(file);
2350 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002351 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002352 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2353 ret = -EFAULT;
2354 else if (ret == -EOVERFLOW &&
2355 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2356 ret = -EFAULT;
2357
Yan, Zheng76dda932009-09-21 16:00:26 -04002358 return ret;
2359}
2360
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002361/*
Chris Masonac8e9812010-02-28 15:39:26 -05002362 * Search INODE_REFs to identify path name of 'dirid' directory
2363 * in a 'tree_id' tree. and sets path name to 'name'.
2364 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002365static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2366 u64 tree_id, u64 dirid, char *name)
2367{
2368 struct btrfs_root *root;
2369 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002370 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002371 int ret = -1;
2372 int slot;
2373 int len;
2374 int total_len = 0;
2375 struct btrfs_inode_ref *iref;
2376 struct extent_buffer *l;
2377 struct btrfs_path *path;
2378
2379 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2380 name[0]='\0';
2381 return 0;
2382 }
2383
2384 path = btrfs_alloc_path();
2385 if (!path)
2386 return -ENOMEM;
2387
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002388 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002389
David Sterba56e93572020-05-15 19:35:55 +02002390 root = btrfs_get_fs_root(info, tree_id, true);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002391 if (IS_ERR(root)) {
Misono Tomohiroad1e3d52018-05-21 13:57:27 +09002392 ret = PTR_ERR(root);
Josef Bacik88234012020-01-24 09:32:34 -05002393 root = NULL;
2394 goto out;
2395 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002396
2397 key.objectid = dirid;
2398 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002399 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002400
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302401 while (1) {
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03002402 ret = btrfs_search_backwards(root, &key, path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002403 if (ret < 0)
2404 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002405 else if (ret > 0) {
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03002406 ret = -ENOENT;
2407 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002408 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002409
2410 l = path->nodes[0];
2411 slot = path->slots[0];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002412
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002413 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2414 len = btrfs_inode_ref_name_len(l, iref);
2415 ptr -= len + 1;
2416 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002417 if (ptr < name) {
2418 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002419 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002420 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002421
2422 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302423 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002424
2425 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2426 break;
2427
David Sterbab3b4aa72011-04-21 01:20:15 +02002428 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002429 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002430 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002431 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002432 }
Li Zefan77906a502011-07-14 03:16:00 +00002433 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302434 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002435 ret = 0;
2436out:
Josef Bacik00246522020-01-24 09:33:01 -05002437 btrfs_put_root(root);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002438 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002439 return ret;
2440}
2441
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002442static int btrfs_search_path_in_tree_user(struct inode *inode,
2443 struct btrfs_ioctl_ino_lookup_user_args *args)
2444{
2445 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2446 struct super_block *sb = inode->i_sb;
2447 struct btrfs_key upper_limit = BTRFS_I(inode)->location;
2448 u64 treeid = BTRFS_I(inode)->root->root_key.objectid;
2449 u64 dirid = args->dirid;
2450 unsigned long item_off;
2451 unsigned long item_len;
2452 struct btrfs_inode_ref *iref;
2453 struct btrfs_root_ref *rref;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002454 struct btrfs_root *root = NULL;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002455 struct btrfs_path *path;
2456 struct btrfs_key key, key2;
2457 struct extent_buffer *leaf;
2458 struct inode *temp_inode;
2459 char *ptr;
2460 int slot;
2461 int len;
2462 int total_len = 0;
2463 int ret;
2464
2465 path = btrfs_alloc_path();
2466 if (!path)
2467 return -ENOMEM;
2468
2469 /*
2470 * If the bottom subvolume does not exist directly under upper_limit,
2471 * construct the path in from the bottom up.
2472 */
2473 if (dirid != upper_limit.objectid) {
2474 ptr = &args->path[BTRFS_INO_LOOKUP_USER_PATH_MAX - 1];
2475
David Sterba56e93572020-05-15 19:35:55 +02002476 root = btrfs_get_fs_root(fs_info, treeid, true);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002477 if (IS_ERR(root)) {
2478 ret = PTR_ERR(root);
2479 goto out;
2480 }
2481
2482 key.objectid = dirid;
2483 key.type = BTRFS_INODE_REF_KEY;
2484 key.offset = (u64)-1;
2485 while (1) {
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03002486 ret = btrfs_search_backwards(root, &key, path);
2487 if (ret < 0)
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002488 goto out_put;
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03002489 else if (ret > 0) {
2490 ret = -ENOENT;
2491 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002492 }
2493
2494 leaf = path->nodes[0];
2495 slot = path->slots[0];
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002496
2497 iref = btrfs_item_ptr(leaf, slot, struct btrfs_inode_ref);
2498 len = btrfs_inode_ref_name_len(leaf, iref);
2499 ptr -= len + 1;
2500 total_len += len + 1;
2501 if (ptr < args->path) {
2502 ret = -ENAMETOOLONG;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002503 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002504 }
2505
2506 *(ptr + len) = '/';
2507 read_extent_buffer(leaf, ptr,
2508 (unsigned long)(iref + 1), len);
2509
2510 /* Check the read+exec permission of this directory */
2511 ret = btrfs_previous_item(root, path, dirid,
2512 BTRFS_INODE_ITEM_KEY);
2513 if (ret < 0) {
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002514 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002515 } else if (ret > 0) {
2516 ret = -ENOENT;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002517 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002518 }
2519
2520 leaf = path->nodes[0];
2521 slot = path->slots[0];
2522 btrfs_item_key_to_cpu(leaf, &key2, slot);
2523 if (key2.objectid != dirid) {
2524 ret = -ENOENT;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002525 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002526 }
2527
David Sterba0202e832020-05-15 19:35:59 +02002528 temp_inode = btrfs_iget(sb, key2.objectid, root);
Misono Tomohiro3ca57bd2018-06-04 16:41:07 +09002529 if (IS_ERR(temp_inode)) {
2530 ret = PTR_ERR(temp_inode);
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002531 goto out_put;
Misono Tomohiro3ca57bd2018-06-04 16:41:07 +09002532 }
Christian Brauner47291ba2021-01-21 14:19:24 +01002533 ret = inode_permission(&init_user_ns, temp_inode,
2534 MAY_READ | MAY_EXEC);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002535 iput(temp_inode);
2536 if (ret) {
2537 ret = -EACCES;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002538 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002539 }
2540
2541 if (key.offset == upper_limit.objectid)
2542 break;
2543 if (key.objectid == BTRFS_FIRST_FREE_OBJECTID) {
2544 ret = -EACCES;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002545 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002546 }
2547
2548 btrfs_release_path(path);
2549 key.objectid = key.offset;
2550 key.offset = (u64)-1;
2551 dirid = key.objectid;
2552 }
2553
2554 memmove(args->path, ptr, total_len);
2555 args->path[total_len] = '\0';
Josef Bacik00246522020-01-24 09:33:01 -05002556 btrfs_put_root(root);
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002557 root = NULL;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002558 btrfs_release_path(path);
2559 }
2560
2561 /* Get the bottom subvolume's name from ROOT_REF */
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002562 key.objectid = treeid;
2563 key.type = BTRFS_ROOT_REF_KEY;
2564 key.offset = args->treeid;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002565 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002566 if (ret < 0) {
2567 goto out;
2568 } else if (ret > 0) {
2569 ret = -ENOENT;
2570 goto out;
2571 }
2572
2573 leaf = path->nodes[0];
2574 slot = path->slots[0];
2575 btrfs_item_key_to_cpu(leaf, &key, slot);
2576
2577 item_off = btrfs_item_ptr_offset(leaf, slot);
2578 item_len = btrfs_item_size_nr(leaf, slot);
2579 /* Check if dirid in ROOT_REF corresponds to passed dirid */
2580 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2581 if (args->dirid != btrfs_root_ref_dirid(leaf, rref)) {
2582 ret = -EINVAL;
2583 goto out;
2584 }
2585
2586 /* Copy subvolume's name */
2587 item_off += sizeof(struct btrfs_root_ref);
2588 item_len -= sizeof(struct btrfs_root_ref);
2589 read_extent_buffer(leaf, args->name, item_off, item_len);
2590 args->name[item_len] = 0;
2591
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002592out_put:
Josef Bacik00246522020-01-24 09:33:01 -05002593 btrfs_put_root(root);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002594out:
2595 btrfs_free_path(path);
2596 return ret;
2597}
2598
Chris Masonac8e9812010-02-28 15:39:26 -05002599static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2600 void __user *argp)
2601{
Bart Van Asschebece2e82018-06-20 10:03:31 -07002602 struct btrfs_ioctl_ino_lookup_args *args;
2603 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002604 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002605
Julia Lawall2354d08f2010-10-29 15:14:18 -04002606 args = memdup_user(argp, sizeof(*args));
2607 if (IS_ERR(args))
2608 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002609
Al Viro496ad9a2013-01-23 17:07:38 -05002610 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002611
David Sterba01b810b2015-05-12 19:14:49 +02002612 /*
2613 * Unprivileged query to obtain the containing subvolume root id. The
2614 * path is reset so it's consistent with btrfs_search_path_in_tree.
2615 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002616 if (args->treeid == 0)
2617 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2618
David Sterba01b810b2015-05-12 19:14:49 +02002619 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2620 args->name[0] = 0;
2621 goto out;
2622 }
2623
2624 if (!capable(CAP_SYS_ADMIN)) {
2625 ret = -EPERM;
2626 goto out;
2627 }
2628
Chris Masonac8e9812010-02-28 15:39:26 -05002629 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2630 args->treeid, args->objectid,
2631 args->name);
2632
David Sterba01b810b2015-05-12 19:14:49 +02002633out:
Chris Masonac8e9812010-02-28 15:39:26 -05002634 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2635 ret = -EFAULT;
2636
2637 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002638 return ret;
2639}
2640
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002641/*
2642 * Version of ino_lookup ioctl (unprivileged)
2643 *
2644 * The main differences from ino_lookup ioctl are:
2645 *
2646 * 1. Read + Exec permission will be checked using inode_permission() during
2647 * path construction. -EACCES will be returned in case of failure.
2648 * 2. Path construction will be stopped at the inode number which corresponds
2649 * to the fd with which this ioctl is called. If constructed path does not
2650 * exist under fd's inode, -EACCES will be returned.
2651 * 3. The name of bottom subvolume is also searched and filled.
2652 */
2653static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
2654{
2655 struct btrfs_ioctl_ino_lookup_user_args *args;
2656 struct inode *inode;
2657 int ret;
2658
2659 args = memdup_user(argp, sizeof(*args));
2660 if (IS_ERR(args))
2661 return PTR_ERR(args);
2662
2663 inode = file_inode(file);
2664
2665 if (args->dirid == BTRFS_FIRST_FREE_OBJECTID &&
2666 BTRFS_I(inode)->location.objectid != BTRFS_FIRST_FREE_OBJECTID) {
2667 /*
2668 * The subvolume does not exist under fd with which this is
2669 * called
2670 */
2671 kfree(args);
2672 return -EACCES;
2673 }
2674
2675 ret = btrfs_search_path_in_tree_user(inode, args);
2676
2677 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2678 ret = -EFAULT;
2679
2680 kfree(args);
2681 return ret;
2682}
2683
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002684/* Get the subvolume information in BTRFS_ROOT_ITEM and BTRFS_ROOT_BACKREF */
2685static int btrfs_ioctl_get_subvol_info(struct file *file, void __user *argp)
2686{
2687 struct btrfs_ioctl_get_subvol_info_args *subvol_info;
2688 struct btrfs_fs_info *fs_info;
2689 struct btrfs_root *root;
2690 struct btrfs_path *path;
2691 struct btrfs_key key;
2692 struct btrfs_root_item *root_item;
2693 struct btrfs_root_ref *rref;
2694 struct extent_buffer *leaf;
2695 unsigned long item_off;
2696 unsigned long item_len;
2697 struct inode *inode;
2698 int slot;
2699 int ret = 0;
2700
2701 path = btrfs_alloc_path();
2702 if (!path)
2703 return -ENOMEM;
2704
2705 subvol_info = kzalloc(sizeof(*subvol_info), GFP_KERNEL);
2706 if (!subvol_info) {
2707 btrfs_free_path(path);
2708 return -ENOMEM;
2709 }
2710
2711 inode = file_inode(file);
2712 fs_info = BTRFS_I(inode)->root->fs_info;
2713
2714 /* Get root_item of inode's subvolume */
2715 key.objectid = BTRFS_I(inode)->root->root_key.objectid;
David Sterba56e93572020-05-15 19:35:55 +02002716 root = btrfs_get_fs_root(fs_info, key.objectid, true);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002717 if (IS_ERR(root)) {
2718 ret = PTR_ERR(root);
Josef Bacik04734e82020-01-24 09:32:36 -05002719 goto out_free;
2720 }
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002721 root_item = &root->root_item;
2722
2723 subvol_info->treeid = key.objectid;
2724
2725 subvol_info->generation = btrfs_root_generation(root_item);
2726 subvol_info->flags = btrfs_root_flags(root_item);
2727
2728 memcpy(subvol_info->uuid, root_item->uuid, BTRFS_UUID_SIZE);
2729 memcpy(subvol_info->parent_uuid, root_item->parent_uuid,
2730 BTRFS_UUID_SIZE);
2731 memcpy(subvol_info->received_uuid, root_item->received_uuid,
2732 BTRFS_UUID_SIZE);
2733
2734 subvol_info->ctransid = btrfs_root_ctransid(root_item);
2735 subvol_info->ctime.sec = btrfs_stack_timespec_sec(&root_item->ctime);
2736 subvol_info->ctime.nsec = btrfs_stack_timespec_nsec(&root_item->ctime);
2737
2738 subvol_info->otransid = btrfs_root_otransid(root_item);
2739 subvol_info->otime.sec = btrfs_stack_timespec_sec(&root_item->otime);
2740 subvol_info->otime.nsec = btrfs_stack_timespec_nsec(&root_item->otime);
2741
2742 subvol_info->stransid = btrfs_root_stransid(root_item);
2743 subvol_info->stime.sec = btrfs_stack_timespec_sec(&root_item->stime);
2744 subvol_info->stime.nsec = btrfs_stack_timespec_nsec(&root_item->stime);
2745
2746 subvol_info->rtransid = btrfs_root_rtransid(root_item);
2747 subvol_info->rtime.sec = btrfs_stack_timespec_sec(&root_item->rtime);
2748 subvol_info->rtime.nsec = btrfs_stack_timespec_nsec(&root_item->rtime);
2749
2750 if (key.objectid != BTRFS_FS_TREE_OBJECTID) {
2751 /* Search root tree for ROOT_BACKREF of this subvolume */
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002752 key.type = BTRFS_ROOT_BACKREF_KEY;
2753 key.offset = 0;
Josef Bacik04734e82020-01-24 09:32:36 -05002754 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002755 if (ret < 0) {
2756 goto out;
2757 } else if (path->slots[0] >=
2758 btrfs_header_nritems(path->nodes[0])) {
Josef Bacik04734e82020-01-24 09:32:36 -05002759 ret = btrfs_next_leaf(fs_info->tree_root, path);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002760 if (ret < 0) {
2761 goto out;
2762 } else if (ret > 0) {
2763 ret = -EUCLEAN;
2764 goto out;
2765 }
2766 }
2767
2768 leaf = path->nodes[0];
2769 slot = path->slots[0];
2770 btrfs_item_key_to_cpu(leaf, &key, slot);
2771 if (key.objectid == subvol_info->treeid &&
2772 key.type == BTRFS_ROOT_BACKREF_KEY) {
2773 subvol_info->parent_id = key.offset;
2774
2775 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2776 subvol_info->dirid = btrfs_root_ref_dirid(leaf, rref);
2777
2778 item_off = btrfs_item_ptr_offset(leaf, slot)
2779 + sizeof(struct btrfs_root_ref);
2780 item_len = btrfs_item_size_nr(leaf, slot)
2781 - sizeof(struct btrfs_root_ref);
2782 read_extent_buffer(leaf, subvol_info->name,
2783 item_off, item_len);
2784 } else {
2785 ret = -ENOENT;
2786 goto out;
2787 }
2788 }
2789
2790 if (copy_to_user(argp, subvol_info, sizeof(*subvol_info)))
2791 ret = -EFAULT;
2792
2793out:
Josef Bacik00246522020-01-24 09:33:01 -05002794 btrfs_put_root(root);
Josef Bacik04734e82020-01-24 09:32:36 -05002795out_free:
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002796 btrfs_free_path(path);
Waiman Longb091f7f2020-06-16 11:31:59 -04002797 kfree(subvol_info);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002798 return ret;
2799}
2800
Tomohiro Misono42e4b522018-05-21 10:09:43 +09002801/*
2802 * Return ROOT_REF information of the subvolume containing this inode
2803 * except the subvolume name.
2804 */
2805static int btrfs_ioctl_get_subvol_rootref(struct file *file, void __user *argp)
2806{
2807 struct btrfs_ioctl_get_subvol_rootref_args *rootrefs;
2808 struct btrfs_root_ref *rref;
2809 struct btrfs_root *root;
2810 struct btrfs_path *path;
2811 struct btrfs_key key;
2812 struct extent_buffer *leaf;
2813 struct inode *inode;
2814 u64 objectid;
2815 int slot;
2816 int ret;
2817 u8 found;
2818
2819 path = btrfs_alloc_path();
2820 if (!path)
2821 return -ENOMEM;
2822
2823 rootrefs = memdup_user(argp, sizeof(*rootrefs));
2824 if (IS_ERR(rootrefs)) {
2825 btrfs_free_path(path);
2826 return PTR_ERR(rootrefs);
2827 }
2828
2829 inode = file_inode(file);
2830 root = BTRFS_I(inode)->root->fs_info->tree_root;
2831 objectid = BTRFS_I(inode)->root->root_key.objectid;
2832
2833 key.objectid = objectid;
2834 key.type = BTRFS_ROOT_REF_KEY;
2835 key.offset = rootrefs->min_treeid;
2836 found = 0;
2837
2838 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2839 if (ret < 0) {
2840 goto out;
2841 } else if (path->slots[0] >=
2842 btrfs_header_nritems(path->nodes[0])) {
2843 ret = btrfs_next_leaf(root, path);
2844 if (ret < 0) {
2845 goto out;
2846 } else if (ret > 0) {
2847 ret = -EUCLEAN;
2848 goto out;
2849 }
2850 }
2851 while (1) {
2852 leaf = path->nodes[0];
2853 slot = path->slots[0];
2854
2855 btrfs_item_key_to_cpu(leaf, &key, slot);
2856 if (key.objectid != objectid || key.type != BTRFS_ROOT_REF_KEY) {
2857 ret = 0;
2858 goto out;
2859 }
2860
2861 if (found == BTRFS_MAX_ROOTREF_BUFFER_NUM) {
2862 ret = -EOVERFLOW;
2863 goto out;
2864 }
2865
2866 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2867 rootrefs->rootref[found].treeid = key.offset;
2868 rootrefs->rootref[found].dirid =
2869 btrfs_root_ref_dirid(leaf, rref);
2870 found++;
2871
2872 ret = btrfs_next_item(root, path);
2873 if (ret < 0) {
2874 goto out;
2875 } else if (ret > 0) {
2876 ret = -EUCLEAN;
2877 goto out;
2878 }
2879 }
2880
2881out:
2882 if (!ret || ret == -EOVERFLOW) {
2883 rootrefs->num_items = found;
2884 /* update min_treeid for next search */
2885 if (found)
2886 rootrefs->min_treeid =
2887 rootrefs->rootref[found - 1].treeid + 1;
2888 if (copy_to_user(argp, rootrefs, sizeof(*rootrefs)))
2889 ret = -EFAULT;
2890 }
2891
2892 kfree(rootrefs);
2893 btrfs_free_path(path);
2894
2895 return ret;
2896}
2897
Yan, Zheng76dda932009-09-21 16:00:26 -04002898static noinline int btrfs_ioctl_snap_destroy(struct file *file,
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002899 void __user *arg,
2900 bool destroy_v2)
Yan, Zheng76dda932009-09-21 16:00:26 -04002901{
Al Viro54563d42013-09-01 15:57:51 -04002902 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002903 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002904 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002905 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002906 struct inode *inode;
2907 struct btrfs_root *root = BTRFS_I(dir)->root;
2908 struct btrfs_root *dest = NULL;
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002909 struct btrfs_ioctl_vol_args *vol_args = NULL;
2910 struct btrfs_ioctl_vol_args_v2 *vol_args2 = NULL;
Christian Braunerc4ed5332021-07-27 12:48:53 +02002911 struct user_namespace *mnt_userns = file_mnt_user_ns(file);
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002912 char *subvol_name, *subvol_name_ptr = NULL;
2913 int subvol_namelen;
Yan, Zheng76dda932009-09-21 16:00:26 -04002914 int err = 0;
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002915 bool destroy_parent = false;
Yan, Zheng76dda932009-09-21 16:00:26 -04002916
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002917 if (destroy_v2) {
2918 vol_args2 = memdup_user(arg, sizeof(*vol_args2));
2919 if (IS_ERR(vol_args2))
2920 return PTR_ERR(vol_args2);
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002921
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002922 if (vol_args2->flags & ~BTRFS_SUBVOL_DELETE_ARGS_MASK) {
2923 err = -EOPNOTSUPP;
2924 goto out;
2925 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002926
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002927 /*
2928 * If SPEC_BY_ID is not set, we are looking for the subvolume by
2929 * name, same as v1 currently does.
2930 */
2931 if (!(vol_args2->flags & BTRFS_SUBVOL_SPEC_BY_ID)) {
2932 vol_args2->name[BTRFS_SUBVOL_NAME_MAX] = 0;
2933 subvol_name = vol_args2->name;
2934
2935 err = mnt_want_write_file(file);
2936 if (err)
2937 goto out;
2938 } else {
Christian Brauneraabb34e2021-07-27 12:48:54 +02002939 struct inode *old_dir;
Christian Braunerc4ed5332021-07-27 12:48:53 +02002940
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002941 if (vol_args2->subvolid < BTRFS_FIRST_FREE_OBJECTID) {
2942 err = -EINVAL;
2943 goto out;
2944 }
2945
2946 err = mnt_want_write_file(file);
2947 if (err)
2948 goto out;
2949
2950 dentry = btrfs_get_dentry(fs_info->sb,
2951 BTRFS_FIRST_FREE_OBJECTID,
2952 vol_args2->subvolid, 0, 0);
2953 if (IS_ERR(dentry)) {
2954 err = PTR_ERR(dentry);
2955 goto out_drop_write;
2956 }
2957
2958 /*
2959 * Change the default parent since the subvolume being
2960 * deleted can be outside of the current mount point.
2961 */
2962 parent = btrfs_get_parent(dentry);
2963
2964 /*
2965 * At this point dentry->d_name can point to '/' if the
2966 * subvolume we want to destroy is outsite of the
2967 * current mount point, so we need to release the
2968 * current dentry and execute the lookup to return a new
2969 * one with ->d_name pointing to the
2970 * <mount point>/subvol_name.
2971 */
2972 dput(dentry);
2973 if (IS_ERR(parent)) {
2974 err = PTR_ERR(parent);
2975 goto out_drop_write;
2976 }
Christian Brauneraabb34e2021-07-27 12:48:54 +02002977 old_dir = dir;
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002978 dir = d_inode(parent);
2979
2980 /*
2981 * If v2 was used with SPEC_BY_ID, a new parent was
2982 * allocated since the subvolume can be outside of the
2983 * current mount point. Later on we need to release this
2984 * new parent dentry.
2985 */
2986 destroy_parent = true;
2987
Christian Brauneraabb34e2021-07-27 12:48:54 +02002988 /*
2989 * On idmapped mounts, deletion via subvolid is
2990 * restricted to subvolumes that are immediate
2991 * ancestors of the inode referenced by the file
2992 * descriptor in the ioctl. Otherwise the idmapping
2993 * could potentially be abused to delete subvolumes
2994 * anywhere in the filesystem the user wouldn't be able
2995 * to delete without an idmapped mount.
2996 */
2997 if (old_dir != dir && mnt_userns != &init_user_ns) {
2998 err = -EOPNOTSUPP;
2999 goto free_parent;
3000 }
3001
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003002 subvol_name_ptr = btrfs_get_subvol_name_from_objectid(
3003 fs_info, vol_args2->subvolid);
3004 if (IS_ERR(subvol_name_ptr)) {
3005 err = PTR_ERR(subvol_name_ptr);
3006 goto free_parent;
3007 }
David Sterba1a9fd412021-05-21 17:42:23 +02003008 /* subvol_name_ptr is already nul terminated */
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003009 subvol_name = (char *)kbasename(subvol_name_ptr);
3010 }
3011 } else {
3012 vol_args = memdup_user(arg, sizeof(*vol_args));
3013 if (IS_ERR(vol_args))
3014 return PTR_ERR(vol_args);
3015
3016 vol_args->name[BTRFS_PATH_NAME_MAX] = 0;
3017 subvol_name = vol_args->name;
3018
3019 err = mnt_want_write_file(file);
3020 if (err)
3021 goto out;
Yan, Zheng76dda932009-09-21 16:00:26 -04003022 }
3023
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003024 subvol_namelen = strlen(subvol_name);
Yan, Zheng76dda932009-09-21 16:00:26 -04003025
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003026 if (strchr(subvol_name, '/') ||
3027 strncmp(subvol_name, "..", subvol_namelen) == 0) {
3028 err = -EINVAL;
3029 goto free_subvol_name;
3030 }
3031
3032 if (!S_ISDIR(dir->i_mode)) {
3033 err = -ENOTDIR;
3034 goto free_subvol_name;
3035 }
David Sterba521e0542014-04-15 16:41:44 +02003036
Al Viro00235412016-05-26 00:05:12 -04003037 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
3038 if (err == -EINTR)
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003039 goto free_subvol_name;
Christian Braunerc4ed5332021-07-27 12:48:53 +02003040 dentry = lookup_one(mnt_userns, subvol_name, parent, subvol_namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -04003041 if (IS_ERR(dentry)) {
3042 err = PTR_ERR(dentry);
3043 goto out_unlock_dir;
3044 }
3045
David Howells2b0143b2015-03-17 22:25:59 +00003046 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003047 err = -ENOENT;
3048 goto out_dput;
3049 }
3050
David Howells2b0143b2015-03-17 22:25:59 +00003051 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04003052 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05303053 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04003054 /*
3055 * Regular user. Only allow this with a special mount
3056 * option, when the user has write+exec access to the
3057 * subvol root, and when rmdir(2) would have been
3058 * allowed.
3059 *
3060 * Note that this is _not_ check that the subvol is
3061 * empty or doesn't contain data that we wouldn't
3062 * otherwise be able to delete.
3063 *
3064 * Users who want to delete empty subvols should try
3065 * rmdir(2).
3066 */
3067 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003068 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04003069 goto out_dput;
3070
3071 /*
3072 * Do not allow deletion if the parent dir is the same
3073 * as the dir to be deleted. That means the ioctl
3074 * must be called on the dentry referencing the root
3075 * of the subvol, not a random directory contained
3076 * within it.
3077 */
3078 err = -EINVAL;
3079 if (root == dest)
3080 goto out_dput;
3081
Christian Braunerc4ed5332021-07-27 12:48:53 +02003082 err = inode_permission(mnt_userns, inode, MAY_WRITE | MAY_EXEC);
Sage Weil4260f7c2010-10-29 15:46:43 -04003083 if (err)
3084 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04003085 }
3086
Miao Xie5c39da52012-10-22 11:39:53 +00003087 /* check if subvolume may be deleted by a user */
Christian Braunerc4ed5332021-07-27 12:48:53 +02003088 err = btrfs_may_delete(mnt_userns, dir, dentry, 1);
Miao Xie5c39da52012-10-22 11:39:53 +00003089 if (err)
3090 goto out_dput;
3091
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003092 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003093 err = -EINVAL;
3094 goto out_dput;
3095 }
3096
Josef Bacik64708532021-02-10 17:14:34 -05003097 btrfs_inode_lock(inode, 0);
Misono Tomohirof60a2362018-04-18 11:34:52 +09003098 err = btrfs_delete_subvolume(dir, dentry);
Josef Bacik64708532021-02-10 17:14:34 -05003099 btrfs_inode_unlock(inode, 0);
Amir Goldstein46008d92019-05-26 17:34:03 +03003100 if (!err) {
3101 fsnotify_rmdir(dir, dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04003102 d_delete(dentry);
Amir Goldstein46008d92019-05-26 17:34:03 +03003103 }
Liu Bofa6ac872013-02-20 14:10:23 +00003104
Yan, Zheng76dda932009-09-21 16:00:26 -04003105out_dput:
3106 dput(dentry);
3107out_unlock_dir:
Josef Bacik64708532021-02-10 17:14:34 -05003108 btrfs_inode_unlock(dir, 0);
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003109free_subvol_name:
3110 kfree(subvol_name_ptr);
3111free_parent:
3112 if (destroy_parent)
3113 dput(parent);
Al Viro00235412016-05-26 00:05:12 -04003114out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003115 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04003116out:
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003117 kfree(vol_args2);
Yan, Zheng76dda932009-09-21 16:00:26 -04003118 kfree(vol_args);
3119 return err;
3120}
3121
Chris Mason1e701a32010-03-11 09:42:04 -05003122static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003123{
Al Viro496ad9a2013-01-23 17:07:38 -05003124 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003125 struct btrfs_root *root = BTRFS_I(inode)->root;
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003126 struct btrfs_ioctl_defrag_range_args range = {0};
Yan Zhengc146afa2008-11-12 14:34:12 -05003127 int ret;
3128
Ilya Dryomov25122d12013-01-20 15:57:57 +02003129 ret = mnt_want_write_file(file);
3130 if (ret)
3131 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08003132
Ilya Dryomov25122d12013-01-20 15:57:57 +02003133 if (btrfs_root_readonly(root)) {
3134 ret = -EROFS;
3135 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01003136 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003137
Qu Wenruo95ea0482021-07-26 14:35:06 +08003138 /* Subpage defrag will be supported in later commits */
3139 if (root->fs_info->sectorsize < PAGE_SIZE) {
3140 ret = -ENOTTY;
3141 goto out;
3142 }
3143
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003144 switch (inode->i_mode & S_IFMT) {
3145 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05003146 if (!capable(CAP_SYS_ADMIN)) {
3147 ret = -EPERM;
3148 goto out;
3149 }
Eric Sandeende78b512013-01-31 18:21:12 +00003150 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003151 break;
3152 case S_IFREG:
Adam Borowski616d3742018-07-18 00:08:59 +02003153 /*
3154 * Note that this does not check the file descriptor for write
3155 * access. This prevents defragmenting executables that are
3156 * running and allows defrag on files open in read-only mode.
3157 */
3158 if (!capable(CAP_SYS_ADMIN) &&
Christian Brauner47291ba2021-01-21 14:19:24 +01003159 inode_permission(&init_user_ns, inode, MAY_WRITE)) {
Adam Borowski616d3742018-07-18 00:08:59 +02003160 ret = -EPERM;
Chris Masone441d542009-01-05 16:57:23 -05003161 goto out;
3162 }
Chris Mason1e701a32010-03-11 09:42:04 -05003163
Chris Mason1e701a32010-03-11 09:42:04 -05003164 if (argp) {
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003165 if (copy_from_user(&range, argp, sizeof(range))) {
Chris Mason1e701a32010-03-11 09:42:04 -05003166 ret = -EFAULT;
Dan Carpenter683be162010-03-20 11:24:48 +00003167 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05003168 }
3169 /* compression requires us to start the IO */
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003170 if ((range.flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
3171 range.flags |= BTRFS_DEFRAG_RANGE_START_IO;
3172 range.extent_thresh = (u32)-1;
Chris Mason1e701a32010-03-11 09:42:04 -05003173 }
3174 } else {
3175 /* the rest are all set to zero by kzalloc */
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003176 range.len = (u64)-1;
Chris Mason1e701a32010-03-11 09:42:04 -05003177 }
Al Viro496ad9a2013-01-23 17:07:38 -05003178 ret = btrfs_defrag_file(file_inode(file), file,
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003179 &range, BTRFS_OLDEST_GENERATION, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04003180 if (ret > 0)
3181 ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003182 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003183 default:
3184 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003185 }
Chris Masone441d542009-01-05 16:57:23 -05003186out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02003187 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05003188 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003189}
3190
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003191static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003192{
3193 struct btrfs_ioctl_vol_args *vol_args;
3194 int ret;
3195
Chris Masone441d542009-01-05 16:57:23 -05003196 if (!capable(CAP_SYS_ADMIN))
3197 return -EPERM;
3198
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003199 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_ADD))
Anand Jaine57138b2013-08-21 11:44:48 +08003200 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003201
Li Zefandae7b662009-04-08 15:06:54 +08003202 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003203 if (IS_ERR(vol_args)) {
3204 ret = PTR_ERR(vol_args);
3205 goto out;
3206 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003207
Mark Fasheh5516e592008-07-24 12:20:14 -04003208 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003209 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003210
Anand Jain43d20762014-07-01 00:58:56 +08003211 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003212 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08003213
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003214 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003215out:
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003216 btrfs_exclop_finish(fs_info);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003217 return ret;
3218}
3219
Anand Jain6b526ed2016-02-13 10:01:39 +08003220static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003221{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003222 struct inode *inode = file_inode(file);
3223 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08003224 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003225 int ret;
David Sterba67ae34b2021-05-14 21:21:27 +02003226 bool cancel = false;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003227
Chris Masone441d542009-01-05 16:57:23 -05003228 if (!capable(CAP_SYS_ADMIN))
3229 return -EPERM;
3230
Miao Xieda249272012-11-26 08:44:50 +00003231 ret = mnt_want_write_file(file);
3232 if (ret)
3233 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05003234
Li Zefandae7b662009-04-08 15:06:54 +08003235 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003236 if (IS_ERR(vol_args)) {
3237 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03003238 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003239 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003240
David Sterba748449cdb2020-02-21 13:30:14 +01003241 if (vol_args->flags & ~BTRFS_DEVICE_REMOVE_ARGS_MASK) {
Omar Sandovalfd4e9942018-05-22 15:44:01 -07003242 ret = -EOPNOTSUPP;
3243 goto out;
3244 }
David Sterba67ae34b2021-05-14 21:21:27 +02003245 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
3246 if (!(vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) &&
3247 strcmp("cancel", vol_args->name) == 0)
3248 cancel = true;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003249
David Sterba67ae34b2021-05-14 21:21:27 +02003250 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
3251 cancel);
3252 if (ret)
Anand Jain183860f2013-05-17 10:52:45 +00003253 goto out;
David Sterba67ae34b2021-05-14 21:21:27 +02003254 /* Exclusive operation is now claimed */
Anand Jain183860f2013-05-17 10:52:45 +00003255
David Sterba67ae34b2021-05-14 21:21:27 +02003256 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003257 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
David Sterba67ae34b2021-05-14 21:21:27 +02003258 else
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003259 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
David Sterba67ae34b2021-05-14 21:21:27 +02003260
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003261 btrfs_exclop_finish(fs_info);
Anand Jain183860f2013-05-17 10:52:45 +00003262
Anand Jain6b526ed2016-02-13 10:01:39 +08003263 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01003264 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003265 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08003266 vol_args->devid);
3267 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003268 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08003269 vol_args->name);
3270 }
Anand Jain183860f2013-05-17 10:52:45 +00003271out:
3272 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03003273err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02003274 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003275 return ret;
3276}
3277
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003278static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
3279{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003280 struct inode *inode = file_inode(file);
3281 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003282 struct btrfs_ioctl_vol_args *vol_args;
3283 int ret;
David Sterba67ae34b2021-05-14 21:21:27 +02003284 bool cancel;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003285
3286 if (!capable(CAP_SYS_ADMIN))
3287 return -EPERM;
3288
3289 ret = mnt_want_write_file(file);
3290 if (ret)
3291 return ret;
3292
David Sterba58d7bbf2016-05-04 14:10:47 +02003293 vol_args = memdup_user(arg, sizeof(*vol_args));
3294 if (IS_ERR(vol_args)) {
3295 ret = PTR_ERR(vol_args);
David Sterba67ae34b2021-05-14 21:21:27 +02003296 goto out_drop_write;
3297 }
3298 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
3299 cancel = (strcmp("cancel", vol_args->name) == 0);
3300
3301 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
3302 cancel);
3303 if (ret == 0) {
3304 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
3305 if (!ret)
3306 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
3307 btrfs_exclop_finish(fs_info);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003308 }
3309
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003310 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02003311out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003312 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02003313
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003314 return ret;
3315}
3316
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003317static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
3318 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003319{
Li Zefan027ed2f2011-06-08 08:27:56 +00003320 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01003321 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003322 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Johannes Thumshirn137c5412020-07-13 21:28:58 +09003323 u64 flags_in;
Li Zefan027ed2f2011-06-08 08:27:56 +00003324 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01003325
Johannes Thumshirn137c5412020-07-13 21:28:58 +09003326 fi_args = memdup_user(arg, sizeof(*fi_args));
3327 if (IS_ERR(fi_args))
3328 return PTR_ERR(fi_args);
3329
3330 flags_in = fi_args->flags;
3331 memset(fi_args, 0, sizeof(*fi_args));
Li Zefan027ed2f2011-06-08 08:27:56 +00003332
David Sterbad03262c2017-06-16 00:09:21 +02003333 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00003334 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01003335
David Sterbad03262c2017-06-16 00:09:21 +02003336 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00003337 if (device->devid > fi_args->max_id)
3338 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01003339 }
David Sterbad03262c2017-06-16 00:09:21 +02003340 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01003341
Nikolay Borisovde37aa52018-10-30 16:43:24 +02003342 memcpy(&fi_args->fsid, fs_devices->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07003343 fi_args->nodesize = fs_info->nodesize;
3344 fi_args->sectorsize = fs_info->sectorsize;
3345 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02003346
Johannes Thumshirn137c5412020-07-13 21:28:58 +09003347 if (flags_in & BTRFS_FS_INFO_FLAG_CSUM_INFO) {
3348 fi_args->csum_type = btrfs_super_csum_type(fs_info->super_copy);
3349 fi_args->csum_size = btrfs_super_csum_size(fs_info->super_copy);
3350 fi_args->flags |= BTRFS_FS_INFO_FLAG_CSUM_INFO;
3351 }
3352
Johannes Thumshirn0fb408a2020-07-13 21:28:59 +09003353 if (flags_in & BTRFS_FS_INFO_FLAG_GENERATION) {
3354 fi_args->generation = fs_info->generation;
3355 fi_args->flags |= BTRFS_FS_INFO_FLAG_GENERATION;
3356 }
3357
Johannes Thumshirn49bac892020-07-13 21:29:00 +09003358 if (flags_in & BTRFS_FS_INFO_FLAG_METADATA_UUID) {
3359 memcpy(&fi_args->metadata_uuid, fs_devices->metadata_uuid,
3360 sizeof(fi_args->metadata_uuid));
3361 fi_args->flags |= BTRFS_FS_INFO_FLAG_METADATA_UUID;
3362 }
3363
Li Zefan027ed2f2011-06-08 08:27:56 +00003364 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
3365 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01003366
Li Zefan027ed2f2011-06-08 08:27:56 +00003367 kfree(fi_args);
3368 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003369}
3370
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003371static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
3372 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003373{
3374 struct btrfs_ioctl_dev_info_args *di_args;
3375 struct btrfs_device *dev;
Jan Schmidt475f6382011-03-11 15:41:01 +01003376 int ret = 0;
3377 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01003378
Jan Schmidt475f6382011-03-11 15:41:01 +01003379 di_args = memdup_user(arg, sizeof(*di_args));
3380 if (IS_ERR(di_args))
3381 return PTR_ERR(di_args);
3382
Stefan Behrensdd5f9612013-08-15 17:11:20 +02003383 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01003384 s_uuid = di_args->uuid;
3385
David Sterbac5593ca2017-06-16 00:09:21 +02003386 rcu_read_lock();
Anand Jaine4319cd2019-01-17 23:32:31 +08003387 dev = btrfs_find_device(fs_info->fs_devices, di_args->devid, s_uuid,
Anand Jainb2598ed2020-11-03 13:49:43 +08003388 NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01003389
3390 if (!dev) {
3391 ret = -ENODEV;
3392 goto out;
3393 }
3394
3395 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08003396 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
3397 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01003398 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02003399 if (dev->name) {
Misono Tomohiro672d5992018-08-02 16:19:07 +09003400 strncpy(di_args->path, rcu_str_deref(dev->name),
3401 sizeof(di_args->path) - 1);
Jim Meyeringa27202f2012-04-26 18:36:56 +02003402 di_args->path[sizeof(di_args->path) - 1] = 0;
3403 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01003404 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02003405 }
Jan Schmidt475f6382011-03-11 15:41:01 +01003406
3407out:
David Sterbac5593ca2017-06-16 00:09:21 +02003408 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01003409 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
3410 ret = -EFAULT;
3411
3412 kfree(di_args);
3413 return ret;
3414}
3415
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003416static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3417{
Al Viro496ad9a2013-01-23 17:07:38 -05003418 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003419 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003420 struct btrfs_root *root = BTRFS_I(inode)->root;
3421 struct btrfs_root *new_root;
3422 struct btrfs_dir_item *di;
3423 struct btrfs_trans_handle *trans;
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003424 struct btrfs_path *path = NULL;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003425 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003426 u64 objectid = 0;
3427 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003428 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003429
3430 if (!capable(CAP_SYS_ADMIN))
3431 return -EPERM;
3432
Miao Xie3c04ce02012-11-26 08:43:07 +00003433 ret = mnt_want_write_file(file);
3434 if (ret)
3435 return ret;
3436
3437 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3438 ret = -EFAULT;
3439 goto out;
3440 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003441
3442 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303443 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003444
David Sterba56e93572020-05-15 19:35:55 +02003445 new_root = btrfs_get_fs_root(fs_info, objectid, true);
Miao Xie3c04ce02012-11-26 08:43:07 +00003446 if (IS_ERR(new_root)) {
3447 ret = PTR_ERR(new_root);
3448 goto out;
3449 }
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003450 if (!is_fstree(new_root->root_key.objectid)) {
3451 ret = -ENOENT;
3452 goto out_free;
3453 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003454
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003455 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003456 if (!path) {
3457 ret = -ENOMEM;
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003458 goto out_free;
Miao Xie3c04ce02012-11-26 08:43:07 +00003459 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003460
3461 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003462 if (IS_ERR(trans)) {
Miao Xie3c04ce02012-11-26 08:43:07 +00003463 ret = PTR_ERR(trans);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003464 goto out_free;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003465 }
3466
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003467 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3468 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003469 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003470 if (IS_ERR_OR_NULL(di)) {
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003471 btrfs_release_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003472 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003473 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003474 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003475 ret = -ENOENT;
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003476 goto out_free;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003477 }
3478
3479 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3480 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3481 btrfs_mark_buffer_dirty(path->nodes[0]);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003482 btrfs_release_path(path);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003483
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003484 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003485 btrfs_end_transaction(trans);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003486out_free:
Josef Bacik00246522020-01-24 09:33:01 -05003487 btrfs_put_root(new_root);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003488 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003489out:
3490 mnt_drop_write_file(file);
3491 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003492}
3493
Su Yuec065f5b12018-04-02 17:24:11 +08003494static void get_block_group_info(struct list_head *groups_list,
3495 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003496{
David Sterba32da53862019-10-29 19:20:18 +01003497 struct btrfs_block_group *block_group;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003498
3499 space->total_bytes = 0;
3500 space->used_bytes = 0;
3501 space->flags = 0;
3502 list_for_each_entry(block_group, groups_list, list) {
3503 space->flags = block_group->flags;
David Sterbab3470b52019-10-23 18:48:22 +02003504 space->total_bytes += block_group->length;
David Sterbabf38be62019-10-23 18:48:11 +02003505 space->used_bytes += block_group->used;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003506 }
3507}
3508
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003509static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
3510 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003511{
3512 struct btrfs_ioctl_space_args space_args;
3513 struct btrfs_ioctl_space_info space;
3514 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003515 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003516 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003517 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01003518 static const u64 types[] = {
3519 BTRFS_BLOCK_GROUP_DATA,
3520 BTRFS_BLOCK_GROUP_SYSTEM,
3521 BTRFS_BLOCK_GROUP_METADATA,
3522 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
3523 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003524 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003525 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003526 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003527 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003528 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003529
3530 if (copy_from_user(&space_args,
3531 (struct btrfs_ioctl_space_args __user *)arg,
3532 sizeof(space_args)))
3533 return -EFAULT;
3534
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003535 for (i = 0; i < num_types; i++) {
3536 struct btrfs_space_info *tmp;
3537
3538 info = NULL;
Josef Bacik72804902020-09-01 17:40:37 -04003539 list_for_each_entry(tmp, &fs_info->space_info, list) {
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003540 if (tmp->flags == types[i]) {
3541 info = tmp;
3542 break;
3543 }
3544 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003545
3546 if (!info)
3547 continue;
3548
3549 down_read(&info->groups_sem);
3550 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3551 if (!list_empty(&info->block_groups[c]))
3552 slot_count++;
3553 }
3554 up_read(&info->groups_sem);
3555 }
Josef Bacik1406e432010-01-13 18:19:06 +00003556
David Sterba36523e952014-02-07 14:34:12 +01003557 /*
3558 * Global block reserve, exported as a space_info
3559 */
3560 slot_count++;
3561
Chris Mason7fde62b2010-03-16 15:40:10 -04003562 /* space_slots == 0 means they are asking for a count */
3563 if (space_args.space_slots == 0) {
3564 space_args.total_spaces = slot_count;
3565 goto out;
3566 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003567
Dan Rosenberg51788b12011-02-14 16:04:23 -05003568 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003569
Chris Mason7fde62b2010-03-16 15:40:10 -04003570 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003571
Chris Mason7fde62b2010-03-16 15:40:10 -04003572 /* we generally have at most 6 or so space infos, one for each raid
3573 * level. So, a whole page should be more than enough for everyone
3574 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003575 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04003576 return -ENOMEM;
3577
3578 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01003579 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04003580 if (!dest)
3581 return -ENOMEM;
3582 dest_orig = dest;
3583
3584 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003585 for (i = 0; i < num_types; i++) {
3586 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003587
Dan Rosenberg51788b12011-02-14 16:04:23 -05003588 if (!slot_count)
3589 break;
3590
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003591 info = NULL;
Josef Bacik72804902020-09-01 17:40:37 -04003592 list_for_each_entry(tmp, &fs_info->space_info, list) {
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003593 if (tmp->flags == types[i]) {
3594 info = tmp;
3595 break;
3596 }
3597 }
Chris Mason7fde62b2010-03-16 15:40:10 -04003598
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003599 if (!info)
3600 continue;
3601 down_read(&info->groups_sem);
3602 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3603 if (!list_empty(&info->block_groups[c])) {
Su Yuec065f5b12018-04-02 17:24:11 +08003604 get_block_group_info(&info->block_groups[c],
3605 &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003606 memcpy(dest, &space, sizeof(space));
3607 dest++;
3608 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003609 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003610 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003611 if (!slot_count)
3612 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003613 }
3614 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003615 }
Josef Bacik1406e432010-01-13 18:19:06 +00003616
David Sterba36523e952014-02-07 14:34:12 +01003617 /*
3618 * Add global block reserve
3619 */
3620 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003621 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01003622
3623 spin_lock(&block_rsv->lock);
3624 space.total_bytes = block_rsv->size;
3625 space.used_bytes = block_rsv->size - block_rsv->reserved;
3626 spin_unlock(&block_rsv->lock);
3627 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3628 memcpy(dest, &space, sizeof(space));
3629 space_args.total_spaces++;
3630 }
3631
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003632 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003633 (arg + sizeof(struct btrfs_ioctl_space_args));
3634
3635 if (copy_to_user(user_dest, dest_orig, alloc_size))
3636 ret = -EFAULT;
3637
3638 kfree(dest_orig);
3639out:
3640 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003641 ret = -EFAULT;
3642
3643 return ret;
3644}
3645
Miao Xie9a8c28b2012-11-26 08:40:43 +00003646static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3647 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003648{
Sage Weil46204592010-10-29 15:41:32 -04003649 struct btrfs_trans_handle *trans;
3650 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003651 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003652
Miao Xied4edf392013-02-20 09:17:06 +00003653 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00003654 if (IS_ERR(trans)) {
3655 if (PTR_ERR(trans) != -ENOENT)
3656 return PTR_ERR(trans);
3657
3658 /* No running transaction, don't bother */
3659 transid = root->fs_info->last_trans_committed;
3660 goto out;
3661 }
Sage Weil46204592010-10-29 15:41:32 -04003662 transid = trans->transid;
David Sterba32cc4f82021-06-03 17:20:21 +02003663 ret = btrfs_commit_transaction_async(trans);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003664 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003665 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003666 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003667 }
Miao Xieff7c1d32012-11-26 08:41:29 +00003668out:
Sage Weil46204592010-10-29 15:41:32 -04003669 if (argp)
3670 if (copy_to_user(argp, &transid, sizeof(transid)))
3671 return -EFAULT;
3672 return 0;
3673}
3674
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003675static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00003676 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003677{
Sage Weil46204592010-10-29 15:41:32 -04003678 u64 transid;
3679
3680 if (argp) {
3681 if (copy_from_user(&transid, argp, sizeof(transid)))
3682 return -EFAULT;
3683 } else {
3684 transid = 0; /* current trans */
3685 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003686 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04003687}
3688
Miao Xieb8e95482012-11-26 08:48:01 +00003689static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003690{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003691 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01003692 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00003693 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003694
3695 if (!capable(CAP_SYS_ADMIN))
3696 return -EPERM;
3697
3698 sa = memdup_user(arg, sizeof(*sa));
3699 if (IS_ERR(sa))
3700 return PTR_ERR(sa);
3701
Miao Xieb8e95482012-11-26 08:48:01 +00003702 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3703 ret = mnt_want_write_file(file);
3704 if (ret)
3705 goto out;
3706 }
3707
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003708 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003709 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3710 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01003711
Filipe Manana5afe6ce2020-01-16 11:29:20 +00003712 /*
3713 * Copy scrub args to user space even if btrfs_scrub_dev() returned an
3714 * error. This is important as it allows user space to know how much
3715 * progress scrub has done. For example, if scrub is canceled we get
3716 * -ECANCELED from btrfs_scrub_dev() and return that error back to user
3717 * space. Later user space can inspect the progress from the structure
3718 * btrfs_ioctl_scrub_args and resume scrub from where it left off
3719 * previously (btrfs-progs does this).
3720 * If we fail to copy the btrfs_ioctl_scrub_args structure to user space
3721 * then return -EFAULT to signal the structure was not copied or it may
3722 * be corrupt and unreliable due to a partial copy.
3723 */
3724 if (copy_to_user(arg, sa, sizeof(*sa)))
Jan Schmidt475f6382011-03-11 15:41:01 +01003725 ret = -EFAULT;
3726
Miao Xieb8e95482012-11-26 08:48:01 +00003727 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3728 mnt_drop_write_file(file);
3729out:
Jan Schmidt475f6382011-03-11 15:41:01 +01003730 kfree(sa);
3731 return ret;
3732}
3733
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003734static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01003735{
3736 if (!capable(CAP_SYS_ADMIN))
3737 return -EPERM;
3738
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003739 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01003740}
3741
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003742static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01003743 void __user *arg)
3744{
3745 struct btrfs_ioctl_scrub_args *sa;
3746 int ret;
3747
3748 if (!capable(CAP_SYS_ADMIN))
3749 return -EPERM;
3750
3751 sa = memdup_user(arg, sizeof(*sa));
3752 if (IS_ERR(sa))
3753 return PTR_ERR(sa);
3754
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003755 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01003756
Filipe Manana4fa99b02018-12-14 19:45:13 +00003757 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
Jan Schmidt475f6382011-03-11 15:41:01 +01003758 ret = -EFAULT;
3759
3760 kfree(sa);
3761 return ret;
3762}
3763
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003764static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06003765 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003766{
3767 struct btrfs_ioctl_get_dev_stats *sa;
3768 int ret;
3769
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003770 sa = memdup_user(arg, sizeof(*sa));
3771 if (IS_ERR(sa))
3772 return PTR_ERR(sa);
3773
David Sterbab27f7c02012-06-22 06:30:39 -06003774 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3775 kfree(sa);
3776 return -EPERM;
3777 }
3778
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003779 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003780
Filipe Mananaeee99572018-12-14 19:45:22 +00003781 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003782 ret = -EFAULT;
3783
3784 kfree(sa);
3785 return ret;
3786}
3787
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003788static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
3789 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003790{
3791 struct btrfs_ioctl_dev_replace_args *p;
3792 int ret;
3793
3794 if (!capable(CAP_SYS_ADMIN))
3795 return -EPERM;
3796
3797 p = memdup_user(arg, sizeof(*p));
3798 if (IS_ERR(p))
3799 return PTR_ERR(p);
3800
3801 switch (p->cmd) {
3802 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01003803 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03003804 ret = -EROFS;
3805 goto out;
3806 }
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003807 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REPLACE)) {
Anand Jaine57138b2013-08-21 11:44:48 +08003808 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003809 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003810 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003811 btrfs_exclop_finish(fs_info);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003812 }
3813 break;
3814 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003815 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003816 ret = 0;
3817 break;
3818 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Anand Jain17d202b2018-02-12 23:33:30 +08003819 p->result = btrfs_dev_replace_cancel(fs_info);
Anand Jain97282032018-02-12 23:33:29 +08003820 ret = 0;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003821 break;
3822 default:
3823 ret = -EINVAL;
3824 break;
3825 }
3826
Filipe Mananad3a53282019-01-08 11:42:09 +00003827 if ((ret == 0 || ret == -ECANCELED) && copy_to_user(arg, p, sizeof(*p)))
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003828 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03003829out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003830 kfree(p);
3831 return ret;
3832}
3833
Jan Schmidtd7728c92011-07-07 16:48:38 +02003834static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3835{
3836 int ret = 0;
3837 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003838 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003839 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003840 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003841 struct inode_fs_paths *ipath = NULL;
3842 struct btrfs_path *path;
3843
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00003844 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02003845 return -EPERM;
3846
3847 path = btrfs_alloc_path();
3848 if (!path) {
3849 ret = -ENOMEM;
3850 goto out;
3851 }
3852
3853 ipa = memdup_user(arg, sizeof(*ipa));
3854 if (IS_ERR(ipa)) {
3855 ret = PTR_ERR(ipa);
3856 ipa = NULL;
3857 goto out;
3858 }
3859
3860 size = min_t(u32, ipa->size, 4096);
3861 ipath = init_ipath(size, root, path);
3862 if (IS_ERR(ipath)) {
3863 ret = PTR_ERR(ipath);
3864 ipath = NULL;
3865 goto out;
3866 }
3867
3868 ret = paths_from_inode(ipa->inum, ipath);
3869 if (ret < 0)
3870 goto out;
3871
3872 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003873 rel_ptr = ipath->fspath->val[i] -
3874 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003875 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003876 }
3877
Omar Sandoval718dc5f2017-08-22 23:46:05 -07003878 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
3879 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003880 if (ret) {
3881 ret = -EFAULT;
3882 goto out;
3883 }
3884
3885out:
3886 btrfs_free_path(path);
3887 free_ipath(ipath);
3888 kfree(ipa);
3889
3890 return ret;
3891}
3892
3893static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3894{
3895 struct btrfs_data_container *inodes = ctx;
3896 const size_t c = 3 * sizeof(u64);
3897
3898 if (inodes->bytes_left >= c) {
3899 inodes->bytes_left -= c;
3900 inodes->val[inodes->elem_cnt] = inum;
3901 inodes->val[inodes->elem_cnt + 1] = offset;
3902 inodes->val[inodes->elem_cnt + 2] = root;
3903 inodes->elem_cnt += 3;
3904 } else {
3905 inodes->bytes_missing += c - inodes->bytes_left;
3906 inodes->bytes_left = 0;
3907 inodes->elem_missed += 3;
3908 }
3909
3910 return 0;
3911}
3912
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003913static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003914 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003915{
3916 int ret = 0;
3917 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003918 struct btrfs_ioctl_logical_ino_args *loi;
3919 struct btrfs_data_container *inodes = NULL;
3920 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003921 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003922
3923 if (!capable(CAP_SYS_ADMIN))
3924 return -EPERM;
3925
3926 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05303927 if (IS_ERR(loi))
3928 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003929
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003930 if (version == 1) {
3931 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04003932 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003933 } else {
3934 /* All reserved bits must be 0 for now */
3935 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
3936 ret = -EINVAL;
3937 goto out_loi;
3938 }
3939 /* Only accept flags we have defined so far */
3940 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
3941 ret = -EINVAL;
3942 goto out_loi;
3943 }
3944 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04003945 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003946 }
3947
Jan Schmidtd7728c92011-07-07 16:48:38 +02003948 path = btrfs_alloc_path();
3949 if (!path) {
3950 ret = -ENOMEM;
3951 goto out;
3952 }
3953
Jan Schmidtd7728c92011-07-07 16:48:38 +02003954 inodes = init_data_container(size);
3955 if (IS_ERR(inodes)) {
3956 ret = PTR_ERR(inodes);
3957 inodes = NULL;
3958 goto out;
3959 }
3960
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003961 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003962 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06003963 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003964 ret = -ENOENT;
3965 if (ret < 0)
3966 goto out;
3967
Omar Sandoval718dc5f2017-08-22 23:46:05 -07003968 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
3969 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003970 if (ret)
3971 ret = -EFAULT;
3972
3973out:
3974 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02003975 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003976out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02003977 kfree(loi);
3978
3979 return ret;
3980}
3981
David Sterba008ef092018-03-21 02:05:27 +01003982void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003983 struct btrfs_ioctl_balance_args *bargs)
3984{
3985 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3986
3987 bargs->flags = bctl->flags;
3988
David Sterba3009a622018-03-21 01:31:04 +01003989 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags))
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003990 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
3991 if (atomic_read(&fs_info->balance_pause_req))
3992 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02003993 if (atomic_read(&fs_info->balance_cancel_req))
3994 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02003995
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003996 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
3997 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
3998 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02003999
David Sterba008ef092018-03-21 02:05:27 +01004000 spin_lock(&fs_info->balance_lock);
4001 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4002 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004003}
4004
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004005static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004006{
Al Viro496ad9a2013-01-23 17:07:38 -05004007 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004008 struct btrfs_fs_info *fs_info = root->fs_info;
4009 struct btrfs_ioctl_balance_args *bargs;
4010 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004011 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004012 int ret;
4013
4014 if (!capable(CAP_SYS_ADMIN))
4015 return -EPERM;
4016
Liu Boe54bfa312012-06-29 03:58:48 -06004017 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004018 if (ret)
4019 return ret;
4020
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004021again:
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004022 if (btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004023 mutex_lock(&fs_info->balance_mutex);
4024 need_unlock = true;
4025 goto locked;
4026 }
4027
4028 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004029 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004030 * (1) some other op is running
4031 * (2) balance is running
4032 * (3) balance is paused -- special case (think resume)
4033 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004034 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004035 if (fs_info->balance_ctl) {
4036 /* this is either (2) or (3) */
David Sterba3009a622018-03-21 01:31:04 +01004037 if (!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004038 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004039 /*
4040 * Lock released to allow other waiters to continue,
4041 * we'll reexamine the status again.
4042 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004043 mutex_lock(&fs_info->balance_mutex);
4044
4045 if (fs_info->balance_ctl &&
David Sterba3009a622018-03-21 01:31:04 +01004046 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004047 /* this is (3) */
4048 need_unlock = false;
4049 goto locked;
4050 }
4051
4052 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004053 goto again;
4054 } else {
4055 /* this is (2) */
4056 mutex_unlock(&fs_info->balance_mutex);
4057 ret = -EINPROGRESS;
4058 goto out;
4059 }
4060 } else {
4061 /* this is (1) */
4062 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004063 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004064 goto out;
4065 }
4066
4067locked:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004068
4069 if (arg) {
4070 bargs = memdup_user(arg, sizeof(*bargs));
4071 if (IS_ERR(bargs)) {
4072 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004073 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004074 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004075
4076 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4077 if (!fs_info->balance_ctl) {
4078 ret = -ENOTCONN;
4079 goto out_bargs;
4080 }
4081
4082 bctl = fs_info->balance_ctl;
4083 spin_lock(&fs_info->balance_lock);
4084 bctl->flags |= BTRFS_BALANCE_RESUME;
4085 spin_unlock(&fs_info->balance_lock);
4086
4087 goto do_balance;
4088 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004089 } else {
4090 bargs = NULL;
4091 }
4092
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004093 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004094 ret = -EINPROGRESS;
4095 goto out_bargs;
4096 }
4097
David Sterba8d2db782015-11-04 15:38:29 +01004098 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004099 if (!bctl) {
4100 ret = -ENOMEM;
4101 goto out_bargs;
4102 }
4103
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004104 if (arg) {
4105 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4106 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4107 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4108
4109 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004110 } else {
4111 /* balance everything - no filters */
4112 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004113 }
4114
David Sterba8eb93452015-10-12 16:55:54 +02004115 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4116 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004117 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004118 }
4119
Ilya Dryomovde322262012-01-16 22:04:49 +02004120do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004121 /*
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004122 * Ownership of bctl and exclusive operation goes to btrfs_balance.
4123 * bctl is freed in reset_balance_state, or, if restriper was paused
4124 * all the way until unmount, in free_fs_info. The flag should be
4125 * cleared after reset_balance_state.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004126 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004127 need_unlock = false;
4128
David Sterba6fcf6e22018-05-07 17:44:03 +02004129 ret = btrfs_balance(fs_info, bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004130 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004131
Filipe Mananad00c2d92019-01-08 11:42:01 +00004132 if ((ret == 0 || ret == -ECANCELED) && arg) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004133 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4134 ret = -EFAULT;
4135 }
4136
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004137out_bctl:
4138 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004139out_bargs:
4140 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004141out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004142 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004143 if (need_unlock)
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004144 btrfs_exclop_finish(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004145out:
Liu Boe54bfa312012-06-29 03:58:48 -06004146 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004147 return ret;
4148}
4149
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004150static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004151{
4152 if (!capable(CAP_SYS_ADMIN))
4153 return -EPERM;
4154
4155 switch (cmd) {
4156 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004157 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004158 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004159 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004160 }
4161
4162 return -EINVAL;
4163}
4164
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004165static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004166 void __user *arg)
4167{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004168 struct btrfs_ioctl_balance_args *bargs;
4169 int ret = 0;
4170
4171 if (!capable(CAP_SYS_ADMIN))
4172 return -EPERM;
4173
4174 mutex_lock(&fs_info->balance_mutex);
4175 if (!fs_info->balance_ctl) {
4176 ret = -ENOTCONN;
4177 goto out;
4178 }
4179
David Sterba8d2db782015-11-04 15:38:29 +01004180 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004181 if (!bargs) {
4182 ret = -ENOMEM;
4183 goto out;
4184 }
4185
David Sterba008ef092018-03-21 02:05:27 +01004186 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004187
4188 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4189 ret = -EFAULT;
4190
4191 kfree(bargs);
4192out:
4193 mutex_unlock(&fs_info->balance_mutex);
4194 return ret;
4195}
4196
Miao Xie905b0dd2012-11-26 08:50:11 +00004197static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004198{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004199 struct inode *inode = file_inode(file);
4200 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004201 struct btrfs_ioctl_quota_ctl_args *sa;
Arne Jansen5d13a372011-09-14 15:53:51 +02004202 int ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004203
4204 if (!capable(CAP_SYS_ADMIN))
4205 return -EPERM;
4206
Miao Xie905b0dd2012-11-26 08:50:11 +00004207 ret = mnt_want_write_file(file);
4208 if (ret)
4209 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004210
4211 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004212 if (IS_ERR(sa)) {
4213 ret = PTR_ERR(sa);
4214 goto drop_write;
4215 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004216
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004217 down_write(&fs_info->subvol_sem);
Arne Jansen5d13a372011-09-14 15:53:51 +02004218
4219 switch (sa->cmd) {
4220 case BTRFS_QUOTA_CTL_ENABLE:
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03004221 ret = btrfs_quota_enable(fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004222 break;
4223 case BTRFS_QUOTA_CTL_DISABLE:
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03004224 ret = btrfs_quota_disable(fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004225 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004226 default:
4227 ret = -EINVAL;
4228 break;
4229 }
4230
Arne Jansen5d13a372011-09-14 15:53:51 +02004231 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004232 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004233drop_write:
4234 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004235 return ret;
4236}
4237
Miao Xie905b0dd2012-11-26 08:50:11 +00004238static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004239{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004240 struct inode *inode = file_inode(file);
4241 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4242 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004243 struct btrfs_ioctl_qgroup_assign_args *sa;
4244 struct btrfs_trans_handle *trans;
4245 int ret;
4246 int err;
4247
4248 if (!capable(CAP_SYS_ADMIN))
4249 return -EPERM;
4250
Miao Xie905b0dd2012-11-26 08:50:11 +00004251 ret = mnt_want_write_file(file);
4252 if (ret)
4253 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004254
4255 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004256 if (IS_ERR(sa)) {
4257 ret = PTR_ERR(sa);
4258 goto drop_write;
4259 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004260
4261 trans = btrfs_join_transaction(root);
4262 if (IS_ERR(trans)) {
4263 ret = PTR_ERR(trans);
4264 goto out;
4265 }
4266
Arne Jansen5d13a372011-09-14 15:53:51 +02004267 if (sa->assign) {
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +08004268 ret = btrfs_add_qgroup_relation(trans, sa->src, sa->dst);
Arne Jansen5d13a372011-09-14 15:53:51 +02004269 } else {
Lu Fengqi39616c22018-07-18 14:45:32 +08004270 ret = btrfs_del_qgroup_relation(trans, sa->src, sa->dst);
Arne Jansen5d13a372011-09-14 15:53:51 +02004271 }
4272
Qu Wenruoe082f562015-02-27 16:24:28 +08004273 /* update qgroup status and info */
Lu Fengqi280f8bd2018-07-18 14:45:40 +08004274 err = btrfs_run_qgroups(trans);
Qu Wenruoe082f562015-02-27 16:24:28 +08004275 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004276 btrfs_handle_fs_error(fs_info, err,
4277 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004278 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004279 if (err && !ret)
4280 ret = err;
4281
4282out:
4283 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004284drop_write:
4285 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004286 return ret;
4287}
4288
Miao Xie905b0dd2012-11-26 08:50:11 +00004289static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004290{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004291 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004292 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004293 struct btrfs_ioctl_qgroup_create_args *sa;
4294 struct btrfs_trans_handle *trans;
4295 int ret;
4296 int err;
4297
4298 if (!capable(CAP_SYS_ADMIN))
4299 return -EPERM;
4300
Miao Xie905b0dd2012-11-26 08:50:11 +00004301 ret = mnt_want_write_file(file);
4302 if (ret)
4303 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004304
4305 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004306 if (IS_ERR(sa)) {
4307 ret = PTR_ERR(sa);
4308 goto drop_write;
4309 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004310
Miao Xied86e56c2012-11-15 11:35:41 +00004311 if (!sa->qgroupid) {
4312 ret = -EINVAL;
4313 goto out;
4314 }
4315
Arne Jansen5d13a372011-09-14 15:53:51 +02004316 trans = btrfs_join_transaction(root);
4317 if (IS_ERR(trans)) {
4318 ret = PTR_ERR(trans);
4319 goto out;
4320 }
4321
Arne Jansen5d13a372011-09-14 15:53:51 +02004322 if (sa->create) {
Lu Fengqi49a05ec2018-07-18 14:45:33 +08004323 ret = btrfs_create_qgroup(trans, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004324 } else {
Lu Fengqi3efbee12018-07-18 14:45:34 +08004325 ret = btrfs_remove_qgroup(trans, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004326 }
4327
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004328 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004329 if (err && !ret)
4330 ret = err;
4331
4332out:
4333 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004334drop_write:
4335 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004336 return ret;
4337}
4338
Miao Xie905b0dd2012-11-26 08:50:11 +00004339static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004340{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004341 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004342 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004343 struct btrfs_ioctl_qgroup_limit_args *sa;
4344 struct btrfs_trans_handle *trans;
4345 int ret;
4346 int err;
4347 u64 qgroupid;
4348
4349 if (!capable(CAP_SYS_ADMIN))
4350 return -EPERM;
4351
Miao Xie905b0dd2012-11-26 08:50:11 +00004352 ret = mnt_want_write_file(file);
4353 if (ret)
4354 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004355
4356 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004357 if (IS_ERR(sa)) {
4358 ret = PTR_ERR(sa);
4359 goto drop_write;
4360 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004361
4362 trans = btrfs_join_transaction(root);
4363 if (IS_ERR(trans)) {
4364 ret = PTR_ERR(trans);
4365 goto out;
4366 }
4367
4368 qgroupid = sa->qgroupid;
4369 if (!qgroupid) {
4370 /* take the current subvol as qgroup */
4371 qgroupid = root->root_key.objectid;
4372 }
4373
Lu Fengqif0042d52018-07-18 14:45:35 +08004374 ret = btrfs_limit_qgroup(trans, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004375
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004376 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004377 if (err && !ret)
4378 ret = err;
4379
4380out:
4381 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004382drop_write:
4383 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004384 return ret;
4385}
4386
Jan Schmidt2f232032013-04-25 16:04:51 +00004387static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4388{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004389 struct inode *inode = file_inode(file);
4390 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004391 struct btrfs_ioctl_quota_rescan_args *qsa;
4392 int ret;
4393
4394 if (!capable(CAP_SYS_ADMIN))
4395 return -EPERM;
4396
4397 ret = mnt_want_write_file(file);
4398 if (ret)
4399 return ret;
4400
4401 qsa = memdup_user(arg, sizeof(*qsa));
4402 if (IS_ERR(qsa)) {
4403 ret = PTR_ERR(qsa);
4404 goto drop_write;
4405 }
4406
4407 if (qsa->flags) {
4408 ret = -EINVAL;
4409 goto out;
4410 }
4411
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004412 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00004413
4414out:
4415 kfree(qsa);
4416drop_write:
4417 mnt_drop_write_file(file);
4418 return ret;
4419}
4420
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004421static long btrfs_ioctl_quota_rescan_status(struct btrfs_fs_info *fs_info,
4422 void __user *arg)
Jan Schmidt2f232032013-04-25 16:04:51 +00004423{
Goldwyn Rodrigues0afb6032021-07-27 16:17:29 -05004424 struct btrfs_ioctl_quota_rescan_args qsa = {0};
Jan Schmidt2f232032013-04-25 16:04:51 +00004425 int ret = 0;
4426
4427 if (!capable(CAP_SYS_ADMIN))
4428 return -EPERM;
4429
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004430 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Goldwyn Rodrigues0afb6032021-07-27 16:17:29 -05004431 qsa.flags = 1;
4432 qsa.progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00004433 }
4434
Goldwyn Rodrigues0afb6032021-07-27 16:17:29 -05004435 if (copy_to_user(arg, &qsa, sizeof(qsa)))
Jan Schmidt2f232032013-04-25 16:04:51 +00004436 ret = -EFAULT;
4437
Jan Schmidt2f232032013-04-25 16:04:51 +00004438 return ret;
4439}
4440
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004441static long btrfs_ioctl_quota_rescan_wait(struct btrfs_fs_info *fs_info,
4442 void __user *arg)
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004443{
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004444 if (!capable(CAP_SYS_ADMIN))
4445 return -EPERM;
4446
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004447 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004448}
4449
Hugo Millsabccd002014-01-30 20:17:00 +00004450static long _btrfs_ioctl_set_received_subvol(struct file *file,
Christian Braunere4fed172021-07-27 12:48:55 +02004451 struct user_namespace *mnt_userns,
Hugo Millsabccd002014-01-30 20:17:00 +00004452 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004453{
Al Viro496ad9a2013-01-23 17:07:38 -05004454 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004455 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02004456 struct btrfs_root *root = BTRFS_I(inode)->root;
4457 struct btrfs_root_item *root_item = &root->root_item;
4458 struct btrfs_trans_handle *trans;
Deepa Dinamani95582b02018-05-08 19:36:02 -07004459 struct timespec64 ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02004460 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004461 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004462
Christian Braunere4fed172021-07-27 12:48:55 +02004463 if (!inode_owner_or_capable(mnt_userns, inode))
David Sterbabd60ea02014-01-16 15:50:22 +01004464 return -EPERM;
4465
Alexander Block8ea05e32012-07-25 17:35:53 +02004466 ret = mnt_want_write_file(file);
4467 if (ret < 0)
4468 return ret;
4469
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004470 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02004471
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004472 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02004473 ret = -EINVAL;
4474 goto out;
4475 }
4476
4477 if (btrfs_root_readonly(root)) {
4478 ret = -EROFS;
4479 goto out;
4480 }
4481
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004482 /*
4483 * 1 - root item
4484 * 2 - uuid items (received uuid + subvol uuid)
4485 */
4486 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004487 if (IS_ERR(trans)) {
4488 ret = PTR_ERR(trans);
4489 trans = NULL;
4490 goto out;
4491 }
4492
4493 sa->rtransid = trans->transid;
4494 sa->rtime.sec = ct.tv_sec;
4495 sa->rtime.nsec = ct.tv_nsec;
4496
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004497 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4498 BTRFS_UUID_SIZE);
4499 if (received_uuid_changed &&
Nikolay Borisovd87ff752018-03-12 14:48:09 +02004500 !btrfs_is_empty_uuid(root_item->received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08004501 ret = btrfs_uuid_tree_remove(trans, root_item->received_uuid,
Nikolay Borisovd87ff752018-03-12 14:48:09 +02004502 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4503 root->root_key.objectid);
4504 if (ret && ret != -ENOENT) {
4505 btrfs_abort_transaction(trans, ret);
4506 btrfs_end_transaction(trans);
4507 goto out;
4508 }
4509 }
Alexander Block8ea05e32012-07-25 17:35:53 +02004510 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4511 btrfs_set_root_stransid(root_item, sa->stransid);
4512 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004513 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4514 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4515 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4516 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004517
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004518 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02004519 &root->root_key, &root->root_item);
4520 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004521 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004522 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004523 }
4524 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004525 ret = btrfs_uuid_tree_add(trans, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004526 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4527 root->root_key.objectid);
4528 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004529 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03004530 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004531 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004532 }
4533 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004534 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00004535out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004536 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00004537 mnt_drop_write_file(file);
4538 return ret;
4539}
4540
4541#ifdef CONFIG_64BIT
4542static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4543 void __user *arg)
4544{
4545 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4546 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4547 int ret = 0;
4548
4549 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304550 if (IS_ERR(args32))
4551 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00004552
David Sterba8d2db782015-11-04 15:38:29 +01004553 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004554 if (!args64) {
4555 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004556 goto out;
4557 }
4558
4559 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4560 args64->stransid = args32->stransid;
4561 args64->rtransid = args32->rtransid;
4562 args64->stime.sec = args32->stime.sec;
4563 args64->stime.nsec = args32->stime.nsec;
4564 args64->rtime.sec = args32->rtime.sec;
4565 args64->rtime.nsec = args32->rtime.nsec;
4566 args64->flags = args32->flags;
4567
Christian Braunere4fed172021-07-27 12:48:55 +02004568 ret = _btrfs_ioctl_set_received_subvol(file, file_mnt_user_ns(file), args64);
Hugo Millsabccd002014-01-30 20:17:00 +00004569 if (ret)
4570 goto out;
4571
4572 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4573 args32->stransid = args64->stransid;
4574 args32->rtransid = args64->rtransid;
4575 args32->stime.sec = args64->stime.sec;
4576 args32->stime.nsec = args64->stime.nsec;
4577 args32->rtime.sec = args64->rtime.sec;
4578 args32->rtime.nsec = args64->rtime.nsec;
4579 args32->flags = args64->flags;
4580
4581 ret = copy_to_user(arg, args32, sizeof(*args32));
4582 if (ret)
4583 ret = -EFAULT;
4584
4585out:
4586 kfree(args32);
4587 kfree(args64);
4588 return ret;
4589}
4590#endif
4591
4592static long btrfs_ioctl_set_received_subvol(struct file *file,
4593 void __user *arg)
4594{
4595 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4596 int ret = 0;
4597
4598 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304599 if (IS_ERR(sa))
4600 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00004601
Christian Braunere4fed172021-07-27 12:48:55 +02004602 ret = _btrfs_ioctl_set_received_subvol(file, file_mnt_user_ns(file), sa);
Hugo Millsabccd002014-01-30 20:17:00 +00004603
4604 if (ret)
4605 goto out;
4606
Alexander Block8ea05e32012-07-25 17:35:53 +02004607 ret = copy_to_user(arg, sa, sizeof(*sa));
4608 if (ret)
4609 ret = -EFAULT;
4610
4611out:
4612 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004613 return ret;
4614}
4615
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004616static int btrfs_ioctl_get_fslabel(struct btrfs_fs_info *fs_info,
4617 void __user *arg)
jeff.liu867ab662013-01-05 02:48:01 +00004618{
Anand Jaina1b83ac2013-07-19 17:39:32 +08004619 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004620 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004621 char label[BTRFS_LABEL_SIZE];
4622
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004623 spin_lock(&fs_info->super_lock);
4624 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4625 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08004626
4627 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00004628
4629 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004630 btrfs_warn(fs_info,
4631 "label is too long, return the first %zu bytes",
4632 --len);
jeff.liu867ab662013-01-05 02:48:01 +00004633 }
4634
jeff.liu867ab662013-01-05 02:48:01 +00004635 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00004636
4637 return ret ? -EFAULT : 0;
4638}
4639
jeff.liua8bfd4a2013-01-05 02:48:08 +00004640static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4641{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004642 struct inode *inode = file_inode(file);
4643 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4644 struct btrfs_root *root = BTRFS_I(inode)->root;
4645 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00004646 struct btrfs_trans_handle *trans;
4647 char label[BTRFS_LABEL_SIZE];
4648 int ret;
4649
4650 if (!capable(CAP_SYS_ADMIN))
4651 return -EPERM;
4652
4653 if (copy_from_user(label, arg, sizeof(label)))
4654 return -EFAULT;
4655
4656 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004657 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004658 "unable to set label with more than %d bytes",
4659 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004660 return -EINVAL;
4661 }
4662
4663 ret = mnt_want_write_file(file);
4664 if (ret)
4665 return ret;
4666
jeff.liua8bfd4a2013-01-05 02:48:08 +00004667 trans = btrfs_start_transaction(root, 0);
4668 if (IS_ERR(trans)) {
4669 ret = PTR_ERR(trans);
4670 goto out_unlock;
4671 }
4672
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004673 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004674 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004675 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004676 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004677
4678out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00004679 mnt_drop_write_file(file);
4680 return ret;
4681}
4682
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004683#define INIT_FEATURE_FLAGS(suffix) \
4684 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
4685 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
4686 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
4687
David Sterbad5131b62016-02-17 15:26:27 +01004688int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004689{
David Sterba4d4ab6d2015-11-19 11:42:31 +01004690 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004691 INIT_FEATURE_FLAGS(SUPP),
4692 INIT_FEATURE_FLAGS(SAFE_SET),
4693 INIT_FEATURE_FLAGS(SAFE_CLEAR)
4694 };
4695
4696 if (copy_to_user(arg, &features, sizeof(features)))
4697 return -EFAULT;
4698
4699 return 0;
4700}
4701
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004702static int btrfs_ioctl_get_features(struct btrfs_fs_info *fs_info,
4703 void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004704{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004705 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004706 struct btrfs_ioctl_feature_flags features;
4707
4708 features.compat_flags = btrfs_super_compat_flags(super_block);
4709 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
4710 features.incompat_flags = btrfs_super_incompat_flags(super_block);
4711
4712 if (copy_to_user(arg, &features, sizeof(features)))
4713 return -EFAULT;
4714
4715 return 0;
4716}
4717
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004718static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004719 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004720 u64 change_mask, u64 flags, u64 supported_flags,
4721 u64 safe_set, u64 safe_clear)
4722{
David Sterbaf10152b2019-08-01 19:07:55 +02004723 const char *type = btrfs_feature_set_name(set);
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004724 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004725 u64 disallowed, unsupported;
4726 u64 set_mask = flags & change_mask;
4727 u64 clear_mask = ~flags & change_mask;
4728
4729 unsupported = set_mask & ~supported_flags;
4730 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004731 names = btrfs_printable_features(set, unsupported);
4732 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004733 btrfs_warn(fs_info,
4734 "this kernel does not support the %s feature bit%s",
4735 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004736 kfree(names);
4737 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004738 btrfs_warn(fs_info,
4739 "this kernel does not support %s bits 0x%llx",
4740 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004741 return -EOPNOTSUPP;
4742 }
4743
4744 disallowed = set_mask & ~safe_set;
4745 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004746 names = btrfs_printable_features(set, disallowed);
4747 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004748 btrfs_warn(fs_info,
4749 "can't set the %s feature bit%s while mounted",
4750 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004751 kfree(names);
4752 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004753 btrfs_warn(fs_info,
4754 "can't set %s bits 0x%llx while mounted",
4755 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004756 return -EPERM;
4757 }
4758
4759 disallowed = clear_mask & ~safe_clear;
4760 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004761 names = btrfs_printable_features(set, disallowed);
4762 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004763 btrfs_warn(fs_info,
4764 "can't clear the %s feature bit%s while mounted",
4765 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004766 kfree(names);
4767 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004768 btrfs_warn(fs_info,
4769 "can't clear %s bits 0x%llx while mounted",
4770 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004771 return -EPERM;
4772 }
4773
4774 return 0;
4775}
4776
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004777#define check_feature(fs_info, change_mask, flags, mask_base) \
4778check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004779 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
4780 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
4781 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
4782
4783static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
4784{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004785 struct inode *inode = file_inode(file);
4786 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4787 struct btrfs_root *root = BTRFS_I(inode)->root;
4788 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004789 struct btrfs_ioctl_feature_flags flags[2];
4790 struct btrfs_trans_handle *trans;
4791 u64 newflags;
4792 int ret;
4793
4794 if (!capable(CAP_SYS_ADMIN))
4795 return -EPERM;
4796
4797 if (copy_from_user(flags, arg, sizeof(flags)))
4798 return -EFAULT;
4799
4800 /* Nothing to do */
4801 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
4802 !flags[0].incompat_flags)
4803 return 0;
4804
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004805 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004806 flags[1].compat_flags, COMPAT);
4807 if (ret)
4808 return ret;
4809
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004810 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004811 flags[1].compat_ro_flags, COMPAT_RO);
4812 if (ret)
4813 return ret;
4814
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004815 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004816 flags[1].incompat_flags, INCOMPAT);
4817 if (ret)
4818 return ret;
4819
David Sterba7ab19622016-05-04 11:32:00 +02004820 ret = mnt_want_write_file(file);
4821 if (ret)
4822 return ret;
4823
David Sterba8051aa12014-02-07 14:34:04 +01004824 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02004825 if (IS_ERR(trans)) {
4826 ret = PTR_ERR(trans);
4827 goto out_drop_write;
4828 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004829
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004830 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004831 newflags = btrfs_super_compat_flags(super_block);
4832 newflags |= flags[0].compat_flags & flags[1].compat_flags;
4833 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
4834 btrfs_set_super_compat_flags(super_block, newflags);
4835
4836 newflags = btrfs_super_compat_ro_flags(super_block);
4837 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
4838 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
4839 btrfs_set_super_compat_ro_flags(super_block, newflags);
4840
4841 newflags = btrfs_super_incompat_flags(super_block);
4842 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
4843 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
4844 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004845 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004846
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004847 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02004848out_drop_write:
4849 mnt_drop_write_file(file);
4850
4851 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004852}
4853
Josef Bacik2351f432017-09-27 10:43:13 -04004854static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
4855{
4856 struct btrfs_ioctl_send_args *arg;
4857 int ret;
4858
4859 if (compat) {
4860#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
4861 struct btrfs_ioctl_send_args_32 args32;
4862
4863 ret = copy_from_user(&args32, argp, sizeof(args32));
4864 if (ret)
4865 return -EFAULT;
4866 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
4867 if (!arg)
4868 return -ENOMEM;
4869 arg->send_fd = args32.send_fd;
4870 arg->clone_sources_count = args32.clone_sources_count;
4871 arg->clone_sources = compat_ptr(args32.clone_sources);
4872 arg->parent_root = args32.parent_root;
4873 arg->flags = args32.flags;
4874 memcpy(arg->reserved, args32.reserved,
4875 sizeof(args32.reserved));
4876#else
4877 return -ENOTTY;
4878#endif
4879 } else {
4880 arg = memdup_user(argp, sizeof(*arg));
4881 if (IS_ERR(arg))
4882 return PTR_ERR(arg);
4883 }
4884 ret = btrfs_ioctl_send(file, arg);
4885 kfree(arg);
4886 return ret;
4887}
4888
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004889long btrfs_ioctl(struct file *file, unsigned int
4890 cmd, unsigned long arg)
4891{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004892 struct inode *inode = file_inode(file);
4893 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4894 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004895 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004896
4897 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004898 case FS_IOC_GETVERSION:
4899 return btrfs_ioctl_getversion(file, argp);
Eric Sandeen40cf9312019-07-17 12:39:20 -05004900 case FS_IOC_GETFSLABEL:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004901 return btrfs_ioctl_get_fslabel(fs_info, argp);
Eric Sandeen40cf9312019-07-17 12:39:20 -05004902 case FS_IOC_SETFSLABEL:
4903 return btrfs_ioctl_set_fslabel(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00004904 case FITRIM:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004905 return btrfs_ioctl_fitrim(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004906 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004907 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00004908 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004909 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05004910 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004911 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02004912 case BTRFS_IOC_SUBVOL_CREATE_V2:
4913 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04004914 case BTRFS_IOC_SNAP_DESTROY:
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03004915 return btrfs_ioctl_snap_destroy(file, argp, false);
4916 case BTRFS_IOC_SNAP_DESTROY_V2:
4917 return btrfs_ioctl_snap_destroy(file, argp, true);
Li Zefan0caa1022010-12-20 16:30:25 +08004918 case BTRFS_IOC_SUBVOL_GETFLAGS:
4919 return btrfs_ioctl_subvol_getflags(file, argp);
4920 case BTRFS_IOC_SUBVOL_SETFLAGS:
4921 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004922 case BTRFS_IOC_DEFAULT_SUBVOL:
4923 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004924 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05004925 return btrfs_ioctl_defrag(file, NULL);
4926 case BTRFS_IOC_DEFRAG_RANGE:
4927 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004928 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00004929 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004930 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004931 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004932 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00004933 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08004934 case BTRFS_IOC_RM_DEV_V2:
4935 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004936 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004937 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004938 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004939 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004940 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004941 return btrfs_ioctl_balance(file, NULL);
Chris Masonac8e9812010-02-28 15:39:26 -05004942 case BTRFS_IOC_TREE_SEARCH:
4943 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01004944 case BTRFS_IOC_TREE_SEARCH_V2:
4945 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05004946 case BTRFS_IOC_INO_LOOKUP:
4947 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004948 case BTRFS_IOC_INO_PATHS:
4949 return btrfs_ioctl_ino_to_path(root, argp);
4950 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004951 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
4952 case BTRFS_IOC_LOGICAL_INO_V2:
4953 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00004954 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004955 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01004956 case BTRFS_IOC_SYNC: {
4957 int ret;
4958
Nikolay Borisov9db4dc22021-01-11 12:58:11 +02004959 ret = btrfs_start_delalloc_roots(fs_info, LONG_MAX, false);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01004960 if (ret)
4961 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004962 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02004963 /*
4964 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04004965 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02004966 * processing uncleaned subvols.
4967 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004968 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01004969 return ret;
4970 }
Sage Weil46204592010-10-29 15:41:32 -04004971 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004972 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04004973 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004974 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004975 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00004976 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004977 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004978 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004979 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004980 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004981 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004982 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004983 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004984 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004985 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004986 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02004987 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
4988 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00004989#ifdef CONFIG_64BIT
4990 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
4991 return btrfs_ioctl_set_received_subvol_32(file, argp);
4992#endif
Alexander Block31db9f72012-07-25 23:19:24 +02004993 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04004994 return _btrfs_ioctl_send(file, argp, false);
4995#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
4996 case BTRFS_IOC_SEND_32:
4997 return _btrfs_ioctl_send(file, argp, true);
4998#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004999 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005000 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005001 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005002 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005003 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005004 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005005 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005006 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005007 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005008 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005009 case BTRFS_IOC_QUOTA_RESCAN:
5010 return btrfs_ioctl_quota_rescan(file, argp);
5011 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03005012 return btrfs_ioctl_quota_rescan_status(fs_info, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005013 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03005014 return btrfs_ioctl_quota_rescan_wait(fs_info, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005015 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005016 return btrfs_ioctl_dev_replace(fs_info, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005017 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005018 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005019 case BTRFS_IOC_GET_FEATURES:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03005020 return btrfs_ioctl_get_features(fs_info, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005021 case BTRFS_IOC_SET_FEATURES:
5022 return btrfs_ioctl_set_features(file, argp);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09005023 case BTRFS_IOC_GET_SUBVOL_INFO:
5024 return btrfs_ioctl_get_subvol_info(file, argp);
Tomohiro Misono42e4b522018-05-21 10:09:43 +09005025 case BTRFS_IOC_GET_SUBVOL_ROOTREF:
5026 return btrfs_ioctl_get_subvol_rootref(file, argp);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09005027 case BTRFS_IOC_INO_LOOKUP_USER:
5028 return btrfs_ioctl_ino_lookup_user(file, argp);
Boris Burkov14605402021-06-30 13:01:49 -07005029 case FS_IOC_ENABLE_VERITY:
5030 return fsverity_ioctl_enable(file, (const void __user *)argp);
5031 case FS_IOC_MEASURE_VERITY:
5032 return fsverity_ioctl_measure(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005033 }
5034
5035 return -ENOTTY;
5036}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005037
5038#ifdef CONFIG_COMPAT
5039long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5040{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005041 /*
5042 * These all access 32-bit values anyway so no further
5043 * handling is necessary.
5044 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005045 switch (cmd) {
Luke Dashjr4c63c242015-10-29 08:22:21 +00005046 case FS_IOC32_GETVERSION:
5047 cmd = FS_IOC_GETVERSION;
5048 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005049 }
5050
5051 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5052}
5053#endif