blob: 927771d1853f791862180999fe23b7e97def5364 [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"
Qu Wenruo22b398e2021-08-06 16:12:37 +080051#include "subpage.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040052
Hugo Millsabccd002014-01-30 20:17:00 +000053#ifdef CONFIG_64BIT
54/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
55 * structures are incorrect, as the timespec structure from userspace
56 * is 4 bytes too small. We define these alternatives here to teach
57 * the kernel about the 32-bit struct packing.
58 */
59struct btrfs_ioctl_timespec_32 {
60 __u64 sec;
61 __u32 nsec;
62} __attribute__ ((__packed__));
63
64struct btrfs_ioctl_received_subvol_args_32 {
65 char uuid[BTRFS_UUID_SIZE]; /* in */
66 __u64 stransid; /* in */
67 __u64 rtransid; /* out */
68 struct btrfs_ioctl_timespec_32 stime; /* in */
69 struct btrfs_ioctl_timespec_32 rtime; /* out */
70 __u64 flags; /* in */
71 __u64 reserved[16]; /* in */
72} __attribute__ ((__packed__));
73
74#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
75 struct btrfs_ioctl_received_subvol_args_32)
76#endif
77
Josef Bacik2351f432017-09-27 10:43:13 -040078#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
79struct btrfs_ioctl_send_args_32 {
80 __s64 send_fd; /* in */
81 __u64 clone_sources_count; /* in */
82 compat_uptr_t clone_sources; /* in */
83 __u64 parent_root; /* in */
84 __u64 flags; /* in */
David Sterbae77fbf92021-10-22 16:53:36 +020085 __u32 version; /* in */
86 __u8 reserved[28]; /* in */
Josef Bacik2351f432017-09-27 10:43:13 -040087} __attribute__ ((__packed__));
88
89#define BTRFS_IOC_SEND_32 _IOW(BTRFS_IOCTL_MAGIC, 38, \
90 struct btrfs_ioctl_send_args_32)
91#endif
Hugo Millsabccd002014-01-30 20:17:00 +000092
Christoph Hellwig6cbff002009-04-17 10:37:41 +020093/* Mask out flags that are inappropriate for the given type of inode. */
David Sterba1905a0f2018-03-26 18:52:15 +020094static unsigned int btrfs_mask_fsflags_for_type(struct inode *inode,
95 unsigned int flags)
Christoph Hellwig6cbff002009-04-17 10:37:41 +020096{
David Sterba1905a0f2018-03-26 18:52:15 +020097 if (S_ISDIR(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +020098 return flags;
David Sterba1905a0f2018-03-26 18:52:15 +020099 else if (S_ISREG(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200100 return flags & ~FS_DIRSYNC_FL;
101 else
102 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
103}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400104
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200105/*
David Sterbaa157d4f2018-03-26 19:12:25 +0200106 * Export internal inode flags to the format expected by the FS_IOC_GETFLAGS
107 * ioctl.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200108 */
Boris Burkov77eea052021-06-30 13:01:48 -0700109static unsigned int btrfs_inode_flags_to_fsflags(struct btrfs_inode *binode)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200110{
111 unsigned int iflags = 0;
Boris Burkov77eea052021-06-30 13:01:48 -0700112 u32 flags = binode->flags;
Boris Burkov14605402021-06-30 13:01:49 -0700113 u32 ro_flags = binode->ro_flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200114
115 if (flags & BTRFS_INODE_SYNC)
116 iflags |= FS_SYNC_FL;
117 if (flags & BTRFS_INODE_IMMUTABLE)
118 iflags |= FS_IMMUTABLE_FL;
119 if (flags & BTRFS_INODE_APPEND)
120 iflags |= FS_APPEND_FL;
121 if (flags & BTRFS_INODE_NODUMP)
122 iflags |= FS_NODUMP_FL;
123 if (flags & BTRFS_INODE_NOATIME)
124 iflags |= FS_NOATIME_FL;
125 if (flags & BTRFS_INODE_DIRSYNC)
126 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000127 if (flags & BTRFS_INODE_NODATACOW)
128 iflags |= FS_NOCOW_FL;
Boris Burkov14605402021-06-30 13:01:49 -0700129 if (ro_flags & BTRFS_INODE_RO_VERITY)
130 iflags |= FS_VERITY_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000131
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900132 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000133 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900134 else if (flags & BTRFS_INODE_COMPRESS)
135 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200136
137 return iflags;
138}
139
140/*
141 * Update inode->i_flags based on the btrfs internal flags.
142 */
David Sterba7b6a2212018-03-26 18:40:21 +0200143void btrfs_sync_inode_flags_to_i_flags(struct inode *inode)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200144{
David Sterba5c57b8b2018-04-23 15:45:18 +0200145 struct btrfs_inode *binode = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100146 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200147
David Sterba5c57b8b2018-04-23 15:45:18 +0200148 if (binode->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100149 new_fl |= S_SYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200150 if (binode->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100151 new_fl |= S_IMMUTABLE;
David Sterba5c57b8b2018-04-23 15:45:18 +0200152 if (binode->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100153 new_fl |= S_APPEND;
David Sterba5c57b8b2018-04-23 15:45:18 +0200154 if (binode->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100155 new_fl |= S_NOATIME;
David Sterba5c57b8b2018-04-23 15:45:18 +0200156 if (binode->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100157 new_fl |= S_DIRSYNC;
Boris Burkov14605402021-06-30 13:01:49 -0700158 if (binode->ro_flags & BTRFS_INODE_RO_VERITY)
159 new_fl |= S_VERITY;
Filipe Manana3cc79392014-06-25 22:36:02 +0100160
161 set_mask_bits(&inode->i_flags,
Boris Burkov14605402021-06-30 13:01:49 -0700162 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC |
163 S_VERITY, new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200164}
165
David Sterbaf37c5632020-07-10 09:49:56 +0200166/*
167 * Check if @flags are a supported and valid set of FS_*_FL flags and that
168 * the old and new flags are not conflicting
169 */
170static int check_fsflags(unsigned int old_flags, unsigned int flags)
Liu Bo75e7cb72011-03-22 10:12:20 +0000171{
172 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
173 FS_NOATIME_FL | FS_NODUMP_FL | \
174 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000175 FS_NOCOMP_FL | FS_COMPR_FL |
176 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000177 return -EOPNOTSUPP;
178
David Sterbaf37c5632020-07-10 09:49:56 +0200179 /* COMPR and NOCOMP on new/old are valid */
Liu Bo75e7cb72011-03-22 10:12:20 +0000180 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
181 return -EINVAL;
182
David Sterbaf37c5632020-07-10 09:49:56 +0200183 if ((flags & FS_COMPR_FL) && (flags & FS_NOCOW_FL))
184 return -EINVAL;
185
186 /* NOCOW and compression options are mutually exclusive */
187 if ((old_flags & FS_NOCOW_FL) && (flags & (FS_COMPR_FL | FS_NOCOMP_FL)))
188 return -EINVAL;
189 if ((flags & FS_NOCOW_FL) && (old_flags & (FS_COMPR_FL | FS_NOCOMP_FL)))
190 return -EINVAL;
191
Liu Bo75e7cb72011-03-22 10:12:20 +0000192 return 0;
193}
194
Naohiro Aotad206e9c2020-11-10 20:26:11 +0900195static int check_fsflags_compatible(struct btrfs_fs_info *fs_info,
196 unsigned int flags)
197{
198 if (btrfs_is_zoned(fs_info) && (flags & FS_NOCOW_FL))
199 return -EPERM;
200
201 return 0;
202}
203
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200204/*
205 * Set flags/xflags from the internal inode flags. The remaining items of
206 * fsxattr are zeroed.
207 */
208int btrfs_fileattr_get(struct dentry *dentry, struct fileattr *fa)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200209{
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200210 struct btrfs_inode *binode = BTRFS_I(d_inode(dentry));
211
Boris Burkov77eea052021-06-30 13:01:48 -0700212 fileattr_fill_flags(fa, btrfs_inode_flags_to_fsflags(binode));
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200213 return 0;
214}
215
216int btrfs_fileattr_set(struct user_namespace *mnt_userns,
217 struct dentry *dentry, struct fileattr *fa)
218{
219 struct inode *inode = d_inode(dentry);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400220 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba5c57b8b2018-04-23 15:45:18 +0200221 struct btrfs_inode *binode = BTRFS_I(inode);
222 struct btrfs_root *root = binode->root;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200223 struct btrfs_trans_handle *trans;
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700224 unsigned int fsflags, old_fsflags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200225 int ret;
Anand Jainff9fef552019-04-20 19:48:53 +0800226 const char *comp = NULL;
David Sterbaf37c5632020-07-10 09:49:56 +0200227 u32 binode_flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200228
Li Zefanb83cc962010-12-20 16:04:08 +0800229 if (btrfs_root_readonly(root))
230 return -EROFS;
231
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200232 if (fileattr_has_fsx(fa))
233 return -EOPNOTSUPP;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200234
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200235 fsflags = btrfs_mask_fsflags_for_type(inode, fa->flags);
Boris Burkov77eea052021-06-30 13:01:48 -0700236 old_fsflags = btrfs_inode_flags_to_fsflags(binode);
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200237 ret = check_fsflags(old_fsflags, fsflags);
Jan Karae7848682012-06-12 16:20:32 +0200238 if (ret)
239 return ret;
240
Naohiro Aotad206e9c2020-11-10 20:26:11 +0900241 ret = check_fsflags_compatible(fs_info, fsflags);
242 if (ret)
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200243 return ret;
Naohiro Aotad206e9c2020-11-10 20:26:11 +0900244
David Sterbaf37c5632020-07-10 09:49:56 +0200245 binode_flags = binode->flags;
David Sterba5c57b8b2018-04-23 15:45:18 +0200246 if (fsflags & FS_SYNC_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800247 binode_flags |= BTRFS_INODE_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200248 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800249 binode_flags &= ~BTRFS_INODE_SYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200250 if (fsflags & FS_IMMUTABLE_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800251 binode_flags |= BTRFS_INODE_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200252 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800253 binode_flags &= ~BTRFS_INODE_IMMUTABLE;
David Sterba5c57b8b2018-04-23 15:45:18 +0200254 if (fsflags & FS_APPEND_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800255 binode_flags |= BTRFS_INODE_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200256 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800257 binode_flags &= ~BTRFS_INODE_APPEND;
David Sterba5c57b8b2018-04-23 15:45:18 +0200258 if (fsflags & FS_NODUMP_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800259 binode_flags |= BTRFS_INODE_NODUMP;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200260 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800261 binode_flags &= ~BTRFS_INODE_NODUMP;
David Sterba5c57b8b2018-04-23 15:45:18 +0200262 if (fsflags & FS_NOATIME_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800263 binode_flags |= BTRFS_INODE_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200264 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800265 binode_flags &= ~BTRFS_INODE_NOATIME;
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200266
267 /* If coming from FS_IOC_FSSETXATTR then skip unconverted flags */
268 if (!fa->flags_valid) {
269 /* 1 item for the inode */
270 trans = btrfs_start_transaction(root, 1);
Ritesh Harjani9b8a2332021-04-30 21:30:55 +0530271 if (IS_ERR(trans))
272 return PTR_ERR(trans);
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200273 goto update_flags;
274 }
275
David Sterba5c57b8b2018-04-23 15:45:18 +0200276 if (fsflags & FS_DIRSYNC_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800277 binode_flags |= BTRFS_INODE_DIRSYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200278 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800279 binode_flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200280 if (fsflags & FS_NOCOW_FL) {
Anand Jain44e51942019-04-20 19:48:57 +0800281 if (S_ISREG(inode->i_mode)) {
David Sterba7e97b8d2012-09-07 05:56:55 -0600282 /*
283 * It's safe to turn csums off here, no extents exist.
284 * Otherwise we want the flag to reflect the real COW
285 * status of the file and will not set it.
286 */
287 if (inode->i_size == 0)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800288 binode_flags |= BTRFS_INODE_NODATACOW |
289 BTRFS_INODE_NODATASUM;
David Sterba7e97b8d2012-09-07 05:56:55 -0600290 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800291 binode_flags |= BTRFS_INODE_NODATACOW;
David Sterba7e97b8d2012-09-07 05:56:55 -0600292 }
293 } else {
294 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400295 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600296 */
Anand Jain44e51942019-04-20 19:48:57 +0800297 if (S_ISREG(inode->i_mode)) {
David Sterba7e97b8d2012-09-07 05:56:55 -0600298 if (inode->i_size == 0)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800299 binode_flags &= ~(BTRFS_INODE_NODATACOW |
300 BTRFS_INODE_NODATASUM);
David Sterba7e97b8d2012-09-07 05:56:55 -0600301 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800302 binode_flags &= ~BTRFS_INODE_NODATACOW;
David Sterba7e97b8d2012-09-07 05:56:55 -0600303 }
304 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200305
Liu Bo75e7cb72011-03-22 10:12:20 +0000306 /*
307 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
308 * flag may be changed automatically if compression code won't make
309 * things smaller.
310 */
David Sterba5c57b8b2018-04-23 15:45:18 +0200311 if (fsflags & FS_NOCOMP_FL) {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800312 binode_flags &= ~BTRFS_INODE_COMPRESS;
313 binode_flags |= BTRFS_INODE_NOCOMPRESS;
David Sterba5c57b8b2018-04-23 15:45:18 +0200314 } else if (fsflags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000315
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200316 if (IS_SWAPFILE(inode))
317 return -ETXTBSY;
Omar Sandovaleede2bf2016-11-03 10:28:12 -0700318
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800319 binode_flags |= BTRFS_INODE_COMPRESS;
320 binode_flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000321
David Sterba93370502017-10-31 17:32:41 +0100322 comp = btrfs_compress_type2str(fs_info->compress_type);
323 if (!comp || comp[0] == 0)
324 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
Li Zefanebcb9042011-04-15 03:03:17 +0000325 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800326 binode_flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000327 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200328
Anand Jainff9fef552019-04-20 19:48:53 +0800329 /*
330 * 1 for inode item
331 * 2 for properties
332 */
333 trans = btrfs_start_transaction(root, 3);
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200334 if (IS_ERR(trans))
335 return PTR_ERR(trans);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200336
Anand Jainff9fef552019-04-20 19:48:53 +0800337 if (comp) {
338 ret = btrfs_set_prop(trans, inode, "btrfs.compression", comp,
339 strlen(comp), 0);
340 if (ret) {
341 btrfs_abort_transaction(trans, ret);
342 goto out_end_trans;
343 }
Anand Jainff9fef552019-04-20 19:48:53 +0800344 } else {
345 ret = btrfs_set_prop(trans, inode, "btrfs.compression", NULL,
346 0, 0);
347 if (ret && ret != -ENODATA) {
348 btrfs_abort_transaction(trans, ret);
349 goto out_end_trans;
350 }
351 }
352
Miklos Szeredi97fc2972021-04-07 14:36:43 +0200353update_flags:
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800354 binode->flags = binode_flags;
David Sterba7b6a2212018-03-26 18:40:21 +0200355 btrfs_sync_inode_flags_to_i_flags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400356 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700357 inode->i_ctime = current_time(inode);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +0200358 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200359
Anand Jainff9fef552019-04-20 19:48:53 +0800360 out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400361 btrfs_end_transaction(trans);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000362 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200363}
364
David Sterba0d7ed322021-05-14 17:42:30 +0200365/*
366 * Start exclusive operation @type, return true on success
367 */
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500368bool btrfs_exclop_start(struct btrfs_fs_info *fs_info,
369 enum btrfs_exclusive_operation type)
370{
David Sterba0d7ed322021-05-14 17:42:30 +0200371 bool ret = false;
372
373 spin_lock(&fs_info->super_lock);
374 if (fs_info->exclusive_operation == BTRFS_EXCLOP_NONE) {
375 fs_info->exclusive_operation = type;
376 ret = true;
377 }
378 spin_unlock(&fs_info->super_lock);
379
380 return ret;
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500381}
382
David Sterba578bda92021-05-18 21:05:52 +0200383/*
384 * Conditionally allow to enter the exclusive operation in case it's compatible
385 * with the running one. This must be paired with btrfs_exclop_start_unlock and
386 * btrfs_exclop_finish.
387 *
388 * Compatibility:
389 * - the same type is already running
Nikolay Borisov621a1ee2021-11-25 11:14:42 +0200390 * - when trying to add a device and balance has been paused
David Sterba578bda92021-05-18 21:05:52 +0200391 * - not BTRFS_EXCLOP_NONE - this is intentionally incompatible and the caller
392 * must check the condition first that would allow none -> @type
393 */
394bool btrfs_exclop_start_try_lock(struct btrfs_fs_info *fs_info,
395 enum btrfs_exclusive_operation type)
396{
397 spin_lock(&fs_info->super_lock);
Nikolay Borisov621a1ee2021-11-25 11:14:42 +0200398 if (fs_info->exclusive_operation == type ||
399 (fs_info->exclusive_operation == BTRFS_EXCLOP_BALANCE_PAUSED &&
400 type == BTRFS_EXCLOP_DEV_ADD))
David Sterba578bda92021-05-18 21:05:52 +0200401 return true;
402
403 spin_unlock(&fs_info->super_lock);
404 return false;
405}
406
407void btrfs_exclop_start_unlock(struct btrfs_fs_info *fs_info)
408{
409 spin_unlock(&fs_info->super_lock);
410}
411
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500412void btrfs_exclop_finish(struct btrfs_fs_info *fs_info)
413{
David Sterba0d7ed322021-05-14 17:42:30 +0200414 spin_lock(&fs_info->super_lock);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500415 WRITE_ONCE(fs_info->exclusive_operation, BTRFS_EXCLOP_NONE);
David Sterba0d7ed322021-05-14 17:42:30 +0200416 spin_unlock(&fs_info->super_lock);
Goldwyn Rodrigues66a28232020-08-25 10:02:33 -0500417 sysfs_notify(&fs_info->fs_devices->fsid_kobj, NULL, "exclusive_operation");
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500418}
419
Nikolay Borisovefc0e692021-11-25 11:14:41 +0200420void btrfs_exclop_balance(struct btrfs_fs_info *fs_info,
421 enum btrfs_exclusive_operation op)
422{
423 switch (op) {
424 case BTRFS_EXCLOP_BALANCE_PAUSED:
425 spin_lock(&fs_info->super_lock);
426 ASSERT(fs_info->exclusive_operation == BTRFS_EXCLOP_BALANCE ||
427 fs_info->exclusive_operation == BTRFS_EXCLOP_DEV_ADD);
428 fs_info->exclusive_operation = BTRFS_EXCLOP_BALANCE_PAUSED;
429 spin_unlock(&fs_info->super_lock);
430 break;
431 case BTRFS_EXCLOP_BALANCE:
432 spin_lock(&fs_info->super_lock);
433 ASSERT(fs_info->exclusive_operation == BTRFS_EXCLOP_BALANCE_PAUSED);
434 fs_info->exclusive_operation = BTRFS_EXCLOP_BALANCE;
435 spin_unlock(&fs_info->super_lock);
436 break;
437 default:
438 btrfs_warn(fs_info,
439 "invalid exclop balance operation %d requested", op);
440 }
441}
442
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200443static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
444{
Al Viro496ad9a2013-01-23 17:07:38 -0500445 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200446
447 return put_user(inode->i_generation, arg);
448}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400449
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -0300450static noinline int btrfs_ioctl_fitrim(struct btrfs_fs_info *fs_info,
451 void __user *arg)
Li Dongyangf7039b12011-03-24 10:24:28 +0000452{
Li Dongyangf7039b12011-03-24 10:24:28 +0000453 struct btrfs_device *device;
454 struct request_queue *q;
455 struct fstrim_range range;
456 u64 minlen = ULLONG_MAX;
457 u64 num_devices = 0;
458 int ret;
459
460 if (!capable(CAP_SYS_ADMIN))
461 return -EPERM;
462
Filipe Mananaf35f06c2019-03-26 10:49:56 +0000463 /*
Naohiro Aota1cb3dc32021-02-04 19:21:46 +0900464 * btrfs_trim_block_group() depends on space cache, which is not
465 * available in zoned filesystem. So, disallow fitrim on a zoned
466 * filesystem for now.
467 */
468 if (btrfs_is_zoned(fs_info))
469 return -EOPNOTSUPP;
470
471 /*
Filipe Mananaf35f06c2019-03-26 10:49:56 +0000472 * If the fs is mounted with nologreplay, which requires it to be
473 * mounted in RO mode as well, we can not allow discard on free space
474 * inside block groups, because log trees refer to extents that are not
475 * pinned in a block group's free space cache (pinning the extents is
476 * precisely the first phase of replaying a log tree).
477 */
478 if (btrfs_test_opt(fs_info, NOLOGREPLAY))
479 return -EROFS;
480
Xiao Guangrong1f781602011-04-20 10:09:16 +0000481 rcu_read_lock();
482 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
483 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000484 if (!device->bdev)
485 continue;
486 q = bdev_get_queue(device->bdev);
487 if (blk_queue_discard(q)) {
488 num_devices++;
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100489 minlen = min_t(u64, q->limits.discard_granularity,
Li Dongyangf7039b12011-03-24 10:24:28 +0000490 minlen);
491 }
492 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000493 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200494
Li Dongyangf7039b12011-03-24 10:24:28 +0000495 if (!num_devices)
496 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000497 if (copy_from_user(&range, arg, sizeof(range)))
498 return -EFAULT;
Qu Wenruo6ba9fc82018-09-07 14:16:24 +0800499
500 /*
501 * NOTE: Don't truncate the range using super->total_bytes. Bytenr of
502 * block group is in the logical address space, which can be any
503 * sectorsize aligned bytenr in the range [0, U64_MAX].
504 */
505 if (range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200506 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000507
508 range.minlen = max(range.minlen, minlen);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400509 ret = btrfs_trim_fs(fs_info, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000510 if (ret < 0)
511 return ret;
512
513 if (copy_to_user(arg, &range, sizeof(range)))
514 return -EFAULT;
515
516 return 0;
517}
518
David Sterbae1f60a62019-10-01 19:57:39 +0200519int __pure btrfs_is_empty_uuid(u8 *uuid)
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200520{
Chris Mason46e0f662013-11-15 12:14:55 +0100521 int i;
522
523 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
524 if (uuid[i])
525 return 0;
526 }
527 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200528}
529
Christian Brauner4d4340c2021-07-27 12:48:52 +0200530static noinline int create_subvol(struct user_namespace *mnt_userns,
531 struct inode *dir, struct dentry *dentry,
David Sterba52f75f42017-02-14 18:33:53 +0100532 const char *name, int namelen,
Miao Xie8696c532013-02-07 06:02:44 +0000533 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400534{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400535 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400536 struct btrfs_trans_handle *trans;
537 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100538 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400539 struct btrfs_inode_item *inode_item;
540 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000541 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400542 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000543 struct btrfs_block_rsv block_rsv;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700544 struct timespec64 cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900545 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400546 int ret;
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800547 dev_t anon_dev = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400548 u64 objectid;
Chris Mason3de45862008-11-17 21:02:50 -0500549 u64 index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400550
David Sterba49a3c4d2016-03-24 17:49:22 +0100551 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
552 if (!root_item)
553 return -ENOMEM;
554
Nikolay Borisov543068a2020-12-07 17:32:33 +0200555 ret = btrfs_get_free_objectid(fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400556 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100557 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000558
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800559 ret = get_anon_bdev(&anon_dev);
560 if (ret < 0)
561 goto fail_free;
562
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800563 /*
564 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400565 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800566 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100567 if (btrfs_qgroup_level(objectid)) {
568 ret = -ENOSPC;
569 goto fail_free;
570 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800571
Miao Xied5c12072013-02-28 10:04:33 +0000572 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400573 /*
Miao Xied5c12072013-02-28 10:04:33 +0000574 * The same as the snapshot creation, please see the comment
575 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400576 */
Gu JinXiangc4c129d2018-05-30 11:00:38 +0800577 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 8, false);
Miao Xied5c12072013-02-28 10:04:33 +0000578 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100579 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400580
Miao Xied5c12072013-02-28 10:04:33 +0000581 trans = btrfs_start_transaction(root, 0);
582 if (IS_ERR(trans)) {
583 ret = PTR_ERR(trans);
Qu Wenruoe85fde52020-07-24 14:46:10 +0800584 btrfs_subvolume_release_metadata(root, &block_rsv);
David Sterba49a3c4d2016-03-24 17:49:22 +0100585 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000586 }
587 trans->block_rsv = &block_rsv;
588 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400589
Lu Fengqia93774222018-07-18 14:45:41 +0800590 ret = btrfs_qgroup_inherit(trans, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200591 if (ret)
592 goto fail;
593
Josef Bacik9631e4c2020-08-20 11:46:03 -0400594 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0,
595 BTRFS_NESTING_NORMAL);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400596 if (IS_ERR(leaf)) {
597 ret = PTR_ERR(leaf);
598 goto fail;
599 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400600
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400601 btrfs_mark_buffer_dirty(leaf);
602
David Sterba49a3c4d2016-03-24 17:49:22 +0100603 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800604 btrfs_set_stack_inode_generation(inode_item, 1);
605 btrfs_set_stack_inode_size(inode_item, 3);
606 btrfs_set_stack_inode_nlink(inode_item, 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400607 btrfs_set_stack_inode_nbytes(inode_item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400608 fs_info->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800609 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400610
David Sterba49a3c4d2016-03-24 17:49:22 +0100611 btrfs_set_root_flags(root_item, 0);
612 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800613 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000614
David Sterba49a3c4d2016-03-24 17:49:22 +0100615 btrfs_set_root_bytenr(root_item, leaf->start);
616 btrfs_set_root_generation(root_item, trans->transid);
617 btrfs_set_root_level(root_item, 0);
618 btrfs_set_root_refs(root_item, 1);
619 btrfs_set_root_used(root_item, leaf->len);
620 btrfs_set_root_last_snapshot(root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400621
David Sterba49a3c4d2016-03-24 17:49:22 +0100622 btrfs_set_root_generation_v2(root_item,
623 btrfs_root_generation(root_item));
Andy Shevchenko807fc792020-02-24 17:37:51 +0200624 generate_random_guid(root_item->uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100625 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
626 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
627 root_item->ctime = root_item->otime;
628 btrfs_set_root_ctransid(root_item, trans->transid);
629 btrfs_set_root_otransid(root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400630
Chris Mason925baed2008-06-25 16:01:30 -0400631 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400632
Nikolay Borisov69948022020-12-07 17:32:37 +0200633 btrfs_set_root_dirid(root_item, BTRFS_FIRST_FREE_OBJECTID);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400634
635 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400636 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200637 key.type = BTRFS_ROOT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400638 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100639 root_item);
Filipe Manana67addf22021-04-20 10:55:12 +0100640 if (ret) {
641 /*
642 * Since we don't abort the transaction in this case, free the
643 * tree block so that we don't leak space and leave the
644 * filesystem in an inconsistent state (an extent item in the
Filipe Manana7a1636082021-12-13 08:45:12 +0000645 * extent tree with a backreference for a root that does not
Filipe Manana212a58f2021-12-13 08:45:13 +0000646 * exists).
Filipe Manana67addf22021-04-20 10:55:12 +0100647 */
Filipe Manana212a58f2021-12-13 08:45:13 +0000648 btrfs_tree_lock(leaf);
649 btrfs_clean_tree_block(leaf);
650 btrfs_tree_unlock(leaf);
Filipe Manana7a1636082021-12-13 08:45:12 +0000651 btrfs_free_tree_block(trans, objectid, leaf, 0, 1);
Filipe Manana67addf22021-04-20 10:55:12 +0100652 free_extent_buffer(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400653 goto fail;
Filipe Manana67addf22021-04-20 10:55:12 +0100654 }
655
656 free_extent_buffer(leaf);
657 leaf = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400658
Yan, Zheng76dda932009-09-21 16:00:26 -0400659 key.offset = (u64)-1;
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800660 new_root = btrfs_get_new_fs_root(fs_info, objectid, anon_dev);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100661 if (IS_ERR(new_root)) {
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800662 free_anon_bdev(anon_dev);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100663 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400664 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100665 goto fail;
666 }
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800667 /* Freeing will be done in btrfs_put_root() of new_root */
668 anon_dev = 0;
Yan, Zheng76dda932009-09-21 16:00:26 -0400669
Josef Bacik221581e2021-03-12 15:25:06 -0500670 ret = btrfs_record_root_in_trans(trans, new_root);
671 if (ret) {
672 btrfs_put_root(new_root);
673 btrfs_abort_transaction(trans, ret);
674 goto fail;
675 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400676
Christian Brauner4d4340c2021-07-27 12:48:52 +0200677 ret = btrfs_create_subvol_root(trans, new_root, root, mnt_userns);
Josef Bacik00246522020-01-24 09:33:01 -0500678 btrfs_put_root(new_root);
Mark Fashehce598972011-07-26 11:32:23 -0700679 if (ret) {
680 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400681 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700682 goto fail;
683 }
684
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400685 /*
686 * insert the directory item
687 */
Nikolay Borisov877574e2017-02-20 13:50:33 +0200688 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100689 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400690 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100691 goto fail;
692 }
Chris Mason3de45862008-11-17 21:02:50 -0500693
Lu Fengqi684572d2018-08-04 21:10:57 +0800694 ret = btrfs_insert_dir_item(trans, name, namelen, BTRFS_I(dir), &key,
Chris Mason3de45862008-11-17 21:02:50 -0500695 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100696 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400697 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400698 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100699 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500700
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200701 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +0200702 ret = btrfs_update_inode(trans, root, BTRFS_I(dir));
Josef Bacikc7e54b52019-12-06 09:37:15 -0500703 if (ret) {
704 btrfs_abort_transaction(trans, ret);
705 goto fail;
706 }
Yan Zheng52c26172009-01-05 15:43:43 -0500707
Lu Fengqi6025c192018-08-01 11:32:29 +0800708 ret = btrfs_add_root_ref(trans, objectid, root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200709 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
Josef Bacikc7e54b52019-12-06 09:37:15 -0500710 if (ret) {
711 btrfs_abort_transaction(trans, ret);
712 goto fail;
713 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500714
Lu Fengqicdb345a2018-05-29 15:01:53 +0800715 ret = btrfs_uuid_tree_add(trans, root_item->uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400716 BTRFS_UUID_KEY_SUBVOL, objectid);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200717 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400718 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200719
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400720fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100721 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000722 trans->block_rsv = NULL;
723 trans->bytes_reserved = 0;
Qu Wenruoe85fde52020-07-24 14:46:10 +0800724 btrfs_subvolume_release_metadata(root, &block_rsv);
Liu Bode6e8202014-01-09 14:57:06 +0800725
Filipe Manana1b58ae02021-12-13 08:45:14 +0000726 if (ret)
727 btrfs_end_transaction(trans);
728 else
729 ret = btrfs_commit_transaction(trans);
Chris Mason1a65e242013-02-06 12:06:02 -0500730
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900731 if (!ret) {
732 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800733 if (IS_ERR(inode))
734 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900735 d_instantiate(dentry, inode);
736 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400737 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100738
739fail_free:
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800740 if (anon_dev)
741 free_anon_bdev(anon_dev);
David Sterba49a3c4d2016-03-24 17:49:22 +0100742 kfree(root_item);
743 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400744}
745
Miao Xiee9662f72013-02-28 10:01:15 +0000746static int create_snapshot(struct btrfs_root *root, struct inode *dir,
Nikolay Borisov9babda92020-03-13 17:23:20 +0200747 struct dentry *dentry, bool readonly,
Miao Xiee9662f72013-02-28 10:01:15 +0000748 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400749{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400750 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000751 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400752 struct btrfs_pending_snapshot *pending_snapshot;
753 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000754 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400755
Qu Wenruo92a7cc42020-05-15 14:01:40 +0800756 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400757 return -EINVAL;
758
Omar Sandovaleede2bf2016-11-03 10:28:12 -0700759 if (atomic_read(&root->nr_swapfiles)) {
760 btrfs_warn(fs_info,
761 "cannot snapshot subvolume with active swapfile");
762 return -ETXTBSY;
763 }
764
David Sterba23269bf2017-02-13 11:03:44 +0100765 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100766 if (!pending_snapshot)
767 return -ENOMEM;
768
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800769 ret = get_anon_bdev(&pending_snapshot->anon_dev);
770 if (ret < 0)
771 goto free_pending;
David Sterbab0c0ea62015-11-10 18:54:00 +0100772 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100773 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100774 pending_snapshot->path = btrfs_alloc_path();
775 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100776 ret = -ENOMEM;
777 goto free_pending;
778 }
779
Miao Xie66d8f3d2012-09-06 04:02:28 -0600780 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
781 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000782 /*
783 * 1 - parent dir inode
784 * 2 - dir entries
785 * 1 - root item
786 * 2 - root ref/backref
787 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200788 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000789 */
790 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200791 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400792 false);
Miao Xied5c12072013-02-28 10:04:33 +0000793 if (ret)
Robbie Koc11fbb62020-05-14 17:19:18 +0800794 goto free_pending;
Miao Xied5c12072013-02-28 10:04:33 +0000795
Yan, Zhenga22285a2010-05-16 10:48:46 -0400796 pending_snapshot->dentry = dentry;
797 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800798 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000799 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000800 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400801
Miao Xied5c12072013-02-28 10:04:33 +0000802 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400803 if (IS_ERR(trans)) {
804 ret = PTR_ERR(trans);
805 goto fail;
806 }
807
Filipe Manana28b21c52022-01-21 15:44:39 +0000808 trans->pending_snapshot = pending_snapshot;
Nikolay Borisov9babda92020-03-13 17:23:20 +0200809
810 ret = btrfs_commit_transaction(trans);
Miao Xieaec80302013-03-04 09:44:29 +0000811 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400812 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400813
814 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400815 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000816 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400817
Chris Masond3797302014-10-15 13:50:56 -0700818 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
819 if (ret)
820 goto fail;
821
David Howells2b0143b2015-03-17 22:25:59 +0000822 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000823 if (IS_ERR(inode)) {
824 ret = PTR_ERR(inode);
825 goto fail;
826 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900827
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000828 d_instantiate(dentry, inode);
829 ret = 0;
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800830 pending_snapshot->anon_dev = 0;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000831fail:
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800832 /* Prevent double freeing of anon_dev */
833 if (ret && pending_snapshot->snap)
834 pending_snapshot->snap->anon_dev = 0;
Josef Bacik00246522020-01-24 09:33:01 -0500835 btrfs_put_root(pending_snapshot->snap);
Qu Wenruoe85fde52020-07-24 14:46:10 +0800836 btrfs_subvolume_release_metadata(root, &pending_snapshot->block_rsv);
David Sterbab0c0ea62015-11-10 18:54:00 +0100837free_pending:
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800838 if (pending_snapshot->anon_dev)
839 free_anon_bdev(pending_snapshot->anon_dev);
David Sterbab0c0ea62015-11-10 18:54:00 +0100840 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100841 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100842 kfree(pending_snapshot);
843
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400844 return ret;
845}
846
Sage Weil4260f7c2010-10-29 15:46:43 -0400847/* copy of may_delete in fs/namei.c()
848 * Check whether we can remove a link victim from directory dir, check
849 * whether the type of victim is right.
850 * 1. We can't do it if dir is read-only (done in permission())
851 * 2. We should have write and exec permissions on dir
852 * 3. We can't remove anything from append-only dir
853 * 4. We can't do anything with immutable dir (done in permission())
854 * 5. If the sticky bit on dir is set we should either
855 * a. be owner of dir, or
856 * b. be owner of victim, or
857 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400858 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400859 * links pointing to it.
860 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
861 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
862 * 9. We can't remove a root or mountpoint.
863 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
864 * nfs_async_unlink().
865 */
866
Christian Braunerc4ed5332021-07-27 12:48:53 +0200867static int btrfs_may_delete(struct user_namespace *mnt_userns,
868 struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400869{
870 int error;
871
David Howells2b0143b2015-03-17 22:25:59 +0000872 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400873 return -ENOENT;
874
David Howells2b0143b2015-03-17 22:25:59 +0000875 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400876 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400877
Christian Braunerc4ed5332021-07-27 12:48:53 +0200878 error = inode_permission(mnt_userns, dir, MAY_WRITE | MAY_EXEC);
Sage Weil4260f7c2010-10-29 15:46:43 -0400879 if (error)
880 return error;
881 if (IS_APPEND(dir))
882 return -EPERM;
Christian Braunerc4ed5332021-07-27 12:48:53 +0200883 if (check_sticky(mnt_userns, dir, d_inode(victim)) ||
Christian Braunerba73d982021-01-21 14:19:31 +0100884 IS_APPEND(d_inode(victim)) || IS_IMMUTABLE(d_inode(victim)) ||
885 IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400886 return -EPERM;
887 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000888 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400889 return -ENOTDIR;
890 if (IS_ROOT(victim))
891 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000892 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400893 return -EISDIR;
894 if (IS_DEADDIR(dir))
895 return -ENOENT;
896 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
897 return -EBUSY;
898 return 0;
899}
900
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400901/* copy of may_create in fs/namei.c() */
Christian Brauner4d4340c2021-07-27 12:48:52 +0200902static inline int btrfs_may_create(struct user_namespace *mnt_userns,
903 struct inode *dir, struct dentry *child)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400904{
David Howells2b0143b2015-03-17 22:25:59 +0000905 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400906 return -EEXIST;
907 if (IS_DEADDIR(dir))
908 return -ENOENT;
Christian Brauner4d4340c2021-07-27 12:48:52 +0200909 if (!fsuidgid_has_mapping(dir->i_sb, mnt_userns))
Christian Brauner5474bf42021-07-27 12:48:51 +0200910 return -EOVERFLOW;
Christian Brauner4d4340c2021-07-27 12:48:52 +0200911 return inode_permission(mnt_userns, dir, MAY_WRITE | MAY_EXEC);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400912}
913
914/*
915 * Create a new subvolume below @parent. This is largely modeled after
916 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
917 * inside this filesystem so it's quite a bit simpler.
918 */
Al Viro92872092016-11-20 19:34:31 -0500919static noinline int btrfs_mksubvol(const struct path *parent,
Christian Brauner4d4340c2021-07-27 12:48:52 +0200920 struct user_namespace *mnt_userns,
David Sterba52f75f42017-02-14 18:33:53 +0100921 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400922 struct btrfs_root *snap_src,
Nikolay Borisov9babda92020-03-13 17:23:20 +0200923 bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000924 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400925{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400926 struct inode *dir = d_inode(parent->dentry);
927 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400928 struct dentry *dentry;
929 int error;
930
Al Viro00235412016-05-26 00:05:12 -0400931 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
932 if (error == -EINTR)
933 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400934
Christian Brauner4d4340c2021-07-27 12:48:52 +0200935 dentry = lookup_one(mnt_userns, name, parent->dentry, namelen);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400936 error = PTR_ERR(dentry);
937 if (IS_ERR(dentry))
938 goto out_unlock;
939
Christian Brauner4d4340c2021-07-27 12:48:52 +0200940 error = btrfs_may_create(mnt_userns, dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400941 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600942 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400943
Chris Mason9c520572012-12-17 14:26:57 -0500944 /*
945 * even if this name doesn't exist, we may get hash collisions.
946 * check for them now when we can safely fail
947 */
948 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
949 dir->i_ino, name,
950 namelen);
951 if (error)
952 goto out_dput;
953
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400954 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400955
956 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
957 goto out_up_read;
958
Nikolay Borisov9babda92020-03-13 17:23:20 +0200959 if (snap_src)
960 error = create_snapshot(snap_src, dir, dentry, readonly, inherit);
961 else
Christian Brauner4d4340c2021-07-27 12:48:52 +0200962 error = create_subvol(mnt_userns, dir, dentry, name, namelen, inherit);
Nikolay Borisov9babda92020-03-13 17:23:20 +0200963
Yan, Zheng76dda932009-09-21 16:00:26 -0400964 if (!error)
965 fsnotify_mkdir(dir, dentry);
966out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400967 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400968out_dput:
969 dput(dentry);
970out_unlock:
Josef Bacik64708532021-02-10 17:14:34 -0500971 btrfs_inode_unlock(dir, 0);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400972 return error;
973}
974
Robbie Koc11fbb62020-05-14 17:19:18 +0800975static noinline int btrfs_mksnapshot(const struct path *parent,
Christian Brauner4d4340c2021-07-27 12:48:52 +0200976 struct user_namespace *mnt_userns,
Robbie Koc11fbb62020-05-14 17:19:18 +0800977 const char *name, int namelen,
978 struct btrfs_root *root,
979 bool readonly,
980 struct btrfs_qgroup_inherit *inherit)
981{
982 int ret;
983 bool snapshot_force_cow = false;
984
985 /*
986 * Force new buffered writes to reserve space even when NOCOW is
987 * possible. This is to avoid later writeback (running dealloc) to
988 * fallback to COW mode and unexpectedly fail with ENOSPC.
989 */
990 btrfs_drew_read_lock(&root->snapshot_lock);
991
Filipe Mananaf9baa502021-04-22 12:08:05 +0100992 ret = btrfs_start_delalloc_snapshot(root, false);
Robbie Koc11fbb62020-05-14 17:19:18 +0800993 if (ret)
994 goto out;
995
996 /*
997 * All previous writes have started writeback in NOCOW mode, so now
998 * we force future writes to fallback to COW mode during snapshot
999 * creation.
1000 */
1001 atomic_inc(&root->snapshot_force_cow);
1002 snapshot_force_cow = true;
1003
1004 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
1005
Christian Brauner4d4340c2021-07-27 12:48:52 +02001006 ret = btrfs_mksubvol(parent, mnt_userns, name, namelen,
Robbie Koc11fbb62020-05-14 17:19:18 +08001007 root, readonly, inherit);
1008out:
1009 if (snapshot_force_cow)
1010 atomic_dec(&root->snapshot_force_cow);
1011 btrfs_drew_read_unlock(&root->snapshot_lock);
1012 return ret;
1013}
1014
Qu Wenruoe9eec722021-08-06 16:12:38 +08001015static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start,
1016 bool locked)
Liu Bo17ce6ef2012-03-29 09:57:45 -04001017{
1018 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -05001019 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +08001020 struct extent_map *em;
Qu Wenruo76068ca2021-08-06 16:12:34 +08001021 const u32 sectorsize = BTRFS_I(inode)->root->fs_info->sectorsize;
Chris Mason940100a2010-03-10 10:52:59 -05001022
1023 /*
1024 * hopefully we have this extent in the tree already, try without
1025 * the full extent lock
1026 */
1027 read_lock(&em_tree->lock);
Qu Wenruo76068ca2021-08-06 16:12:34 +08001028 em = lookup_extent_mapping(em_tree, start, sectorsize);
Chris Mason940100a2010-03-10 10:52:59 -05001029 read_unlock(&em_tree->lock);
1030
1031 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +00001032 struct extent_state *cached = NULL;
Qu Wenruo76068ca2021-08-06 16:12:34 +08001033 u64 end = start + sectorsize - 1;
Filipe Manana308d9802014-03-11 13:56:15 +00001034
Chris Mason940100a2010-03-10 10:52:59 -05001035 /* get the big lock and read metadata off disk */
Qu Wenruoe9eec722021-08-06 16:12:38 +08001036 if (!locked)
1037 lock_extent_bits(io_tree, start, end, &cached);
Qu Wenruo76068ca2021-08-06 16:12:34 +08001038 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, sectorsize);
Qu Wenruoe9eec722021-08-06 16:12:38 +08001039 if (!locked)
1040 unlock_extent_cached(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -05001041
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +00001042 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001043 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001044 }
1045
Li Zefan6c282eb2012-06-11 16:03:35 +08001046 return em;
1047}
1048
Qu Wenruoe9eec722021-08-06 16:12:38 +08001049static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em,
1050 bool locked)
Li Zefan6c282eb2012-06-11 16:03:35 +08001051{
1052 struct extent_map *next;
1053 bool ret = true;
1054
1055 /* this is the last extent */
1056 if (em->start + em->len >= i_size_read(inode))
1057 return false;
1058
Qu Wenruoe9eec722021-08-06 16:12:38 +08001059 next = defrag_lookup_extent(inode, em->start + em->len, locked);
Chris Masone9512d72014-08-26 13:55:54 -07001060 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1061 ret = false;
1062 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001063 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001064 ret = false;
1065
1066 free_extent_map(next);
1067 return ret;
1068}
1069
Chris Mason4cb53002011-05-24 15:35:30 -04001070/*
Qu Wenruo5767b502021-08-06 16:12:35 +08001071 * Prepare one page to be defragged.
Chris Mason4cb53002011-05-24 15:35:30 -04001072 *
Qu Wenruo5767b502021-08-06 16:12:35 +08001073 * This will ensure:
Chris Mason4cb53002011-05-24 15:35:30 -04001074 *
Qu Wenruo5767b502021-08-06 16:12:35 +08001075 * - Returned page is locked and has been set up properly.
1076 * - No ordered extent exists in the page.
1077 * - The page is uptodate.
1078 *
1079 * NOTE: Caller should also wait for page writeback after the cluster is
1080 * prepared, here we don't do writeback wait for each page.
Chris Mason4cb53002011-05-24 15:35:30 -04001081 */
Qu Wenruo5767b502021-08-06 16:12:35 +08001082static struct page *defrag_prepare_one_page(struct btrfs_inode *inode,
1083 pgoff_t index)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001084{
Qu Wenruo5767b502021-08-06 16:12:35 +08001085 struct address_space *mapping = inode->vfs_inode.i_mapping;
1086 gfp_t mask = btrfs_alloc_write_mask(mapping);
1087 u64 page_start = (u64)index << PAGE_SHIFT;
1088 u64 page_end = page_start + PAGE_SIZE - 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001089 struct extent_state *cached_state = NULL;
Qu Wenruo5767b502021-08-06 16:12:35 +08001090 struct page *page;
1091 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001092
Miao Xie600a45e2012-02-16 15:01:24 +08001093again:
Qu Wenruo5767b502021-08-06 16:12:35 +08001094 page = find_or_create_page(mapping, index, mask);
1095 if (!page)
1096 return ERR_PTR(-ENOMEM);
1097
Omar Sandoval24bcb452021-10-19 20:35:01 -07001098 /*
1099 * Since we can defragment files opened read-only, we can encounter
1100 * transparent huge pages here (see CONFIG_READ_ONLY_THP_FOR_FS). We
1101 * can't do I/O using huge pages yet, so return an error for now.
1102 * Filesystem transparent huge pages are typically only used for
1103 * executables that explicitly enable them, so this isn't very
1104 * restrictive.
1105 */
1106 if (PageCompound(page)) {
1107 unlock_page(page);
1108 put_page(page);
1109 return ERR_PTR(-ETXTBSY);
1110 }
1111
Qu Wenruo5767b502021-08-06 16:12:35 +08001112 ret = set_page_extent_mapped(page);
1113 if (ret < 0) {
1114 unlock_page(page);
1115 put_page(page);
1116 return ERR_PTR(ret);
1117 }
1118
1119 /* Wait for any existing ordered extent in the range */
1120 while (1) {
1121 struct btrfs_ordered_extent *ordered;
1122
1123 lock_extent_bits(&inode->io_tree, page_start, page_end, &cached_state);
1124 ordered = btrfs_lookup_ordered_range(inode, page_start, PAGE_SIZE);
1125 unlock_extent_cached(&inode->io_tree, page_start, page_end,
1126 &cached_state);
1127 if (!ordered)
Chris Mason4cb53002011-05-24 15:35:30 -04001128 break;
1129
Qu Wenruo5767b502021-08-06 16:12:35 +08001130 unlock_page(page);
1131 btrfs_start_ordered_extent(ordered, 1);
1132 btrfs_put_ordered_extent(ordered);
1133 lock_page(page);
1134 /*
1135 * We unlocked the page above, so we need check if it was
1136 * released or not.
1137 */
1138 if (page->mapping != mapping || !PagePrivate(page)) {
Miao Xie600a45e2012-02-16 15:01:24 +08001139 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001140 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001141 goto again;
1142 }
Chris Mason4cb53002011-05-24 15:35:30 -04001143 }
Chris Mason4cb53002011-05-24 15:35:30 -04001144
1145 /*
Qu Wenruo5767b502021-08-06 16:12:35 +08001146 * Now the page range has no ordered extent any more. Read the page to
1147 * make it uptodate.
Chris Mason4cb53002011-05-24 15:35:30 -04001148 */
Qu Wenruo5767b502021-08-06 16:12:35 +08001149 if (!PageUptodate(page)) {
1150 btrfs_readpage(NULL, page);
1151 lock_page(page);
1152 if (page->mapping != mapping || !PagePrivate(page)) {
1153 unlock_page(page);
1154 put_page(page);
1155 goto again;
Filipe Manana7f458a32020-11-04 11:07:33 +00001156 }
Qu Wenruo5767b502021-08-06 16:12:35 +08001157 if (!PageUptodate(page)) {
1158 unlock_page(page);
1159 put_page(page);
1160 return ERR_PTR(-EIO);
Filipe Manana7f458a32020-11-04 11:07:33 +00001161 }
Filipe Manana7f458a32020-11-04 11:07:33 +00001162 }
Qu Wenruo5767b502021-08-06 16:12:35 +08001163 return page;
Chris Mason4cb53002011-05-24 15:35:30 -04001164}
1165
Qu Wenruoeb793cf2021-08-06 16:12:36 +08001166struct defrag_target_range {
1167 struct list_head list;
1168 u64 start;
1169 u64 len;
1170};
1171
1172/*
1173 * Collect all valid target extents.
1174 *
1175 * @start: file offset to lookup
1176 * @len: length to lookup
1177 * @extent_thresh: file extent size threshold, any extent size >= this value
1178 * will be ignored
1179 * @newer_than: only defrag extents newer than this value
1180 * @do_compress: whether the defrag is doing compression
1181 * if true, @extent_thresh will be ignored and all regular
1182 * file extents meeting @newer_than will be targets.
Qu Wenruoe9eec722021-08-06 16:12:38 +08001183 * @locked: if the range has already held extent lock
Qu Wenruoeb793cf2021-08-06 16:12:36 +08001184 * @target_list: list of targets file extents
1185 */
1186static int defrag_collect_targets(struct btrfs_inode *inode,
1187 u64 start, u64 len, u32 extent_thresh,
1188 u64 newer_than, bool do_compress,
Qu Wenruoe9eec722021-08-06 16:12:38 +08001189 bool locked, struct list_head *target_list)
Qu Wenruoeb793cf2021-08-06 16:12:36 +08001190{
1191 u64 cur = start;
1192 int ret = 0;
1193
1194 while (cur < start + len) {
1195 struct extent_map *em;
1196 struct defrag_target_range *new;
1197 bool next_mergeable = true;
1198 u64 range_len;
1199
Qu Wenruoe9eec722021-08-06 16:12:38 +08001200 em = defrag_lookup_extent(&inode->vfs_inode, cur, locked);
Qu Wenruoeb793cf2021-08-06 16:12:36 +08001201 if (!em)
1202 break;
1203
1204 /* Skip hole/inline/preallocated extents */
1205 if (em->block_start >= EXTENT_MAP_LAST_BYTE ||
1206 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
1207 goto next;
1208
1209 /* Skip older extent */
1210 if (em->generation < newer_than)
1211 goto next;
1212
Qu Wenruo0d1ffa22022-02-08 14:54:05 +08001213 /* This em is under writeback, no need to defrag */
1214 if (em->generation == (u64)-1)
1215 goto next;
1216
Qu Wenruoeb793cf2021-08-06 16:12:36 +08001217 /*
Filipe Manana0cb59502022-01-20 14:27:56 +00001218 * Our start offset might be in the middle of an existing extent
1219 * map, so take that into account.
1220 */
1221 range_len = em->len - (cur - em->start);
1222 /*
1223 * If this range of the extent map is already flagged for delalloc,
1224 * skip it, because:
1225 *
1226 * 1) We could deadlock later, when trying to reserve space for
1227 * delalloc, because in case we can't immediately reserve space
1228 * the flusher can start delalloc and wait for the respective
1229 * ordered extents to complete. The deadlock would happen
1230 * because we do the space reservation while holding the range
1231 * locked, and starting writeback, or finishing an ordered
1232 * extent, requires locking the range;
1233 *
1234 * 2) If there's delalloc there, it means there's dirty pages for
1235 * which writeback has not started yet (we clean the delalloc
1236 * flag when starting writeback and after creating an ordered
1237 * extent). If we mark pages in an adjacent range for defrag,
1238 * then we will have a larger contiguous range for delalloc,
1239 * very likely resulting in a larger extent after writeback is
1240 * triggered (except in a case of free space fragmentation).
1241 */
1242 if (test_range_bit(&inode->io_tree, cur, cur + range_len - 1,
1243 EXTENT_DELALLOC, 0, NULL))
1244 goto next;
1245
1246 /*
Qu Wenruoeb793cf2021-08-06 16:12:36 +08001247 * For do_compress case, we want to compress all valid file
1248 * extents, thus no @extent_thresh or mergeable check.
1249 */
1250 if (do_compress)
1251 goto add;
1252
1253 /* Skip too large extent */
Filipe Manana0cb59502022-01-20 14:27:56 +00001254 if (range_len >= extent_thresh)
Qu Wenruoeb793cf2021-08-06 16:12:36 +08001255 goto next;
1256
Qu Wenruoe9eec722021-08-06 16:12:38 +08001257 next_mergeable = defrag_check_next_extent(&inode->vfs_inode, em,
1258 locked);
Qu Wenruoeb793cf2021-08-06 16:12:36 +08001259 if (!next_mergeable) {
1260 struct defrag_target_range *last;
1261
1262 /* Empty target list, no way to merge with last entry */
1263 if (list_empty(target_list))
1264 goto next;
1265 last = list_entry(target_list->prev,
1266 struct defrag_target_range, list);
1267 /* Not mergeable with last entry */
1268 if (last->start + last->len != cur)
1269 goto next;
1270
1271 /* Mergeable, fall through to add it to @target_list. */
1272 }
1273
1274add:
1275 range_len = min(extent_map_end(em), start + len) - cur;
1276 /*
1277 * This one is a good target, check if it can be merged into
1278 * last range of the target list.
1279 */
1280 if (!list_empty(target_list)) {
1281 struct defrag_target_range *last;
1282
1283 last = list_entry(target_list->prev,
1284 struct defrag_target_range, list);
1285 ASSERT(last->start + last->len <= cur);
1286 if (last->start + last->len == cur) {
1287 /* Mergeable, enlarge the last entry */
1288 last->len += range_len;
1289 goto next;
1290 }
1291 /* Fall through to allocate a new entry */
1292 }
1293
1294 /* Allocate new defrag_target_range */
1295 new = kmalloc(sizeof(*new), GFP_NOFS);
1296 if (!new) {
1297 free_extent_map(em);
1298 ret = -ENOMEM;
1299 break;
1300 }
1301 new->start = cur;
1302 new->len = range_len;
1303 list_add_tail(&new->list, target_list);
1304
1305next:
1306 cur = extent_map_end(em);
1307 free_extent_map(em);
1308 }
1309 if (ret < 0) {
1310 struct defrag_target_range *entry;
1311 struct defrag_target_range *tmp;
1312
1313 list_for_each_entry_safe(entry, tmp, target_list, list) {
1314 list_del_init(&entry->list);
1315 kfree(entry);
1316 }
1317 }
1318 return ret;
1319}
1320
Qu Wenruo22b398e2021-08-06 16:12:37 +08001321#define CLUSTER_SIZE (SZ_256K)
1322
1323/*
1324 * Defrag one contiguous target range.
1325 *
1326 * @inode: target inode
1327 * @target: target range to defrag
1328 * @pages: locked pages covering the defrag range
1329 * @nr_pages: number of locked pages
1330 *
1331 * Caller should ensure:
1332 *
1333 * - Pages are prepared
1334 * Pages should be locked, no ordered extent in the pages range,
1335 * no writeback.
1336 *
1337 * - Extent bits are locked
1338 */
1339static int defrag_one_locked_target(struct btrfs_inode *inode,
1340 struct defrag_target_range *target,
1341 struct page **pages, int nr_pages,
1342 struct extent_state **cached_state)
1343{
1344 struct btrfs_fs_info *fs_info = inode->root->fs_info;
1345 struct extent_changeset *data_reserved = NULL;
1346 const u64 start = target->start;
1347 const u64 len = target->len;
1348 unsigned long last_index = (start + len - 1) >> PAGE_SHIFT;
1349 unsigned long start_index = start >> PAGE_SHIFT;
1350 unsigned long first_index = page_index(pages[0]);
1351 int ret = 0;
1352 int i;
1353
1354 ASSERT(last_index - first_index + 1 <= nr_pages);
1355
1356 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, start, len);
1357 if (ret < 0)
1358 return ret;
1359 clear_extent_bit(&inode->io_tree, start, start + len - 1,
1360 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
1361 EXTENT_DEFRAG, 0, 0, cached_state);
1362 set_extent_defrag(&inode->io_tree, start, start + len - 1, cached_state);
1363
1364 /* Update the page status */
1365 for (i = start_index - first_index; i <= last_index - first_index; i++) {
1366 ClearPageChecked(pages[i]);
1367 btrfs_page_clamp_set_dirty(fs_info, pages[i], start, len);
1368 }
1369 btrfs_delalloc_release_extents(inode, len);
1370 extent_changeset_free(data_reserved);
1371
1372 return ret;
1373}
1374
Qu Wenruoe9eec722021-08-06 16:12:38 +08001375static int defrag_one_range(struct btrfs_inode *inode, u64 start, u32 len,
1376 u32 extent_thresh, u64 newer_than, bool do_compress)
1377{
1378 struct extent_state *cached_state = NULL;
1379 struct defrag_target_range *entry;
1380 struct defrag_target_range *tmp;
1381 LIST_HEAD(target_list);
1382 struct page **pages;
1383 const u32 sectorsize = inode->root->fs_info->sectorsize;
1384 u64 last_index = (start + len - 1) >> PAGE_SHIFT;
1385 u64 start_index = start >> PAGE_SHIFT;
1386 unsigned int nr_pages = last_index - start_index + 1;
1387 int ret = 0;
1388 int i;
1389
1390 ASSERT(nr_pages <= CLUSTER_SIZE / PAGE_SIZE);
1391 ASSERT(IS_ALIGNED(start, sectorsize) && IS_ALIGNED(len, sectorsize));
1392
1393 pages = kcalloc(nr_pages, sizeof(struct page *), GFP_NOFS);
1394 if (!pages)
1395 return -ENOMEM;
1396
1397 /* Prepare all pages */
1398 for (i = 0; i < nr_pages; i++) {
1399 pages[i] = defrag_prepare_one_page(inode, start_index + i);
1400 if (IS_ERR(pages[i])) {
1401 ret = PTR_ERR(pages[i]);
1402 pages[i] = NULL;
1403 goto free_pages;
1404 }
1405 }
1406 for (i = 0; i < nr_pages; i++)
1407 wait_on_page_writeback(pages[i]);
1408
1409 /* Lock the pages range */
1410 lock_extent_bits(&inode->io_tree, start_index << PAGE_SHIFT,
1411 (last_index << PAGE_SHIFT) + PAGE_SIZE - 1,
1412 &cached_state);
1413 /*
1414 * Now we have a consistent view about the extent map, re-check
1415 * which range really needs to be defragged.
1416 *
1417 * And this time we have extent locked already, pass @locked = true
1418 * so that we won't relock the extent range and cause deadlock.
1419 */
1420 ret = defrag_collect_targets(inode, start, len, extent_thresh,
1421 newer_than, do_compress, true,
1422 &target_list);
1423 if (ret < 0)
1424 goto unlock_extent;
1425
1426 list_for_each_entry(entry, &target_list, list) {
1427 ret = defrag_one_locked_target(inode, entry, pages, nr_pages,
1428 &cached_state);
1429 if (ret < 0)
1430 break;
1431 }
1432
1433 list_for_each_entry_safe(entry, tmp, &target_list, list) {
1434 list_del_init(&entry->list);
1435 kfree(entry);
1436 }
1437unlock_extent:
1438 unlock_extent_cached(&inode->io_tree, start_index << PAGE_SHIFT,
1439 (last_index << PAGE_SHIFT) + PAGE_SIZE - 1,
1440 &cached_state);
1441free_pages:
1442 for (i = 0; i < nr_pages; i++) {
1443 if (pages[i]) {
1444 unlock_page(pages[i]);
1445 put_page(pages[i]);
1446 }
1447 }
1448 kfree(pages);
1449 return ret;
1450}
1451
Qu Wenruob18c3ab2021-08-06 16:12:39 +08001452static int defrag_one_cluster(struct btrfs_inode *inode,
1453 struct file_ra_state *ra,
1454 u64 start, u32 len, u32 extent_thresh,
1455 u64 newer_than, bool do_compress,
1456 unsigned long *sectors_defragged,
1457 unsigned long max_sectors)
1458{
1459 const u32 sectorsize = inode->root->fs_info->sectorsize;
1460 struct defrag_target_range *entry;
1461 struct defrag_target_range *tmp;
1462 LIST_HEAD(target_list);
1463 int ret;
1464
1465 BUILD_BUG_ON(!IS_ALIGNED(CLUSTER_SIZE, PAGE_SIZE));
1466 ret = defrag_collect_targets(inode, start, len, extent_thresh,
1467 newer_than, do_compress, false,
1468 &target_list);
1469 if (ret < 0)
1470 goto out;
1471
1472 list_for_each_entry(entry, &target_list, list) {
1473 u32 range_len = entry->len;
1474
Qu Wenruo484167d2022-01-18 15:19:04 +08001475 /* Reached or beyond the limit */
Qu Wenruoc080b412022-01-18 19:53:52 +08001476 if (max_sectors && *sectors_defragged >= max_sectors) {
1477 ret = 1;
Qu Wenruob18c3ab2021-08-06 16:12:39 +08001478 break;
Qu Wenruoc080b412022-01-18 19:53:52 +08001479 }
Qu Wenruob18c3ab2021-08-06 16:12:39 +08001480
1481 if (max_sectors)
1482 range_len = min_t(u32, range_len,
1483 (max_sectors - *sectors_defragged) * sectorsize);
1484
1485 if (ra)
1486 page_cache_sync_readahead(inode->vfs_inode.i_mapping,
1487 ra, NULL, entry->start >> PAGE_SHIFT,
1488 ((entry->start + range_len - 1) >> PAGE_SHIFT) -
1489 (entry->start >> PAGE_SHIFT) + 1);
1490 /*
1491 * Here we may not defrag any range if holes are punched before
1492 * we locked the pages.
1493 * But that's fine, it only affects the @sectors_defragged
1494 * accounting.
1495 */
1496 ret = defrag_one_range(inode, entry->start, range_len,
1497 extent_thresh, newer_than, do_compress);
1498 if (ret < 0)
1499 break;
Qu Wenruo484167d2022-01-18 15:19:04 +08001500 *sectors_defragged += range_len >>
1501 inode->root->fs_info->sectorsize_bits;
Qu Wenruob18c3ab2021-08-06 16:12:39 +08001502 }
1503out:
1504 list_for_each_entry_safe(entry, tmp, &target_list, list) {
1505 list_del_init(&entry->list);
1506 kfree(entry);
1507 }
1508 return ret;
1509}
1510
Qu Wenruo1ccc2e82021-08-06 16:12:32 +08001511/*
1512 * Entry point to file defragmentation.
1513 *
1514 * @inode: inode to be defragged
1515 * @ra: readahead state (can be NUL)
1516 * @range: defrag options including range and flags
1517 * @newer_than: minimum transid to defrag
1518 * @max_to_defrag: max number of sectors to be defragged, if 0, the whole inode
1519 * will be defragged.
Qu Wenruo484167d2022-01-18 15:19:04 +08001520 *
1521 * Return <0 for error.
Qu Wenruoc080b412022-01-18 19:53:52 +08001522 * Return >=0 for the number of sectors defragged, and range->start will be updated
1523 * to indicate the file offset where next defrag should be started at.
1524 * (Mostly for autodefrag, which sets @max_to_defrag thus we may exit early without
1525 * defragging all the range).
Qu Wenruo1ccc2e82021-08-06 16:12:32 +08001526 */
1527int btrfs_defrag_file(struct inode *inode, struct file_ra_state *ra,
Chris Mason4cb53002011-05-24 15:35:30 -04001528 struct btrfs_ioctl_defrag_range_args *range,
1529 u64 newer_than, unsigned long max_to_defrag)
1530{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001531 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo7b508032021-05-27 20:33:22 +08001532 unsigned long sectors_defragged = 0;
Li Zefan151a31b2011-09-02 15:56:39 +08001533 u64 isize = i_size_read(inode);
Qu Wenruo7b508032021-05-27 20:33:22 +08001534 u64 cur;
1535 u64 last_byte;
David Sterba1e2ef462017-07-17 20:01:59 +02001536 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Qu Wenruo1ccc2e82021-08-06 16:12:32 +08001537 bool ra_allocated = false;
Qu Wenruo7b508032021-05-27 20:33:22 +08001538 int compress_type = BTRFS_COMPRESS_ZLIB;
1539 int ret = 0;
1540 u32 extent_thresh = range->extent_thresh;
Filipe Manana27cdfde2022-01-20 17:41:17 +00001541 pgoff_t start_index;
Chris Mason4cb53002011-05-24 15:35:30 -04001542
Liu Bo0abd5b12013-04-16 09:20:28 +00001543 if (isize == 0)
1544 return 0;
1545
1546 if (range->start >= isize)
1547 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001548
David Sterba1e2ef462017-07-17 20:01:59 +02001549 if (do_compress) {
Chengguang Xuce96b7f2019-10-10 15:59:57 +08001550 if (range->compress_type >= BTRFS_NR_COMPRESS_TYPES)
Li Zefan1a419d82010-10-25 15:12:50 +08001551 return -EINVAL;
1552 if (range->compress_type)
1553 compress_type = range->compress_type;
1554 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001555
Liu Bo0abd5b12013-04-16 09:20:28 +00001556 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001557 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001558
Qu Wenruo7b508032021-05-27 20:33:22 +08001559 if (range->start + range->len > range->start) {
1560 /* Got a specific range */
Filipe Manana6b34cd82022-01-17 16:28:29 +00001561 last_byte = min(isize, range->start + range->len);
Qu Wenruo7b508032021-05-27 20:33:22 +08001562 } else {
1563 /* Defrag until file end */
Filipe Manana6b34cd82022-01-17 16:28:29 +00001564 last_byte = isize;
Qu Wenruo7b508032021-05-27 20:33:22 +08001565 }
1566
Filipe Manana6b34cd82022-01-17 16:28:29 +00001567 /* Align the range */
1568 cur = round_down(range->start, fs_info->sectorsize);
1569 last_byte = round_up(last_byte, fs_info->sectorsize) - 1;
1570
Chris Mason4cb53002011-05-24 15:35:30 -04001571 /*
Qu Wenruo1ccc2e82021-08-06 16:12:32 +08001572 * If we were not given a ra, allocate a readahead context. As
David Sterba0a52d102017-06-22 03:22:58 +02001573 * readahead is just an optimization, defrag will work without it so
1574 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001575 */
Qu Wenruo1ccc2e82021-08-06 16:12:32 +08001576 if (!ra) {
1577 ra_allocated = true;
David Sterba63e727e2017-06-22 03:13:02 +02001578 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001579 if (ra)
1580 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001581 }
1582
Filipe Manana27cdfde2022-01-20 17:41:17 +00001583 /*
1584 * Make writeback start from the beginning of the range, so that the
1585 * defrag range can be written sequentially.
1586 */
1587 start_index = cur >> PAGE_SHIFT;
1588 if (start_index < inode->i_mapping->writeback_index)
1589 inode->i_mapping->writeback_index = start_index;
1590
Qu Wenruo7b508032021-05-27 20:33:22 +08001591 while (cur < last_byte) {
Filipe Manana3c9d31c72022-01-20 17:11:52 +00001592 const unsigned long prev_sectors_defragged = sectors_defragged;
Qu Wenruo7b508032021-05-27 20:33:22 +08001593 u64 cluster_end;
Chris Mason1e701a32010-03-11 09:42:04 -05001594
Qu Wenruo7b508032021-05-27 20:33:22 +08001595 /* The cluster size 256K should always be page aligned */
1596 BUILD_BUG_ON(!IS_ALIGNED(CLUSTER_SIZE, PAGE_SIZE));
Chris Mason4cb53002011-05-24 15:35:30 -04001597
Filipe Mananab767c2f2022-01-18 13:43:31 +00001598 if (btrfs_defrag_cancelled(fs_info)) {
1599 ret = -EAGAIN;
1600 break;
1601 }
1602
Qu Wenruo7b508032021-05-27 20:33:22 +08001603 /* We want the cluster end at page boundary when possible */
1604 cluster_end = (((cur >> PAGE_SHIFT) +
1605 (SZ_256K >> PAGE_SHIFT)) << PAGE_SHIFT) - 1;
1606 cluster_end = min(cluster_end, last_byte);
Chris Mason940100a2010-03-10 10:52:59 -05001607
Josef Bacik64708532021-02-10 17:14:34 -05001608 btrfs_inode_lock(inode, 0);
Omar Sandovaleede2bf2016-11-03 10:28:12 -07001609 if (IS_SWAPFILE(inode)) {
1610 ret = -ETXTBSY;
Josef Bacik64708532021-02-10 17:14:34 -05001611 btrfs_inode_unlock(inode, 0);
Qu Wenruo7b508032021-05-27 20:33:22 +08001612 break;
Liu Boecb8bea2012-03-29 09:57:44 -04001613 }
Qu Wenruo7b508032021-05-27 20:33:22 +08001614 if (!(inode->i_sb->s_flags & SB_ACTIVE)) {
1615 btrfs_inode_unlock(inode, 0);
1616 break;
1617 }
1618 if (do_compress)
1619 BTRFS_I(inode)->defrag_compress = compress_type;
1620 ret = defrag_one_cluster(BTRFS_I(inode), ra, cur,
1621 cluster_end + 1 - cur, extent_thresh,
1622 newer_than, do_compress,
1623 &sectors_defragged, max_to_defrag);
Filipe Manana3c9d31c72022-01-20 17:11:52 +00001624
1625 if (sectors_defragged > prev_sectors_defragged)
1626 balance_dirty_pages_ratelimited(inode->i_mapping);
1627
Josef Bacik64708532021-02-10 17:14:34 -05001628 btrfs_inode_unlock(inode, 0);
Qu Wenruo7b508032021-05-27 20:33:22 +08001629 if (ret < 0)
1630 break;
1631 cur = cluster_end + 1;
Qu Wenruoc080b412022-01-18 19:53:52 +08001632 if (ret > 0) {
1633 ret = 0;
1634 break;
1635 }
Qu Wenruoea0eba62022-01-30 20:53:15 +08001636 cond_resched();
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001637 }
1638
Qu Wenruo7b508032021-05-27 20:33:22 +08001639 if (ra_allocated)
1640 kfree(ra);
Qu Wenruoc080b412022-01-18 19:53:52 +08001641 /*
1642 * Update range.start for autodefrag, this will indicate where to start
1643 * in next run.
1644 */
1645 range->start = cur;
Qu Wenruo7b508032021-05-27 20:33:22 +08001646 if (sectors_defragged) {
1647 /*
1648 * We have defragged some sectors, for compression case they
1649 * need to be written back immediately.
1650 */
1651 if (range->flags & BTRFS_DEFRAG_RANGE_START_IO) {
Filipe Mananadec8ef92014-03-01 10:55:54 +00001652 filemap_flush(inode->i_mapping);
Qu Wenruo7b508032021-05-27 20:33:22 +08001653 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1654 &BTRFS_I(inode)->runtime_flags))
1655 filemap_flush(inode->i_mapping);
1656 }
1657 if (range->compress_type == BTRFS_COMPRESS_LZO)
1658 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
1659 else if (range->compress_type == BTRFS_COMPRESS_ZSTD)
1660 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
1661 ret = sectors_defragged;
Filipe Mananadec8ef92014-03-01 10:55:54 +00001662 }
David Sterba1e2ef462017-07-17 20:01:59 +02001663 if (do_compress) {
Josef Bacik64708532021-02-10 17:14:34 -05001664 btrfs_inode_lock(inode, 0);
David Sterbaeec63c62017-07-17 19:41:31 +02001665 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
Josef Bacik64708532021-02-10 17:14:34 -05001666 btrfs_inode_unlock(inode, 0);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001667 }
Chris Mason940100a2010-03-10 10:52:59 -05001668 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001669}
1670
David Sterba17aaa432021-05-14 21:32:44 +02001671/*
1672 * Try to start exclusive operation @type or cancel it if it's running.
1673 *
1674 * Return:
1675 * 0 - normal mode, newly claimed op started
1676 * >0 - normal mode, something else is running,
1677 * return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS to user space
1678 * ECANCELED - cancel mode, successful cancel
1679 * ENOTCONN - cancel mode, operation not running anymore
1680 */
1681static int exclop_start_or_cancel_reloc(struct btrfs_fs_info *fs_info,
1682 enum btrfs_exclusive_operation type, bool cancel)
1683{
1684 if (!cancel) {
1685 /* Start normal op */
1686 if (!btrfs_exclop_start(fs_info, type))
1687 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
1688 /* Exclusive operation is now claimed */
1689 return 0;
1690 }
1691
1692 /* Cancel running op */
1693 if (btrfs_exclop_start_try_lock(fs_info, type)) {
1694 /*
1695 * This blocks any exclop finish from setting it to NONE, so we
1696 * request cancellation. Either it runs and we will wait for it,
1697 * or it has finished and no waiting will happen.
1698 */
1699 atomic_inc(&fs_info->reloc_cancel_req);
1700 btrfs_exclop_start_unlock(fs_info);
1701
1702 if (test_bit(BTRFS_FS_RELOC_RUNNING, &fs_info->flags))
1703 wait_on_bit(&fs_info->flags, BTRFS_FS_RELOC_RUNNING,
1704 TASK_INTERRUPTIBLE);
1705
1706 return -ECANCELED;
1707 }
1708
1709 /* Something else is running or none */
1710 return -ENOTCONN;
1711}
1712
Miao Xie198605a2012-11-26 08:43:45 +00001713static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001714 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001715{
Josef Bacik562d7b12021-10-05 16:12:42 -04001716 BTRFS_DEV_LOOKUP_ARGS(args);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001717 struct inode *inode = file_inode(file);
1718 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001719 u64 new_size;
1720 u64 old_size;
1721 u64 devid = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001722 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001723 struct btrfs_ioctl_vol_args *vol_args;
1724 struct btrfs_trans_handle *trans;
1725 struct btrfs_device *device = NULL;
1726 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001727 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001728 char *devstr = NULL;
1729 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001730 int mod = 0;
David Sterbabb059a32021-05-18 21:12:33 +02001731 bool cancel;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001732
Chris Masone441d542009-01-05 16:57:23 -05001733 if (!capable(CAP_SYS_ADMIN))
1734 return -EPERM;
1735
Miao Xie198605a2012-11-26 08:43:45 +00001736 ret = mnt_want_write_file(file);
1737 if (ret)
1738 return ret;
1739
David Sterbabb059a32021-05-18 21:12:33 +02001740 /*
1741 * Read the arguments before checking exclusivity to be able to
1742 * distinguish regular resize and cancel
1743 */
Li Zefandae7b662009-04-08 15:06:54 +08001744 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001745 if (IS_ERR(vol_args)) {
1746 ret = PTR_ERR(vol_args);
David Sterbabb059a32021-05-18 21:12:33 +02001747 goto out_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001748 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001749 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001750 sizestr = vol_args->name;
David Sterbabb059a32021-05-18 21:12:33 +02001751 cancel = (strcmp("cancel", sizestr) == 0);
1752 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_RESIZE, cancel);
1753 if (ret)
1754 goto out_free;
1755 /* Exclusive operation is now claimed */
1756
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001757 devstr = strchr(sizestr, ':');
1758 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001759 sizestr = devstr + 1;
1760 *devstr = '\0';
1761 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001762 ret = kstrtoull(devstr, 10, &devid);
1763 if (ret)
David Sterbabb059a32021-05-18 21:12:33 +02001764 goto out_finish;
Miao Xiedfd79822012-12-21 09:21:30 +00001765 if (!devid) {
1766 ret = -EINVAL;
David Sterbabb059a32021-05-18 21:12:33 +02001767 goto out_finish;
Miao Xiedfd79822012-12-21 09:21:30 +00001768 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001769 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001770 }
Miao Xiedba60f32012-12-21 09:19:51 +00001771
Josef Bacik562d7b12021-10-05 16:12:42 -04001772 args.devid = devid;
1773 device = btrfs_find_device(fs_info->fs_devices, &args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001774 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001775 btrfs_info(fs_info, "resizer unable to find device %llu",
1776 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001777 ret = -ENODEV;
David Sterbabb059a32021-05-18 21:12:33 +02001778 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001779 }
Miao Xiedba60f32012-12-21 09:19:51 +00001780
Anand Jainebbede42017-12-04 12:54:52 +08001781 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001782 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001783 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001784 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001785 ret = -EPERM;
David Sterbabb059a32021-05-18 21:12:33 +02001786 goto out_finish;
Liu Bo4e42ae12012-06-14 02:23:19 -06001787 }
1788
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001789 if (!strcmp(sizestr, "max"))
Christoph Hellwigcda00eb2021-10-18 12:11:12 +02001790 new_size = bdev_nr_bytes(device->bdev);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001791 else {
1792 if (sizestr[0] == '-') {
1793 mod = -1;
1794 sizestr++;
1795 } else if (sizestr[0] == '+') {
1796 mod = 1;
1797 sizestr++;
1798 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001799 new_size = memparse(sizestr, &retptr);
1800 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001801 ret = -EINVAL;
David Sterbabb059a32021-05-18 21:12:33 +02001802 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001803 }
1804 }
1805
Anand Jain401e29c2017-12-04 12:54:55 +08001806 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xiedfd79822012-12-21 09:21:30 +00001807 ret = -EPERM;
David Sterbabb059a32021-05-18 21:12:33 +02001808 goto out_finish;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001809 }
1810
Miao Xie7cc8e582014-09-03 21:35:38 +08001811 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001812
1813 if (mod < 0) {
1814 if (new_size > old_size) {
1815 ret = -EINVAL;
David Sterbabb059a32021-05-18 21:12:33 +02001816 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001817 }
1818 new_size = old_size - new_size;
1819 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001820 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001821 ret = -ERANGE;
David Sterbabb059a32021-05-18 21:12:33 +02001822 goto out_finish;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001823 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001824 new_size = old_size + new_size;
1825 }
1826
Byongho Leeee221842015-12-15 01:42:10 +09001827 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001828 ret = -EINVAL;
David Sterbabb059a32021-05-18 21:12:33 +02001829 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001830 }
Christoph Hellwigcda00eb2021-10-18 12:11:12 +02001831 if (new_size > bdev_nr_bytes(device->bdev)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001832 ret = -EFBIG;
David Sterbabb059a32021-05-18 21:12:33 +02001833 goto out_finish;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001834 }
1835
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001836 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001837
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001838 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001839 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001840 if (IS_ERR(trans)) {
1841 ret = PTR_ERR(trans);
David Sterbabb059a32021-05-18 21:12:33 +02001842 goto out_finish;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001843 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001844 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001845 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001846 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001847 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001848 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001849
Marcos Paulo de Souzafaf8f7b2020-02-11 10:55:26 -03001850 if (ret == 0 && new_size != old_size)
1851 btrfs_info_in_rcu(fs_info,
1852 "resize device %s (devid %llu) from %llu to %llu",
1853 rcu_str_deref(device->name), device->devid,
1854 old_size, new_size);
David Sterbabb059a32021-05-18 21:12:33 +02001855out_finish:
1856 btrfs_exclop_finish(fs_info);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001857out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001858 kfree(vol_args);
David Sterbabb059a32021-05-18 21:12:33 +02001859out_drop:
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001860 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001861 return ret;
1862}
1863
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001864static noinline int __btrfs_ioctl_snap_create(struct file *file,
Christian Brauner4d4340c2021-07-27 12:48:52 +02001865 struct user_namespace *mnt_userns,
David Sterba52f75f42017-02-14 18:33:53 +01001866 const char *name, unsigned long fd, int subvol,
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001867 bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001868 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001869{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001870 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001871 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001872
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001873 if (!S_ISDIR(file_inode(file)->i_mode))
1874 return -ENOTDIR;
1875
Liu Boa874a632012-06-29 03:58:46 -06001876 ret = mnt_want_write_file(file);
1877 if (ret)
1878 goto out;
1879
Sage Weil72fd0322010-10-29 15:41:32 -04001880 namelen = strlen(name);
1881 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001882 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001883 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001884 }
1885
Chris Mason16780ca2012-02-20 22:14:55 -05001886 if (name[0] == '.' &&
1887 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1888 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001889 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001890 }
1891
Chris Mason3de45862008-11-17 21:02:50 -05001892 if (subvol) {
Christian Brauner4d4340c2021-07-27 12:48:52 +02001893 ret = btrfs_mksubvol(&file->f_path, mnt_userns, name,
1894 namelen, NULL, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001895 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001896 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001897 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001898 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001899 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001900 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001901 }
1902
Al Viro496ad9a2013-01-23 17:07:38 -05001903 src_inode = file_inode(src.file);
1904 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001905 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001906 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001907 ret = -EXDEV;
Christian Brauner4d4340c2021-07-27 12:48:52 +02001908 } else if (!inode_owner_or_capable(mnt_userns, src_inode)) {
David Sterbad0242062014-01-15 18:15:52 +01001909 /*
1910 * Subvolume creation is not restricted, but snapshots
1911 * are limited to own subvolumes only
1912 */
1913 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001914 } else {
Christian Brauner4d4340c2021-07-27 12:48:52 +02001915 ret = btrfs_mksnapshot(&file->f_path, mnt_userns,
1916 name, namelen,
1917 BTRFS_I(src_inode)->root,
1918 readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001919 }
Al Viro2903ff02012-08-28 12:52:22 -04001920 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001921 }
Liu Boa874a632012-06-29 03:58:46 -06001922out_drop_write:
1923 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001924out:
Sage Weil72fd0322010-10-29 15:41:32 -04001925 return ret;
1926}
1927
1928static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001929 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001930{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001931 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001932 int ret;
1933
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001934 if (!S_ISDIR(file_inode(file)->i_mode))
1935 return -ENOTDIR;
1936
Li Zefanfa0d2b92010-12-20 15:53:28 +08001937 vol_args = memdup_user(arg, sizeof(*vol_args));
1938 if (IS_ERR(vol_args))
1939 return PTR_ERR(vol_args);
1940 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001941
Christian Brauner4d4340c2021-07-27 12:48:52 +02001942 ret = __btrfs_ioctl_snap_create(file, file_mnt_user_ns(file),
1943 vol_args->name, vol_args->fd, subvol,
1944 false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001945
Li Zefanfa0d2b92010-12-20 15:53:28 +08001946 kfree(vol_args);
1947 return ret;
1948}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001949
Li Zefanfa0d2b92010-12-20 15:53:28 +08001950static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1951 void __user *arg, int subvol)
1952{
1953 struct btrfs_ioctl_vol_args_v2 *vol_args;
1954 int ret;
Li Zefanb83cc962010-12-20 16:04:08 +08001955 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001956 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001957
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001958 if (!S_ISDIR(file_inode(file)->i_mode))
1959 return -ENOTDIR;
1960
Li Zefanfa0d2b92010-12-20 15:53:28 +08001961 vol_args = memdup_user(arg, sizeof(*vol_args));
1962 if (IS_ERR(vol_args))
1963 return PTR_ERR(vol_args);
1964 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001965
David Sterba673990d2020-02-21 13:24:37 +01001966 if (vol_args->flags & ~BTRFS_SUBVOL_CREATE_ARGS_MASK) {
Li Zefanb83cc962010-12-20 16:04:08 +08001967 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001968 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001969 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001970
Li Zefanb83cc962010-12-20 16:04:08 +08001971 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1972 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001973 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Dan Carpenter5011c5a2021-02-17 09:04:34 +03001974 u64 nums;
1975
1976 if (vol_args->size < sizeof(*inherit) ||
1977 vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001978 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001979 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001980 }
1981 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1982 if (IS_ERR(inherit)) {
1983 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001984 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001985 }
Dan Carpenter5011c5a2021-02-17 09:04:34 +03001986
1987 if (inherit->num_qgroups > PAGE_SIZE ||
1988 inherit->num_ref_copies > PAGE_SIZE ||
1989 inherit->num_excl_copies > PAGE_SIZE) {
1990 ret = -EINVAL;
1991 goto free_inherit;
1992 }
1993
1994 nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
1995 2 * inherit->num_excl_copies;
1996 if (vol_args->size != struct_size(inherit, qgroups, nums)) {
1997 ret = -EINVAL;
1998 goto free_inherit;
1999 }
Arne Jansen6f72c7e2011-09-14 15:58:21 +02002000 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08002001
Christian Brauner4d4340c2021-07-27 12:48:52 +02002002 ret = __btrfs_ioctl_snap_create(file, file_mnt_user_ns(file),
2003 vol_args->name, vol_args->fd, subvol,
2004 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002005 if (ret)
2006 goto free_inherit;
Dan Carpenterc47ca322014-09-04 14:09:15 +03002007free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02002008 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002009free_args:
2010 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002011 return ret;
2012}
2013
Li Zefan0caa1022010-12-20 16:30:25 +08002014static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
2015 void __user *arg)
2016{
Al Viro496ad9a2013-01-23 17:07:38 -05002017 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002018 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08002019 struct btrfs_root *root = BTRFS_I(inode)->root;
2020 int ret = 0;
2021 u64 flags = 0;
2022
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002023 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08002024 return -EINVAL;
2025
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002026 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08002027 if (btrfs_root_readonly(root))
2028 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002029 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08002030
2031 if (copy_to_user(arg, &flags, sizeof(flags)))
2032 ret = -EFAULT;
2033
2034 return ret;
2035}
2036
2037static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
2038 void __user *arg)
2039{
Al Viro496ad9a2013-01-23 17:07:38 -05002040 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002041 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08002042 struct btrfs_root *root = BTRFS_I(inode)->root;
2043 struct btrfs_trans_handle *trans;
2044 u64 root_flags;
2045 u64 flags;
2046 int ret = 0;
2047
Christian Brauner39e16742021-07-27 12:48:56 +02002048 if (!inode_owner_or_capable(file_mnt_user_ns(file), inode))
David Sterbabd60ea02014-01-16 15:50:22 +01002049 return -EPERM;
2050
Liu Bob9ca0662012-06-29 03:58:49 -06002051 ret = mnt_want_write_file(file);
2052 if (ret)
2053 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08002054
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002055 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06002056 ret = -EINVAL;
2057 goto out_drop_write;
2058 }
Li Zefan0caa1022010-12-20 16:30:25 +08002059
Liu Bob9ca0662012-06-29 03:58:49 -06002060 if (copy_from_user(&flags, arg, sizeof(flags))) {
2061 ret = -EFAULT;
2062 goto out_drop_write;
2063 }
Li Zefan0caa1022010-12-20 16:30:25 +08002064
Liu Bob9ca0662012-06-29 03:58:49 -06002065 if (flags & ~BTRFS_SUBVOL_RDONLY) {
2066 ret = -EOPNOTSUPP;
2067 goto out_drop_write;
2068 }
Li Zefan0caa1022010-12-20 16:30:25 +08002069
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002070 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08002071
2072 /* nothing to do */
2073 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06002074 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08002075
2076 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01002077 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08002078 btrfs_set_root_flags(&root->root_item,
2079 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01002080 } else {
2081 /*
2082 * Block RO -> RW transition if this subvolume is involved in
2083 * send
2084 */
2085 spin_lock(&root->root_item_lock);
2086 if (root->send_in_progress == 0) {
2087 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08002088 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01002089 spin_unlock(&root->root_item_lock);
2090 } else {
2091 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002092 btrfs_warn(fs_info,
2093 "Attempt to set subvolume %llu read-write during send",
2094 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01002095 ret = -EPERM;
2096 goto out_drop_sem;
2097 }
2098 }
Li Zefan0caa1022010-12-20 16:30:25 +08002099
2100 trans = btrfs_start_transaction(root, 1);
2101 if (IS_ERR(trans)) {
2102 ret = PTR_ERR(trans);
2103 goto out_reset;
2104 }
2105
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002106 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08002107 &root->root_key, &root->root_item);
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03002108 if (ret < 0) {
2109 btrfs_end_transaction(trans);
2110 goto out_reset;
2111 }
Li Zefan0caa1022010-12-20 16:30:25 +08002112
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03002113 ret = btrfs_commit_transaction(trans);
2114
Li Zefan0caa1022010-12-20 16:30:25 +08002115out_reset:
2116 if (ret)
2117 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06002118out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002119 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06002120out_drop_write:
2121 mnt_drop_write_file(file);
2122out:
Li Zefan0caa1022010-12-20 16:30:25 +08002123 return ret;
2124}
2125
Chris Masonac8e9812010-02-28 15:39:26 -05002126static noinline int key_in_sk(struct btrfs_key *key,
2127 struct btrfs_ioctl_search_key *sk)
2128{
Chris Masonabc6e132010-03-18 12:10:08 -04002129 struct btrfs_key test;
2130 int ret;
2131
2132 test.objectid = sk->min_objectid;
2133 test.type = sk->min_type;
2134 test.offset = sk->min_offset;
2135
2136 ret = btrfs_comp_cpu_keys(key, &test);
2137 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05002138 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002139
2140 test.objectid = sk->max_objectid;
2141 test.type = sk->max_type;
2142 test.offset = sk->max_offset;
2143
2144 ret = btrfs_comp_cpu_keys(key, &test);
2145 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05002146 return 0;
2147 return 1;
2148}
2149
Jeff Mahoneydf397562016-06-21 20:18:21 -04002150static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05002151 struct btrfs_key *key,
2152 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002153 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002154 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002155 unsigned long *sk_offset,
2156 int *num_found)
2157{
2158 u64 found_transid;
2159 struct extent_buffer *leaf;
2160 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002161 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05002162 unsigned long item_off;
2163 unsigned long item_len;
2164 int nritems;
2165 int i;
2166 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05002167 int ret = 0;
2168
2169 leaf = path->nodes[0];
2170 slot = path->slots[0];
2171 nritems = btrfs_header_nritems(leaf);
2172
2173 if (btrfs_header_generation(leaf) > sk->max_transid) {
2174 i = nritems;
2175 goto advance_key;
2176 }
2177 found_transid = btrfs_header_generation(leaf);
2178
2179 for (i = slot; i < nritems; i++) {
2180 item_off = btrfs_item_ptr_offset(leaf, i);
Josef Bacik3212fa12021-10-21 14:58:35 -04002181 item_len = btrfs_item_size(leaf, i);
Chris Masonac8e9812010-02-28 15:39:26 -05002182
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00002183 btrfs_item_key_to_cpu(leaf, key, i);
2184 if (!key_in_sk(key, sk))
2185 continue;
2186
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002187 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002188 if (*num_found) {
2189 ret = 1;
2190 goto out;
2191 }
Chris Masonac8e9812010-02-28 15:39:26 -05002192
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002193 /*
2194 * return one empty item back for v1, which does not
2195 * handle -EOVERFLOW
2196 */
2197
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002198 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002199 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002200 ret = -EOVERFLOW;
2201 }
Chris Masonac8e9812010-02-28 15:39:26 -05002202
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002203 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05002204 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002205 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05002206 }
2207
Chris Masonac8e9812010-02-28 15:39:26 -05002208 sh.objectid = key->objectid;
2209 sh.offset = key->offset;
2210 sh.type = key->type;
2211 sh.len = item_len;
2212 sh.transid = found_transid;
2213
Josef Bacika48b73e2020-08-10 11:42:27 -04002214 /*
2215 * Copy search result header. If we fault then loop again so we
2216 * can fault in the pages and -EFAULT there if there's a
2217 * problem. Otherwise we'll fault and then copy the buffer in
2218 * properly this next time through
2219 */
2220 if (copy_to_user_nofault(ubuf + *sk_offset, &sh, sizeof(sh))) {
2221 ret = 0;
Gerhard Heiftba346b32014-01-30 16:24:02 +01002222 goto out;
2223 }
2224
Chris Masonac8e9812010-02-28 15:39:26 -05002225 *sk_offset += sizeof(sh);
2226
2227 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002228 char __user *up = ubuf + *sk_offset;
Josef Bacika48b73e2020-08-10 11:42:27 -04002229 /*
2230 * Copy the item, same behavior as above, but reset the
2231 * * sk_offset so we copy the full thing again.
2232 */
2233 if (read_extent_buffer_to_user_nofault(leaf, up,
2234 item_off, item_len)) {
2235 ret = 0;
2236 *sk_offset -= sizeof(sh);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002237 goto out;
2238 }
2239
Chris Masonac8e9812010-02-28 15:39:26 -05002240 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002241 }
Hugo Millse2156862011-05-14 17:43:41 +00002242 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002243
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002244 if (ret) /* -EOVERFLOW from above */
2245 goto out;
2246
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002247 if (*num_found >= sk->nr_items) {
2248 ret = 1;
2249 goto out;
2250 }
Chris Masonac8e9812010-02-28 15:39:26 -05002251 }
2252advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002253 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002254 test.objectid = sk->max_objectid;
2255 test.type = sk->max_type;
2256 test.offset = sk->max_offset;
2257 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2258 ret = 1;
2259 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002260 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002261 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002262 key->offset = 0;
2263 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002264 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002265 key->offset = 0;
2266 key->type = 0;
2267 key->objectid++;
2268 } else
2269 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002270out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002271 /*
2272 * 0: all items from this leaf copied, continue with next
2273 * 1: * more items can be copied, but unused buffer is too small
2274 * * all items were found
2275 * Either way, it will stops the loop which iterates to the next
2276 * leaf
2277 * -EOVERFLOW: item was to large for buffer
2278 * -EFAULT: could not copy extent buffer back to userspace
2279 */
Chris Masonac8e9812010-02-28 15:39:26 -05002280 return ret;
2281}
2282
2283static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002284 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002285 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002286 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002287{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002288 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05002289 struct btrfs_root *root;
2290 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002291 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002292 int ret;
2293 int num_found = 0;
2294 unsigned long sk_offset = 0;
2295
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002296 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2297 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002298 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002299 }
Gerhard Heift12544442014-01-30 16:23:58 +01002300
Chris Masonac8e9812010-02-28 15:39:26 -05002301 path = btrfs_alloc_path();
2302 if (!path)
2303 return -ENOMEM;
2304
2305 if (sk->tree_id == 0) {
2306 /* search the root of the inode that was passed */
Josef Bacik00246522020-01-24 09:33:01 -05002307 root = btrfs_grab_root(BTRFS_I(inode)->root);
Chris Masonac8e9812010-02-28 15:39:26 -05002308 } else {
David Sterba56e93572020-05-15 19:35:55 +02002309 root = btrfs_get_fs_root(info, sk->tree_id, true);
Chris Masonac8e9812010-02-28 15:39:26 -05002310 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002311 btrfs_free_path(path);
Misono Tomohiroad1e3d52018-05-21 13:57:27 +09002312 return PTR_ERR(root);
Chris Masonac8e9812010-02-28 15:39:26 -05002313 }
2314 }
2315
2316 key.objectid = sk->min_objectid;
2317 key.type = sk->min_type;
2318 key.offset = sk->min_offset;
2319
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302320 while (1) {
Andreas Gruenbacherbb523b42021-08-02 13:44:20 +02002321 ret = -EFAULT;
2322 if (fault_in_writeable(ubuf + sk_offset, *buf_size - sk_offset))
Josef Bacika48b73e2020-08-10 11:42:27 -04002323 break;
2324
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002325 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002326 if (ret != 0) {
2327 if (ret > 0)
2328 ret = 0;
2329 goto err;
2330 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002331 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002332 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002333 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002334 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002335 break;
2336
2337 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002338 if (ret > 0)
2339 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002340err:
2341 sk->nr_items = num_found;
Josef Bacik00246522020-01-24 09:33:01 -05002342 btrfs_put_root(root);
Chris Masonac8e9812010-02-28 15:39:26 -05002343 btrfs_free_path(path);
2344 return ret;
2345}
2346
2347static noinline int btrfs_ioctl_tree_search(struct file *file,
2348 void __user *argp)
2349{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002350 struct btrfs_ioctl_search_args __user *uargs;
2351 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002352 struct inode *inode;
2353 int ret;
2354 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002355
2356 if (!capable(CAP_SYS_ADMIN))
2357 return -EPERM;
2358
Gerhard Heiftba346b32014-01-30 16:24:02 +01002359 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002360
Gerhard Heiftba346b32014-01-30 16:24:02 +01002361 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2362 return -EFAULT;
2363
2364 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002365
Al Viro496ad9a2013-01-23 17:07:38 -05002366 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002367 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002368
2369 /*
2370 * In the origin implementation an overflow is handled by returning a
2371 * search header with a len of zero, so reset ret.
2372 */
2373 if (ret == -EOVERFLOW)
2374 ret = 0;
2375
Gerhard Heiftba346b32014-01-30 16:24:02 +01002376 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002377 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002378 return ret;
2379}
2380
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002381static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2382 void __user *argp)
2383{
2384 struct btrfs_ioctl_search_args_v2 __user *uarg;
2385 struct btrfs_ioctl_search_args_v2 args;
2386 struct inode *inode;
2387 int ret;
2388 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002389 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002390
2391 if (!capable(CAP_SYS_ADMIN))
2392 return -EPERM;
2393
2394 /* copy search header and buffer size */
2395 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2396 if (copy_from_user(&args, uarg, sizeof(args)))
2397 return -EFAULT;
2398
2399 buf_size = args.buf_size;
2400
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002401 /* limit result size to 16MB */
2402 if (buf_size > buf_limit)
2403 buf_size = buf_limit;
2404
2405 inode = file_inode(file);
2406 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002407 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002408 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2409 ret = -EFAULT;
2410 else if (ret == -EOVERFLOW &&
2411 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2412 ret = -EFAULT;
2413
Yan, Zheng76dda932009-09-21 16:00:26 -04002414 return ret;
2415}
2416
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002417/*
Chris Masonac8e9812010-02-28 15:39:26 -05002418 * Search INODE_REFs to identify path name of 'dirid' directory
2419 * in a 'tree_id' tree. and sets path name to 'name'.
2420 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002421static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2422 u64 tree_id, u64 dirid, char *name)
2423{
2424 struct btrfs_root *root;
2425 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002426 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002427 int ret = -1;
2428 int slot;
2429 int len;
2430 int total_len = 0;
2431 struct btrfs_inode_ref *iref;
2432 struct extent_buffer *l;
2433 struct btrfs_path *path;
2434
2435 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2436 name[0]='\0';
2437 return 0;
2438 }
2439
2440 path = btrfs_alloc_path();
2441 if (!path)
2442 return -ENOMEM;
2443
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002444 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002445
David Sterba56e93572020-05-15 19:35:55 +02002446 root = btrfs_get_fs_root(info, tree_id, true);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002447 if (IS_ERR(root)) {
Misono Tomohiroad1e3d52018-05-21 13:57:27 +09002448 ret = PTR_ERR(root);
Josef Bacik88234012020-01-24 09:32:34 -05002449 root = NULL;
2450 goto out;
2451 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002452
2453 key.objectid = dirid;
2454 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002455 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002456
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302457 while (1) {
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03002458 ret = btrfs_search_backwards(root, &key, path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002459 if (ret < 0)
2460 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002461 else if (ret > 0) {
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03002462 ret = -ENOENT;
2463 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002464 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002465
2466 l = path->nodes[0];
2467 slot = path->slots[0];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002468
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002469 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2470 len = btrfs_inode_ref_name_len(l, iref);
2471 ptr -= len + 1;
2472 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002473 if (ptr < name) {
2474 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002475 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002476 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002477
2478 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302479 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002480
2481 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2482 break;
2483
David Sterbab3b4aa72011-04-21 01:20:15 +02002484 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002485 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002486 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002487 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002488 }
Li Zefan77906a502011-07-14 03:16:00 +00002489 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302490 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002491 ret = 0;
2492out:
Josef Bacik00246522020-01-24 09:33:01 -05002493 btrfs_put_root(root);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002494 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002495 return ret;
2496}
2497
Christian Brauner6623d9a2021-07-27 12:48:57 +02002498static int btrfs_search_path_in_tree_user(struct user_namespace *mnt_userns,
2499 struct inode *inode,
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002500 struct btrfs_ioctl_ino_lookup_user_args *args)
2501{
2502 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2503 struct super_block *sb = inode->i_sb;
2504 struct btrfs_key upper_limit = BTRFS_I(inode)->location;
2505 u64 treeid = BTRFS_I(inode)->root->root_key.objectid;
2506 u64 dirid = args->dirid;
2507 unsigned long item_off;
2508 unsigned long item_len;
2509 struct btrfs_inode_ref *iref;
2510 struct btrfs_root_ref *rref;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002511 struct btrfs_root *root = NULL;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002512 struct btrfs_path *path;
2513 struct btrfs_key key, key2;
2514 struct extent_buffer *leaf;
2515 struct inode *temp_inode;
2516 char *ptr;
2517 int slot;
2518 int len;
2519 int total_len = 0;
2520 int ret;
2521
2522 path = btrfs_alloc_path();
2523 if (!path)
2524 return -ENOMEM;
2525
2526 /*
2527 * If the bottom subvolume does not exist directly under upper_limit,
2528 * construct the path in from the bottom up.
2529 */
2530 if (dirid != upper_limit.objectid) {
2531 ptr = &args->path[BTRFS_INO_LOOKUP_USER_PATH_MAX - 1];
2532
David Sterba56e93572020-05-15 19:35:55 +02002533 root = btrfs_get_fs_root(fs_info, treeid, true);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002534 if (IS_ERR(root)) {
2535 ret = PTR_ERR(root);
2536 goto out;
2537 }
2538
2539 key.objectid = dirid;
2540 key.type = BTRFS_INODE_REF_KEY;
2541 key.offset = (u64)-1;
2542 while (1) {
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03002543 ret = btrfs_search_backwards(root, &key, path);
2544 if (ret < 0)
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002545 goto out_put;
Marcos Paulo de Souza0ff40a92021-07-29 05:22:16 -03002546 else if (ret > 0) {
2547 ret = -ENOENT;
2548 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002549 }
2550
2551 leaf = path->nodes[0];
2552 slot = path->slots[0];
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002553
2554 iref = btrfs_item_ptr(leaf, slot, struct btrfs_inode_ref);
2555 len = btrfs_inode_ref_name_len(leaf, iref);
2556 ptr -= len + 1;
2557 total_len += len + 1;
2558 if (ptr < args->path) {
2559 ret = -ENAMETOOLONG;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002560 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002561 }
2562
2563 *(ptr + len) = '/';
2564 read_extent_buffer(leaf, ptr,
2565 (unsigned long)(iref + 1), len);
2566
2567 /* Check the read+exec permission of this directory */
2568 ret = btrfs_previous_item(root, path, dirid,
2569 BTRFS_INODE_ITEM_KEY);
2570 if (ret < 0) {
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002571 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002572 } else if (ret > 0) {
2573 ret = -ENOENT;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002574 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002575 }
2576
2577 leaf = path->nodes[0];
2578 slot = path->slots[0];
2579 btrfs_item_key_to_cpu(leaf, &key2, slot);
2580 if (key2.objectid != dirid) {
2581 ret = -ENOENT;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002582 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002583 }
2584
David Sterba0202e832020-05-15 19:35:59 +02002585 temp_inode = btrfs_iget(sb, key2.objectid, root);
Misono Tomohiro3ca57bd2018-06-04 16:41:07 +09002586 if (IS_ERR(temp_inode)) {
2587 ret = PTR_ERR(temp_inode);
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002588 goto out_put;
Misono Tomohiro3ca57bd2018-06-04 16:41:07 +09002589 }
Christian Brauner6623d9a2021-07-27 12:48:57 +02002590 ret = inode_permission(mnt_userns, temp_inode,
Christian Brauner47291ba2021-01-21 14:19:24 +01002591 MAY_READ | MAY_EXEC);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002592 iput(temp_inode);
2593 if (ret) {
2594 ret = -EACCES;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002595 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002596 }
2597
2598 if (key.offset == upper_limit.objectid)
2599 break;
2600 if (key.objectid == BTRFS_FIRST_FREE_OBJECTID) {
2601 ret = -EACCES;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002602 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002603 }
2604
2605 btrfs_release_path(path);
2606 key.objectid = key.offset;
2607 key.offset = (u64)-1;
2608 dirid = key.objectid;
2609 }
2610
2611 memmove(args->path, ptr, total_len);
2612 args->path[total_len] = '\0';
Josef Bacik00246522020-01-24 09:33:01 -05002613 btrfs_put_root(root);
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002614 root = NULL;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002615 btrfs_release_path(path);
2616 }
2617
2618 /* Get the bottom subvolume's name from ROOT_REF */
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002619 key.objectid = treeid;
2620 key.type = BTRFS_ROOT_REF_KEY;
2621 key.offset = args->treeid;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002622 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002623 if (ret < 0) {
2624 goto out;
2625 } else if (ret > 0) {
2626 ret = -ENOENT;
2627 goto out;
2628 }
2629
2630 leaf = path->nodes[0];
2631 slot = path->slots[0];
2632 btrfs_item_key_to_cpu(leaf, &key, slot);
2633
2634 item_off = btrfs_item_ptr_offset(leaf, slot);
Josef Bacik3212fa12021-10-21 14:58:35 -04002635 item_len = btrfs_item_size(leaf, slot);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002636 /* Check if dirid in ROOT_REF corresponds to passed dirid */
2637 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2638 if (args->dirid != btrfs_root_ref_dirid(leaf, rref)) {
2639 ret = -EINVAL;
2640 goto out;
2641 }
2642
2643 /* Copy subvolume's name */
2644 item_off += sizeof(struct btrfs_root_ref);
2645 item_len -= sizeof(struct btrfs_root_ref);
2646 read_extent_buffer(leaf, args->name, item_off, item_len);
2647 args->name[item_len] = 0;
2648
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002649out_put:
Josef Bacik00246522020-01-24 09:33:01 -05002650 btrfs_put_root(root);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002651out:
2652 btrfs_free_path(path);
2653 return ret;
2654}
2655
Chris Masonac8e9812010-02-28 15:39:26 -05002656static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2657 void __user *argp)
2658{
Bart Van Asschebece2e82018-06-20 10:03:31 -07002659 struct btrfs_ioctl_ino_lookup_args *args;
2660 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002661 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002662
Julia Lawall2354d08f2010-10-29 15:14:18 -04002663 args = memdup_user(argp, sizeof(*args));
2664 if (IS_ERR(args))
2665 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002666
Al Viro496ad9a2013-01-23 17:07:38 -05002667 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002668
David Sterba01b810b2015-05-12 19:14:49 +02002669 /*
2670 * Unprivileged query to obtain the containing subvolume root id. The
2671 * path is reset so it's consistent with btrfs_search_path_in_tree.
2672 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002673 if (args->treeid == 0)
2674 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2675
David Sterba01b810b2015-05-12 19:14:49 +02002676 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2677 args->name[0] = 0;
2678 goto out;
2679 }
2680
2681 if (!capable(CAP_SYS_ADMIN)) {
2682 ret = -EPERM;
2683 goto out;
2684 }
2685
Chris Masonac8e9812010-02-28 15:39:26 -05002686 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2687 args->treeid, args->objectid,
2688 args->name);
2689
David Sterba01b810b2015-05-12 19:14:49 +02002690out:
Chris Masonac8e9812010-02-28 15:39:26 -05002691 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2692 ret = -EFAULT;
2693
2694 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002695 return ret;
2696}
2697
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002698/*
2699 * Version of ino_lookup ioctl (unprivileged)
2700 *
2701 * The main differences from ino_lookup ioctl are:
2702 *
2703 * 1. Read + Exec permission will be checked using inode_permission() during
2704 * path construction. -EACCES will be returned in case of failure.
2705 * 2. Path construction will be stopped at the inode number which corresponds
2706 * to the fd with which this ioctl is called. If constructed path does not
2707 * exist under fd's inode, -EACCES will be returned.
2708 * 3. The name of bottom subvolume is also searched and filled.
2709 */
2710static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
2711{
2712 struct btrfs_ioctl_ino_lookup_user_args *args;
2713 struct inode *inode;
2714 int ret;
2715
2716 args = memdup_user(argp, sizeof(*args));
2717 if (IS_ERR(args))
2718 return PTR_ERR(args);
2719
2720 inode = file_inode(file);
2721
2722 if (args->dirid == BTRFS_FIRST_FREE_OBJECTID &&
2723 BTRFS_I(inode)->location.objectid != BTRFS_FIRST_FREE_OBJECTID) {
2724 /*
2725 * The subvolume does not exist under fd with which this is
2726 * called
2727 */
2728 kfree(args);
2729 return -EACCES;
2730 }
2731
Christian Brauner6623d9a2021-07-27 12:48:57 +02002732 ret = btrfs_search_path_in_tree_user(file_mnt_user_ns(file), inode, args);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002733
2734 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2735 ret = -EFAULT;
2736
2737 kfree(args);
2738 return ret;
2739}
2740
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002741/* Get the subvolume information in BTRFS_ROOT_ITEM and BTRFS_ROOT_BACKREF */
2742static int btrfs_ioctl_get_subvol_info(struct file *file, void __user *argp)
2743{
2744 struct btrfs_ioctl_get_subvol_info_args *subvol_info;
2745 struct btrfs_fs_info *fs_info;
2746 struct btrfs_root *root;
2747 struct btrfs_path *path;
2748 struct btrfs_key key;
2749 struct btrfs_root_item *root_item;
2750 struct btrfs_root_ref *rref;
2751 struct extent_buffer *leaf;
2752 unsigned long item_off;
2753 unsigned long item_len;
2754 struct inode *inode;
2755 int slot;
2756 int ret = 0;
2757
2758 path = btrfs_alloc_path();
2759 if (!path)
2760 return -ENOMEM;
2761
2762 subvol_info = kzalloc(sizeof(*subvol_info), GFP_KERNEL);
2763 if (!subvol_info) {
2764 btrfs_free_path(path);
2765 return -ENOMEM;
2766 }
2767
2768 inode = file_inode(file);
2769 fs_info = BTRFS_I(inode)->root->fs_info;
2770
2771 /* Get root_item of inode's subvolume */
2772 key.objectid = BTRFS_I(inode)->root->root_key.objectid;
David Sterba56e93572020-05-15 19:35:55 +02002773 root = btrfs_get_fs_root(fs_info, key.objectid, true);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002774 if (IS_ERR(root)) {
2775 ret = PTR_ERR(root);
Josef Bacik04734e82020-01-24 09:32:36 -05002776 goto out_free;
2777 }
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002778 root_item = &root->root_item;
2779
2780 subvol_info->treeid = key.objectid;
2781
2782 subvol_info->generation = btrfs_root_generation(root_item);
2783 subvol_info->flags = btrfs_root_flags(root_item);
2784
2785 memcpy(subvol_info->uuid, root_item->uuid, BTRFS_UUID_SIZE);
2786 memcpy(subvol_info->parent_uuid, root_item->parent_uuid,
2787 BTRFS_UUID_SIZE);
2788 memcpy(subvol_info->received_uuid, root_item->received_uuid,
2789 BTRFS_UUID_SIZE);
2790
2791 subvol_info->ctransid = btrfs_root_ctransid(root_item);
2792 subvol_info->ctime.sec = btrfs_stack_timespec_sec(&root_item->ctime);
2793 subvol_info->ctime.nsec = btrfs_stack_timespec_nsec(&root_item->ctime);
2794
2795 subvol_info->otransid = btrfs_root_otransid(root_item);
2796 subvol_info->otime.sec = btrfs_stack_timespec_sec(&root_item->otime);
2797 subvol_info->otime.nsec = btrfs_stack_timespec_nsec(&root_item->otime);
2798
2799 subvol_info->stransid = btrfs_root_stransid(root_item);
2800 subvol_info->stime.sec = btrfs_stack_timespec_sec(&root_item->stime);
2801 subvol_info->stime.nsec = btrfs_stack_timespec_nsec(&root_item->stime);
2802
2803 subvol_info->rtransid = btrfs_root_rtransid(root_item);
2804 subvol_info->rtime.sec = btrfs_stack_timespec_sec(&root_item->rtime);
2805 subvol_info->rtime.nsec = btrfs_stack_timespec_nsec(&root_item->rtime);
2806
2807 if (key.objectid != BTRFS_FS_TREE_OBJECTID) {
2808 /* Search root tree for ROOT_BACKREF of this subvolume */
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002809 key.type = BTRFS_ROOT_BACKREF_KEY;
2810 key.offset = 0;
Josef Bacik04734e82020-01-24 09:32:36 -05002811 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002812 if (ret < 0) {
2813 goto out;
2814 } else if (path->slots[0] >=
2815 btrfs_header_nritems(path->nodes[0])) {
Josef Bacik04734e82020-01-24 09:32:36 -05002816 ret = btrfs_next_leaf(fs_info->tree_root, path);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002817 if (ret < 0) {
2818 goto out;
2819 } else if (ret > 0) {
2820 ret = -EUCLEAN;
2821 goto out;
2822 }
2823 }
2824
2825 leaf = path->nodes[0];
2826 slot = path->slots[0];
2827 btrfs_item_key_to_cpu(leaf, &key, slot);
2828 if (key.objectid == subvol_info->treeid &&
2829 key.type == BTRFS_ROOT_BACKREF_KEY) {
2830 subvol_info->parent_id = key.offset;
2831
2832 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2833 subvol_info->dirid = btrfs_root_ref_dirid(leaf, rref);
2834
2835 item_off = btrfs_item_ptr_offset(leaf, slot)
2836 + sizeof(struct btrfs_root_ref);
Josef Bacik3212fa12021-10-21 14:58:35 -04002837 item_len = btrfs_item_size(leaf, slot)
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002838 - sizeof(struct btrfs_root_ref);
2839 read_extent_buffer(leaf, subvol_info->name,
2840 item_off, item_len);
2841 } else {
2842 ret = -ENOENT;
2843 goto out;
2844 }
2845 }
2846
2847 if (copy_to_user(argp, subvol_info, sizeof(*subvol_info)))
2848 ret = -EFAULT;
2849
2850out:
Josef Bacik00246522020-01-24 09:33:01 -05002851 btrfs_put_root(root);
Josef Bacik04734e82020-01-24 09:32:36 -05002852out_free:
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002853 btrfs_free_path(path);
Waiman Longb091f7f2020-06-16 11:31:59 -04002854 kfree(subvol_info);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002855 return ret;
2856}
2857
Tomohiro Misono42e4b522018-05-21 10:09:43 +09002858/*
2859 * Return ROOT_REF information of the subvolume containing this inode
2860 * except the subvolume name.
2861 */
2862static int btrfs_ioctl_get_subvol_rootref(struct file *file, void __user *argp)
2863{
2864 struct btrfs_ioctl_get_subvol_rootref_args *rootrefs;
2865 struct btrfs_root_ref *rref;
2866 struct btrfs_root *root;
2867 struct btrfs_path *path;
2868 struct btrfs_key key;
2869 struct extent_buffer *leaf;
2870 struct inode *inode;
2871 u64 objectid;
2872 int slot;
2873 int ret;
2874 u8 found;
2875
2876 path = btrfs_alloc_path();
2877 if (!path)
2878 return -ENOMEM;
2879
2880 rootrefs = memdup_user(argp, sizeof(*rootrefs));
2881 if (IS_ERR(rootrefs)) {
2882 btrfs_free_path(path);
2883 return PTR_ERR(rootrefs);
2884 }
2885
2886 inode = file_inode(file);
2887 root = BTRFS_I(inode)->root->fs_info->tree_root;
2888 objectid = BTRFS_I(inode)->root->root_key.objectid;
2889
2890 key.objectid = objectid;
2891 key.type = BTRFS_ROOT_REF_KEY;
2892 key.offset = rootrefs->min_treeid;
2893 found = 0;
2894
2895 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2896 if (ret < 0) {
2897 goto out;
2898 } else if (path->slots[0] >=
2899 btrfs_header_nritems(path->nodes[0])) {
2900 ret = btrfs_next_leaf(root, path);
2901 if (ret < 0) {
2902 goto out;
2903 } else if (ret > 0) {
2904 ret = -EUCLEAN;
2905 goto out;
2906 }
2907 }
2908 while (1) {
2909 leaf = path->nodes[0];
2910 slot = path->slots[0];
2911
2912 btrfs_item_key_to_cpu(leaf, &key, slot);
2913 if (key.objectid != objectid || key.type != BTRFS_ROOT_REF_KEY) {
2914 ret = 0;
2915 goto out;
2916 }
2917
2918 if (found == BTRFS_MAX_ROOTREF_BUFFER_NUM) {
2919 ret = -EOVERFLOW;
2920 goto out;
2921 }
2922
2923 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2924 rootrefs->rootref[found].treeid = key.offset;
2925 rootrefs->rootref[found].dirid =
2926 btrfs_root_ref_dirid(leaf, rref);
2927 found++;
2928
2929 ret = btrfs_next_item(root, path);
2930 if (ret < 0) {
2931 goto out;
2932 } else if (ret > 0) {
2933 ret = -EUCLEAN;
2934 goto out;
2935 }
2936 }
2937
2938out:
2939 if (!ret || ret == -EOVERFLOW) {
2940 rootrefs->num_items = found;
2941 /* update min_treeid for next search */
2942 if (found)
2943 rootrefs->min_treeid =
2944 rootrefs->rootref[found - 1].treeid + 1;
2945 if (copy_to_user(argp, rootrefs, sizeof(*rootrefs)))
2946 ret = -EFAULT;
2947 }
2948
2949 kfree(rootrefs);
2950 btrfs_free_path(path);
2951
2952 return ret;
2953}
2954
Yan, Zheng76dda932009-09-21 16:00:26 -04002955static noinline int btrfs_ioctl_snap_destroy(struct file *file,
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002956 void __user *arg,
2957 bool destroy_v2)
Yan, Zheng76dda932009-09-21 16:00:26 -04002958{
Al Viro54563d42013-09-01 15:57:51 -04002959 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002960 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002961 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002962 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002963 struct inode *inode;
2964 struct btrfs_root *root = BTRFS_I(dir)->root;
2965 struct btrfs_root *dest = NULL;
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002966 struct btrfs_ioctl_vol_args *vol_args = NULL;
2967 struct btrfs_ioctl_vol_args_v2 *vol_args2 = NULL;
Christian Braunerc4ed5332021-07-27 12:48:53 +02002968 struct user_namespace *mnt_userns = file_mnt_user_ns(file);
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002969 char *subvol_name, *subvol_name_ptr = NULL;
2970 int subvol_namelen;
Yan, Zheng76dda932009-09-21 16:00:26 -04002971 int err = 0;
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002972 bool destroy_parent = false;
Yan, Zheng76dda932009-09-21 16:00:26 -04002973
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002974 if (destroy_v2) {
2975 vol_args2 = memdup_user(arg, sizeof(*vol_args2));
2976 if (IS_ERR(vol_args2))
2977 return PTR_ERR(vol_args2);
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002978
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002979 if (vol_args2->flags & ~BTRFS_SUBVOL_DELETE_ARGS_MASK) {
2980 err = -EOPNOTSUPP;
2981 goto out;
2982 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002983
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002984 /*
2985 * If SPEC_BY_ID is not set, we are looking for the subvolume by
2986 * name, same as v1 currently does.
2987 */
2988 if (!(vol_args2->flags & BTRFS_SUBVOL_SPEC_BY_ID)) {
2989 vol_args2->name[BTRFS_SUBVOL_NAME_MAX] = 0;
2990 subvol_name = vol_args2->name;
2991
2992 err = mnt_want_write_file(file);
2993 if (err)
2994 goto out;
2995 } else {
Christian Brauneraabb34e2021-07-27 12:48:54 +02002996 struct inode *old_dir;
Christian Braunerc4ed5332021-07-27 12:48:53 +02002997
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002998 if (vol_args2->subvolid < BTRFS_FIRST_FREE_OBJECTID) {
2999 err = -EINVAL;
3000 goto out;
3001 }
3002
3003 err = mnt_want_write_file(file);
3004 if (err)
3005 goto out;
3006
3007 dentry = btrfs_get_dentry(fs_info->sb,
3008 BTRFS_FIRST_FREE_OBJECTID,
3009 vol_args2->subvolid, 0, 0);
3010 if (IS_ERR(dentry)) {
3011 err = PTR_ERR(dentry);
3012 goto out_drop_write;
3013 }
3014
3015 /*
3016 * Change the default parent since the subvolume being
3017 * deleted can be outside of the current mount point.
3018 */
3019 parent = btrfs_get_parent(dentry);
3020
3021 /*
3022 * At this point dentry->d_name can point to '/' if the
3023 * subvolume we want to destroy is outsite of the
3024 * current mount point, so we need to release the
3025 * current dentry and execute the lookup to return a new
3026 * one with ->d_name pointing to the
3027 * <mount point>/subvol_name.
3028 */
3029 dput(dentry);
3030 if (IS_ERR(parent)) {
3031 err = PTR_ERR(parent);
3032 goto out_drop_write;
3033 }
Christian Brauneraabb34e2021-07-27 12:48:54 +02003034 old_dir = dir;
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003035 dir = d_inode(parent);
3036
3037 /*
3038 * If v2 was used with SPEC_BY_ID, a new parent was
3039 * allocated since the subvolume can be outside of the
3040 * current mount point. Later on we need to release this
3041 * new parent dentry.
3042 */
3043 destroy_parent = true;
3044
Christian Brauneraabb34e2021-07-27 12:48:54 +02003045 /*
3046 * On idmapped mounts, deletion via subvolid is
3047 * restricted to subvolumes that are immediate
3048 * ancestors of the inode referenced by the file
3049 * descriptor in the ioctl. Otherwise the idmapping
3050 * could potentially be abused to delete subvolumes
3051 * anywhere in the filesystem the user wouldn't be able
3052 * to delete without an idmapped mount.
3053 */
3054 if (old_dir != dir && mnt_userns != &init_user_ns) {
3055 err = -EOPNOTSUPP;
3056 goto free_parent;
3057 }
3058
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003059 subvol_name_ptr = btrfs_get_subvol_name_from_objectid(
3060 fs_info, vol_args2->subvolid);
3061 if (IS_ERR(subvol_name_ptr)) {
3062 err = PTR_ERR(subvol_name_ptr);
3063 goto free_parent;
3064 }
David Sterba1a9fd412021-05-21 17:42:23 +02003065 /* subvol_name_ptr is already nul terminated */
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003066 subvol_name = (char *)kbasename(subvol_name_ptr);
3067 }
3068 } else {
3069 vol_args = memdup_user(arg, sizeof(*vol_args));
3070 if (IS_ERR(vol_args))
3071 return PTR_ERR(vol_args);
3072
3073 vol_args->name[BTRFS_PATH_NAME_MAX] = 0;
3074 subvol_name = vol_args->name;
3075
3076 err = mnt_want_write_file(file);
3077 if (err)
3078 goto out;
Yan, Zheng76dda932009-09-21 16:00:26 -04003079 }
3080
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003081 subvol_namelen = strlen(subvol_name);
Yan, Zheng76dda932009-09-21 16:00:26 -04003082
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003083 if (strchr(subvol_name, '/') ||
3084 strncmp(subvol_name, "..", subvol_namelen) == 0) {
3085 err = -EINVAL;
3086 goto free_subvol_name;
3087 }
3088
3089 if (!S_ISDIR(dir->i_mode)) {
3090 err = -ENOTDIR;
3091 goto free_subvol_name;
3092 }
David Sterba521e0542014-04-15 16:41:44 +02003093
Al Viro00235412016-05-26 00:05:12 -04003094 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
3095 if (err == -EINTR)
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003096 goto free_subvol_name;
Christian Braunerc4ed5332021-07-27 12:48:53 +02003097 dentry = lookup_one(mnt_userns, subvol_name, parent, subvol_namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -04003098 if (IS_ERR(dentry)) {
3099 err = PTR_ERR(dentry);
3100 goto out_unlock_dir;
3101 }
3102
David Howells2b0143b2015-03-17 22:25:59 +00003103 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003104 err = -ENOENT;
3105 goto out_dput;
3106 }
3107
David Howells2b0143b2015-03-17 22:25:59 +00003108 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04003109 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05303110 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04003111 /*
3112 * Regular user. Only allow this with a special mount
3113 * option, when the user has write+exec access to the
3114 * subvol root, and when rmdir(2) would have been
3115 * allowed.
3116 *
3117 * Note that this is _not_ check that the subvol is
3118 * empty or doesn't contain data that we wouldn't
3119 * otherwise be able to delete.
3120 *
3121 * Users who want to delete empty subvols should try
3122 * rmdir(2).
3123 */
3124 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003125 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04003126 goto out_dput;
3127
3128 /*
3129 * Do not allow deletion if the parent dir is the same
3130 * as the dir to be deleted. That means the ioctl
3131 * must be called on the dentry referencing the root
3132 * of the subvol, not a random directory contained
3133 * within it.
3134 */
3135 err = -EINVAL;
3136 if (root == dest)
3137 goto out_dput;
3138
Christian Braunerc4ed5332021-07-27 12:48:53 +02003139 err = inode_permission(mnt_userns, inode, MAY_WRITE | MAY_EXEC);
Sage Weil4260f7c2010-10-29 15:46:43 -04003140 if (err)
3141 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04003142 }
3143
Miao Xie5c39da52012-10-22 11:39:53 +00003144 /* check if subvolume may be deleted by a user */
Christian Braunerc4ed5332021-07-27 12:48:53 +02003145 err = btrfs_may_delete(mnt_userns, dir, dentry, 1);
Miao Xie5c39da52012-10-22 11:39:53 +00003146 if (err)
3147 goto out_dput;
3148
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003149 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003150 err = -EINVAL;
3151 goto out_dput;
3152 }
3153
Josef Bacik64708532021-02-10 17:14:34 -05003154 btrfs_inode_lock(inode, 0);
Misono Tomohirof60a2362018-04-18 11:34:52 +09003155 err = btrfs_delete_subvolume(dir, dentry);
Josef Bacik64708532021-02-10 17:14:34 -05003156 btrfs_inode_unlock(inode, 0);
Amir Goldsteina37d9a12022-01-20 23:53:04 +02003157 if (!err)
3158 d_delete_notify(dir, dentry);
Liu Bofa6ac872013-02-20 14:10:23 +00003159
Yan, Zheng76dda932009-09-21 16:00:26 -04003160out_dput:
3161 dput(dentry);
3162out_unlock_dir:
Josef Bacik64708532021-02-10 17:14:34 -05003163 btrfs_inode_unlock(dir, 0);
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003164free_subvol_name:
3165 kfree(subvol_name_ptr);
3166free_parent:
3167 if (destroy_parent)
3168 dput(parent);
Al Viro00235412016-05-26 00:05:12 -04003169out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003170 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04003171out:
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003172 kfree(vol_args2);
Yan, Zheng76dda932009-09-21 16:00:26 -04003173 kfree(vol_args);
3174 return err;
3175}
3176
Chris Mason1e701a32010-03-11 09:42:04 -05003177static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003178{
Al Viro496ad9a2013-01-23 17:07:38 -05003179 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003180 struct btrfs_root *root = BTRFS_I(inode)->root;
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003181 struct btrfs_ioctl_defrag_range_args range = {0};
Yan Zhengc146afa2008-11-12 14:34:12 -05003182 int ret;
3183
Ilya Dryomov25122d12013-01-20 15:57:57 +02003184 ret = mnt_want_write_file(file);
3185 if (ret)
3186 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08003187
Ilya Dryomov25122d12013-01-20 15:57:57 +02003188 if (btrfs_root_readonly(root)) {
3189 ret = -EROFS;
3190 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01003191 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003192
3193 switch (inode->i_mode & S_IFMT) {
3194 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05003195 if (!capable(CAP_SYS_ADMIN)) {
3196 ret = -EPERM;
3197 goto out;
3198 }
Eric Sandeende78b512013-01-31 18:21:12 +00003199 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003200 break;
3201 case S_IFREG:
Adam Borowski616d3742018-07-18 00:08:59 +02003202 /*
3203 * Note that this does not check the file descriptor for write
3204 * access. This prevents defragmenting executables that are
3205 * running and allows defrag on files open in read-only mode.
3206 */
3207 if (!capable(CAP_SYS_ADMIN) &&
Christian Brauner47291ba2021-01-21 14:19:24 +01003208 inode_permission(&init_user_ns, inode, MAY_WRITE)) {
Adam Borowski616d3742018-07-18 00:08:59 +02003209 ret = -EPERM;
Chris Masone441d542009-01-05 16:57:23 -05003210 goto out;
3211 }
Chris Mason1e701a32010-03-11 09:42:04 -05003212
Chris Mason1e701a32010-03-11 09:42:04 -05003213 if (argp) {
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003214 if (copy_from_user(&range, argp, sizeof(range))) {
Chris Mason1e701a32010-03-11 09:42:04 -05003215 ret = -EFAULT;
Dan Carpenter683be162010-03-20 11:24:48 +00003216 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05003217 }
3218 /* compression requires us to start the IO */
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003219 if ((range.flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
3220 range.flags |= BTRFS_DEFRAG_RANGE_START_IO;
3221 range.extent_thresh = (u32)-1;
Chris Mason1e701a32010-03-11 09:42:04 -05003222 }
3223 } else {
3224 /* the rest are all set to zero by kzalloc */
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003225 range.len = (u64)-1;
Chris Mason1e701a32010-03-11 09:42:04 -05003226 }
Qu Wenruo1ccc2e82021-08-06 16:12:32 +08003227 ret = btrfs_defrag_file(file_inode(file), &file->f_ra,
Goldwyn Rodriguesc853a572021-07-27 16:17:30 -05003228 &range, BTRFS_OLDEST_GENERATION, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04003229 if (ret > 0)
3230 ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003231 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003232 default:
3233 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003234 }
Chris Masone441d542009-01-05 16:57:23 -05003235out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02003236 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05003237 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003238}
3239
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003240static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003241{
3242 struct btrfs_ioctl_vol_args *vol_args;
Nikolay Borisova174c0a2021-11-25 11:14:43 +02003243 bool restore_op = false;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003244 int ret;
3245
Chris Masone441d542009-01-05 16:57:23 -05003246 if (!capable(CAP_SYS_ADMIN))
3247 return -EPERM;
3248
Nikolay Borisova174c0a2021-11-25 11:14:43 +02003249 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_ADD)) {
3250 if (!btrfs_exclop_start_try_lock(fs_info, BTRFS_EXCLOP_DEV_ADD))
3251 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3252
3253 /*
3254 * We can do the device add because we have a paused balanced,
3255 * change the exclusive op type and remember we should bring
3256 * back the paused balance
3257 */
3258 fs_info->exclusive_operation = BTRFS_EXCLOP_DEV_ADD;
3259 btrfs_exclop_start_unlock(fs_info);
3260 restore_op = true;
3261 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003262
Li Zefandae7b662009-04-08 15:06:54 +08003263 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003264 if (IS_ERR(vol_args)) {
3265 ret = PTR_ERR(vol_args);
3266 goto out;
3267 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003268
Mark Fasheh5516e592008-07-24 12:20:14 -04003269 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003270 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003271
Anand Jain43d20762014-07-01 00:58:56 +08003272 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003273 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08003274
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003275 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003276out:
Nikolay Borisova174c0a2021-11-25 11:14:43 +02003277 if (restore_op)
3278 btrfs_exclop_balance(fs_info, BTRFS_EXCLOP_BALANCE_PAUSED);
3279 else
3280 btrfs_exclop_finish(fs_info);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003281 return ret;
3282}
3283
Anand Jain6b526ed2016-02-13 10:01:39 +08003284static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003285{
Josef Bacik1a15eb72021-10-05 16:12:44 -04003286 BTRFS_DEV_LOOKUP_ARGS(args);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003287 struct inode *inode = file_inode(file);
3288 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08003289 struct btrfs_ioctl_vol_args_v2 *vol_args;
Josef Bacik3fa421d2021-07-27 17:01:17 -04003290 struct block_device *bdev = NULL;
3291 fmode_t mode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003292 int ret;
David Sterba67ae34b2021-05-14 21:21:27 +02003293 bool cancel = false;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003294
Chris Masone441d542009-01-05 16:57:23 -05003295 if (!capable(CAP_SYS_ADMIN))
3296 return -EPERM;
3297
Li Zefandae7b662009-04-08 15:06:54 +08003298 vol_args = memdup_user(arg, sizeof(*vol_args));
Dan Carpenterd815b3f2021-11-16 14:50:25 +03003299 if (IS_ERR(vol_args))
3300 return PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003301
David Sterba748449cdb2020-02-21 13:30:14 +01003302 if (vol_args->flags & ~BTRFS_DEVICE_REMOVE_ARGS_MASK) {
Omar Sandovalfd4e9942018-05-22 15:44:01 -07003303 ret = -EOPNOTSUPP;
3304 goto out;
3305 }
Josef Bacik1a15eb72021-10-05 16:12:44 -04003306
David Sterba67ae34b2021-05-14 21:21:27 +02003307 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Josef Bacik1a15eb72021-10-05 16:12:44 -04003308 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
3309 args.devid = vol_args->devid;
3310 } else if (!strcmp("cancel", vol_args->name)) {
David Sterba67ae34b2021-05-14 21:21:27 +02003311 cancel = true;
Josef Bacik1a15eb72021-10-05 16:12:44 -04003312 } else {
3313 ret = btrfs_get_dev_args_from_path(fs_info, &args, vol_args->name);
3314 if (ret)
3315 goto out;
3316 }
3317
3318 ret = mnt_want_write_file(file);
3319 if (ret)
3320 goto out;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003321
David Sterba67ae34b2021-05-14 21:21:27 +02003322 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
3323 cancel);
3324 if (ret)
Josef Bacik1a15eb72021-10-05 16:12:44 -04003325 goto err_drop;
Anand Jain183860f2013-05-17 10:52:45 +00003326
Josef Bacik1a15eb72021-10-05 16:12:44 -04003327 /* Exclusive operation is now claimed */
3328 ret = btrfs_rm_device(fs_info, &args, &bdev, &mode);
David Sterba67ae34b2021-05-14 21:21:27 +02003329
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003330 btrfs_exclop_finish(fs_info);
Anand Jain183860f2013-05-17 10:52:45 +00003331
Anand Jain6b526ed2016-02-13 10:01:39 +08003332 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01003333 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003334 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08003335 vol_args->devid);
3336 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003337 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08003338 vol_args->name);
3339 }
Dan Carpenterc47ca322014-09-04 14:09:15 +03003340err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02003341 mnt_drop_write_file(file);
Josef Bacik3fa421d2021-07-27 17:01:17 -04003342 if (bdev)
3343 blkdev_put(bdev, mode);
Josef Bacik1a15eb72021-10-05 16:12:44 -04003344out:
3345 btrfs_put_dev_args_from_path(&args);
3346 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003347 return ret;
3348}
3349
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003350static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
3351{
Josef Bacik1a15eb72021-10-05 16:12:44 -04003352 BTRFS_DEV_LOOKUP_ARGS(args);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003353 struct inode *inode = file_inode(file);
3354 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003355 struct btrfs_ioctl_vol_args *vol_args;
Josef Bacik3fa421d2021-07-27 17:01:17 -04003356 struct block_device *bdev = NULL;
3357 fmode_t mode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003358 int ret;
Tom Rix37b45992022-01-21 05:45:22 -08003359 bool cancel = false;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003360
3361 if (!capable(CAP_SYS_ADMIN))
3362 return -EPERM;
3363
Josef Bacik1a15eb72021-10-05 16:12:44 -04003364 vol_args = memdup_user(arg, sizeof(*vol_args));
3365 if (IS_ERR(vol_args))
3366 return PTR_ERR(vol_args);
3367
3368 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
3369 if (!strcmp("cancel", vol_args->name)) {
3370 cancel = true;
3371 } else {
3372 ret = btrfs_get_dev_args_from_path(fs_info, &args, vol_args->name);
3373 if (ret)
3374 goto out;
3375 }
3376
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003377 ret = mnt_want_write_file(file);
3378 if (ret)
Josef Bacik1a15eb72021-10-05 16:12:44 -04003379 goto out;
David Sterba67ae34b2021-05-14 21:21:27 +02003380
3381 ret = exclop_start_or_cancel_reloc(fs_info, BTRFS_EXCLOP_DEV_REMOVE,
3382 cancel);
3383 if (ret == 0) {
Josef Bacik1a15eb72021-10-05 16:12:44 -04003384 ret = btrfs_rm_device(fs_info, &args, &bdev, &mode);
David Sterba67ae34b2021-05-14 21:21:27 +02003385 if (!ret)
3386 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
3387 btrfs_exclop_finish(fs_info);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003388 }
3389
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003390 mnt_drop_write_file(file);
Josef Bacik3fa421d2021-07-27 17:01:17 -04003391 if (bdev)
3392 blkdev_put(bdev, mode);
Josef Bacik1a15eb72021-10-05 16:12:44 -04003393out:
3394 btrfs_put_dev_args_from_path(&args);
3395 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003396 return ret;
3397}
3398
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003399static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
3400 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003401{
Li Zefan027ed2f2011-06-08 08:27:56 +00003402 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01003403 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003404 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Johannes Thumshirn137c5412020-07-13 21:28:58 +09003405 u64 flags_in;
Li Zefan027ed2f2011-06-08 08:27:56 +00003406 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01003407
Johannes Thumshirn137c5412020-07-13 21:28:58 +09003408 fi_args = memdup_user(arg, sizeof(*fi_args));
3409 if (IS_ERR(fi_args))
3410 return PTR_ERR(fi_args);
3411
3412 flags_in = fi_args->flags;
3413 memset(fi_args, 0, sizeof(*fi_args));
Li Zefan027ed2f2011-06-08 08:27:56 +00003414
David Sterbad03262c2017-06-16 00:09:21 +02003415 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00003416 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01003417
David Sterbad03262c2017-06-16 00:09:21 +02003418 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00003419 if (device->devid > fi_args->max_id)
3420 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01003421 }
David Sterbad03262c2017-06-16 00:09:21 +02003422 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01003423
Nikolay Borisovde37aa52018-10-30 16:43:24 +02003424 memcpy(&fi_args->fsid, fs_devices->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07003425 fi_args->nodesize = fs_info->nodesize;
3426 fi_args->sectorsize = fs_info->sectorsize;
3427 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02003428
Johannes Thumshirn137c5412020-07-13 21:28:58 +09003429 if (flags_in & BTRFS_FS_INFO_FLAG_CSUM_INFO) {
3430 fi_args->csum_type = btrfs_super_csum_type(fs_info->super_copy);
3431 fi_args->csum_size = btrfs_super_csum_size(fs_info->super_copy);
3432 fi_args->flags |= BTRFS_FS_INFO_FLAG_CSUM_INFO;
3433 }
3434
Johannes Thumshirn0fb408a2020-07-13 21:28:59 +09003435 if (flags_in & BTRFS_FS_INFO_FLAG_GENERATION) {
3436 fi_args->generation = fs_info->generation;
3437 fi_args->flags |= BTRFS_FS_INFO_FLAG_GENERATION;
3438 }
3439
Johannes Thumshirn49bac892020-07-13 21:29:00 +09003440 if (flags_in & BTRFS_FS_INFO_FLAG_METADATA_UUID) {
3441 memcpy(&fi_args->metadata_uuid, fs_devices->metadata_uuid,
3442 sizeof(fi_args->metadata_uuid));
3443 fi_args->flags |= BTRFS_FS_INFO_FLAG_METADATA_UUID;
3444 }
3445
Li Zefan027ed2f2011-06-08 08:27:56 +00003446 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
3447 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01003448
Li Zefan027ed2f2011-06-08 08:27:56 +00003449 kfree(fi_args);
3450 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003451}
3452
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003453static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
3454 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003455{
Josef Bacik562d7b12021-10-05 16:12:42 -04003456 BTRFS_DEV_LOOKUP_ARGS(args);
Jan Schmidt475f6382011-03-11 15:41:01 +01003457 struct btrfs_ioctl_dev_info_args *di_args;
3458 struct btrfs_device *dev;
Jan Schmidt475f6382011-03-11 15:41:01 +01003459 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01003460
Jan Schmidt475f6382011-03-11 15:41:01 +01003461 di_args = memdup_user(arg, sizeof(*di_args));
3462 if (IS_ERR(di_args))
3463 return PTR_ERR(di_args);
3464
Josef Bacik562d7b12021-10-05 16:12:42 -04003465 args.devid = di_args->devid;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02003466 if (!btrfs_is_empty_uuid(di_args->uuid))
Josef Bacik562d7b12021-10-05 16:12:42 -04003467 args.uuid = di_args->uuid;
Jan Schmidt475f6382011-03-11 15:41:01 +01003468
David Sterbac5593ca2017-06-16 00:09:21 +02003469 rcu_read_lock();
Josef Bacik562d7b12021-10-05 16:12:42 -04003470 dev = btrfs_find_device(fs_info->fs_devices, &args);
Jan Schmidt475f6382011-03-11 15:41:01 +01003471 if (!dev) {
3472 ret = -ENODEV;
3473 goto out;
3474 }
3475
3476 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08003477 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
3478 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01003479 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02003480 if (dev->name) {
Misono Tomohiro672d5992018-08-02 16:19:07 +09003481 strncpy(di_args->path, rcu_str_deref(dev->name),
3482 sizeof(di_args->path) - 1);
Jim Meyeringa27202f2012-04-26 18:36:56 +02003483 di_args->path[sizeof(di_args->path) - 1] = 0;
3484 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01003485 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02003486 }
Jan Schmidt475f6382011-03-11 15:41:01 +01003487
3488out:
David Sterbac5593ca2017-06-16 00:09:21 +02003489 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01003490 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
3491 ret = -EFAULT;
3492
3493 kfree(di_args);
3494 return ret;
3495}
3496
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003497static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3498{
Al Viro496ad9a2013-01-23 17:07:38 -05003499 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003500 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003501 struct btrfs_root *root = BTRFS_I(inode)->root;
3502 struct btrfs_root *new_root;
3503 struct btrfs_dir_item *di;
3504 struct btrfs_trans_handle *trans;
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003505 struct btrfs_path *path = NULL;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003506 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003507 u64 objectid = 0;
3508 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003509 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003510
3511 if (!capable(CAP_SYS_ADMIN))
3512 return -EPERM;
3513
Miao Xie3c04ce02012-11-26 08:43:07 +00003514 ret = mnt_want_write_file(file);
3515 if (ret)
3516 return ret;
3517
3518 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3519 ret = -EFAULT;
3520 goto out;
3521 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003522
3523 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303524 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003525
David Sterba56e93572020-05-15 19:35:55 +02003526 new_root = btrfs_get_fs_root(fs_info, objectid, true);
Miao Xie3c04ce02012-11-26 08:43:07 +00003527 if (IS_ERR(new_root)) {
3528 ret = PTR_ERR(new_root);
3529 goto out;
3530 }
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003531 if (!is_fstree(new_root->root_key.objectid)) {
3532 ret = -ENOENT;
3533 goto out_free;
3534 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003535
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003536 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003537 if (!path) {
3538 ret = -ENOMEM;
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003539 goto out_free;
Miao Xie3c04ce02012-11-26 08:43:07 +00003540 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003541
3542 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003543 if (IS_ERR(trans)) {
Miao Xie3c04ce02012-11-26 08:43:07 +00003544 ret = PTR_ERR(trans);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003545 goto out_free;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003546 }
3547
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003548 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3549 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003550 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003551 if (IS_ERR_OR_NULL(di)) {
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003552 btrfs_release_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003553 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003554 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003555 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003556 ret = -ENOENT;
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003557 goto out_free;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003558 }
3559
3560 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3561 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3562 btrfs_mark_buffer_dirty(path->nodes[0]);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003563 btrfs_release_path(path);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003564
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003565 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003566 btrfs_end_transaction(trans);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003567out_free:
Josef Bacik00246522020-01-24 09:33:01 -05003568 btrfs_put_root(new_root);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003569 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003570out:
3571 mnt_drop_write_file(file);
3572 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003573}
3574
Su Yuec065f5b12018-04-02 17:24:11 +08003575static void get_block_group_info(struct list_head *groups_list,
3576 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003577{
David Sterba32da53862019-10-29 19:20:18 +01003578 struct btrfs_block_group *block_group;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003579
3580 space->total_bytes = 0;
3581 space->used_bytes = 0;
3582 space->flags = 0;
3583 list_for_each_entry(block_group, groups_list, list) {
3584 space->flags = block_group->flags;
David Sterbab3470b52019-10-23 18:48:22 +02003585 space->total_bytes += block_group->length;
David Sterbabf38be62019-10-23 18:48:11 +02003586 space->used_bytes += block_group->used;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003587 }
3588}
3589
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003590static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
3591 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003592{
3593 struct btrfs_ioctl_space_args space_args;
3594 struct btrfs_ioctl_space_info space;
3595 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003596 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003597 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003598 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01003599 static const u64 types[] = {
3600 BTRFS_BLOCK_GROUP_DATA,
3601 BTRFS_BLOCK_GROUP_SYSTEM,
3602 BTRFS_BLOCK_GROUP_METADATA,
3603 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
3604 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003605 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003606 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003607 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003608 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003609 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003610
3611 if (copy_from_user(&space_args,
3612 (struct btrfs_ioctl_space_args __user *)arg,
3613 sizeof(space_args)))
3614 return -EFAULT;
3615
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003616 for (i = 0; i < num_types; i++) {
3617 struct btrfs_space_info *tmp;
3618
3619 info = NULL;
Josef Bacik72804902020-09-01 17:40:37 -04003620 list_for_each_entry(tmp, &fs_info->space_info, list) {
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003621 if (tmp->flags == types[i]) {
3622 info = tmp;
3623 break;
3624 }
3625 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003626
3627 if (!info)
3628 continue;
3629
3630 down_read(&info->groups_sem);
3631 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3632 if (!list_empty(&info->block_groups[c]))
3633 slot_count++;
3634 }
3635 up_read(&info->groups_sem);
3636 }
Josef Bacik1406e432010-01-13 18:19:06 +00003637
David Sterba36523e952014-02-07 14:34:12 +01003638 /*
3639 * Global block reserve, exported as a space_info
3640 */
3641 slot_count++;
3642
Chris Mason7fde62b2010-03-16 15:40:10 -04003643 /* space_slots == 0 means they are asking for a count */
3644 if (space_args.space_slots == 0) {
3645 space_args.total_spaces = slot_count;
3646 goto out;
3647 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003648
Dan Rosenberg51788b12011-02-14 16:04:23 -05003649 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003650
Chris Mason7fde62b2010-03-16 15:40:10 -04003651 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003652
Chris Mason7fde62b2010-03-16 15:40:10 -04003653 /* we generally have at most 6 or so space infos, one for each raid
3654 * level. So, a whole page should be more than enough for everyone
3655 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003656 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04003657 return -ENOMEM;
3658
3659 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01003660 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04003661 if (!dest)
3662 return -ENOMEM;
3663 dest_orig = dest;
3664
3665 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003666 for (i = 0; i < num_types; i++) {
3667 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003668
Dan Rosenberg51788b12011-02-14 16:04:23 -05003669 if (!slot_count)
3670 break;
3671
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003672 info = NULL;
Josef Bacik72804902020-09-01 17:40:37 -04003673 list_for_each_entry(tmp, &fs_info->space_info, list) {
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003674 if (tmp->flags == types[i]) {
3675 info = tmp;
3676 break;
3677 }
3678 }
Chris Mason7fde62b2010-03-16 15:40:10 -04003679
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003680 if (!info)
3681 continue;
3682 down_read(&info->groups_sem);
3683 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3684 if (!list_empty(&info->block_groups[c])) {
Su Yuec065f5b12018-04-02 17:24:11 +08003685 get_block_group_info(&info->block_groups[c],
3686 &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003687 memcpy(dest, &space, sizeof(space));
3688 dest++;
3689 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003690 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003691 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003692 if (!slot_count)
3693 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003694 }
3695 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003696 }
Josef Bacik1406e432010-01-13 18:19:06 +00003697
David Sterba36523e952014-02-07 14:34:12 +01003698 /*
3699 * Add global block reserve
3700 */
3701 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003702 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01003703
3704 spin_lock(&block_rsv->lock);
3705 space.total_bytes = block_rsv->size;
3706 space.used_bytes = block_rsv->size - block_rsv->reserved;
3707 spin_unlock(&block_rsv->lock);
3708 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3709 memcpy(dest, &space, sizeof(space));
3710 space_args.total_spaces++;
3711 }
3712
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003713 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003714 (arg + sizeof(struct btrfs_ioctl_space_args));
3715
3716 if (copy_to_user(user_dest, dest_orig, alloc_size))
3717 ret = -EFAULT;
3718
3719 kfree(dest_orig);
3720out:
3721 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003722 ret = -EFAULT;
3723
3724 return ret;
3725}
3726
Miao Xie9a8c28b2012-11-26 08:40:43 +00003727static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3728 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003729{
Sage Weil46204592010-10-29 15:41:32 -04003730 struct btrfs_trans_handle *trans;
3731 u64 transid;
3732
Miao Xied4edf392013-02-20 09:17:06 +00003733 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00003734 if (IS_ERR(trans)) {
3735 if (PTR_ERR(trans) != -ENOENT)
3736 return PTR_ERR(trans);
3737
3738 /* No running transaction, don't bother */
3739 transid = root->fs_info->last_trans_committed;
3740 goto out;
3741 }
Sage Weil46204592010-10-29 15:41:32 -04003742 transid = trans->transid;
Josef Bacikfdfbf022021-11-05 16:45:28 -04003743 btrfs_commit_transaction_async(trans);
Miao Xieff7c1d32012-11-26 08:41:29 +00003744out:
Sage Weil46204592010-10-29 15:41:32 -04003745 if (argp)
3746 if (copy_to_user(argp, &transid, sizeof(transid)))
3747 return -EFAULT;
3748 return 0;
3749}
3750
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003751static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00003752 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003753{
Sage Weil46204592010-10-29 15:41:32 -04003754 u64 transid;
3755
3756 if (argp) {
3757 if (copy_from_user(&transid, argp, sizeof(transid)))
3758 return -EFAULT;
3759 } else {
3760 transid = 0; /* current trans */
3761 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003762 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04003763}
3764
Miao Xieb8e95482012-11-26 08:48:01 +00003765static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003766{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003767 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01003768 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00003769 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003770
3771 if (!capable(CAP_SYS_ADMIN))
3772 return -EPERM;
3773
3774 sa = memdup_user(arg, sizeof(*sa));
3775 if (IS_ERR(sa))
3776 return PTR_ERR(sa);
3777
Miao Xieb8e95482012-11-26 08:48:01 +00003778 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3779 ret = mnt_want_write_file(file);
3780 if (ret)
3781 goto out;
3782 }
3783
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003784 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003785 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3786 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01003787
Filipe Manana5afe6ce2020-01-16 11:29:20 +00003788 /*
3789 * Copy scrub args to user space even if btrfs_scrub_dev() returned an
3790 * error. This is important as it allows user space to know how much
3791 * progress scrub has done. For example, if scrub is canceled we get
3792 * -ECANCELED from btrfs_scrub_dev() and return that error back to user
3793 * space. Later user space can inspect the progress from the structure
3794 * btrfs_ioctl_scrub_args and resume scrub from where it left off
3795 * previously (btrfs-progs does this).
3796 * If we fail to copy the btrfs_ioctl_scrub_args structure to user space
3797 * then return -EFAULT to signal the structure was not copied or it may
3798 * be corrupt and unreliable due to a partial copy.
3799 */
3800 if (copy_to_user(arg, sa, sizeof(*sa)))
Jan Schmidt475f6382011-03-11 15:41:01 +01003801 ret = -EFAULT;
3802
Miao Xieb8e95482012-11-26 08:48:01 +00003803 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3804 mnt_drop_write_file(file);
3805out:
Jan Schmidt475f6382011-03-11 15:41:01 +01003806 kfree(sa);
3807 return ret;
3808}
3809
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003810static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01003811{
3812 if (!capable(CAP_SYS_ADMIN))
3813 return -EPERM;
3814
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003815 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01003816}
3817
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003818static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01003819 void __user *arg)
3820{
3821 struct btrfs_ioctl_scrub_args *sa;
3822 int ret;
3823
3824 if (!capable(CAP_SYS_ADMIN))
3825 return -EPERM;
3826
3827 sa = memdup_user(arg, sizeof(*sa));
3828 if (IS_ERR(sa))
3829 return PTR_ERR(sa);
3830
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003831 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01003832
Filipe Manana4fa99b02018-12-14 19:45:13 +00003833 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
Jan Schmidt475f6382011-03-11 15:41:01 +01003834 ret = -EFAULT;
3835
3836 kfree(sa);
3837 return ret;
3838}
3839
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003840static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06003841 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003842{
3843 struct btrfs_ioctl_get_dev_stats *sa;
3844 int ret;
3845
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003846 sa = memdup_user(arg, sizeof(*sa));
3847 if (IS_ERR(sa))
3848 return PTR_ERR(sa);
3849
David Sterbab27f7c02012-06-22 06:30:39 -06003850 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3851 kfree(sa);
3852 return -EPERM;
3853 }
3854
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003855 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003856
Filipe Mananaeee99572018-12-14 19:45:22 +00003857 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003858 ret = -EFAULT;
3859
3860 kfree(sa);
3861 return ret;
3862}
3863
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003864static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
3865 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003866{
3867 struct btrfs_ioctl_dev_replace_args *p;
3868 int ret;
3869
3870 if (!capable(CAP_SYS_ADMIN))
3871 return -EPERM;
3872
3873 p = memdup_user(arg, sizeof(*p));
3874 if (IS_ERR(p))
3875 return PTR_ERR(p);
3876
3877 switch (p->cmd) {
3878 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01003879 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03003880 ret = -EROFS;
3881 goto out;
3882 }
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003883 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REPLACE)) {
Anand Jaine57138b2013-08-21 11:44:48 +08003884 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003885 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003886 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003887 btrfs_exclop_finish(fs_info);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003888 }
3889 break;
3890 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003891 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003892 ret = 0;
3893 break;
3894 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Anand Jain17d202b2018-02-12 23:33:30 +08003895 p->result = btrfs_dev_replace_cancel(fs_info);
Anand Jain97282032018-02-12 23:33:29 +08003896 ret = 0;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003897 break;
3898 default:
3899 ret = -EINVAL;
3900 break;
3901 }
3902
Filipe Mananad3a53282019-01-08 11:42:09 +00003903 if ((ret == 0 || ret == -ECANCELED) && copy_to_user(arg, p, sizeof(*p)))
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003904 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03003905out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003906 kfree(p);
3907 return ret;
3908}
3909
Jan Schmidtd7728c92011-07-07 16:48:38 +02003910static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3911{
3912 int ret = 0;
3913 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003914 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003915 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003916 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003917 struct inode_fs_paths *ipath = NULL;
3918 struct btrfs_path *path;
3919
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00003920 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02003921 return -EPERM;
3922
3923 path = btrfs_alloc_path();
3924 if (!path) {
3925 ret = -ENOMEM;
3926 goto out;
3927 }
3928
3929 ipa = memdup_user(arg, sizeof(*ipa));
3930 if (IS_ERR(ipa)) {
3931 ret = PTR_ERR(ipa);
3932 ipa = NULL;
3933 goto out;
3934 }
3935
3936 size = min_t(u32, ipa->size, 4096);
3937 ipath = init_ipath(size, root, path);
3938 if (IS_ERR(ipath)) {
3939 ret = PTR_ERR(ipath);
3940 ipath = NULL;
3941 goto out;
3942 }
3943
3944 ret = paths_from_inode(ipa->inum, ipath);
3945 if (ret < 0)
3946 goto out;
3947
3948 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003949 rel_ptr = ipath->fspath->val[i] -
3950 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003951 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003952 }
3953
Omar Sandoval718dc5f2017-08-22 23:46:05 -07003954 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
3955 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003956 if (ret) {
3957 ret = -EFAULT;
3958 goto out;
3959 }
3960
3961out:
3962 btrfs_free_path(path);
3963 free_ipath(ipath);
3964 kfree(ipa);
3965
3966 return ret;
3967}
3968
3969static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3970{
3971 struct btrfs_data_container *inodes = ctx;
3972 const size_t c = 3 * sizeof(u64);
3973
3974 if (inodes->bytes_left >= c) {
3975 inodes->bytes_left -= c;
3976 inodes->val[inodes->elem_cnt] = inum;
3977 inodes->val[inodes->elem_cnt + 1] = offset;
3978 inodes->val[inodes->elem_cnt + 2] = root;
3979 inodes->elem_cnt += 3;
3980 } else {
3981 inodes->bytes_missing += c - inodes->bytes_left;
3982 inodes->bytes_left = 0;
3983 inodes->elem_missed += 3;
3984 }
3985
3986 return 0;
3987}
3988
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003989static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003990 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003991{
3992 int ret = 0;
3993 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003994 struct btrfs_ioctl_logical_ino_args *loi;
3995 struct btrfs_data_container *inodes = NULL;
3996 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003997 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003998
3999 if (!capable(CAP_SYS_ADMIN))
4000 return -EPERM;
4001
4002 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304003 if (IS_ERR(loi))
4004 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004005
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004006 if (version == 1) {
4007 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004008 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004009 } else {
4010 /* All reserved bits must be 0 for now */
4011 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
4012 ret = -EINVAL;
4013 goto out_loi;
4014 }
4015 /* Only accept flags we have defined so far */
4016 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
4017 ret = -EINVAL;
4018 goto out_loi;
4019 }
4020 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004021 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004022 }
4023
Jan Schmidtd7728c92011-07-07 16:48:38 +02004024 path = btrfs_alloc_path();
4025 if (!path) {
4026 ret = -ENOMEM;
4027 goto out;
4028 }
4029
Jan Schmidtd7728c92011-07-07 16:48:38 +02004030 inodes = init_data_container(size);
4031 if (IS_ERR(inodes)) {
4032 ret = PTR_ERR(inodes);
4033 inodes = NULL;
4034 goto out;
4035 }
4036
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004037 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004038 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06004039 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004040 ret = -ENOENT;
4041 if (ret < 0)
4042 goto out;
4043
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004044 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4045 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004046 if (ret)
4047 ret = -EFAULT;
4048
4049out:
4050 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004051 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004052out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02004053 kfree(loi);
4054
4055 return ret;
4056}
4057
David Sterba008ef092018-03-21 02:05:27 +01004058void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004059 struct btrfs_ioctl_balance_args *bargs)
4060{
4061 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4062
4063 bargs->flags = bctl->flags;
4064
David Sterba3009a622018-03-21 01:31:04 +01004065 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags))
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004066 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4067 if (atomic_read(&fs_info->balance_pause_req))
4068 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004069 if (atomic_read(&fs_info->balance_cancel_req))
4070 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004071
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004072 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4073 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4074 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004075
David Sterba008ef092018-03-21 02:05:27 +01004076 spin_lock(&fs_info->balance_lock);
4077 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4078 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004079}
4080
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004081static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004082{
Al Viro496ad9a2013-01-23 17:07:38 -05004083 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004084 struct btrfs_fs_info *fs_info = root->fs_info;
4085 struct btrfs_ioctl_balance_args *bargs;
4086 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004087 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004088 int ret;
4089
Nikolay Borisov6c405b22021-11-10 13:41:04 +02004090 if (!arg)
4091 btrfs_warn(fs_info,
4092 "IOC_BALANCE ioctl (v1) is deprecated and will be removed in kernel 5.18");
4093
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004094 if (!capable(CAP_SYS_ADMIN))
4095 return -EPERM;
4096
Liu Boe54bfa312012-06-29 03:58:48 -06004097 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004098 if (ret)
4099 return ret;
4100
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004101again:
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004102 if (btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004103 mutex_lock(&fs_info->balance_mutex);
4104 need_unlock = true;
4105 goto locked;
4106 }
4107
4108 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004109 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004110 * (1) some other op is running
4111 * (2) balance is running
4112 * (3) balance is paused -- special case (think resume)
4113 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004114 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004115 if (fs_info->balance_ctl) {
4116 /* this is either (2) or (3) */
David Sterba3009a622018-03-21 01:31:04 +01004117 if (!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004118 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004119 /*
4120 * Lock released to allow other waiters to continue,
4121 * we'll reexamine the status again.
4122 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004123 mutex_lock(&fs_info->balance_mutex);
4124
4125 if (fs_info->balance_ctl &&
David Sterba3009a622018-03-21 01:31:04 +01004126 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004127 /* this is (3) */
4128 need_unlock = false;
4129 goto locked;
4130 }
4131
4132 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004133 goto again;
4134 } else {
4135 /* this is (2) */
4136 mutex_unlock(&fs_info->balance_mutex);
4137 ret = -EINPROGRESS;
4138 goto out;
4139 }
4140 } else {
4141 /* this is (1) */
4142 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004143 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004144 goto out;
4145 }
4146
4147locked:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004148
4149 if (arg) {
4150 bargs = memdup_user(arg, sizeof(*bargs));
4151 if (IS_ERR(bargs)) {
4152 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004153 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004154 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004155
4156 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4157 if (!fs_info->balance_ctl) {
4158 ret = -ENOTCONN;
4159 goto out_bargs;
4160 }
4161
4162 bctl = fs_info->balance_ctl;
4163 spin_lock(&fs_info->balance_lock);
4164 bctl->flags |= BTRFS_BALANCE_RESUME;
4165 spin_unlock(&fs_info->balance_lock);
Nikolay Borisovefc0e692021-11-25 11:14:41 +02004166 btrfs_exclop_balance(fs_info, BTRFS_EXCLOP_BALANCE);
Ilya Dryomovde322262012-01-16 22:04:49 +02004167
4168 goto do_balance;
4169 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004170 } else {
4171 bargs = NULL;
4172 }
4173
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004174 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004175 ret = -EINPROGRESS;
4176 goto out_bargs;
4177 }
4178
David Sterba8d2db782015-11-04 15:38:29 +01004179 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004180 if (!bctl) {
4181 ret = -ENOMEM;
4182 goto out_bargs;
4183 }
4184
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004185 if (arg) {
4186 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4187 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4188 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4189
4190 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004191 } else {
4192 /* balance everything - no filters */
4193 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004194 }
4195
David Sterba8eb93452015-10-12 16:55:54 +02004196 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4197 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004198 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004199 }
4200
Ilya Dryomovde322262012-01-16 22:04:49 +02004201do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004202 /*
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004203 * Ownership of bctl and exclusive operation goes to btrfs_balance.
4204 * bctl is freed in reset_balance_state, or, if restriper was paused
4205 * all the way until unmount, in free_fs_info. The flag should be
4206 * cleared after reset_balance_state.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004207 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004208 need_unlock = false;
4209
David Sterba6fcf6e22018-05-07 17:44:03 +02004210 ret = btrfs_balance(fs_info, bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004211 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004212
Filipe Mananad00c2d92019-01-08 11:42:01 +00004213 if ((ret == 0 || ret == -ECANCELED) && arg) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004214 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4215 ret = -EFAULT;
4216 }
4217
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004218out_bctl:
4219 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004220out_bargs:
4221 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004222out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004223 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004224 if (need_unlock)
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004225 btrfs_exclop_finish(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004226out:
Liu Boe54bfa312012-06-29 03:58:48 -06004227 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004228 return ret;
4229}
4230
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004231static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004232{
4233 if (!capable(CAP_SYS_ADMIN))
4234 return -EPERM;
4235
4236 switch (cmd) {
4237 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004238 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004239 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004240 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004241 }
4242
4243 return -EINVAL;
4244}
4245
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004246static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004247 void __user *arg)
4248{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004249 struct btrfs_ioctl_balance_args *bargs;
4250 int ret = 0;
4251
4252 if (!capable(CAP_SYS_ADMIN))
4253 return -EPERM;
4254
4255 mutex_lock(&fs_info->balance_mutex);
4256 if (!fs_info->balance_ctl) {
4257 ret = -ENOTCONN;
4258 goto out;
4259 }
4260
David Sterba8d2db782015-11-04 15:38:29 +01004261 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004262 if (!bargs) {
4263 ret = -ENOMEM;
4264 goto out;
4265 }
4266
David Sterba008ef092018-03-21 02:05:27 +01004267 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004268
4269 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4270 ret = -EFAULT;
4271
4272 kfree(bargs);
4273out:
4274 mutex_unlock(&fs_info->balance_mutex);
4275 return ret;
4276}
4277
Miao Xie905b0dd2012-11-26 08:50:11 +00004278static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004279{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004280 struct inode *inode = file_inode(file);
4281 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004282 struct btrfs_ioctl_quota_ctl_args *sa;
Arne Jansen5d13a372011-09-14 15:53:51 +02004283 int ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004284
4285 if (!capable(CAP_SYS_ADMIN))
4286 return -EPERM;
4287
Miao Xie905b0dd2012-11-26 08:50:11 +00004288 ret = mnt_want_write_file(file);
4289 if (ret)
4290 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004291
4292 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004293 if (IS_ERR(sa)) {
4294 ret = PTR_ERR(sa);
4295 goto drop_write;
4296 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004297
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004298 down_write(&fs_info->subvol_sem);
Arne Jansen5d13a372011-09-14 15:53:51 +02004299
4300 switch (sa->cmd) {
4301 case BTRFS_QUOTA_CTL_ENABLE:
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03004302 ret = btrfs_quota_enable(fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004303 break;
4304 case BTRFS_QUOTA_CTL_DISABLE:
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03004305 ret = btrfs_quota_disable(fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004306 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004307 default:
4308 ret = -EINVAL;
4309 break;
4310 }
4311
Arne Jansen5d13a372011-09-14 15:53:51 +02004312 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004313 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004314drop_write:
4315 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004316 return ret;
4317}
4318
Miao Xie905b0dd2012-11-26 08:50:11 +00004319static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004320{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004321 struct inode *inode = file_inode(file);
4322 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4323 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004324 struct btrfs_ioctl_qgroup_assign_args *sa;
4325 struct btrfs_trans_handle *trans;
4326 int ret;
4327 int err;
4328
4329 if (!capable(CAP_SYS_ADMIN))
4330 return -EPERM;
4331
Miao Xie905b0dd2012-11-26 08:50:11 +00004332 ret = mnt_want_write_file(file);
4333 if (ret)
4334 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004335
4336 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004337 if (IS_ERR(sa)) {
4338 ret = PTR_ERR(sa);
4339 goto drop_write;
4340 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004341
4342 trans = btrfs_join_transaction(root);
4343 if (IS_ERR(trans)) {
4344 ret = PTR_ERR(trans);
4345 goto out;
4346 }
4347
Arne Jansen5d13a372011-09-14 15:53:51 +02004348 if (sa->assign) {
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +08004349 ret = btrfs_add_qgroup_relation(trans, sa->src, sa->dst);
Arne Jansen5d13a372011-09-14 15:53:51 +02004350 } else {
Lu Fengqi39616c22018-07-18 14:45:32 +08004351 ret = btrfs_del_qgroup_relation(trans, sa->src, sa->dst);
Arne Jansen5d13a372011-09-14 15:53:51 +02004352 }
4353
Qu Wenruoe082f562015-02-27 16:24:28 +08004354 /* update qgroup status and info */
Lu Fengqi280f8bd2018-07-18 14:45:40 +08004355 err = btrfs_run_qgroups(trans);
Qu Wenruoe082f562015-02-27 16:24:28 +08004356 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004357 btrfs_handle_fs_error(fs_info, err,
4358 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004359 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004360 if (err && !ret)
4361 ret = err;
4362
4363out:
4364 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004365drop_write:
4366 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004367 return ret;
4368}
4369
Miao Xie905b0dd2012-11-26 08:50:11 +00004370static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004371{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004372 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004373 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004374 struct btrfs_ioctl_qgroup_create_args *sa;
4375 struct btrfs_trans_handle *trans;
4376 int ret;
4377 int err;
4378
4379 if (!capable(CAP_SYS_ADMIN))
4380 return -EPERM;
4381
Miao Xie905b0dd2012-11-26 08:50:11 +00004382 ret = mnt_want_write_file(file);
4383 if (ret)
4384 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004385
4386 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004387 if (IS_ERR(sa)) {
4388 ret = PTR_ERR(sa);
4389 goto drop_write;
4390 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004391
Miao Xied86e56c2012-11-15 11:35:41 +00004392 if (!sa->qgroupid) {
4393 ret = -EINVAL;
4394 goto out;
4395 }
4396
Arne Jansen5d13a372011-09-14 15:53:51 +02004397 trans = btrfs_join_transaction(root);
4398 if (IS_ERR(trans)) {
4399 ret = PTR_ERR(trans);
4400 goto out;
4401 }
4402
Arne Jansen5d13a372011-09-14 15:53:51 +02004403 if (sa->create) {
Lu Fengqi49a05ec2018-07-18 14:45:33 +08004404 ret = btrfs_create_qgroup(trans, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004405 } else {
Lu Fengqi3efbee12018-07-18 14:45:34 +08004406 ret = btrfs_remove_qgroup(trans, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004407 }
4408
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004409 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004410 if (err && !ret)
4411 ret = err;
4412
4413out:
4414 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004415drop_write:
4416 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004417 return ret;
4418}
4419
Miao Xie905b0dd2012-11-26 08:50:11 +00004420static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004421{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004422 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004423 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004424 struct btrfs_ioctl_qgroup_limit_args *sa;
4425 struct btrfs_trans_handle *trans;
4426 int ret;
4427 int err;
4428 u64 qgroupid;
4429
4430 if (!capable(CAP_SYS_ADMIN))
4431 return -EPERM;
4432
Miao Xie905b0dd2012-11-26 08:50:11 +00004433 ret = mnt_want_write_file(file);
4434 if (ret)
4435 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004436
4437 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004438 if (IS_ERR(sa)) {
4439 ret = PTR_ERR(sa);
4440 goto drop_write;
4441 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004442
4443 trans = btrfs_join_transaction(root);
4444 if (IS_ERR(trans)) {
4445 ret = PTR_ERR(trans);
4446 goto out;
4447 }
4448
4449 qgroupid = sa->qgroupid;
4450 if (!qgroupid) {
4451 /* take the current subvol as qgroup */
4452 qgroupid = root->root_key.objectid;
4453 }
4454
Lu Fengqif0042d52018-07-18 14:45:35 +08004455 ret = btrfs_limit_qgroup(trans, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004456
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004457 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004458 if (err && !ret)
4459 ret = err;
4460
4461out:
4462 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004463drop_write:
4464 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004465 return ret;
4466}
4467
Jan Schmidt2f232032013-04-25 16:04:51 +00004468static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4469{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004470 struct inode *inode = file_inode(file);
4471 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004472 struct btrfs_ioctl_quota_rescan_args *qsa;
4473 int ret;
4474
4475 if (!capable(CAP_SYS_ADMIN))
4476 return -EPERM;
4477
4478 ret = mnt_want_write_file(file);
4479 if (ret)
4480 return ret;
4481
4482 qsa = memdup_user(arg, sizeof(*qsa));
4483 if (IS_ERR(qsa)) {
4484 ret = PTR_ERR(qsa);
4485 goto drop_write;
4486 }
4487
4488 if (qsa->flags) {
4489 ret = -EINVAL;
4490 goto out;
4491 }
4492
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004493 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00004494
4495out:
4496 kfree(qsa);
4497drop_write:
4498 mnt_drop_write_file(file);
4499 return ret;
4500}
4501
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004502static long btrfs_ioctl_quota_rescan_status(struct btrfs_fs_info *fs_info,
4503 void __user *arg)
Jan Schmidt2f232032013-04-25 16:04:51 +00004504{
Goldwyn Rodrigues0afb6032021-07-27 16:17:29 -05004505 struct btrfs_ioctl_quota_rescan_args qsa = {0};
Jan Schmidt2f232032013-04-25 16:04:51 +00004506
4507 if (!capable(CAP_SYS_ADMIN))
4508 return -EPERM;
4509
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004510 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Goldwyn Rodrigues0afb6032021-07-27 16:17:29 -05004511 qsa.flags = 1;
4512 qsa.progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00004513 }
4514
Goldwyn Rodrigues0afb6032021-07-27 16:17:29 -05004515 if (copy_to_user(arg, &qsa, sizeof(qsa)))
Anand Jain991a3da2021-07-28 14:20:41 +08004516 return -EFAULT;
Jan Schmidt2f232032013-04-25 16:04:51 +00004517
Anand Jain991a3da2021-07-28 14:20:41 +08004518 return 0;
Jan Schmidt2f232032013-04-25 16:04:51 +00004519}
4520
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004521static long btrfs_ioctl_quota_rescan_wait(struct btrfs_fs_info *fs_info,
4522 void __user *arg)
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004523{
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004524 if (!capable(CAP_SYS_ADMIN))
4525 return -EPERM;
4526
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004527 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004528}
4529
Hugo Millsabccd002014-01-30 20:17:00 +00004530static long _btrfs_ioctl_set_received_subvol(struct file *file,
Christian Braunere4fed172021-07-27 12:48:55 +02004531 struct user_namespace *mnt_userns,
Hugo Millsabccd002014-01-30 20:17:00 +00004532 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004533{
Al Viro496ad9a2013-01-23 17:07:38 -05004534 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004535 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02004536 struct btrfs_root *root = BTRFS_I(inode)->root;
4537 struct btrfs_root_item *root_item = &root->root_item;
4538 struct btrfs_trans_handle *trans;
Deepa Dinamani95582b02018-05-08 19:36:02 -07004539 struct timespec64 ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02004540 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004541 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004542
Christian Braunere4fed172021-07-27 12:48:55 +02004543 if (!inode_owner_or_capable(mnt_userns, inode))
David Sterbabd60ea02014-01-16 15:50:22 +01004544 return -EPERM;
4545
Alexander Block8ea05e32012-07-25 17:35:53 +02004546 ret = mnt_want_write_file(file);
4547 if (ret < 0)
4548 return ret;
4549
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004550 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02004551
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004552 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02004553 ret = -EINVAL;
4554 goto out;
4555 }
4556
4557 if (btrfs_root_readonly(root)) {
4558 ret = -EROFS;
4559 goto out;
4560 }
4561
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004562 /*
4563 * 1 - root item
4564 * 2 - uuid items (received uuid + subvol uuid)
4565 */
4566 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004567 if (IS_ERR(trans)) {
4568 ret = PTR_ERR(trans);
4569 trans = NULL;
4570 goto out;
4571 }
4572
4573 sa->rtransid = trans->transid;
4574 sa->rtime.sec = ct.tv_sec;
4575 sa->rtime.nsec = ct.tv_nsec;
4576
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004577 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4578 BTRFS_UUID_SIZE);
4579 if (received_uuid_changed &&
Nikolay Borisovd87ff752018-03-12 14:48:09 +02004580 !btrfs_is_empty_uuid(root_item->received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08004581 ret = btrfs_uuid_tree_remove(trans, root_item->received_uuid,
Nikolay Borisovd87ff752018-03-12 14:48:09 +02004582 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4583 root->root_key.objectid);
4584 if (ret && ret != -ENOENT) {
4585 btrfs_abort_transaction(trans, ret);
4586 btrfs_end_transaction(trans);
4587 goto out;
4588 }
4589 }
Alexander Block8ea05e32012-07-25 17:35:53 +02004590 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4591 btrfs_set_root_stransid(root_item, sa->stransid);
4592 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004593 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4594 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4595 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4596 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004597
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004598 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02004599 &root->root_key, &root->root_item);
4600 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004601 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004602 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004603 }
4604 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004605 ret = btrfs_uuid_tree_add(trans, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004606 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4607 root->root_key.objectid);
4608 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004609 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03004610 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004611 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004612 }
4613 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004614 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00004615out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004616 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00004617 mnt_drop_write_file(file);
4618 return ret;
4619}
4620
4621#ifdef CONFIG_64BIT
4622static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4623 void __user *arg)
4624{
4625 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4626 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4627 int ret = 0;
4628
4629 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304630 if (IS_ERR(args32))
4631 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00004632
David Sterba8d2db782015-11-04 15:38:29 +01004633 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004634 if (!args64) {
4635 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004636 goto out;
4637 }
4638
4639 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4640 args64->stransid = args32->stransid;
4641 args64->rtransid = args32->rtransid;
4642 args64->stime.sec = args32->stime.sec;
4643 args64->stime.nsec = args32->stime.nsec;
4644 args64->rtime.sec = args32->rtime.sec;
4645 args64->rtime.nsec = args32->rtime.nsec;
4646 args64->flags = args32->flags;
4647
Christian Braunere4fed172021-07-27 12:48:55 +02004648 ret = _btrfs_ioctl_set_received_subvol(file, file_mnt_user_ns(file), args64);
Hugo Millsabccd002014-01-30 20:17:00 +00004649 if (ret)
4650 goto out;
4651
4652 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4653 args32->stransid = args64->stransid;
4654 args32->rtransid = args64->rtransid;
4655 args32->stime.sec = args64->stime.sec;
4656 args32->stime.nsec = args64->stime.nsec;
4657 args32->rtime.sec = args64->rtime.sec;
4658 args32->rtime.nsec = args64->rtime.nsec;
4659 args32->flags = args64->flags;
4660
4661 ret = copy_to_user(arg, args32, sizeof(*args32));
4662 if (ret)
4663 ret = -EFAULT;
4664
4665out:
4666 kfree(args32);
4667 kfree(args64);
4668 return ret;
4669}
4670#endif
4671
4672static long btrfs_ioctl_set_received_subvol(struct file *file,
4673 void __user *arg)
4674{
4675 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4676 int ret = 0;
4677
4678 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304679 if (IS_ERR(sa))
4680 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00004681
Christian Braunere4fed172021-07-27 12:48:55 +02004682 ret = _btrfs_ioctl_set_received_subvol(file, file_mnt_user_ns(file), sa);
Hugo Millsabccd002014-01-30 20:17:00 +00004683
4684 if (ret)
4685 goto out;
4686
Alexander Block8ea05e32012-07-25 17:35:53 +02004687 ret = copy_to_user(arg, sa, sizeof(*sa));
4688 if (ret)
4689 ret = -EFAULT;
4690
4691out:
4692 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004693 return ret;
4694}
4695
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004696static int btrfs_ioctl_get_fslabel(struct btrfs_fs_info *fs_info,
4697 void __user *arg)
jeff.liu867ab662013-01-05 02:48:01 +00004698{
Anand Jaina1b83ac2013-07-19 17:39:32 +08004699 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004700 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004701 char label[BTRFS_LABEL_SIZE];
4702
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004703 spin_lock(&fs_info->super_lock);
4704 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4705 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08004706
4707 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00004708
4709 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004710 btrfs_warn(fs_info,
4711 "label is too long, return the first %zu bytes",
4712 --len);
jeff.liu867ab662013-01-05 02:48:01 +00004713 }
4714
jeff.liu867ab662013-01-05 02:48:01 +00004715 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00004716
4717 return ret ? -EFAULT : 0;
4718}
4719
jeff.liua8bfd4a2013-01-05 02:48:08 +00004720static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4721{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004722 struct inode *inode = file_inode(file);
4723 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4724 struct btrfs_root *root = BTRFS_I(inode)->root;
4725 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00004726 struct btrfs_trans_handle *trans;
4727 char label[BTRFS_LABEL_SIZE];
4728 int ret;
4729
4730 if (!capable(CAP_SYS_ADMIN))
4731 return -EPERM;
4732
4733 if (copy_from_user(label, arg, sizeof(label)))
4734 return -EFAULT;
4735
4736 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004737 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004738 "unable to set label with more than %d bytes",
4739 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004740 return -EINVAL;
4741 }
4742
4743 ret = mnt_want_write_file(file);
4744 if (ret)
4745 return ret;
4746
jeff.liua8bfd4a2013-01-05 02:48:08 +00004747 trans = btrfs_start_transaction(root, 0);
4748 if (IS_ERR(trans)) {
4749 ret = PTR_ERR(trans);
4750 goto out_unlock;
4751 }
4752
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004753 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004754 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004755 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004756 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004757
4758out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00004759 mnt_drop_write_file(file);
4760 return ret;
4761}
4762
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004763#define INIT_FEATURE_FLAGS(suffix) \
4764 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
4765 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
4766 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
4767
David Sterbad5131b62016-02-17 15:26:27 +01004768int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004769{
David Sterba4d4ab6d2015-11-19 11:42:31 +01004770 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004771 INIT_FEATURE_FLAGS(SUPP),
4772 INIT_FEATURE_FLAGS(SAFE_SET),
4773 INIT_FEATURE_FLAGS(SAFE_CLEAR)
4774 };
4775
4776 if (copy_to_user(arg, &features, sizeof(features)))
4777 return -EFAULT;
4778
4779 return 0;
4780}
4781
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004782static int btrfs_ioctl_get_features(struct btrfs_fs_info *fs_info,
4783 void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004784{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004785 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004786 struct btrfs_ioctl_feature_flags features;
4787
4788 features.compat_flags = btrfs_super_compat_flags(super_block);
4789 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
4790 features.incompat_flags = btrfs_super_incompat_flags(super_block);
4791
4792 if (copy_to_user(arg, &features, sizeof(features)))
4793 return -EFAULT;
4794
4795 return 0;
4796}
4797
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004798static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004799 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004800 u64 change_mask, u64 flags, u64 supported_flags,
4801 u64 safe_set, u64 safe_clear)
4802{
David Sterbaf10152b2019-08-01 19:07:55 +02004803 const char *type = btrfs_feature_set_name(set);
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004804 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004805 u64 disallowed, unsupported;
4806 u64 set_mask = flags & change_mask;
4807 u64 clear_mask = ~flags & change_mask;
4808
4809 unsupported = set_mask & ~supported_flags;
4810 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004811 names = btrfs_printable_features(set, unsupported);
4812 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004813 btrfs_warn(fs_info,
4814 "this kernel does not support the %s feature bit%s",
4815 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004816 kfree(names);
4817 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004818 btrfs_warn(fs_info,
4819 "this kernel does not support %s bits 0x%llx",
4820 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004821 return -EOPNOTSUPP;
4822 }
4823
4824 disallowed = set_mask & ~safe_set;
4825 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004826 names = btrfs_printable_features(set, disallowed);
4827 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004828 btrfs_warn(fs_info,
4829 "can't set the %s feature bit%s while mounted",
4830 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004831 kfree(names);
4832 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004833 btrfs_warn(fs_info,
4834 "can't set %s bits 0x%llx while mounted",
4835 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004836 return -EPERM;
4837 }
4838
4839 disallowed = clear_mask & ~safe_clear;
4840 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004841 names = btrfs_printable_features(set, disallowed);
4842 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004843 btrfs_warn(fs_info,
4844 "can't clear the %s feature bit%s while mounted",
4845 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004846 kfree(names);
4847 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004848 btrfs_warn(fs_info,
4849 "can't clear %s bits 0x%llx while mounted",
4850 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004851 return -EPERM;
4852 }
4853
4854 return 0;
4855}
4856
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004857#define check_feature(fs_info, change_mask, flags, mask_base) \
4858check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004859 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
4860 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
4861 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
4862
4863static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
4864{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004865 struct inode *inode = file_inode(file);
4866 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4867 struct btrfs_root *root = BTRFS_I(inode)->root;
4868 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004869 struct btrfs_ioctl_feature_flags flags[2];
4870 struct btrfs_trans_handle *trans;
4871 u64 newflags;
4872 int ret;
4873
4874 if (!capable(CAP_SYS_ADMIN))
4875 return -EPERM;
4876
4877 if (copy_from_user(flags, arg, sizeof(flags)))
4878 return -EFAULT;
4879
4880 /* Nothing to do */
4881 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
4882 !flags[0].incompat_flags)
4883 return 0;
4884
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004885 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004886 flags[1].compat_flags, COMPAT);
4887 if (ret)
4888 return ret;
4889
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004890 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004891 flags[1].compat_ro_flags, COMPAT_RO);
4892 if (ret)
4893 return ret;
4894
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004895 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004896 flags[1].incompat_flags, INCOMPAT);
4897 if (ret)
4898 return ret;
4899
David Sterba7ab19622016-05-04 11:32:00 +02004900 ret = mnt_want_write_file(file);
4901 if (ret)
4902 return ret;
4903
David Sterba8051aa12014-02-07 14:34:04 +01004904 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02004905 if (IS_ERR(trans)) {
4906 ret = PTR_ERR(trans);
4907 goto out_drop_write;
4908 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004909
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004910 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004911 newflags = btrfs_super_compat_flags(super_block);
4912 newflags |= flags[0].compat_flags & flags[1].compat_flags;
4913 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
4914 btrfs_set_super_compat_flags(super_block, newflags);
4915
4916 newflags = btrfs_super_compat_ro_flags(super_block);
4917 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
4918 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
4919 btrfs_set_super_compat_ro_flags(super_block, newflags);
4920
4921 newflags = btrfs_super_incompat_flags(super_block);
4922 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
4923 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
4924 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004925 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004926
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004927 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02004928out_drop_write:
4929 mnt_drop_write_file(file);
4930
4931 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004932}
4933
Josef Bacik2351f432017-09-27 10:43:13 -04004934static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
4935{
4936 struct btrfs_ioctl_send_args *arg;
4937 int ret;
4938
4939 if (compat) {
4940#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
4941 struct btrfs_ioctl_send_args_32 args32;
4942
4943 ret = copy_from_user(&args32, argp, sizeof(args32));
4944 if (ret)
4945 return -EFAULT;
4946 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
4947 if (!arg)
4948 return -ENOMEM;
4949 arg->send_fd = args32.send_fd;
4950 arg->clone_sources_count = args32.clone_sources_count;
4951 arg->clone_sources = compat_ptr(args32.clone_sources);
4952 arg->parent_root = args32.parent_root;
4953 arg->flags = args32.flags;
4954 memcpy(arg->reserved, args32.reserved,
4955 sizeof(args32.reserved));
4956#else
4957 return -ENOTTY;
4958#endif
4959 } else {
4960 arg = memdup_user(argp, sizeof(*arg));
4961 if (IS_ERR(arg))
4962 return PTR_ERR(arg);
4963 }
4964 ret = btrfs_ioctl_send(file, arg);
4965 kfree(arg);
4966 return ret;
4967}
4968
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004969long btrfs_ioctl(struct file *file, unsigned int
4970 cmd, unsigned long arg)
4971{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004972 struct inode *inode = file_inode(file);
4973 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4974 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004975 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004976
4977 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004978 case FS_IOC_GETVERSION:
4979 return btrfs_ioctl_getversion(file, argp);
Eric Sandeen40cf9312019-07-17 12:39:20 -05004980 case FS_IOC_GETFSLABEL:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004981 return btrfs_ioctl_get_fslabel(fs_info, argp);
Eric Sandeen40cf9312019-07-17 12:39:20 -05004982 case FS_IOC_SETFSLABEL:
4983 return btrfs_ioctl_set_fslabel(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00004984 case FITRIM:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004985 return btrfs_ioctl_fitrim(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004986 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004987 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00004988 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004989 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05004990 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004991 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02004992 case BTRFS_IOC_SUBVOL_CREATE_V2:
4993 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04004994 case BTRFS_IOC_SNAP_DESTROY:
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03004995 return btrfs_ioctl_snap_destroy(file, argp, false);
4996 case BTRFS_IOC_SNAP_DESTROY_V2:
4997 return btrfs_ioctl_snap_destroy(file, argp, true);
Li Zefan0caa1022010-12-20 16:30:25 +08004998 case BTRFS_IOC_SUBVOL_GETFLAGS:
4999 return btrfs_ioctl_subvol_getflags(file, argp);
5000 case BTRFS_IOC_SUBVOL_SETFLAGS:
5001 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005002 case BTRFS_IOC_DEFAULT_SUBVOL:
5003 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005004 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005005 return btrfs_ioctl_defrag(file, NULL);
5006 case BTRFS_IOC_DEFRAG_RANGE:
5007 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005008 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005009 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005010 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005011 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005012 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005013 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005014 case BTRFS_IOC_RM_DEV_V2:
5015 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005016 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005017 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005018 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005019 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005020 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005021 return btrfs_ioctl_balance(file, NULL);
Chris Masonac8e9812010-02-28 15:39:26 -05005022 case BTRFS_IOC_TREE_SEARCH:
5023 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005024 case BTRFS_IOC_TREE_SEARCH_V2:
5025 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005026 case BTRFS_IOC_INO_LOOKUP:
5027 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005028 case BTRFS_IOC_INO_PATHS:
5029 return btrfs_ioctl_ino_to_path(root, argp);
5030 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04005031 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
5032 case BTRFS_IOC_LOGICAL_INO_V2:
5033 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00005034 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005035 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005036 case BTRFS_IOC_SYNC: {
5037 int ret;
5038
Nikolay Borisov9db4dc22021-01-11 12:58:11 +02005039 ret = btrfs_start_delalloc_roots(fs_info, LONG_MAX, false);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005040 if (ret)
5041 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005042 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005043 /*
5044 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005045 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005046 * processing uncleaned subvols.
5047 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005048 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005049 return ret;
5050 }
Sage Weil46204592010-10-29 15:41:32 -04005051 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005052 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005053 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005054 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005055 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005056 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005057 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005058 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005059 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005060 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005061 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005062 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005063 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005064 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005065 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005066 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005067 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5068 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005069#ifdef CONFIG_64BIT
5070 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5071 return btrfs_ioctl_set_received_subvol_32(file, argp);
5072#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005073 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04005074 return _btrfs_ioctl_send(file, argp, false);
5075#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5076 case BTRFS_IOC_SEND_32:
5077 return _btrfs_ioctl_send(file, argp, true);
5078#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005079 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005080 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005081 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005082 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005083 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005084 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005085 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005086 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005087 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005088 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005089 case BTRFS_IOC_QUOTA_RESCAN:
5090 return btrfs_ioctl_quota_rescan(file, argp);
5091 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03005092 return btrfs_ioctl_quota_rescan_status(fs_info, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005093 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03005094 return btrfs_ioctl_quota_rescan_wait(fs_info, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005095 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005096 return btrfs_ioctl_dev_replace(fs_info, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005097 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005098 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005099 case BTRFS_IOC_GET_FEATURES:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03005100 return btrfs_ioctl_get_features(fs_info, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005101 case BTRFS_IOC_SET_FEATURES:
5102 return btrfs_ioctl_set_features(file, argp);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09005103 case BTRFS_IOC_GET_SUBVOL_INFO:
5104 return btrfs_ioctl_get_subvol_info(file, argp);
Tomohiro Misono42e4b522018-05-21 10:09:43 +09005105 case BTRFS_IOC_GET_SUBVOL_ROOTREF:
5106 return btrfs_ioctl_get_subvol_rootref(file, argp);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09005107 case BTRFS_IOC_INO_LOOKUP_USER:
5108 return btrfs_ioctl_ino_lookup_user(file, argp);
Boris Burkov14605402021-06-30 13:01:49 -07005109 case FS_IOC_ENABLE_VERITY:
5110 return fsverity_ioctl_enable(file, (const void __user *)argp);
5111 case FS_IOC_MEASURE_VERITY:
5112 return fsverity_ioctl_measure(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005113 }
5114
5115 return -ENOTTY;
5116}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005117
5118#ifdef CONFIG_COMPAT
5119long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5120{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005121 /*
5122 * These all access 32-bit values anyway so no further
5123 * handling is necessary.
5124 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005125 switch (cmd) {
Luke Dashjr4c63c242015-10-29 08:22:21 +00005126 case FS_IOC32_GETVERSION:
5127 cmd = FS_IOC_GETVERSION;
5128 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005129 }
5130
5131 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5132}
5133#endif