blob: 1b837c08ca9020d7a18636f64daa8f62ab67dd55 [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>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040029#include "ctree.h"
30#include "disk-io.h"
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -030031#include "export.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040032#include "transaction.h"
33#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include "print-tree.h"
35#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040036#include "locking.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020037#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040038#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020039#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010040#include "dev-replace.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000041#include "props.h"
Jeff Mahoney3b02a682013-11-01 13:07:02 -040042#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070043#include "qgroup.h"
Filipe Manana1ec9a1a2016-02-10 10:42:25 +000044#include "tree-log.h"
Anand Jainebb87652016-03-10 17:26:59 +080045#include "compression.h"
Josef Bacik8719aaa2019-06-18 16:09:16 -040046#include "space-info.h"
Josef Bacik86736342019-06-19 15:12:00 -040047#include "delalloc-space.h"
Josef Bacikaac00232019-06-20 15:37:44 -040048#include "block-group.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040049
Hugo Millsabccd002014-01-30 20:17:00 +000050#ifdef CONFIG_64BIT
51/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
52 * structures are incorrect, as the timespec structure from userspace
53 * is 4 bytes too small. We define these alternatives here to teach
54 * the kernel about the 32-bit struct packing.
55 */
56struct btrfs_ioctl_timespec_32 {
57 __u64 sec;
58 __u32 nsec;
59} __attribute__ ((__packed__));
60
61struct btrfs_ioctl_received_subvol_args_32 {
62 char uuid[BTRFS_UUID_SIZE]; /* in */
63 __u64 stransid; /* in */
64 __u64 rtransid; /* out */
65 struct btrfs_ioctl_timespec_32 stime; /* in */
66 struct btrfs_ioctl_timespec_32 rtime; /* out */
67 __u64 flags; /* in */
68 __u64 reserved[16]; /* in */
69} __attribute__ ((__packed__));
70
71#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
72 struct btrfs_ioctl_received_subvol_args_32)
73#endif
74
Josef Bacik2351f432017-09-27 10:43:13 -040075#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
76struct btrfs_ioctl_send_args_32 {
77 __s64 send_fd; /* in */
78 __u64 clone_sources_count; /* in */
79 compat_uptr_t clone_sources; /* in */
80 __u64 parent_root; /* in */
81 __u64 flags; /* in */
82 __u64 reserved[4]; /* in */
83} __attribute__ ((__packed__));
84
85#define BTRFS_IOC_SEND_32 _IOW(BTRFS_IOCTL_MAGIC, 38, \
86 struct btrfs_ioctl_send_args_32)
87#endif
Hugo Millsabccd002014-01-30 20:17:00 +000088
Christoph Hellwig6cbff002009-04-17 10:37:41 +020089/* Mask out flags that are inappropriate for the given type of inode. */
David Sterba1905a0f2018-03-26 18:52:15 +020090static unsigned int btrfs_mask_fsflags_for_type(struct inode *inode,
91 unsigned int flags)
Christoph Hellwig6cbff002009-04-17 10:37:41 +020092{
David Sterba1905a0f2018-03-26 18:52:15 +020093 if (S_ISDIR(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +020094 return flags;
David Sterba1905a0f2018-03-26 18:52:15 +020095 else if (S_ISREG(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +020096 return flags & ~FS_DIRSYNC_FL;
97 else
98 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
99}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400100
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200101/*
David Sterbaa157d4f2018-03-26 19:12:25 +0200102 * Export internal inode flags to the format expected by the FS_IOC_GETFLAGS
103 * ioctl.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200104 */
David Sterbaa157d4f2018-03-26 19:12:25 +0200105static unsigned int btrfs_inode_flags_to_fsflags(unsigned int flags)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200106{
107 unsigned int iflags = 0;
108
109 if (flags & BTRFS_INODE_SYNC)
110 iflags |= FS_SYNC_FL;
111 if (flags & BTRFS_INODE_IMMUTABLE)
112 iflags |= FS_IMMUTABLE_FL;
113 if (flags & BTRFS_INODE_APPEND)
114 iflags |= FS_APPEND_FL;
115 if (flags & BTRFS_INODE_NODUMP)
116 iflags |= FS_NODUMP_FL;
117 if (flags & BTRFS_INODE_NOATIME)
118 iflags |= FS_NOATIME_FL;
119 if (flags & BTRFS_INODE_DIRSYNC)
120 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000121 if (flags & BTRFS_INODE_NODATACOW)
122 iflags |= FS_NOCOW_FL;
123
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900124 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000125 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900126 else if (flags & BTRFS_INODE_COMPRESS)
127 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200128
129 return iflags;
130}
131
132/*
133 * Update inode->i_flags based on the btrfs internal flags.
134 */
David Sterba7b6a2212018-03-26 18:40:21 +0200135void btrfs_sync_inode_flags_to_i_flags(struct inode *inode)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200136{
David Sterba5c57b8b2018-04-23 15:45:18 +0200137 struct btrfs_inode *binode = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100138 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200139
David Sterba5c57b8b2018-04-23 15:45:18 +0200140 if (binode->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100141 new_fl |= S_SYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200142 if (binode->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100143 new_fl |= S_IMMUTABLE;
David Sterba5c57b8b2018-04-23 15:45:18 +0200144 if (binode->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100145 new_fl |= S_APPEND;
David Sterba5c57b8b2018-04-23 15:45:18 +0200146 if (binode->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100147 new_fl |= S_NOATIME;
David Sterba5c57b8b2018-04-23 15:45:18 +0200148 if (binode->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100149 new_fl |= S_DIRSYNC;
150
151 set_mask_bits(&inode->i_flags,
152 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
153 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200154}
155
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200156static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
157{
David Sterba5c57b8b2018-04-23 15:45:18 +0200158 struct btrfs_inode *binode = BTRFS_I(file_inode(file));
159 unsigned int flags = btrfs_inode_flags_to_fsflags(binode->flags);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200160
161 if (copy_to_user(arg, &flags, sizeof(flags)))
162 return -EFAULT;
163 return 0;
164}
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
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200204static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
205{
Al Viro496ad9a2013-01-23 17:07:38 -0500206 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400207 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba5c57b8b2018-04-23 15:45:18 +0200208 struct btrfs_inode *binode = BTRFS_I(inode);
209 struct btrfs_root *root = binode->root;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200210 struct btrfs_trans_handle *trans;
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700211 unsigned int fsflags, old_fsflags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200212 int ret;
Anand Jainff9fef552019-04-20 19:48:53 +0800213 const char *comp = NULL;
David Sterbaf37c5632020-07-10 09:49:56 +0200214 u32 binode_flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200215
David Sterbabd60ea02014-01-16 15:50:22 +0100216 if (!inode_owner_or_capable(inode))
217 return -EPERM;
218
Li Zefanb83cc962010-12-20 16:04:08 +0800219 if (btrfs_root_readonly(root))
220 return -EROFS;
221
David Sterba5c57b8b2018-04-23 15:45:18 +0200222 if (copy_from_user(&fsflags, arg, sizeof(fsflags)))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200223 return -EFAULT;
224
Jan Karae7848682012-06-12 16:20:32 +0200225 ret = mnt_want_write_file(file);
226 if (ret)
227 return ret;
228
Al Viro59551022016-01-22 15:40:57 -0500229 inode_lock(inode);
David Sterba5c57b8b2018-04-23 15:45:18 +0200230 fsflags = btrfs_mask_fsflags_for_type(inode, fsflags);
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700231 old_fsflags = btrfs_inode_flags_to_fsflags(binode->flags);
David Sterbaf37c5632020-07-10 09:49:56 +0200232
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700233 ret = vfs_ioc_setflags_prepare(inode, old_fsflags, fsflags);
234 if (ret)
235 goto out_unlock;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200236
David Sterbaf37c5632020-07-10 09:49:56 +0200237 ret = check_fsflags(old_fsflags, fsflags);
238 if (ret)
239 goto out_unlock;
240
Naohiro Aotad206e9c2020-11-10 20:26:11 +0900241 ret = check_fsflags_compatible(fs_info, fsflags);
242 if (ret)
243 goto out_unlock;
244
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;
David Sterba5c57b8b2018-04-23 15:45:18 +0200266 if (fsflags & FS_DIRSYNC_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800267 binode_flags |= BTRFS_INODE_DIRSYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200268 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800269 binode_flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200270 if (fsflags & FS_NOCOW_FL) {
Anand Jain44e51942019-04-20 19:48:57 +0800271 if (S_ISREG(inode->i_mode)) {
David Sterba7e97b8d2012-09-07 05:56:55 -0600272 /*
273 * It's safe to turn csums off here, no extents exist.
274 * Otherwise we want the flag to reflect the real COW
275 * status of the file and will not set it.
276 */
277 if (inode->i_size == 0)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800278 binode_flags |= BTRFS_INODE_NODATACOW |
279 BTRFS_INODE_NODATASUM;
David Sterba7e97b8d2012-09-07 05:56:55 -0600280 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800281 binode_flags |= BTRFS_INODE_NODATACOW;
David Sterba7e97b8d2012-09-07 05:56:55 -0600282 }
283 } else {
284 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400285 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600286 */
Anand Jain44e51942019-04-20 19:48:57 +0800287 if (S_ISREG(inode->i_mode)) {
David Sterba7e97b8d2012-09-07 05:56:55 -0600288 if (inode->i_size == 0)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800289 binode_flags &= ~(BTRFS_INODE_NODATACOW |
290 BTRFS_INODE_NODATASUM);
David Sterba7e97b8d2012-09-07 05:56:55 -0600291 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800292 binode_flags &= ~BTRFS_INODE_NODATACOW;
David Sterba7e97b8d2012-09-07 05:56:55 -0600293 }
294 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200295
Liu Bo75e7cb72011-03-22 10:12:20 +0000296 /*
297 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
298 * flag may be changed automatically if compression code won't make
299 * things smaller.
300 */
David Sterba5c57b8b2018-04-23 15:45:18 +0200301 if (fsflags & FS_NOCOMP_FL) {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800302 binode_flags &= ~BTRFS_INODE_COMPRESS;
303 binode_flags |= BTRFS_INODE_NOCOMPRESS;
David Sterba5c57b8b2018-04-23 15:45:18 +0200304 } else if (fsflags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000305
Omar Sandovaleede2bf2016-11-03 10:28:12 -0700306 if (IS_SWAPFILE(inode)) {
307 ret = -ETXTBSY;
308 goto out_unlock;
309 }
310
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800311 binode_flags |= BTRFS_INODE_COMPRESS;
312 binode_flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000313
David Sterba93370502017-10-31 17:32:41 +0100314 comp = btrfs_compress_type2str(fs_info->compress_type);
315 if (!comp || comp[0] == 0)
316 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
Li Zefanebcb9042011-04-15 03:03:17 +0000317 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800318 binode_flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000319 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200320
Anand Jainff9fef552019-04-20 19:48:53 +0800321 /*
322 * 1 for inode item
323 * 2 for properties
324 */
325 trans = btrfs_start_transaction(root, 3);
Li Zefanf062abf02011-12-29 13:36:45 +0800326 if (IS_ERR(trans)) {
327 ret = PTR_ERR(trans);
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800328 goto out_unlock;
Li Zefanf062abf02011-12-29 13:36:45 +0800329 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200330
Anand Jainff9fef552019-04-20 19:48:53 +0800331 if (comp) {
332 ret = btrfs_set_prop(trans, inode, "btrfs.compression", comp,
333 strlen(comp), 0);
334 if (ret) {
335 btrfs_abort_transaction(trans, ret);
336 goto out_end_trans;
337 }
Anand Jainff9fef552019-04-20 19:48:53 +0800338 } else {
339 ret = btrfs_set_prop(trans, inode, "btrfs.compression", NULL,
340 0, 0);
341 if (ret && ret != -ENODATA) {
342 btrfs_abort_transaction(trans, ret);
343 goto out_end_trans;
344 }
345 }
346
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800347 binode->flags = binode_flags;
David Sterba7b6a2212018-03-26 18:40:21 +0200348 btrfs_sync_inode_flags_to_i_flags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400349 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700350 inode->i_ctime = current_time(inode);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +0200351 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200352
Anand Jainff9fef552019-04-20 19:48:53 +0800353 out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400354 btrfs_end_transaction(trans);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200355 out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500356 inode_unlock(inode);
Jan Karae7848682012-06-12 16:20:32 +0200357 mnt_drop_write_file(file);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000358 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200359}
360
David Sterba19f93b32018-03-26 19:42:05 +0200361/*
362 * Translate btrfs internal inode flags to xflags as expected by the
363 * FS_IOC_FSGETXATT ioctl. Filter only the supported ones, unknown flags are
364 * silently dropped.
365 */
366static unsigned int btrfs_inode_flags_to_xflags(unsigned int flags)
367{
368 unsigned int xflags = 0;
369
370 if (flags & BTRFS_INODE_APPEND)
371 xflags |= FS_XFLAG_APPEND;
372 if (flags & BTRFS_INODE_IMMUTABLE)
373 xflags |= FS_XFLAG_IMMUTABLE;
374 if (flags & BTRFS_INODE_NOATIME)
375 xflags |= FS_XFLAG_NOATIME;
376 if (flags & BTRFS_INODE_NODUMP)
377 xflags |= FS_XFLAG_NODUMP;
378 if (flags & BTRFS_INODE_SYNC)
379 xflags |= FS_XFLAG_SYNC;
380
381 return xflags;
382}
383
384/* Check if @flags are a supported and valid set of FS_XFLAGS_* flags */
385static int check_xflags(unsigned int flags)
386{
387 if (flags & ~(FS_XFLAG_APPEND | FS_XFLAG_IMMUTABLE | FS_XFLAG_NOATIME |
388 FS_XFLAG_NODUMP | FS_XFLAG_SYNC))
389 return -EOPNOTSUPP;
390 return 0;
391}
392
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500393bool btrfs_exclop_start(struct btrfs_fs_info *fs_info,
394 enum btrfs_exclusive_operation type)
395{
396 return !cmpxchg(&fs_info->exclusive_operation, BTRFS_EXCLOP_NONE, type);
397}
398
399void btrfs_exclop_finish(struct btrfs_fs_info *fs_info)
400{
401 WRITE_ONCE(fs_info->exclusive_operation, BTRFS_EXCLOP_NONE);
Goldwyn Rodrigues66a28232020-08-25 10:02:33 -0500402 sysfs_notify(&fs_info->fs_devices->fsid_kobj, NULL, "exclusive_operation");
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -0500403}
404
David Sterbae4202ac2018-03-26 19:51:16 +0200405/*
406 * Set the xflags from the internal inode flags. The remaining items of fsxattr
407 * are zeroed.
408 */
409static int btrfs_ioctl_fsgetxattr(struct file *file, void __user *arg)
410{
411 struct btrfs_inode *binode = BTRFS_I(file_inode(file));
412 struct fsxattr fa;
413
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700414 simple_fill_fsxattr(&fa, btrfs_inode_flags_to_xflags(binode->flags));
David Sterbae4202ac2018-03-26 19:51:16 +0200415 if (copy_to_user(arg, &fa, sizeof(fa)))
416 return -EFAULT;
417
418 return 0;
419}
420
David Sterba025f2122018-03-26 19:51:16 +0200421static int btrfs_ioctl_fssetxattr(struct file *file, void __user *arg)
422{
423 struct inode *inode = file_inode(file);
424 struct btrfs_inode *binode = BTRFS_I(inode);
425 struct btrfs_root *root = binode->root;
426 struct btrfs_trans_handle *trans;
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700427 struct fsxattr fa, old_fa;
David Sterba025f2122018-03-26 19:51:16 +0200428 unsigned old_flags;
429 unsigned old_i_flags;
430 int ret = 0;
431
432 if (!inode_owner_or_capable(inode))
433 return -EPERM;
434
435 if (btrfs_root_readonly(root))
436 return -EROFS;
437
David Sterba025f2122018-03-26 19:51:16 +0200438 if (copy_from_user(&fa, arg, sizeof(fa)))
439 return -EFAULT;
440
441 ret = check_xflags(fa.fsx_xflags);
442 if (ret)
443 return ret;
444
445 if (fa.fsx_extsize != 0 || fa.fsx_projid != 0 || fa.fsx_cowextsize != 0)
446 return -EOPNOTSUPP;
447
448 ret = mnt_want_write_file(file);
449 if (ret)
450 return ret;
451
452 inode_lock(inode);
453
454 old_flags = binode->flags;
455 old_i_flags = inode->i_flags;
456
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700457 simple_fill_fsxattr(&old_fa,
458 btrfs_inode_flags_to_xflags(binode->flags));
459 ret = vfs_ioc_fssetxattr_check(inode, &old_fa, &fa);
460 if (ret)
David Sterba025f2122018-03-26 19:51:16 +0200461 goto out_unlock;
David Sterba025f2122018-03-26 19:51:16 +0200462
463 if (fa.fsx_xflags & FS_XFLAG_SYNC)
464 binode->flags |= BTRFS_INODE_SYNC;
465 else
466 binode->flags &= ~BTRFS_INODE_SYNC;
467 if (fa.fsx_xflags & FS_XFLAG_IMMUTABLE)
468 binode->flags |= BTRFS_INODE_IMMUTABLE;
469 else
470 binode->flags &= ~BTRFS_INODE_IMMUTABLE;
471 if (fa.fsx_xflags & FS_XFLAG_APPEND)
472 binode->flags |= BTRFS_INODE_APPEND;
473 else
474 binode->flags &= ~BTRFS_INODE_APPEND;
475 if (fa.fsx_xflags & FS_XFLAG_NODUMP)
476 binode->flags |= BTRFS_INODE_NODUMP;
477 else
478 binode->flags &= ~BTRFS_INODE_NODUMP;
479 if (fa.fsx_xflags & FS_XFLAG_NOATIME)
480 binode->flags |= BTRFS_INODE_NOATIME;
481 else
482 binode->flags &= ~BTRFS_INODE_NOATIME;
483
484 /* 1 item for the inode */
485 trans = btrfs_start_transaction(root, 1);
486 if (IS_ERR(trans)) {
487 ret = PTR_ERR(trans);
488 goto out_unlock;
489 }
490
491 btrfs_sync_inode_flags_to_i_flags(inode);
492 inode_inc_iversion(inode);
493 inode->i_ctime = current_time(inode);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +0200494 ret = btrfs_update_inode(trans, root, BTRFS_I(inode));
David Sterba025f2122018-03-26 19:51:16 +0200495
496 btrfs_end_transaction(trans);
497
498out_unlock:
499 if (ret) {
500 binode->flags = old_flags;
501 inode->i_flags = old_i_flags;
502 }
503
504 inode_unlock(inode);
505 mnt_drop_write_file(file);
506
507 return ret;
508}
509
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200510static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
511{
Al Viro496ad9a2013-01-23 17:07:38 -0500512 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200513
514 return put_user(inode->i_generation, arg);
515}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400516
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -0300517static noinline int btrfs_ioctl_fitrim(struct btrfs_fs_info *fs_info,
518 void __user *arg)
Li Dongyangf7039b12011-03-24 10:24:28 +0000519{
Li Dongyangf7039b12011-03-24 10:24:28 +0000520 struct btrfs_device *device;
521 struct request_queue *q;
522 struct fstrim_range range;
523 u64 minlen = ULLONG_MAX;
524 u64 num_devices = 0;
525 int ret;
526
527 if (!capable(CAP_SYS_ADMIN))
528 return -EPERM;
529
Filipe Mananaf35f06c2019-03-26 10:49:56 +0000530 /*
Naohiro Aota1cb3dc32021-02-04 19:21:46 +0900531 * btrfs_trim_block_group() depends on space cache, which is not
532 * available in zoned filesystem. So, disallow fitrim on a zoned
533 * filesystem for now.
534 */
535 if (btrfs_is_zoned(fs_info))
536 return -EOPNOTSUPP;
537
538 /*
Filipe Mananaf35f06c2019-03-26 10:49:56 +0000539 * If the fs is mounted with nologreplay, which requires it to be
540 * mounted in RO mode as well, we can not allow discard on free space
541 * inside block groups, because log trees refer to extents that are not
542 * pinned in a block group's free space cache (pinning the extents is
543 * precisely the first phase of replaying a log tree).
544 */
545 if (btrfs_test_opt(fs_info, NOLOGREPLAY))
546 return -EROFS;
547
Xiao Guangrong1f781602011-04-20 10:09:16 +0000548 rcu_read_lock();
549 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
550 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000551 if (!device->bdev)
552 continue;
553 q = bdev_get_queue(device->bdev);
554 if (blk_queue_discard(q)) {
555 num_devices++;
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100556 minlen = min_t(u64, q->limits.discard_granularity,
Li Dongyangf7039b12011-03-24 10:24:28 +0000557 minlen);
558 }
559 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000560 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200561
Li Dongyangf7039b12011-03-24 10:24:28 +0000562 if (!num_devices)
563 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000564 if (copy_from_user(&range, arg, sizeof(range)))
565 return -EFAULT;
Qu Wenruo6ba9fc82018-09-07 14:16:24 +0800566
567 /*
568 * NOTE: Don't truncate the range using super->total_bytes. Bytenr of
569 * block group is in the logical address space, which can be any
570 * sectorsize aligned bytenr in the range [0, U64_MAX].
571 */
572 if (range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200573 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000574
575 range.minlen = max(range.minlen, minlen);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400576 ret = btrfs_trim_fs(fs_info, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000577 if (ret < 0)
578 return ret;
579
580 if (copy_to_user(arg, &range, sizeof(range)))
581 return -EFAULT;
582
583 return 0;
584}
585
David Sterbae1f60a62019-10-01 19:57:39 +0200586int __pure btrfs_is_empty_uuid(u8 *uuid)
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200587{
Chris Mason46e0f662013-11-15 12:14:55 +0100588 int i;
589
590 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
591 if (uuid[i])
592 return 0;
593 }
594 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200595}
596
Miao Xied5c12072013-02-28 10:04:33 +0000597static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400598 struct dentry *dentry,
David Sterba52f75f42017-02-14 18:33:53 +0100599 const char *name, int namelen,
Miao Xie8696c532013-02-07 06:02:44 +0000600 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400601{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400602 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400603 struct btrfs_trans_handle *trans;
604 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100605 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400606 struct btrfs_inode_item *inode_item;
607 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000608 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400609 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000610 struct btrfs_block_rsv block_rsv;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700611 struct timespec64 cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900612 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400613 int ret;
614 int err;
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800615 dev_t anon_dev = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400616 u64 objectid;
Chris Mason3de45862008-11-17 21:02:50 -0500617 u64 index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400618
David Sterba49a3c4d2016-03-24 17:49:22 +0100619 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
620 if (!root_item)
621 return -ENOMEM;
622
Nikolay Borisov543068a2020-12-07 17:32:33 +0200623 ret = btrfs_get_free_objectid(fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400624 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100625 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000626
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800627 ret = get_anon_bdev(&anon_dev);
628 if (ret < 0)
629 goto fail_free;
630
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800631 /*
632 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400633 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800634 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100635 if (btrfs_qgroup_level(objectid)) {
636 ret = -ENOSPC;
637 goto fail_free;
638 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800639
Miao Xied5c12072013-02-28 10:04:33 +0000640 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400641 /*
Miao Xied5c12072013-02-28 10:04:33 +0000642 * The same as the snapshot creation, please see the comment
643 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400644 */
Gu JinXiangc4c129d2018-05-30 11:00:38 +0800645 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 8, false);
Miao Xied5c12072013-02-28 10:04:33 +0000646 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100647 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400648
Miao Xied5c12072013-02-28 10:04:33 +0000649 trans = btrfs_start_transaction(root, 0);
650 if (IS_ERR(trans)) {
651 ret = PTR_ERR(trans);
Qu Wenruoe85fde52020-07-24 14:46:10 +0800652 btrfs_subvolume_release_metadata(root, &block_rsv);
David Sterba49a3c4d2016-03-24 17:49:22 +0100653 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000654 }
655 trans->block_rsv = &block_rsv;
656 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400657
Lu Fengqia93774222018-07-18 14:45:41 +0800658 ret = btrfs_qgroup_inherit(trans, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200659 if (ret)
660 goto fail;
661
Josef Bacik9631e4c2020-08-20 11:46:03 -0400662 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0,
663 BTRFS_NESTING_NORMAL);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400664 if (IS_ERR(leaf)) {
665 ret = PTR_ERR(leaf);
666 goto fail;
667 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400668
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400669 btrfs_mark_buffer_dirty(leaf);
670
David Sterba49a3c4d2016-03-24 17:49:22 +0100671 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800672 btrfs_set_stack_inode_generation(inode_item, 1);
673 btrfs_set_stack_inode_size(inode_item, 3);
674 btrfs_set_stack_inode_nlink(inode_item, 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400675 btrfs_set_stack_inode_nbytes(inode_item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400676 fs_info->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800677 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400678
David Sterba49a3c4d2016-03-24 17:49:22 +0100679 btrfs_set_root_flags(root_item, 0);
680 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800681 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000682
David Sterba49a3c4d2016-03-24 17:49:22 +0100683 btrfs_set_root_bytenr(root_item, leaf->start);
684 btrfs_set_root_generation(root_item, trans->transid);
685 btrfs_set_root_level(root_item, 0);
686 btrfs_set_root_refs(root_item, 1);
687 btrfs_set_root_used(root_item, leaf->len);
688 btrfs_set_root_last_snapshot(root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400689
David Sterba49a3c4d2016-03-24 17:49:22 +0100690 btrfs_set_root_generation_v2(root_item,
691 btrfs_root_generation(root_item));
Andy Shevchenko807fc792020-02-24 17:37:51 +0200692 generate_random_guid(root_item->uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100693 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
694 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
695 root_item->ctime = root_item->otime;
696 btrfs_set_root_ctransid(root_item, trans->transid);
697 btrfs_set_root_otransid(root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400698
Chris Mason925baed2008-06-25 16:01:30 -0400699 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400700 free_extent_buffer(leaf);
701 leaf = NULL;
702
Nikolay Borisov69948022020-12-07 17:32:37 +0200703 btrfs_set_root_dirid(root_item, BTRFS_FIRST_FREE_OBJECTID);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400704
705 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400706 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200707 key.type = BTRFS_ROOT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400708 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100709 root_item);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400710 if (ret)
711 goto fail;
712
Yan, Zheng76dda932009-09-21 16:00:26 -0400713 key.offset = (u64)-1;
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800714 new_root = btrfs_get_new_fs_root(fs_info, objectid, anon_dev);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100715 if (IS_ERR(new_root)) {
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800716 free_anon_bdev(anon_dev);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100717 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400718 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100719 goto fail;
720 }
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800721 /* Freeing will be done in btrfs_put_root() of new_root */
722 anon_dev = 0;
Yan, Zheng76dda932009-09-21 16:00:26 -0400723
724 btrfs_record_root_in_trans(trans, new_root);
725
Nikolay Borisov69948022020-12-07 17:32:37 +0200726 ret = btrfs_create_subvol_root(trans, new_root, root);
Josef Bacik00246522020-01-24 09:33:01 -0500727 btrfs_put_root(new_root);
Mark Fashehce598972011-07-26 11:32:23 -0700728 if (ret) {
729 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400730 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700731 goto fail;
732 }
733
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400734 /*
735 * insert the directory item
736 */
Nikolay Borisov877574e2017-02-20 13:50:33 +0200737 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100738 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400739 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100740 goto fail;
741 }
Chris Mason3de45862008-11-17 21:02:50 -0500742
Lu Fengqi684572d2018-08-04 21:10:57 +0800743 ret = btrfs_insert_dir_item(trans, name, namelen, BTRFS_I(dir), &key,
Chris Mason3de45862008-11-17 21:02:50 -0500744 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100745 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400746 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400747 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100748 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500749
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200750 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
Nikolay Borisov9a56fcd2020-11-02 16:48:59 +0200751 ret = btrfs_update_inode(trans, root, BTRFS_I(dir));
Josef Bacikc7e54b52019-12-06 09:37:15 -0500752 if (ret) {
753 btrfs_abort_transaction(trans, ret);
754 goto fail;
755 }
Yan Zheng52c26172009-01-05 15:43:43 -0500756
Lu Fengqi6025c192018-08-01 11:32:29 +0800757 ret = btrfs_add_root_ref(trans, objectid, root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200758 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
Josef Bacikc7e54b52019-12-06 09:37:15 -0500759 if (ret) {
760 btrfs_abort_transaction(trans, ret);
761 goto fail;
762 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500763
Lu Fengqicdb345a2018-05-29 15:01:53 +0800764 ret = btrfs_uuid_tree_add(trans, root_item->uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400765 BTRFS_UUID_KEY_SUBVOL, objectid);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200766 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400767 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200768
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400769fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100770 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000771 trans->block_rsv = NULL;
772 trans->bytes_reserved = 0;
Qu Wenruoe85fde52020-07-24 14:46:10 +0800773 btrfs_subvolume_release_metadata(root, &block_rsv);
Liu Bode6e8202014-01-09 14:57:06 +0800774
Nikolay Borisov9babda92020-03-13 17:23:20 +0200775 err = btrfs_commit_transaction(trans);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400776 if (err && !ret)
777 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500778
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900779 if (!ret) {
780 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800781 if (IS_ERR(inode))
782 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900783 d_instantiate(dentry, inode);
784 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400785 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100786
787fail_free:
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800788 if (anon_dev)
789 free_anon_bdev(anon_dev);
David Sterba49a3c4d2016-03-24 17:49:22 +0100790 kfree(root_item);
791 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400792}
793
Miao Xiee9662f72013-02-28 10:01:15 +0000794static int create_snapshot(struct btrfs_root *root, struct inode *dir,
Nikolay Borisov9babda92020-03-13 17:23:20 +0200795 struct dentry *dentry, bool readonly,
Miao Xiee9662f72013-02-28 10:01:15 +0000796 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400797{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400798 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000799 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400800 struct btrfs_pending_snapshot *pending_snapshot;
801 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000802 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400803
Qu Wenruo92a7cc42020-05-15 14:01:40 +0800804 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400805 return -EINVAL;
806
Omar Sandovaleede2bf2016-11-03 10:28:12 -0700807 if (atomic_read(&root->nr_swapfiles)) {
808 btrfs_warn(fs_info,
809 "cannot snapshot subvolume with active swapfile");
810 return -ETXTBSY;
811 }
812
David Sterba23269bf2017-02-13 11:03:44 +0100813 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100814 if (!pending_snapshot)
815 return -ENOMEM;
816
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800817 ret = get_anon_bdev(&pending_snapshot->anon_dev);
818 if (ret < 0)
819 goto free_pending;
David Sterbab0c0ea62015-11-10 18:54:00 +0100820 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100821 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100822 pending_snapshot->path = btrfs_alloc_path();
823 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100824 ret = -ENOMEM;
825 goto free_pending;
826 }
827
Miao Xie66d8f3d2012-09-06 04:02:28 -0600828 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
829 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000830 /*
831 * 1 - parent dir inode
832 * 2 - dir entries
833 * 1 - root item
834 * 2 - root ref/backref
835 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200836 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000837 */
838 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200839 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400840 false);
Miao Xied5c12072013-02-28 10:04:33 +0000841 if (ret)
Robbie Koc11fbb62020-05-14 17:19:18 +0800842 goto free_pending;
Miao Xied5c12072013-02-28 10:04:33 +0000843
Yan, Zhenga22285a2010-05-16 10:48:46 -0400844 pending_snapshot->dentry = dentry;
845 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800846 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000847 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000848 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400849
Miao Xied5c12072013-02-28 10:04:33 +0000850 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400851 if (IS_ERR(trans)) {
852 ret = PTR_ERR(trans);
853 goto fail;
854 }
855
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400856 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400857 list_add(&pending_snapshot->list,
858 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400859 spin_unlock(&fs_info->trans_lock);
Nikolay Borisov9babda92020-03-13 17:23:20 +0200860
861 ret = btrfs_commit_transaction(trans);
Miao Xieaec80302013-03-04 09:44:29 +0000862 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400863 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400864
865 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400866 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000867 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400868
Chris Masond3797302014-10-15 13:50:56 -0700869 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
870 if (ret)
871 goto fail;
872
David Howells2b0143b2015-03-17 22:25:59 +0000873 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000874 if (IS_ERR(inode)) {
875 ret = PTR_ERR(inode);
876 goto fail;
877 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900878
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000879 d_instantiate(dentry, inode);
880 ret = 0;
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800881 pending_snapshot->anon_dev = 0;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000882fail:
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800883 /* Prevent double freeing of anon_dev */
884 if (ret && pending_snapshot->snap)
885 pending_snapshot->snap->anon_dev = 0;
Josef Bacik00246522020-01-24 09:33:01 -0500886 btrfs_put_root(pending_snapshot->snap);
Qu Wenruoe85fde52020-07-24 14:46:10 +0800887 btrfs_subvolume_release_metadata(root, &pending_snapshot->block_rsv);
David Sterbab0c0ea62015-11-10 18:54:00 +0100888free_pending:
Qu Wenruo2dfb1e42020-06-16 10:17:36 +0800889 if (pending_snapshot->anon_dev)
890 free_anon_bdev(pending_snapshot->anon_dev);
David Sterbab0c0ea62015-11-10 18:54:00 +0100891 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100892 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100893 kfree(pending_snapshot);
894
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400895 return ret;
896}
897
Sage Weil4260f7c2010-10-29 15:46:43 -0400898/* copy of may_delete in fs/namei.c()
899 * Check whether we can remove a link victim from directory dir, check
900 * whether the type of victim is right.
901 * 1. We can't do it if dir is read-only (done in permission())
902 * 2. We should have write and exec permissions on dir
903 * 3. We can't remove anything from append-only dir
904 * 4. We can't do anything with immutable dir (done in permission())
905 * 5. If the sticky bit on dir is set we should either
906 * a. be owner of dir, or
907 * b. be owner of victim, or
908 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400909 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400910 * links pointing to it.
911 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
912 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
913 * 9. We can't remove a root or mountpoint.
914 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
915 * nfs_async_unlink().
916 */
917
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530918static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400919{
920 int error;
921
David Howells2b0143b2015-03-17 22:25:59 +0000922 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400923 return -ENOENT;
924
David Howells2b0143b2015-03-17 22:25:59 +0000925 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400926 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400927
928 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
929 if (error)
930 return error;
931 if (IS_APPEND(dir))
932 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000933 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
934 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400935 return -EPERM;
936 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000937 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400938 return -ENOTDIR;
939 if (IS_ROOT(victim))
940 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000941 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400942 return -EISDIR;
943 if (IS_DEADDIR(dir))
944 return -ENOENT;
945 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
946 return -EBUSY;
947 return 0;
948}
949
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400950/* copy of may_create in fs/namei.c() */
951static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
952{
David Howells2b0143b2015-03-17 22:25:59 +0000953 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400954 return -EEXIST;
955 if (IS_DEADDIR(dir))
956 return -ENOENT;
957 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
958}
959
960/*
961 * Create a new subvolume below @parent. This is largely modeled after
962 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
963 * inside this filesystem so it's quite a bit simpler.
964 */
Al Viro92872092016-11-20 19:34:31 -0500965static noinline int btrfs_mksubvol(const struct path *parent,
David Sterba52f75f42017-02-14 18:33:53 +0100966 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400967 struct btrfs_root *snap_src,
Nikolay Borisov9babda92020-03-13 17:23:20 +0200968 bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000969 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400970{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400971 struct inode *dir = d_inode(parent->dentry);
972 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400973 struct dentry *dentry;
974 int error;
975
Al Viro00235412016-05-26 00:05:12 -0400976 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
977 if (error == -EINTR)
978 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400979
980 dentry = lookup_one_len(name, parent->dentry, namelen);
981 error = PTR_ERR(dentry);
982 if (IS_ERR(dentry))
983 goto out_unlock;
984
Yan, Zheng76dda932009-09-21 16:00:26 -0400985 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400986 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600987 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400988
Chris Mason9c520572012-12-17 14:26:57 -0500989 /*
990 * even if this name doesn't exist, we may get hash collisions.
991 * check for them now when we can safely fail
992 */
993 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
994 dir->i_ino, name,
995 namelen);
996 if (error)
997 goto out_dput;
998
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400999 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -04001000
1001 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
1002 goto out_up_read;
1003
Nikolay Borisov9babda92020-03-13 17:23:20 +02001004 if (snap_src)
1005 error = create_snapshot(snap_src, dir, dentry, readonly, inherit);
1006 else
1007 error = create_subvol(dir, dentry, name, namelen, inherit);
1008
Yan, Zheng76dda932009-09-21 16:00:26 -04001009 if (!error)
1010 fsnotify_mkdir(dir, dentry);
1011out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001012 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001013out_dput:
1014 dput(dentry);
1015out_unlock:
Al Viro59551022016-01-22 15:40:57 -05001016 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001017 return error;
1018}
1019
Robbie Koc11fbb62020-05-14 17:19:18 +08001020static noinline int btrfs_mksnapshot(const struct path *parent,
1021 const char *name, int namelen,
1022 struct btrfs_root *root,
1023 bool readonly,
1024 struct btrfs_qgroup_inherit *inherit)
1025{
1026 int ret;
1027 bool snapshot_force_cow = false;
1028
1029 /*
1030 * Force new buffered writes to reserve space even when NOCOW is
1031 * possible. This is to avoid later writeback (running dealloc) to
1032 * fallback to COW mode and unexpectedly fail with ENOSPC.
1033 */
1034 btrfs_drew_read_lock(&root->snapshot_lock);
1035
1036 ret = btrfs_start_delalloc_snapshot(root);
1037 if (ret)
1038 goto out;
1039
1040 /*
1041 * All previous writes have started writeback in NOCOW mode, so now
1042 * we force future writes to fallback to COW mode during snapshot
1043 * creation.
1044 */
1045 atomic_inc(&root->snapshot_force_cow);
1046 snapshot_force_cow = true;
1047
1048 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
1049
1050 ret = btrfs_mksubvol(parent, name, namelen,
1051 root, readonly, inherit);
1052out:
1053 if (snapshot_force_cow)
1054 atomic_dec(&root->snapshot_force_cow);
1055 btrfs_drew_read_unlock(&root->snapshot_lock);
1056 return ret;
1057}
1058
Chris Mason4cb53002011-05-24 15:35:30 -04001059/*
1060 * When we're defragging a range, we don't want to kick it off again
1061 * if it is really just waiting for delalloc to send it down.
1062 * If we find a nice big extent or delalloc range for the bytes in the
1063 * file you want to defrag, we return 0 to let you know to skip this
1064 * part of the file
1065 */
David Sterbaaab110a2014-07-29 17:32:10 +02001066static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -04001067{
1068 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1069 struct extent_map *em = NULL;
1070 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1071 u64 end;
1072
1073 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001074 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -04001075 read_unlock(&em_tree->lock);
1076
1077 if (em) {
1078 end = extent_map_end(em);
1079 free_extent_map(em);
1080 if (end - offset > thresh)
1081 return 0;
1082 }
1083 /* if we already have a nice delalloc here, just stop */
1084 thresh /= 2;
1085 end = count_range_bits(io_tree, &offset, offset + thresh,
1086 thresh, EXTENT_DELALLOC, 1);
1087 if (end >= thresh)
1088 return 0;
1089 return 1;
1090}
1091
1092/*
1093 * helper function to walk through a file and find extents
1094 * newer than a specific transid, and smaller than thresh.
1095 *
1096 * This is used by the defragging code to find new and small
1097 * extents
1098 */
1099static int find_new_extents(struct btrfs_root *root,
1100 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +02001101 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -04001102{
1103 struct btrfs_path *path;
1104 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -04001105 struct extent_buffer *leaf;
1106 struct btrfs_file_extent_item *extent;
1107 int type;
1108 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001109 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -04001110
1111 path = btrfs_alloc_path();
1112 if (!path)
1113 return -ENOMEM;
1114
David Sterbaa4689d22011-05-31 17:08:14 +00001115 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -04001116 min_key.type = BTRFS_EXTENT_DATA_KEY;
1117 min_key.offset = *off;
1118
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05301119 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01001120 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -04001121 if (ret != 0)
1122 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +00001123process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +00001124 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -04001125 goto none;
1126 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
1127 goto none;
1128
1129 leaf = path->nodes[0];
1130 extent = btrfs_item_ptr(leaf, path->slots[0],
1131 struct btrfs_file_extent_item);
1132
1133 type = btrfs_file_extent_type(leaf, extent);
1134 if (type == BTRFS_FILE_EXTENT_REG &&
1135 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
1136 check_defrag_in_cache(inode, min_key.offset, thresh)) {
1137 *off = min_key.offset;
1138 btrfs_free_path(path);
1139 return 0;
1140 }
1141
Filipe Mananaf094c9bd2014-03-12 01:28:24 +00001142 path->slots[0]++;
1143 if (path->slots[0] < btrfs_header_nritems(leaf)) {
1144 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
1145 goto process_slot;
1146 }
1147
Chris Mason4cb53002011-05-24 15:35:30 -04001148 if (min_key.offset == (u64)-1)
1149 goto none;
1150
1151 min_key.offset++;
1152 btrfs_release_path(path);
1153 }
1154none:
1155 btrfs_free_path(path);
1156 return -ENOENT;
1157}
1158
Li Zefan6c282eb2012-06-11 16:03:35 +08001159static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -04001160{
1161 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -05001162 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +08001163 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001164 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -05001165
1166 /*
1167 * hopefully we have this extent in the tree already, try without
1168 * the full extent lock
1169 */
1170 read_lock(&em_tree->lock);
1171 em = lookup_extent_mapping(em_tree, start, len);
1172 read_unlock(&em_tree->lock);
1173
1174 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +00001175 struct extent_state *cached = NULL;
1176 u64 end = start + len - 1;
1177
Chris Mason940100a2010-03-10 10:52:59 -05001178 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +01001179 lock_extent_bits(io_tree, start, end, &cached);
Omar Sandoval39b07b52019-12-02 17:34:23 -08001180 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len);
David Sterbae43bbe52017-12-12 21:43:52 +01001181 unlock_extent_cached(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -05001182
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +00001183 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001184 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001185 }
1186
Li Zefan6c282eb2012-06-11 16:03:35 +08001187 return em;
1188}
1189
1190static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1191{
1192 struct extent_map *next;
1193 bool ret = true;
1194
1195 /* this is the last extent */
1196 if (em->start + em->len >= i_size_read(inode))
1197 return false;
1198
1199 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001200 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1201 ret = false;
1202 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001203 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001204 ret = false;
1205
1206 free_extent_map(next);
1207 return ret;
1208}
1209
David Sterbaaab110a2014-07-29 17:32:10 +02001210static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001211 u64 *last_len, u64 *skip, u64 *defrag_end,
1212 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001213{
1214 struct extent_map *em;
1215 int ret = 1;
1216 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001217 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001218
1219 /*
1220 * make sure that once we start defragging an extent, we keep on
1221 * defragging it
1222 */
1223 if (start < *defrag_end)
1224 return 1;
1225
1226 *skip = 0;
1227
1228 em = defrag_lookup_extent(inode, start);
1229 if (!em)
1230 return 0;
1231
Chris Mason940100a2010-03-10 10:52:59 -05001232 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001233 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001234 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001235 goto out;
1236 }
1237
Liu Bo4a3560c2015-08-07 16:48:41 +08001238 if (!*defrag_end)
1239 prev_mergeable = false;
1240
Li Zefan6c282eb2012-06-11 16:03:35 +08001241 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001242 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001243 * we hit a real extent, if it is big or the next extent is not a
1244 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001245 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001246 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001247 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001248 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001249out:
Chris Mason940100a2010-03-10 10:52:59 -05001250 /*
1251 * last_len ends up being a counter of how many bytes we've defragged.
1252 * every time we choose not to defrag an extent, we reset *last_len
1253 * so that the next tiny extent will force a defrag.
1254 *
1255 * The end result of this is that tiny extents before a single big
1256 * extent will force at least part of that big extent to be defragged.
1257 */
1258 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001259 *defrag_end = extent_map_end(em);
1260 } else {
1261 *last_len = 0;
1262 *skip = extent_map_end(em);
1263 *defrag_end = 0;
1264 }
1265
1266 free_extent_map(em);
1267 return ret;
1268}
1269
Chris Mason4cb53002011-05-24 15:35:30 -04001270/*
1271 * it doesn't do much good to defrag one or two pages
1272 * at a time. This pulls in a nice chunk of pages
1273 * to COW and defrag.
1274 *
1275 * It also makes sure the delalloc code has enough
1276 * dirty data to avoid making new small extents as part
1277 * of the defrag
1278 *
1279 * It's a good idea to start RA on this range
1280 * before calling this.
1281 */
1282static int cluster_pages_for_defrag(struct inode *inode,
1283 struct page **pages,
1284 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001285 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001286{
Chris Mason4cb53002011-05-24 15:35:30 -04001287 unsigned long file_end;
1288 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001289 u64 page_start;
1290 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001291 u64 page_cnt;
Matthew Wilcox (Oracle)a1fbc672020-10-04 19:04:26 +01001292 u64 start = (u64)start_index << PAGE_SHIFT;
Filipe Manana7f458a32020-11-04 11:07:33 +00001293 u64 search_start;
Chris Mason4cb53002011-05-24 15:35:30 -04001294 int ret;
1295 int i;
1296 int i_done;
1297 struct btrfs_ordered_extent *ordered;
1298 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001299 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001300 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001301 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001302
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001303 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001304 if (!isize || start_index > file_end)
1305 return 0;
1306
1307 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001308
Nikolay Borisove5b7231e2020-06-03 08:55:42 +03001309 ret = btrfs_delalloc_reserve_space(BTRFS_I(inode), &data_reserved,
Matthew Wilcox (Oracle)a1fbc672020-10-04 19:04:26 +01001310 start, page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001311 if (ret)
1312 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001313 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001314 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001315
1316 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001317 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001318 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001319again:
Josef Bacika94733d2011-07-11 10:47:06 -04001320 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001321 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001322 if (!page)
1323 break;
1324
Qu Wenruo32443de2021-01-26 16:34:00 +08001325 ret = set_page_extent_mapped(page);
1326 if (ret < 0) {
1327 unlock_page(page);
1328 put_page(page);
1329 break;
1330 }
1331
Miao Xie600a45e2012-02-16 15:01:24 +08001332 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001333 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001334 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001335 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001336 &cached_state);
Nikolay Borisovc3504372020-06-03 08:55:03 +03001337 ordered = btrfs_lookup_ordered_extent(BTRFS_I(inode),
Miao Xie600a45e2012-02-16 15:01:24 +08001338 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001339 unlock_extent_cached(tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001340 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001341 if (!ordered)
1342 break;
1343
1344 unlock_page(page);
Nikolay Borisovc0a43602020-09-18 12:15:53 +03001345 btrfs_start_ordered_extent(ordered, 1);
Miao Xie600a45e2012-02-16 15:01:24 +08001346 btrfs_put_ordered_extent(ordered);
1347 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001348 /*
1349 * we unlocked the page above, so we need check if
1350 * it was released or not.
1351 */
1352 if (page->mapping != inode->i_mapping) {
1353 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001354 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001355 goto again;
1356 }
Miao Xie600a45e2012-02-16 15:01:24 +08001357 }
1358
Chris Mason4cb53002011-05-24 15:35:30 -04001359 if (!PageUptodate(page)) {
1360 btrfs_readpage(NULL, page);
1361 lock_page(page);
1362 if (!PageUptodate(page)) {
1363 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001364 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001365 ret = -EIO;
1366 break;
1367 }
1368 }
Miao Xie600a45e2012-02-16 15:01:24 +08001369
Miao Xie600a45e2012-02-16 15:01:24 +08001370 if (page->mapping != inode->i_mapping) {
1371 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001372 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001373 goto again;
1374 }
1375
Chris Mason4cb53002011-05-24 15:35:30 -04001376 pages[i] = page;
1377 i_done++;
1378 }
1379 if (!i_done || ret)
1380 goto out;
1381
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001382 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001383 goto out;
1384
1385 /*
1386 * so now we have a nice long stream of locked
1387 * and up to date pages, lets wait on them
1388 */
1389 for (i = 0; i < i_done; i++)
1390 wait_on_page_writeback(pages[i]);
1391
1392 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001393 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001394
1395 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001396 page_start, page_end - 1, &cached_state);
Filipe Manana7f458a32020-11-04 11:07:33 +00001397
1398 /*
1399 * When defragmenting we skip ranges that have holes or inline extents,
1400 * (check should_defrag_range()), to avoid unnecessary IO and wasting
1401 * space. At btrfs_defrag_file(), we check if a range should be defragged
1402 * before locking the inode and then, if it should, we trigger a sync
1403 * page cache readahead - we lock the inode only after that to avoid
1404 * blocking for too long other tasks that possibly want to operate on
1405 * other file ranges. But before we were able to get the inode lock,
1406 * some other task may have punched a hole in the range, or we may have
1407 * now an inline extent, in which case we should not defrag. So check
1408 * for that here, where we have the inode and the range locked, and bail
1409 * out if that happened.
1410 */
1411 search_start = page_start;
1412 while (search_start < page_end) {
1413 struct extent_map *em;
1414
1415 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, search_start,
1416 page_end - search_start);
1417 if (IS_ERR(em)) {
1418 ret = PTR_ERR(em);
1419 goto out_unlock_range;
1420 }
1421 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
1422 free_extent_map(em);
1423 /* Ok, 0 means we did not defrag anything */
1424 ret = 0;
1425 goto out_unlock_range;
1426 }
1427 search_start = extent_map_end(em);
1428 free_extent_map(em);
1429 }
1430
Chris Mason4cb53002011-05-24 15:35:30 -04001431 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
Omar Sandovale1821632019-08-15 14:04:04 -07001432 page_end - 1, EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
1433 EXTENT_DEFRAG, 0, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001434
Liu Bo1f12bd02012-03-29 09:57:44 -04001435 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001436 spin_lock(&BTRFS_I(inode)->lock);
Su Yue28c4a3e2018-09-05 11:07:33 +08001437 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001438 spin_unlock(&BTRFS_I(inode)->lock);
Nikolay Borisov86d52922020-06-03 08:55:40 +03001439 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
Matthew Wilcox (Oracle)a1fbc672020-10-04 19:04:26 +01001440 start, (page_cnt - i_done) << PAGE_SHIFT, true);
Chris Mason4cb53002011-05-24 15:35:30 -04001441 }
1442
1443
Liu Bo9e8a4a82012-09-05 19:10:51 -06001444 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001445 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001446
1447 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001448 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001449
1450 for (i = 0; i < i_done; i++) {
1451 clear_page_dirty_for_io(pages[i]);
1452 ClearPageChecked(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001453 set_page_dirty(pages[i]);
1454 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001455 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001456 }
Qu Wenruo8702ba92019-10-14 14:34:51 +08001457 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001458 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001459 return i_done;
Filipe Manana7f458a32020-11-04 11:07:33 +00001460
1461out_unlock_range:
1462 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1463 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001464out:
1465 for (i = 0; i < i_done; i++) {
1466 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001467 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001468 }
Nikolay Borisov86d52922020-06-03 08:55:40 +03001469 btrfs_delalloc_release_space(BTRFS_I(inode), data_reserved,
Matthew Wilcox (Oracle)a1fbc672020-10-04 19:04:26 +01001470 start, page_cnt << PAGE_SHIFT, true);
Qu Wenruo8702ba92019-10-14 14:34:51 +08001471 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001472 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001473 return ret;
1474
1475}
1476
1477int btrfs_defrag_file(struct inode *inode, struct file *file,
1478 struct btrfs_ioctl_defrag_range_args *range,
1479 u64 newer_than, unsigned long max_to_defrag)
1480{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001481 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001482 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001483 struct file_ra_state *ra = NULL;
1484 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001485 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001486 u64 last_len = 0;
1487 u64 skip = 0;
1488 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001489 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001490 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001491 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001492 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001493 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001494 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001495 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001496 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001497 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001498 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001499 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001500 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001501
Liu Bo0abd5b12013-04-16 09:20:28 +00001502 if (isize == 0)
1503 return 0;
1504
1505 if (range->start >= isize)
1506 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001507
David Sterba1e2ef462017-07-17 20:01:59 +02001508 if (do_compress) {
Chengguang Xuce96b7f2019-10-10 15:59:57 +08001509 if (range->compress_type >= BTRFS_NR_COMPRESS_TYPES)
Li Zefan1a419d82010-10-25 15:12:50 +08001510 return -EINVAL;
1511 if (range->compress_type)
1512 compress_type = range->compress_type;
1513 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001514
Liu Bo0abd5b12013-04-16 09:20:28 +00001515 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001516 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001517
Chris Mason4cb53002011-05-24 15:35:30 -04001518 /*
David Sterba0a52d102017-06-22 03:22:58 +02001519 * If we were not given a file, allocate a readahead context. As
1520 * readahead is just an optimization, defrag will work without it so
1521 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001522 */
1523 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001524 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001525 if (ra)
1526 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001527 } else {
1528 ra = &file->f_ra;
1529 }
1530
David Sterba63e727e2017-06-22 03:13:02 +02001531 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001532 if (!pages) {
1533 ret = -ENOMEM;
1534 goto out_ra;
1535 }
1536
1537 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001538 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001539 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001540 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001541 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001542 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001543 }
1544
Chris Mason4cb53002011-05-24 15:35:30 -04001545 if (newer_than) {
1546 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001547 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001548 if (!ret) {
1549 range->start = newer_off;
1550 /*
1551 * we always align our defrag to help keep
1552 * the extents in the file evenly spaced
1553 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001554 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001555 } else
1556 goto out_ra;
1557 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001558 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001559 }
1560 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301561 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001562
Li Zefan2a0f7f52011-10-10 15:43:34 -04001563 /*
1564 * make writeback starts from i, so the defrag range can be
1565 * written sequentially.
1566 */
1567 if (i < inode->i_mapping->writeback_index)
1568 inode->i_mapping->writeback_index = i;
1569
Chris Masonf7f43cc2011-10-11 11:41:40 -04001570 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001571 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001572 /*
1573 * make sure we stop running if someone unmounts
1574 * the FS
1575 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001576 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001577 break;
1578
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001579 if (btrfs_defrag_cancelled(fs_info)) {
1580 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001581 ret = -EAGAIN;
1582 break;
1583 }
1584
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001585 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001586 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001587 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001588 unsigned long next;
1589 /*
1590 * the should_defrag function tells us how much to skip
1591 * bump our counter by the suggested amount
1592 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001593 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001594 i = max(i + 1, next);
1595 continue;
1596 }
Li Zefan008873e2011-09-02 15:57:07 +08001597
1598 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001599 cluster = (PAGE_ALIGN(defrag_end) >>
1600 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001601 cluster = min(cluster, max_cluster);
1602 } else {
1603 cluster = max_cluster;
1604 }
1605
Li Zefan008873e2011-09-02 15:57:07 +08001606 if (i + cluster > ra_index) {
1607 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001608 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001609 page_cache_sync_readahead(inode->i_mapping, ra,
1610 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301611 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001612 }
Chris Mason940100a2010-03-10 10:52:59 -05001613
Al Viro59551022016-01-22 15:40:57 -05001614 inode_lock(inode);
Omar Sandovaleede2bf2016-11-03 10:28:12 -07001615 if (IS_SWAPFILE(inode)) {
1616 ret = -ETXTBSY;
1617 } else {
1618 if (do_compress)
1619 BTRFS_I(inode)->defrag_compress = compress_type;
1620 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
1621 }
Liu Boecb8bea2012-03-29 09:57:44 -04001622 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001623 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001624 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001625 }
Chris Mason940100a2010-03-10 10:52:59 -05001626
Chris Mason4cb53002011-05-24 15:35:30 -04001627 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001628 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001629 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001630
1631 if (newer_than) {
1632 if (newer_off == (u64)-1)
1633 break;
1634
Liu Boe1f041e2012-03-29 09:57:45 -04001635 if (ret > 0)
1636 i += ret;
1637
Chris Mason4cb53002011-05-24 15:35:30 -04001638 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001639 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001640
Byongho Leeee221842015-12-15 01:42:10 +09001641 ret = find_new_extents(root, inode, newer_than,
1642 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001643 if (!ret) {
1644 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001645 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001646 } else {
1647 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001648 }
Chris Mason4cb53002011-05-24 15:35:30 -04001649 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001650 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001651 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001652 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001653 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001654 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001655 last_len = 0;
1656 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001657 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001658 }
1659
Filipe Mananadec8ef92014-03-01 10:55:54 +00001660 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001661 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001662 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1663 &BTRFS_I(inode)->runtime_flags))
1664 filemap_flush(inode->i_mapping);
1665 }
Chris Mason1e701a32010-03-11 09:42:04 -05001666
Li Zefan1a419d82010-10-25 15:12:50 +08001667 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001668 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
Nick Terrell5c1aab12017-08-09 19:39:02 -07001669 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1670 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
Li Zefan1a419d82010-10-25 15:12:50 +08001671 }
1672
Diego Calleja60ccf822011-09-01 16:33:57 +02001673 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001674
Chris Mason4cb53002011-05-24 15:35:30 -04001675out_ra:
David Sterba1e2ef462017-07-17 20:01:59 +02001676 if (do_compress) {
Al Viro59551022016-01-22 15:40:57 -05001677 inode_lock(inode);
David Sterbaeec63c62017-07-17 19:41:31 +02001678 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
Al Viro59551022016-01-22 15:40:57 -05001679 inode_unlock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001680 }
Chris Mason4cb53002011-05-24 15:35:30 -04001681 if (!file)
1682 kfree(ra);
1683 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001684 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001685}
1686
Miao Xie198605a2012-11-26 08:43:45 +00001687static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001688 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001689{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001690 struct inode *inode = file_inode(file);
1691 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001692 u64 new_size;
1693 u64 old_size;
1694 u64 devid = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001695 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001696 struct btrfs_ioctl_vol_args *vol_args;
1697 struct btrfs_trans_handle *trans;
1698 struct btrfs_device *device = NULL;
1699 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001700 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001701 char *devstr = NULL;
1702 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001703 int mod = 0;
1704
Chris Masone441d542009-01-05 16:57:23 -05001705 if (!capable(CAP_SYS_ADMIN))
1706 return -EPERM;
1707
Miao Xie198605a2012-11-26 08:43:45 +00001708 ret = mnt_want_write_file(file);
1709 if (ret)
1710 return ret;
1711
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05001712 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_RESIZE)) {
Miao Xie97547672012-12-21 10:38:50 +00001713 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001714 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001715 }
1716
Li Zefandae7b662009-04-08 15:06:54 +08001717 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001718 if (IS_ERR(vol_args)) {
1719 ret = PTR_ERR(vol_args);
1720 goto out;
1721 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001722
1723 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001724
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001725 sizestr = vol_args->name;
1726 devstr = strchr(sizestr, ':');
1727 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001728 sizestr = devstr + 1;
1729 *devstr = '\0';
1730 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001731 ret = kstrtoull(devstr, 10, &devid);
1732 if (ret)
1733 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001734 if (!devid) {
1735 ret = -EINVAL;
1736 goto out_free;
1737 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001738 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001739 }
Miao Xiedba60f32012-12-21 09:19:51 +00001740
Anand Jainb2598ed2020-11-03 13:49:43 +08001741 device = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001742 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001743 btrfs_info(fs_info, "resizer unable to find device %llu",
1744 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001745 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001746 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001747 }
Miao Xiedba60f32012-12-21 09:19:51 +00001748
Anand Jainebbede42017-12-04 12:54:52 +08001749 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001750 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001751 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001752 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001753 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001754 goto out_free;
1755 }
1756
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001757 if (!strcmp(sizestr, "max"))
1758 new_size = device->bdev->bd_inode->i_size;
1759 else {
1760 if (sizestr[0] == '-') {
1761 mod = -1;
1762 sizestr++;
1763 } else if (sizestr[0] == '+') {
1764 mod = 1;
1765 sizestr++;
1766 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001767 new_size = memparse(sizestr, &retptr);
1768 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001769 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001770 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001771 }
1772 }
1773
Anand Jain401e29c2017-12-04 12:54:55 +08001774 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xiedfd79822012-12-21 09:21:30 +00001775 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001776 goto out_free;
1777 }
1778
Miao Xie7cc8e582014-09-03 21:35:38 +08001779 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001780
1781 if (mod < 0) {
1782 if (new_size > old_size) {
1783 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001784 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001785 }
1786 new_size = old_size - new_size;
1787 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001788 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001789 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001790 goto out_free;
1791 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001792 new_size = old_size + new_size;
1793 }
1794
Byongho Leeee221842015-12-15 01:42:10 +09001795 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001796 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001797 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001798 }
1799 if (new_size > device->bdev->bd_inode->i_size) {
1800 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001801 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001802 }
1803
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001804 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001805
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001806 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001807 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001808 if (IS_ERR(trans)) {
1809 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001810 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001811 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001812 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001813 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001814 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001815 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001816 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001817
Marcos Paulo de Souzafaf8f7b2020-02-11 10:55:26 -03001818 if (ret == 0 && new_size != old_size)
1819 btrfs_info_in_rcu(fs_info,
1820 "resize device %s (devid %llu) from %llu to %llu",
1821 rcu_str_deref(device->name), device->devid,
1822 old_size, new_size);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001823out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001824 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001825out:
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05001826 btrfs_exclop_finish(fs_info);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001827 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001828 return ret;
1829}
1830
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001831static noinline int __btrfs_ioctl_snap_create(struct file *file,
David Sterba52f75f42017-02-14 18:33:53 +01001832 const char *name, unsigned long fd, int subvol,
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001833 bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001834 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001835{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001836 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001837 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001838
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001839 if (!S_ISDIR(file_inode(file)->i_mode))
1840 return -ENOTDIR;
1841
Liu Boa874a632012-06-29 03:58:46 -06001842 ret = mnt_want_write_file(file);
1843 if (ret)
1844 goto out;
1845
Sage Weil72fd0322010-10-29 15:41:32 -04001846 namelen = strlen(name);
1847 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001848 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001849 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001850 }
1851
Chris Mason16780ca2012-02-20 22:14:55 -05001852 if (name[0] == '.' &&
1853 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1854 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001855 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001856 }
1857
Chris Mason3de45862008-11-17 21:02:50 -05001858 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001859 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001860 NULL, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001861 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001862 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001863 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001864 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001865 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001866 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001867 }
1868
Al Viro496ad9a2013-01-23 17:07:38 -05001869 src_inode = file_inode(src.file);
1870 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001871 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001872 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001873 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001874 } else if (!inode_owner_or_capable(src_inode)) {
1875 /*
1876 * Subvolume creation is not restricted, but snapshots
1877 * are limited to own subvolumes only
1878 */
1879 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001880 } else {
Robbie Koc11fbb62020-05-14 17:19:18 +08001881 ret = btrfs_mksnapshot(&file->f_path, name, namelen,
Al Viroecd18812012-08-26 21:20:24 -04001882 BTRFS_I(src_inode)->root,
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001883 readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001884 }
Al Viro2903ff02012-08-28 12:52:22 -04001885 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001886 }
Liu Boa874a632012-06-29 03:58:46 -06001887out_drop_write:
1888 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001889out:
Sage Weil72fd0322010-10-29 15:41:32 -04001890 return ret;
1891}
1892
1893static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001894 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001895{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001896 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001897 int ret;
1898
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001899 if (!S_ISDIR(file_inode(file)->i_mode))
1900 return -ENOTDIR;
1901
Li Zefanfa0d2b92010-12-20 15:53:28 +08001902 vol_args = memdup_user(arg, sizeof(*vol_args));
1903 if (IS_ERR(vol_args))
1904 return PTR_ERR(vol_args);
1905 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001906
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001907 ret = __btrfs_ioctl_snap_create(file, vol_args->name, vol_args->fd,
1908 subvol, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001909
Li Zefanfa0d2b92010-12-20 15:53:28 +08001910 kfree(vol_args);
1911 return ret;
1912}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001913
Li Zefanfa0d2b92010-12-20 15:53:28 +08001914static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1915 void __user *arg, int subvol)
1916{
1917 struct btrfs_ioctl_vol_args_v2 *vol_args;
1918 int ret;
Li Zefanb83cc962010-12-20 16:04:08 +08001919 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001920 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001921
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001922 if (!S_ISDIR(file_inode(file)->i_mode))
1923 return -ENOTDIR;
1924
Li Zefanfa0d2b92010-12-20 15:53:28 +08001925 vol_args = memdup_user(arg, sizeof(*vol_args));
1926 if (IS_ERR(vol_args))
1927 return PTR_ERR(vol_args);
1928 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001929
David Sterba673990d2020-02-21 13:24:37 +01001930 if (vol_args->flags & ~BTRFS_SUBVOL_CREATE_ARGS_MASK) {
Li Zefanb83cc962010-12-20 16:04:08 +08001931 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001932 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001933 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001934
Li Zefanb83cc962010-12-20 16:04:08 +08001935 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1936 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001937 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Dan Carpenter5011c5a2021-02-17 09:04:34 +03001938 u64 nums;
1939
1940 if (vol_args->size < sizeof(*inherit) ||
1941 vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001942 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001943 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001944 }
1945 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1946 if (IS_ERR(inherit)) {
1947 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001948 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001949 }
Dan Carpenter5011c5a2021-02-17 09:04:34 +03001950
1951 if (inherit->num_qgroups > PAGE_SIZE ||
1952 inherit->num_ref_copies > PAGE_SIZE ||
1953 inherit->num_excl_copies > PAGE_SIZE) {
1954 ret = -EINVAL;
1955 goto free_inherit;
1956 }
1957
1958 nums = inherit->num_qgroups + 2 * inherit->num_ref_copies +
1959 2 * inherit->num_excl_copies;
1960 if (vol_args->size != struct_size(inherit, qgroups, nums)) {
1961 ret = -EINVAL;
1962 goto free_inherit;
1963 }
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001964 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001965
Nikolay Borisov5d54c672020-03-13 17:23:19 +02001966 ret = __btrfs_ioctl_snap_create(file, vol_args->name, vol_args->fd,
1967 subvol, readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001968 if (ret)
1969 goto free_inherit;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001970free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001971 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001972free_args:
1973 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001974 return ret;
1975}
1976
Li Zefan0caa1022010-12-20 16:30:25 +08001977static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1978 void __user *arg)
1979{
Al Viro496ad9a2013-01-23 17:07:38 -05001980 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001981 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001982 struct btrfs_root *root = BTRFS_I(inode)->root;
1983 int ret = 0;
1984 u64 flags = 0;
1985
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001986 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001987 return -EINVAL;
1988
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001989 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001990 if (btrfs_root_readonly(root))
1991 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001992 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001993
1994 if (copy_to_user(arg, &flags, sizeof(flags)))
1995 ret = -EFAULT;
1996
1997 return ret;
1998}
1999
2000static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
2001 void __user *arg)
2002{
Al Viro496ad9a2013-01-23 17:07:38 -05002003 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002004 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08002005 struct btrfs_root *root = BTRFS_I(inode)->root;
2006 struct btrfs_trans_handle *trans;
2007 u64 root_flags;
2008 u64 flags;
2009 int ret = 0;
2010
David Sterbabd60ea02014-01-16 15:50:22 +01002011 if (!inode_owner_or_capable(inode))
2012 return -EPERM;
2013
Liu Bob9ca0662012-06-29 03:58:49 -06002014 ret = mnt_want_write_file(file);
2015 if (ret)
2016 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08002017
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002018 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06002019 ret = -EINVAL;
2020 goto out_drop_write;
2021 }
Li Zefan0caa1022010-12-20 16:30:25 +08002022
Liu Bob9ca0662012-06-29 03:58:49 -06002023 if (copy_from_user(&flags, arg, sizeof(flags))) {
2024 ret = -EFAULT;
2025 goto out_drop_write;
2026 }
Li Zefan0caa1022010-12-20 16:30:25 +08002027
Liu Bob9ca0662012-06-29 03:58:49 -06002028 if (flags & ~BTRFS_SUBVOL_RDONLY) {
2029 ret = -EOPNOTSUPP;
2030 goto out_drop_write;
2031 }
Li Zefan0caa1022010-12-20 16:30:25 +08002032
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002033 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08002034
2035 /* nothing to do */
2036 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06002037 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08002038
2039 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01002040 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08002041 btrfs_set_root_flags(&root->root_item,
2042 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01002043 } else {
2044 /*
2045 * Block RO -> RW transition if this subvolume is involved in
2046 * send
2047 */
2048 spin_lock(&root->root_item_lock);
2049 if (root->send_in_progress == 0) {
2050 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08002051 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01002052 spin_unlock(&root->root_item_lock);
2053 } else {
2054 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002055 btrfs_warn(fs_info,
2056 "Attempt to set subvolume %llu read-write during send",
2057 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01002058 ret = -EPERM;
2059 goto out_drop_sem;
2060 }
2061 }
Li Zefan0caa1022010-12-20 16:30:25 +08002062
2063 trans = btrfs_start_transaction(root, 1);
2064 if (IS_ERR(trans)) {
2065 ret = PTR_ERR(trans);
2066 goto out_reset;
2067 }
2068
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002069 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08002070 &root->root_key, &root->root_item);
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03002071 if (ret < 0) {
2072 btrfs_end_transaction(trans);
2073 goto out_reset;
2074 }
Li Zefan0caa1022010-12-20 16:30:25 +08002075
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03002076 ret = btrfs_commit_transaction(trans);
2077
Li Zefan0caa1022010-12-20 16:30:25 +08002078out_reset:
2079 if (ret)
2080 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06002081out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002082 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06002083out_drop_write:
2084 mnt_drop_write_file(file);
2085out:
Li Zefan0caa1022010-12-20 16:30:25 +08002086 return ret;
2087}
2088
Chris Masonac8e9812010-02-28 15:39:26 -05002089static noinline int key_in_sk(struct btrfs_key *key,
2090 struct btrfs_ioctl_search_key *sk)
2091{
Chris Masonabc6e132010-03-18 12:10:08 -04002092 struct btrfs_key test;
2093 int ret;
2094
2095 test.objectid = sk->min_objectid;
2096 test.type = sk->min_type;
2097 test.offset = sk->min_offset;
2098
2099 ret = btrfs_comp_cpu_keys(key, &test);
2100 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05002101 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002102
2103 test.objectid = sk->max_objectid;
2104 test.type = sk->max_type;
2105 test.offset = sk->max_offset;
2106
2107 ret = btrfs_comp_cpu_keys(key, &test);
2108 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05002109 return 0;
2110 return 1;
2111}
2112
Jeff Mahoneydf397562016-06-21 20:18:21 -04002113static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05002114 struct btrfs_key *key,
2115 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002116 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002117 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002118 unsigned long *sk_offset,
2119 int *num_found)
2120{
2121 u64 found_transid;
2122 struct extent_buffer *leaf;
2123 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002124 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05002125 unsigned long item_off;
2126 unsigned long item_len;
2127 int nritems;
2128 int i;
2129 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05002130 int ret = 0;
2131
2132 leaf = path->nodes[0];
2133 slot = path->slots[0];
2134 nritems = btrfs_header_nritems(leaf);
2135
2136 if (btrfs_header_generation(leaf) > sk->max_transid) {
2137 i = nritems;
2138 goto advance_key;
2139 }
2140 found_transid = btrfs_header_generation(leaf);
2141
2142 for (i = slot; i < nritems; i++) {
2143 item_off = btrfs_item_ptr_offset(leaf, i);
2144 item_len = btrfs_item_size_nr(leaf, i);
2145
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00002146 btrfs_item_key_to_cpu(leaf, key, i);
2147 if (!key_in_sk(key, sk))
2148 continue;
2149
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002150 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002151 if (*num_found) {
2152 ret = 1;
2153 goto out;
2154 }
Chris Masonac8e9812010-02-28 15:39:26 -05002155
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002156 /*
2157 * return one empty item back for v1, which does not
2158 * handle -EOVERFLOW
2159 */
2160
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002161 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002162 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002163 ret = -EOVERFLOW;
2164 }
Chris Masonac8e9812010-02-28 15:39:26 -05002165
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002166 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05002167 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002168 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05002169 }
2170
Chris Masonac8e9812010-02-28 15:39:26 -05002171 sh.objectid = key->objectid;
2172 sh.offset = key->offset;
2173 sh.type = key->type;
2174 sh.len = item_len;
2175 sh.transid = found_transid;
2176
Josef Bacika48b73e2020-08-10 11:42:27 -04002177 /*
2178 * Copy search result header. If we fault then loop again so we
2179 * can fault in the pages and -EFAULT there if there's a
2180 * problem. Otherwise we'll fault and then copy the buffer in
2181 * properly this next time through
2182 */
2183 if (copy_to_user_nofault(ubuf + *sk_offset, &sh, sizeof(sh))) {
2184 ret = 0;
Gerhard Heiftba346b32014-01-30 16:24:02 +01002185 goto out;
2186 }
2187
Chris Masonac8e9812010-02-28 15:39:26 -05002188 *sk_offset += sizeof(sh);
2189
2190 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002191 char __user *up = ubuf + *sk_offset;
Josef Bacika48b73e2020-08-10 11:42:27 -04002192 /*
2193 * Copy the item, same behavior as above, but reset the
2194 * * sk_offset so we copy the full thing again.
2195 */
2196 if (read_extent_buffer_to_user_nofault(leaf, up,
2197 item_off, item_len)) {
2198 ret = 0;
2199 *sk_offset -= sizeof(sh);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002200 goto out;
2201 }
2202
Chris Masonac8e9812010-02-28 15:39:26 -05002203 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002204 }
Hugo Millse2156862011-05-14 17:43:41 +00002205 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002206
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002207 if (ret) /* -EOVERFLOW from above */
2208 goto out;
2209
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002210 if (*num_found >= sk->nr_items) {
2211 ret = 1;
2212 goto out;
2213 }
Chris Masonac8e9812010-02-28 15:39:26 -05002214 }
2215advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002216 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002217 test.objectid = sk->max_objectid;
2218 test.type = sk->max_type;
2219 test.offset = sk->max_offset;
2220 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2221 ret = 1;
2222 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002223 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002224 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002225 key->offset = 0;
2226 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002227 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002228 key->offset = 0;
2229 key->type = 0;
2230 key->objectid++;
2231 } else
2232 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002233out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002234 /*
2235 * 0: all items from this leaf copied, continue with next
2236 * 1: * more items can be copied, but unused buffer is too small
2237 * * all items were found
2238 * Either way, it will stops the loop which iterates to the next
2239 * leaf
2240 * -EOVERFLOW: item was to large for buffer
2241 * -EFAULT: could not copy extent buffer back to userspace
2242 */
Chris Masonac8e9812010-02-28 15:39:26 -05002243 return ret;
2244}
2245
2246static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002247 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002248 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002249 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002250{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002251 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05002252 struct btrfs_root *root;
2253 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002254 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002255 int ret;
2256 int num_found = 0;
2257 unsigned long sk_offset = 0;
2258
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002259 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2260 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002261 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002262 }
Gerhard Heift12544442014-01-30 16:23:58 +01002263
Chris Masonac8e9812010-02-28 15:39:26 -05002264 path = btrfs_alloc_path();
2265 if (!path)
2266 return -ENOMEM;
2267
2268 if (sk->tree_id == 0) {
2269 /* search the root of the inode that was passed */
Josef Bacik00246522020-01-24 09:33:01 -05002270 root = btrfs_grab_root(BTRFS_I(inode)->root);
Chris Masonac8e9812010-02-28 15:39:26 -05002271 } else {
David Sterba56e93572020-05-15 19:35:55 +02002272 root = btrfs_get_fs_root(info, sk->tree_id, true);
Chris Masonac8e9812010-02-28 15:39:26 -05002273 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002274 btrfs_free_path(path);
Misono Tomohiroad1e3d52018-05-21 13:57:27 +09002275 return PTR_ERR(root);
Chris Masonac8e9812010-02-28 15:39:26 -05002276 }
2277 }
2278
2279 key.objectid = sk->min_objectid;
2280 key.type = sk->min_type;
2281 key.offset = sk->min_offset;
2282
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302283 while (1) {
Filipe Manana1c785442020-09-14 09:01:04 +01002284 ret = fault_in_pages_writeable(ubuf + sk_offset,
2285 *buf_size - sk_offset);
Josef Bacika48b73e2020-08-10 11:42:27 -04002286 if (ret)
2287 break;
2288
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002289 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002290 if (ret != 0) {
2291 if (ret > 0)
2292 ret = 0;
2293 goto err;
2294 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002295 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002296 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002297 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002298 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002299 break;
2300
2301 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002302 if (ret > 0)
2303 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002304err:
2305 sk->nr_items = num_found;
Josef Bacik00246522020-01-24 09:33:01 -05002306 btrfs_put_root(root);
Chris Masonac8e9812010-02-28 15:39:26 -05002307 btrfs_free_path(path);
2308 return ret;
2309}
2310
2311static noinline int btrfs_ioctl_tree_search(struct file *file,
2312 void __user *argp)
2313{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002314 struct btrfs_ioctl_search_args __user *uargs;
2315 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002316 struct inode *inode;
2317 int ret;
2318 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002319
2320 if (!capable(CAP_SYS_ADMIN))
2321 return -EPERM;
2322
Gerhard Heiftba346b32014-01-30 16:24:02 +01002323 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002324
Gerhard Heiftba346b32014-01-30 16:24:02 +01002325 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2326 return -EFAULT;
2327
2328 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002329
Al Viro496ad9a2013-01-23 17:07:38 -05002330 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002331 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002332
2333 /*
2334 * In the origin implementation an overflow is handled by returning a
2335 * search header with a len of zero, so reset ret.
2336 */
2337 if (ret == -EOVERFLOW)
2338 ret = 0;
2339
Gerhard Heiftba346b32014-01-30 16:24:02 +01002340 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002341 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002342 return ret;
2343}
2344
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002345static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2346 void __user *argp)
2347{
2348 struct btrfs_ioctl_search_args_v2 __user *uarg;
2349 struct btrfs_ioctl_search_args_v2 args;
2350 struct inode *inode;
2351 int ret;
2352 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002353 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002354
2355 if (!capable(CAP_SYS_ADMIN))
2356 return -EPERM;
2357
2358 /* copy search header and buffer size */
2359 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2360 if (copy_from_user(&args, uarg, sizeof(args)))
2361 return -EFAULT;
2362
2363 buf_size = args.buf_size;
2364
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002365 /* limit result size to 16MB */
2366 if (buf_size > buf_limit)
2367 buf_size = buf_limit;
2368
2369 inode = file_inode(file);
2370 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002371 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002372 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2373 ret = -EFAULT;
2374 else if (ret == -EOVERFLOW &&
2375 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2376 ret = -EFAULT;
2377
Yan, Zheng76dda932009-09-21 16:00:26 -04002378 return ret;
2379}
2380
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002381/*
Chris Masonac8e9812010-02-28 15:39:26 -05002382 * Search INODE_REFs to identify path name of 'dirid' directory
2383 * in a 'tree_id' tree. and sets path name to 'name'.
2384 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002385static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2386 u64 tree_id, u64 dirid, char *name)
2387{
2388 struct btrfs_root *root;
2389 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002390 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002391 int ret = -1;
2392 int slot;
2393 int len;
2394 int total_len = 0;
2395 struct btrfs_inode_ref *iref;
2396 struct extent_buffer *l;
2397 struct btrfs_path *path;
2398
2399 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2400 name[0]='\0';
2401 return 0;
2402 }
2403
2404 path = btrfs_alloc_path();
2405 if (!path)
2406 return -ENOMEM;
2407
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002408 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002409
David Sterba56e93572020-05-15 19:35:55 +02002410 root = btrfs_get_fs_root(info, tree_id, true);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002411 if (IS_ERR(root)) {
Misono Tomohiroad1e3d52018-05-21 13:57:27 +09002412 ret = PTR_ERR(root);
Josef Bacik88234012020-01-24 09:32:34 -05002413 root = NULL;
2414 goto out;
2415 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002416
2417 key.objectid = dirid;
2418 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002419 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002420
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302421 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002422 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2423 if (ret < 0)
2424 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002425 else if (ret > 0) {
2426 ret = btrfs_previous_item(root, path, dirid,
2427 BTRFS_INODE_REF_KEY);
2428 if (ret < 0)
2429 goto out;
2430 else if (ret > 0) {
2431 ret = -ENOENT;
2432 goto out;
2433 }
2434 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002435
2436 l = path->nodes[0];
2437 slot = path->slots[0];
2438 btrfs_item_key_to_cpu(l, &key, slot);
2439
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002440 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2441 len = btrfs_inode_ref_name_len(l, iref);
2442 ptr -= len + 1;
2443 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002444 if (ptr < name) {
2445 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002446 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002447 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002448
2449 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302450 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002451
2452 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2453 break;
2454
David Sterbab3b4aa72011-04-21 01:20:15 +02002455 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002456 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002457 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002458 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002459 }
Li Zefan77906a502011-07-14 03:16:00 +00002460 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302461 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002462 ret = 0;
2463out:
Josef Bacik00246522020-01-24 09:33:01 -05002464 btrfs_put_root(root);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002465 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002466 return ret;
2467}
2468
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002469static int btrfs_search_path_in_tree_user(struct inode *inode,
2470 struct btrfs_ioctl_ino_lookup_user_args *args)
2471{
2472 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2473 struct super_block *sb = inode->i_sb;
2474 struct btrfs_key upper_limit = BTRFS_I(inode)->location;
2475 u64 treeid = BTRFS_I(inode)->root->root_key.objectid;
2476 u64 dirid = args->dirid;
2477 unsigned long item_off;
2478 unsigned long item_len;
2479 struct btrfs_inode_ref *iref;
2480 struct btrfs_root_ref *rref;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002481 struct btrfs_root *root = NULL;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002482 struct btrfs_path *path;
2483 struct btrfs_key key, key2;
2484 struct extent_buffer *leaf;
2485 struct inode *temp_inode;
2486 char *ptr;
2487 int slot;
2488 int len;
2489 int total_len = 0;
2490 int ret;
2491
2492 path = btrfs_alloc_path();
2493 if (!path)
2494 return -ENOMEM;
2495
2496 /*
2497 * If the bottom subvolume does not exist directly under upper_limit,
2498 * construct the path in from the bottom up.
2499 */
2500 if (dirid != upper_limit.objectid) {
2501 ptr = &args->path[BTRFS_INO_LOOKUP_USER_PATH_MAX - 1];
2502
David Sterba56e93572020-05-15 19:35:55 +02002503 root = btrfs_get_fs_root(fs_info, treeid, true);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002504 if (IS_ERR(root)) {
2505 ret = PTR_ERR(root);
2506 goto out;
2507 }
2508
2509 key.objectid = dirid;
2510 key.type = BTRFS_INODE_REF_KEY;
2511 key.offset = (u64)-1;
2512 while (1) {
2513 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2514 if (ret < 0) {
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002515 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002516 } else if (ret > 0) {
2517 ret = btrfs_previous_item(root, path, dirid,
2518 BTRFS_INODE_REF_KEY);
2519 if (ret < 0) {
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002520 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002521 } else if (ret > 0) {
2522 ret = -ENOENT;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002523 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002524 }
2525 }
2526
2527 leaf = path->nodes[0];
2528 slot = path->slots[0];
2529 btrfs_item_key_to_cpu(leaf, &key, slot);
2530
2531 iref = btrfs_item_ptr(leaf, slot, struct btrfs_inode_ref);
2532 len = btrfs_inode_ref_name_len(leaf, iref);
2533 ptr -= len + 1;
2534 total_len += len + 1;
2535 if (ptr < args->path) {
2536 ret = -ENAMETOOLONG;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002537 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002538 }
2539
2540 *(ptr + len) = '/';
2541 read_extent_buffer(leaf, ptr,
2542 (unsigned long)(iref + 1), len);
2543
2544 /* Check the read+exec permission of this directory */
2545 ret = btrfs_previous_item(root, path, dirid,
2546 BTRFS_INODE_ITEM_KEY);
2547 if (ret < 0) {
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002548 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002549 } else if (ret > 0) {
2550 ret = -ENOENT;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002551 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002552 }
2553
2554 leaf = path->nodes[0];
2555 slot = path->slots[0];
2556 btrfs_item_key_to_cpu(leaf, &key2, slot);
2557 if (key2.objectid != dirid) {
2558 ret = -ENOENT;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002559 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002560 }
2561
David Sterba0202e832020-05-15 19:35:59 +02002562 temp_inode = btrfs_iget(sb, key2.objectid, root);
Misono Tomohiro3ca57bd2018-06-04 16:41:07 +09002563 if (IS_ERR(temp_inode)) {
2564 ret = PTR_ERR(temp_inode);
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002565 goto out_put;
Misono Tomohiro3ca57bd2018-06-04 16:41:07 +09002566 }
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002567 ret = inode_permission(temp_inode, MAY_READ | MAY_EXEC);
2568 iput(temp_inode);
2569 if (ret) {
2570 ret = -EACCES;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002571 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002572 }
2573
2574 if (key.offset == upper_limit.objectid)
2575 break;
2576 if (key.objectid == BTRFS_FIRST_FREE_OBJECTID) {
2577 ret = -EACCES;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002578 goto out_put;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002579 }
2580
2581 btrfs_release_path(path);
2582 key.objectid = key.offset;
2583 key.offset = (u64)-1;
2584 dirid = key.objectid;
2585 }
2586
2587 memmove(args->path, ptr, total_len);
2588 args->path[total_len] = '\0';
Josef Bacik00246522020-01-24 09:33:01 -05002589 btrfs_put_root(root);
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002590 root = NULL;
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002591 btrfs_release_path(path);
2592 }
2593
2594 /* Get the bottom subvolume's name from ROOT_REF */
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002595 key.objectid = treeid;
2596 key.type = BTRFS_ROOT_REF_KEY;
2597 key.offset = args->treeid;
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002598 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002599 if (ret < 0) {
2600 goto out;
2601 } else if (ret > 0) {
2602 ret = -ENOENT;
2603 goto out;
2604 }
2605
2606 leaf = path->nodes[0];
2607 slot = path->slots[0];
2608 btrfs_item_key_to_cpu(leaf, &key, slot);
2609
2610 item_off = btrfs_item_ptr_offset(leaf, slot);
2611 item_len = btrfs_item_size_nr(leaf, slot);
2612 /* Check if dirid in ROOT_REF corresponds to passed dirid */
2613 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2614 if (args->dirid != btrfs_root_ref_dirid(leaf, rref)) {
2615 ret = -EINVAL;
2616 goto out;
2617 }
2618
2619 /* Copy subvolume's name */
2620 item_off += sizeof(struct btrfs_root_ref);
2621 item_len -= sizeof(struct btrfs_root_ref);
2622 read_extent_buffer(leaf, args->name, item_off, item_len);
2623 args->name[item_len] = 0;
2624
Josef Bacikb8a49ae2020-01-24 09:32:35 -05002625out_put:
Josef Bacik00246522020-01-24 09:33:01 -05002626 btrfs_put_root(root);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002627out:
2628 btrfs_free_path(path);
2629 return ret;
2630}
2631
Chris Masonac8e9812010-02-28 15:39:26 -05002632static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2633 void __user *argp)
2634{
Bart Van Asschebece2e82018-06-20 10:03:31 -07002635 struct btrfs_ioctl_ino_lookup_args *args;
2636 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002637 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002638
Julia Lawall2354d08f2010-10-29 15:14:18 -04002639 args = memdup_user(argp, sizeof(*args));
2640 if (IS_ERR(args))
2641 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002642
Al Viro496ad9a2013-01-23 17:07:38 -05002643 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002644
David Sterba01b810b2015-05-12 19:14:49 +02002645 /*
2646 * Unprivileged query to obtain the containing subvolume root id. The
2647 * path is reset so it's consistent with btrfs_search_path_in_tree.
2648 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002649 if (args->treeid == 0)
2650 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2651
David Sterba01b810b2015-05-12 19:14:49 +02002652 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2653 args->name[0] = 0;
2654 goto out;
2655 }
2656
2657 if (!capable(CAP_SYS_ADMIN)) {
2658 ret = -EPERM;
2659 goto out;
2660 }
2661
Chris Masonac8e9812010-02-28 15:39:26 -05002662 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2663 args->treeid, args->objectid,
2664 args->name);
2665
David Sterba01b810b2015-05-12 19:14:49 +02002666out:
Chris Masonac8e9812010-02-28 15:39:26 -05002667 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2668 ret = -EFAULT;
2669
2670 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002671 return ret;
2672}
2673
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002674/*
2675 * Version of ino_lookup ioctl (unprivileged)
2676 *
2677 * The main differences from ino_lookup ioctl are:
2678 *
2679 * 1. Read + Exec permission will be checked using inode_permission() during
2680 * path construction. -EACCES will be returned in case of failure.
2681 * 2. Path construction will be stopped at the inode number which corresponds
2682 * to the fd with which this ioctl is called. If constructed path does not
2683 * exist under fd's inode, -EACCES will be returned.
2684 * 3. The name of bottom subvolume is also searched and filled.
2685 */
2686static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
2687{
2688 struct btrfs_ioctl_ino_lookup_user_args *args;
2689 struct inode *inode;
2690 int ret;
2691
2692 args = memdup_user(argp, sizeof(*args));
2693 if (IS_ERR(args))
2694 return PTR_ERR(args);
2695
2696 inode = file_inode(file);
2697
2698 if (args->dirid == BTRFS_FIRST_FREE_OBJECTID &&
2699 BTRFS_I(inode)->location.objectid != BTRFS_FIRST_FREE_OBJECTID) {
2700 /*
2701 * The subvolume does not exist under fd with which this is
2702 * called
2703 */
2704 kfree(args);
2705 return -EACCES;
2706 }
2707
2708 ret = btrfs_search_path_in_tree_user(inode, args);
2709
2710 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2711 ret = -EFAULT;
2712
2713 kfree(args);
2714 return ret;
2715}
2716
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002717/* Get the subvolume information in BTRFS_ROOT_ITEM and BTRFS_ROOT_BACKREF */
2718static int btrfs_ioctl_get_subvol_info(struct file *file, void __user *argp)
2719{
2720 struct btrfs_ioctl_get_subvol_info_args *subvol_info;
2721 struct btrfs_fs_info *fs_info;
2722 struct btrfs_root *root;
2723 struct btrfs_path *path;
2724 struct btrfs_key key;
2725 struct btrfs_root_item *root_item;
2726 struct btrfs_root_ref *rref;
2727 struct extent_buffer *leaf;
2728 unsigned long item_off;
2729 unsigned long item_len;
2730 struct inode *inode;
2731 int slot;
2732 int ret = 0;
2733
2734 path = btrfs_alloc_path();
2735 if (!path)
2736 return -ENOMEM;
2737
2738 subvol_info = kzalloc(sizeof(*subvol_info), GFP_KERNEL);
2739 if (!subvol_info) {
2740 btrfs_free_path(path);
2741 return -ENOMEM;
2742 }
2743
2744 inode = file_inode(file);
2745 fs_info = BTRFS_I(inode)->root->fs_info;
2746
2747 /* Get root_item of inode's subvolume */
2748 key.objectid = BTRFS_I(inode)->root->root_key.objectid;
David Sterba56e93572020-05-15 19:35:55 +02002749 root = btrfs_get_fs_root(fs_info, key.objectid, true);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002750 if (IS_ERR(root)) {
2751 ret = PTR_ERR(root);
Josef Bacik04734e82020-01-24 09:32:36 -05002752 goto out_free;
2753 }
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002754 root_item = &root->root_item;
2755
2756 subvol_info->treeid = key.objectid;
2757
2758 subvol_info->generation = btrfs_root_generation(root_item);
2759 subvol_info->flags = btrfs_root_flags(root_item);
2760
2761 memcpy(subvol_info->uuid, root_item->uuid, BTRFS_UUID_SIZE);
2762 memcpy(subvol_info->parent_uuid, root_item->parent_uuid,
2763 BTRFS_UUID_SIZE);
2764 memcpy(subvol_info->received_uuid, root_item->received_uuid,
2765 BTRFS_UUID_SIZE);
2766
2767 subvol_info->ctransid = btrfs_root_ctransid(root_item);
2768 subvol_info->ctime.sec = btrfs_stack_timespec_sec(&root_item->ctime);
2769 subvol_info->ctime.nsec = btrfs_stack_timespec_nsec(&root_item->ctime);
2770
2771 subvol_info->otransid = btrfs_root_otransid(root_item);
2772 subvol_info->otime.sec = btrfs_stack_timespec_sec(&root_item->otime);
2773 subvol_info->otime.nsec = btrfs_stack_timespec_nsec(&root_item->otime);
2774
2775 subvol_info->stransid = btrfs_root_stransid(root_item);
2776 subvol_info->stime.sec = btrfs_stack_timespec_sec(&root_item->stime);
2777 subvol_info->stime.nsec = btrfs_stack_timespec_nsec(&root_item->stime);
2778
2779 subvol_info->rtransid = btrfs_root_rtransid(root_item);
2780 subvol_info->rtime.sec = btrfs_stack_timespec_sec(&root_item->rtime);
2781 subvol_info->rtime.nsec = btrfs_stack_timespec_nsec(&root_item->rtime);
2782
2783 if (key.objectid != BTRFS_FS_TREE_OBJECTID) {
2784 /* Search root tree for ROOT_BACKREF of this subvolume */
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002785 key.type = BTRFS_ROOT_BACKREF_KEY;
2786 key.offset = 0;
Josef Bacik04734e82020-01-24 09:32:36 -05002787 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002788 if (ret < 0) {
2789 goto out;
2790 } else if (path->slots[0] >=
2791 btrfs_header_nritems(path->nodes[0])) {
Josef Bacik04734e82020-01-24 09:32:36 -05002792 ret = btrfs_next_leaf(fs_info->tree_root, path);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002793 if (ret < 0) {
2794 goto out;
2795 } else if (ret > 0) {
2796 ret = -EUCLEAN;
2797 goto out;
2798 }
2799 }
2800
2801 leaf = path->nodes[0];
2802 slot = path->slots[0];
2803 btrfs_item_key_to_cpu(leaf, &key, slot);
2804 if (key.objectid == subvol_info->treeid &&
2805 key.type == BTRFS_ROOT_BACKREF_KEY) {
2806 subvol_info->parent_id = key.offset;
2807
2808 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2809 subvol_info->dirid = btrfs_root_ref_dirid(leaf, rref);
2810
2811 item_off = btrfs_item_ptr_offset(leaf, slot)
2812 + sizeof(struct btrfs_root_ref);
2813 item_len = btrfs_item_size_nr(leaf, slot)
2814 - sizeof(struct btrfs_root_ref);
2815 read_extent_buffer(leaf, subvol_info->name,
2816 item_off, item_len);
2817 } else {
2818 ret = -ENOENT;
2819 goto out;
2820 }
2821 }
2822
2823 if (copy_to_user(argp, subvol_info, sizeof(*subvol_info)))
2824 ret = -EFAULT;
2825
2826out:
Josef Bacik00246522020-01-24 09:33:01 -05002827 btrfs_put_root(root);
Josef Bacik04734e82020-01-24 09:32:36 -05002828out_free:
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002829 btrfs_free_path(path);
Waiman Longb091f7f2020-06-16 11:31:59 -04002830 kfree(subvol_info);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002831 return ret;
2832}
2833
Tomohiro Misono42e4b522018-05-21 10:09:43 +09002834/*
2835 * Return ROOT_REF information of the subvolume containing this inode
2836 * except the subvolume name.
2837 */
2838static int btrfs_ioctl_get_subvol_rootref(struct file *file, void __user *argp)
2839{
2840 struct btrfs_ioctl_get_subvol_rootref_args *rootrefs;
2841 struct btrfs_root_ref *rref;
2842 struct btrfs_root *root;
2843 struct btrfs_path *path;
2844 struct btrfs_key key;
2845 struct extent_buffer *leaf;
2846 struct inode *inode;
2847 u64 objectid;
2848 int slot;
2849 int ret;
2850 u8 found;
2851
2852 path = btrfs_alloc_path();
2853 if (!path)
2854 return -ENOMEM;
2855
2856 rootrefs = memdup_user(argp, sizeof(*rootrefs));
2857 if (IS_ERR(rootrefs)) {
2858 btrfs_free_path(path);
2859 return PTR_ERR(rootrefs);
2860 }
2861
2862 inode = file_inode(file);
2863 root = BTRFS_I(inode)->root->fs_info->tree_root;
2864 objectid = BTRFS_I(inode)->root->root_key.objectid;
2865
2866 key.objectid = objectid;
2867 key.type = BTRFS_ROOT_REF_KEY;
2868 key.offset = rootrefs->min_treeid;
2869 found = 0;
2870
2871 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2872 if (ret < 0) {
2873 goto out;
2874 } else if (path->slots[0] >=
2875 btrfs_header_nritems(path->nodes[0])) {
2876 ret = btrfs_next_leaf(root, path);
2877 if (ret < 0) {
2878 goto out;
2879 } else if (ret > 0) {
2880 ret = -EUCLEAN;
2881 goto out;
2882 }
2883 }
2884 while (1) {
2885 leaf = path->nodes[0];
2886 slot = path->slots[0];
2887
2888 btrfs_item_key_to_cpu(leaf, &key, slot);
2889 if (key.objectid != objectid || key.type != BTRFS_ROOT_REF_KEY) {
2890 ret = 0;
2891 goto out;
2892 }
2893
2894 if (found == BTRFS_MAX_ROOTREF_BUFFER_NUM) {
2895 ret = -EOVERFLOW;
2896 goto out;
2897 }
2898
2899 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2900 rootrefs->rootref[found].treeid = key.offset;
2901 rootrefs->rootref[found].dirid =
2902 btrfs_root_ref_dirid(leaf, rref);
2903 found++;
2904
2905 ret = btrfs_next_item(root, path);
2906 if (ret < 0) {
2907 goto out;
2908 } else if (ret > 0) {
2909 ret = -EUCLEAN;
2910 goto out;
2911 }
2912 }
2913
2914out:
2915 if (!ret || ret == -EOVERFLOW) {
2916 rootrefs->num_items = found;
2917 /* update min_treeid for next search */
2918 if (found)
2919 rootrefs->min_treeid =
2920 rootrefs->rootref[found - 1].treeid + 1;
2921 if (copy_to_user(argp, rootrefs, sizeof(*rootrefs)))
2922 ret = -EFAULT;
2923 }
2924
2925 kfree(rootrefs);
2926 btrfs_free_path(path);
2927
2928 return ret;
2929}
2930
Yan, Zheng76dda932009-09-21 16:00:26 -04002931static noinline int btrfs_ioctl_snap_destroy(struct file *file,
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002932 void __user *arg,
2933 bool destroy_v2)
Yan, Zheng76dda932009-09-21 16:00:26 -04002934{
Al Viro54563d42013-09-01 15:57:51 -04002935 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002936 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002937 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002938 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002939 struct inode *inode;
2940 struct btrfs_root *root = BTRFS_I(dir)->root;
2941 struct btrfs_root *dest = NULL;
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002942 struct btrfs_ioctl_vol_args *vol_args = NULL;
2943 struct btrfs_ioctl_vol_args_v2 *vol_args2 = NULL;
2944 char *subvol_name, *subvol_name_ptr = NULL;
2945 int subvol_namelen;
Yan, Zheng76dda932009-09-21 16:00:26 -04002946 int err = 0;
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002947 bool destroy_parent = false;
Yan, Zheng76dda932009-09-21 16:00:26 -04002948
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002949 if (destroy_v2) {
2950 vol_args2 = memdup_user(arg, sizeof(*vol_args2));
2951 if (IS_ERR(vol_args2))
2952 return PTR_ERR(vol_args2);
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002953
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002954 if (vol_args2->flags & ~BTRFS_SUBVOL_DELETE_ARGS_MASK) {
2955 err = -EOPNOTSUPP;
2956 goto out;
2957 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002958
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03002959 /*
2960 * If SPEC_BY_ID is not set, we are looking for the subvolume by
2961 * name, same as v1 currently does.
2962 */
2963 if (!(vol_args2->flags & BTRFS_SUBVOL_SPEC_BY_ID)) {
2964 vol_args2->name[BTRFS_SUBVOL_NAME_MAX] = 0;
2965 subvol_name = vol_args2->name;
2966
2967 err = mnt_want_write_file(file);
2968 if (err)
2969 goto out;
2970 } else {
2971 if (vol_args2->subvolid < BTRFS_FIRST_FREE_OBJECTID) {
2972 err = -EINVAL;
2973 goto out;
2974 }
2975
2976 err = mnt_want_write_file(file);
2977 if (err)
2978 goto out;
2979
2980 dentry = btrfs_get_dentry(fs_info->sb,
2981 BTRFS_FIRST_FREE_OBJECTID,
2982 vol_args2->subvolid, 0, 0);
2983 if (IS_ERR(dentry)) {
2984 err = PTR_ERR(dentry);
2985 goto out_drop_write;
2986 }
2987
2988 /*
2989 * Change the default parent since the subvolume being
2990 * deleted can be outside of the current mount point.
2991 */
2992 parent = btrfs_get_parent(dentry);
2993
2994 /*
2995 * At this point dentry->d_name can point to '/' if the
2996 * subvolume we want to destroy is outsite of the
2997 * current mount point, so we need to release the
2998 * current dentry and execute the lookup to return a new
2999 * one with ->d_name pointing to the
3000 * <mount point>/subvol_name.
3001 */
3002 dput(dentry);
3003 if (IS_ERR(parent)) {
3004 err = PTR_ERR(parent);
3005 goto out_drop_write;
3006 }
3007 dir = d_inode(parent);
3008
3009 /*
3010 * If v2 was used with SPEC_BY_ID, a new parent was
3011 * allocated since the subvolume can be outside of the
3012 * current mount point. Later on we need to release this
3013 * new parent dentry.
3014 */
3015 destroy_parent = true;
3016
3017 subvol_name_ptr = btrfs_get_subvol_name_from_objectid(
3018 fs_info, vol_args2->subvolid);
3019 if (IS_ERR(subvol_name_ptr)) {
3020 err = PTR_ERR(subvol_name_ptr);
3021 goto free_parent;
3022 }
3023 /* subvol_name_ptr is already NULL termined */
3024 subvol_name = (char *)kbasename(subvol_name_ptr);
3025 }
3026 } else {
3027 vol_args = memdup_user(arg, sizeof(*vol_args));
3028 if (IS_ERR(vol_args))
3029 return PTR_ERR(vol_args);
3030
3031 vol_args->name[BTRFS_PATH_NAME_MAX] = 0;
3032 subvol_name = vol_args->name;
3033
3034 err = mnt_want_write_file(file);
3035 if (err)
3036 goto out;
Yan, Zheng76dda932009-09-21 16:00:26 -04003037 }
3038
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003039 subvol_namelen = strlen(subvol_name);
Yan, Zheng76dda932009-09-21 16:00:26 -04003040
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003041 if (strchr(subvol_name, '/') ||
3042 strncmp(subvol_name, "..", subvol_namelen) == 0) {
3043 err = -EINVAL;
3044 goto free_subvol_name;
3045 }
3046
3047 if (!S_ISDIR(dir->i_mode)) {
3048 err = -ENOTDIR;
3049 goto free_subvol_name;
3050 }
David Sterba521e0542014-04-15 16:41:44 +02003051
Al Viro00235412016-05-26 00:05:12 -04003052 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
3053 if (err == -EINTR)
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003054 goto free_subvol_name;
3055 dentry = lookup_one_len(subvol_name, parent, subvol_namelen);
Yan, Zheng76dda932009-09-21 16:00:26 -04003056 if (IS_ERR(dentry)) {
3057 err = PTR_ERR(dentry);
3058 goto out_unlock_dir;
3059 }
3060
David Howells2b0143b2015-03-17 22:25:59 +00003061 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003062 err = -ENOENT;
3063 goto out_dput;
3064 }
3065
David Howells2b0143b2015-03-17 22:25:59 +00003066 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04003067 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05303068 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04003069 /*
3070 * Regular user. Only allow this with a special mount
3071 * option, when the user has write+exec access to the
3072 * subvol root, and when rmdir(2) would have been
3073 * allowed.
3074 *
3075 * Note that this is _not_ check that the subvol is
3076 * empty or doesn't contain data that we wouldn't
3077 * otherwise be able to delete.
3078 *
3079 * Users who want to delete empty subvols should try
3080 * rmdir(2).
3081 */
3082 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003083 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04003084 goto out_dput;
3085
3086 /*
3087 * Do not allow deletion if the parent dir is the same
3088 * as the dir to be deleted. That means the ioctl
3089 * must be called on the dentry referencing the root
3090 * of the subvol, not a random directory contained
3091 * within it.
3092 */
3093 err = -EINVAL;
3094 if (root == dest)
3095 goto out_dput;
3096
3097 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
3098 if (err)
3099 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04003100 }
3101
Miao Xie5c39da52012-10-22 11:39:53 +00003102 /* check if subvolume may be deleted by a user */
3103 err = btrfs_may_delete(dir, dentry, 1);
3104 if (err)
3105 goto out_dput;
3106
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003107 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04003108 err = -EINVAL;
3109 goto out_dput;
3110 }
3111
Al Viro59551022016-01-22 15:40:57 -05003112 inode_lock(inode);
Misono Tomohirof60a2362018-04-18 11:34:52 +09003113 err = btrfs_delete_subvolume(dir, dentry);
Al Viro59551022016-01-22 15:40:57 -05003114 inode_unlock(inode);
Amir Goldstein46008d92019-05-26 17:34:03 +03003115 if (!err) {
3116 fsnotify_rmdir(dir, dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04003117 d_delete(dentry);
Amir Goldstein46008d92019-05-26 17:34:03 +03003118 }
Liu Bofa6ac872013-02-20 14:10:23 +00003119
Yan, Zheng76dda932009-09-21 16:00:26 -04003120out_dput:
3121 dput(dentry);
3122out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05003123 inode_unlock(dir);
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003124free_subvol_name:
3125 kfree(subvol_name_ptr);
3126free_parent:
3127 if (destroy_parent)
3128 dput(parent);
Al Viro00235412016-05-26 00:05:12 -04003129out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05003130 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04003131out:
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03003132 kfree(vol_args2);
Yan, Zheng76dda932009-09-21 16:00:26 -04003133 kfree(vol_args);
3134 return err;
3135}
3136
Chris Mason1e701a32010-03-11 09:42:04 -05003137static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003138{
Al Viro496ad9a2013-01-23 17:07:38 -05003139 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003140 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05003141 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05003142 int ret;
3143
Ilya Dryomov25122d12013-01-20 15:57:57 +02003144 ret = mnt_want_write_file(file);
3145 if (ret)
3146 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08003147
Ilya Dryomov25122d12013-01-20 15:57:57 +02003148 if (btrfs_root_readonly(root)) {
3149 ret = -EROFS;
3150 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01003151 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003152
3153 switch (inode->i_mode & S_IFMT) {
3154 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05003155 if (!capable(CAP_SYS_ADMIN)) {
3156 ret = -EPERM;
3157 goto out;
3158 }
Eric Sandeende78b512013-01-31 18:21:12 +00003159 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003160 break;
3161 case S_IFREG:
Adam Borowski616d3742018-07-18 00:08:59 +02003162 /*
3163 * Note that this does not check the file descriptor for write
3164 * access. This prevents defragmenting executables that are
3165 * running and allows defrag on files open in read-only mode.
3166 */
3167 if (!capable(CAP_SYS_ADMIN) &&
3168 inode_permission(inode, MAY_WRITE)) {
3169 ret = -EPERM;
Chris Masone441d542009-01-05 16:57:23 -05003170 goto out;
3171 }
Chris Mason1e701a32010-03-11 09:42:04 -05003172
3173 range = kzalloc(sizeof(*range), GFP_KERNEL);
3174 if (!range) {
3175 ret = -ENOMEM;
3176 goto out;
3177 }
3178
3179 if (argp) {
3180 if (copy_from_user(range, argp,
3181 sizeof(*range))) {
3182 ret = -EFAULT;
3183 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00003184 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05003185 }
3186 /* compression requires us to start the IO */
3187 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
3188 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
3189 range->extent_thresh = (u32)-1;
3190 }
3191 } else {
3192 /* the rest are all set to zero by kzalloc */
3193 range->len = (u64)-1;
3194 }
Al Viro496ad9a2013-01-23 17:07:38 -05003195 ret = btrfs_defrag_file(file_inode(file), file,
Anand Jain7c829b72018-03-07 17:29:18 +08003196 range, BTRFS_OLDEST_GENERATION, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04003197 if (ret > 0)
3198 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05003199 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003200 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003201 default:
3202 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003203 }
Chris Masone441d542009-01-05 16:57:23 -05003204out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02003205 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05003206 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003207}
3208
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003209static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003210{
3211 struct btrfs_ioctl_vol_args *vol_args;
3212 int ret;
3213
Chris Masone441d542009-01-05 16:57:23 -05003214 if (!capable(CAP_SYS_ADMIN))
3215 return -EPERM;
3216
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003217 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_ADD))
Anand Jaine57138b2013-08-21 11:44:48 +08003218 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003219
Li Zefandae7b662009-04-08 15:06:54 +08003220 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003221 if (IS_ERR(vol_args)) {
3222 ret = PTR_ERR(vol_args);
3223 goto out;
3224 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003225
Mark Fasheh5516e592008-07-24 12:20:14 -04003226 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003227 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003228
Anand Jain43d20762014-07-01 00:58:56 +08003229 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003230 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08003231
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003232 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003233out:
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003234 btrfs_exclop_finish(fs_info);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003235 return ret;
3236}
3237
Anand Jain6b526ed2016-02-13 10:01:39 +08003238static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003239{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003240 struct inode *inode = file_inode(file);
3241 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08003242 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003243 int ret;
3244
Chris Masone441d542009-01-05 16:57:23 -05003245 if (!capable(CAP_SYS_ADMIN))
3246 return -EPERM;
3247
Miao Xieda249272012-11-26 08:44:50 +00003248 ret = mnt_want_write_file(file);
3249 if (ret)
3250 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05003251
Li Zefandae7b662009-04-08 15:06:54 +08003252 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003253 if (IS_ERR(vol_args)) {
3254 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03003255 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003256 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003257
David Sterba748449cdb2020-02-21 13:30:14 +01003258 if (vol_args->flags & ~BTRFS_DEVICE_REMOVE_ARGS_MASK) {
Omar Sandovalfd4e9942018-05-22 15:44:01 -07003259 ret = -EOPNOTSUPP;
3260 goto out;
3261 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003262
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003263 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REMOVE)) {
Anand Jain183860f2013-05-17 10:52:45 +00003264 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3265 goto out;
3266 }
3267
David Sterba735654e2016-02-15 18:15:21 +01003268 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003269 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08003270 } else {
3271 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003272 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08003273 }
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003274 btrfs_exclop_finish(fs_info);
Anand Jain183860f2013-05-17 10:52:45 +00003275
Anand Jain6b526ed2016-02-13 10:01:39 +08003276 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01003277 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003278 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08003279 vol_args->devid);
3280 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003281 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08003282 vol_args->name);
3283 }
Anand Jain183860f2013-05-17 10:52:45 +00003284out:
3285 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03003286err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02003287 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003288 return ret;
3289}
3290
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003291static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
3292{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003293 struct inode *inode = file_inode(file);
3294 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003295 struct btrfs_ioctl_vol_args *vol_args;
3296 int ret;
3297
3298 if (!capable(CAP_SYS_ADMIN))
3299 return -EPERM;
3300
3301 ret = mnt_want_write_file(file);
3302 if (ret)
3303 return ret;
3304
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003305 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REMOVE)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003306 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02003307 goto out_drop_write;
3308 }
3309
3310 vol_args = memdup_user(arg, sizeof(*vol_args));
3311 if (IS_ERR(vol_args)) {
3312 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003313 goto out;
3314 }
3315
David Sterba58d7bbf2016-05-04 14:10:47 +02003316 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003317 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003318
3319 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003320 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003321 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02003322out:
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003323 btrfs_exclop_finish(fs_info);
David Sterba58d7bbf2016-05-04 14:10:47 +02003324out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003325 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02003326
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003327 return ret;
3328}
3329
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003330static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
3331 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003332{
Li Zefan027ed2f2011-06-08 08:27:56 +00003333 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01003334 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003335 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Johannes Thumshirn137c5412020-07-13 21:28:58 +09003336 u64 flags_in;
Li Zefan027ed2f2011-06-08 08:27:56 +00003337 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01003338
Johannes Thumshirn137c5412020-07-13 21:28:58 +09003339 fi_args = memdup_user(arg, sizeof(*fi_args));
3340 if (IS_ERR(fi_args))
3341 return PTR_ERR(fi_args);
3342
3343 flags_in = fi_args->flags;
3344 memset(fi_args, 0, sizeof(*fi_args));
Li Zefan027ed2f2011-06-08 08:27:56 +00003345
David Sterbad03262c2017-06-16 00:09:21 +02003346 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00003347 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01003348
David Sterbad03262c2017-06-16 00:09:21 +02003349 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00003350 if (device->devid > fi_args->max_id)
3351 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01003352 }
David Sterbad03262c2017-06-16 00:09:21 +02003353 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01003354
Nikolay Borisovde37aa52018-10-30 16:43:24 +02003355 memcpy(&fi_args->fsid, fs_devices->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07003356 fi_args->nodesize = fs_info->nodesize;
3357 fi_args->sectorsize = fs_info->sectorsize;
3358 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02003359
Johannes Thumshirn137c5412020-07-13 21:28:58 +09003360 if (flags_in & BTRFS_FS_INFO_FLAG_CSUM_INFO) {
3361 fi_args->csum_type = btrfs_super_csum_type(fs_info->super_copy);
3362 fi_args->csum_size = btrfs_super_csum_size(fs_info->super_copy);
3363 fi_args->flags |= BTRFS_FS_INFO_FLAG_CSUM_INFO;
3364 }
3365
Johannes Thumshirn0fb408a2020-07-13 21:28:59 +09003366 if (flags_in & BTRFS_FS_INFO_FLAG_GENERATION) {
3367 fi_args->generation = fs_info->generation;
3368 fi_args->flags |= BTRFS_FS_INFO_FLAG_GENERATION;
3369 }
3370
Johannes Thumshirn49bac892020-07-13 21:29:00 +09003371 if (flags_in & BTRFS_FS_INFO_FLAG_METADATA_UUID) {
3372 memcpy(&fi_args->metadata_uuid, fs_devices->metadata_uuid,
3373 sizeof(fi_args->metadata_uuid));
3374 fi_args->flags |= BTRFS_FS_INFO_FLAG_METADATA_UUID;
3375 }
3376
Li Zefan027ed2f2011-06-08 08:27:56 +00003377 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
3378 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01003379
Li Zefan027ed2f2011-06-08 08:27:56 +00003380 kfree(fi_args);
3381 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003382}
3383
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003384static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
3385 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003386{
3387 struct btrfs_ioctl_dev_info_args *di_args;
3388 struct btrfs_device *dev;
Jan Schmidt475f6382011-03-11 15:41:01 +01003389 int ret = 0;
3390 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01003391
Jan Schmidt475f6382011-03-11 15:41:01 +01003392 di_args = memdup_user(arg, sizeof(*di_args));
3393 if (IS_ERR(di_args))
3394 return PTR_ERR(di_args);
3395
Stefan Behrensdd5f9612013-08-15 17:11:20 +02003396 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01003397 s_uuid = di_args->uuid;
3398
David Sterbac5593ca2017-06-16 00:09:21 +02003399 rcu_read_lock();
Anand Jaine4319cd2019-01-17 23:32:31 +08003400 dev = btrfs_find_device(fs_info->fs_devices, di_args->devid, s_uuid,
Anand Jainb2598ed2020-11-03 13:49:43 +08003401 NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01003402
3403 if (!dev) {
3404 ret = -ENODEV;
3405 goto out;
3406 }
3407
3408 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08003409 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
3410 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01003411 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02003412 if (dev->name) {
Misono Tomohiro672d5992018-08-02 16:19:07 +09003413 strncpy(di_args->path, rcu_str_deref(dev->name),
3414 sizeof(di_args->path) - 1);
Jim Meyeringa27202f2012-04-26 18:36:56 +02003415 di_args->path[sizeof(di_args->path) - 1] = 0;
3416 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01003417 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02003418 }
Jan Schmidt475f6382011-03-11 15:41:01 +01003419
3420out:
David Sterbac5593ca2017-06-16 00:09:21 +02003421 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01003422 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
3423 ret = -EFAULT;
3424
3425 kfree(di_args);
3426 return ret;
3427}
3428
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003429static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3430{
Al Viro496ad9a2013-01-23 17:07:38 -05003431 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003432 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003433 struct btrfs_root *root = BTRFS_I(inode)->root;
3434 struct btrfs_root *new_root;
3435 struct btrfs_dir_item *di;
3436 struct btrfs_trans_handle *trans;
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003437 struct btrfs_path *path = NULL;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003438 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003439 u64 objectid = 0;
3440 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003441 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003442
3443 if (!capable(CAP_SYS_ADMIN))
3444 return -EPERM;
3445
Miao Xie3c04ce02012-11-26 08:43:07 +00003446 ret = mnt_want_write_file(file);
3447 if (ret)
3448 return ret;
3449
3450 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3451 ret = -EFAULT;
3452 goto out;
3453 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003454
3455 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303456 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003457
David Sterba56e93572020-05-15 19:35:55 +02003458 new_root = btrfs_get_fs_root(fs_info, objectid, true);
Miao Xie3c04ce02012-11-26 08:43:07 +00003459 if (IS_ERR(new_root)) {
3460 ret = PTR_ERR(new_root);
3461 goto out;
3462 }
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003463 if (!is_fstree(new_root->root_key.objectid)) {
3464 ret = -ENOENT;
3465 goto out_free;
3466 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003467
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003468 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003469 if (!path) {
3470 ret = -ENOMEM;
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003471 goto out_free;
Miao Xie3c04ce02012-11-26 08:43:07 +00003472 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003473
3474 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003475 if (IS_ERR(trans)) {
Miao Xie3c04ce02012-11-26 08:43:07 +00003476 ret = PTR_ERR(trans);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003477 goto out_free;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003478 }
3479
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003480 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3481 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003482 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003483 if (IS_ERR_OR_NULL(di)) {
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003484 btrfs_release_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003485 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003486 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003487 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003488 ret = -ENOENT;
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003489 goto out_free;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003490 }
3491
3492 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3493 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3494 btrfs_mark_buffer_dirty(path->nodes[0]);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003495 btrfs_release_path(path);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003496
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003497 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003498 btrfs_end_transaction(trans);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003499out_free:
Josef Bacik00246522020-01-24 09:33:01 -05003500 btrfs_put_root(new_root);
Josef Bacik2a2b5d62020-01-24 09:32:37 -05003501 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003502out:
3503 mnt_drop_write_file(file);
3504 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003505}
3506
Su Yuec065f5b12018-04-02 17:24:11 +08003507static void get_block_group_info(struct list_head *groups_list,
3508 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003509{
David Sterba32da53862019-10-29 19:20:18 +01003510 struct btrfs_block_group *block_group;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003511
3512 space->total_bytes = 0;
3513 space->used_bytes = 0;
3514 space->flags = 0;
3515 list_for_each_entry(block_group, groups_list, list) {
3516 space->flags = block_group->flags;
David Sterbab3470b52019-10-23 18:48:22 +02003517 space->total_bytes += block_group->length;
David Sterbabf38be62019-10-23 18:48:11 +02003518 space->used_bytes += block_group->used;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003519 }
3520}
3521
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003522static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
3523 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003524{
3525 struct btrfs_ioctl_space_args space_args;
3526 struct btrfs_ioctl_space_info space;
3527 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003528 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003529 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003530 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01003531 static const u64 types[] = {
3532 BTRFS_BLOCK_GROUP_DATA,
3533 BTRFS_BLOCK_GROUP_SYSTEM,
3534 BTRFS_BLOCK_GROUP_METADATA,
3535 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
3536 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003537 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003538 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003539 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003540 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003541 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003542
3543 if (copy_from_user(&space_args,
3544 (struct btrfs_ioctl_space_args __user *)arg,
3545 sizeof(space_args)))
3546 return -EFAULT;
3547
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003548 for (i = 0; i < num_types; i++) {
3549 struct btrfs_space_info *tmp;
3550
3551 info = NULL;
Josef Bacik72804902020-09-01 17:40:37 -04003552 list_for_each_entry(tmp, &fs_info->space_info, list) {
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003553 if (tmp->flags == types[i]) {
3554 info = tmp;
3555 break;
3556 }
3557 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003558
3559 if (!info)
3560 continue;
3561
3562 down_read(&info->groups_sem);
3563 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3564 if (!list_empty(&info->block_groups[c]))
3565 slot_count++;
3566 }
3567 up_read(&info->groups_sem);
3568 }
Josef Bacik1406e432010-01-13 18:19:06 +00003569
David Sterba36523e952014-02-07 14:34:12 +01003570 /*
3571 * Global block reserve, exported as a space_info
3572 */
3573 slot_count++;
3574
Chris Mason7fde62b2010-03-16 15:40:10 -04003575 /* space_slots == 0 means they are asking for a count */
3576 if (space_args.space_slots == 0) {
3577 space_args.total_spaces = slot_count;
3578 goto out;
3579 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003580
Dan Rosenberg51788b12011-02-14 16:04:23 -05003581 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003582
Chris Mason7fde62b2010-03-16 15:40:10 -04003583 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003584
Chris Mason7fde62b2010-03-16 15:40:10 -04003585 /* we generally have at most 6 or so space infos, one for each raid
3586 * level. So, a whole page should be more than enough for everyone
3587 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003588 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04003589 return -ENOMEM;
3590
3591 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01003592 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04003593 if (!dest)
3594 return -ENOMEM;
3595 dest_orig = dest;
3596
3597 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003598 for (i = 0; i < num_types; i++) {
3599 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003600
Dan Rosenberg51788b12011-02-14 16:04:23 -05003601 if (!slot_count)
3602 break;
3603
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003604 info = NULL;
Josef Bacik72804902020-09-01 17:40:37 -04003605 list_for_each_entry(tmp, &fs_info->space_info, list) {
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003606 if (tmp->flags == types[i]) {
3607 info = tmp;
3608 break;
3609 }
3610 }
Chris Mason7fde62b2010-03-16 15:40:10 -04003611
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003612 if (!info)
3613 continue;
3614 down_read(&info->groups_sem);
3615 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3616 if (!list_empty(&info->block_groups[c])) {
Su Yuec065f5b12018-04-02 17:24:11 +08003617 get_block_group_info(&info->block_groups[c],
3618 &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003619 memcpy(dest, &space, sizeof(space));
3620 dest++;
3621 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003622 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003623 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003624 if (!slot_count)
3625 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003626 }
3627 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003628 }
Josef Bacik1406e432010-01-13 18:19:06 +00003629
David Sterba36523e952014-02-07 14:34:12 +01003630 /*
3631 * Add global block reserve
3632 */
3633 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003634 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01003635
3636 spin_lock(&block_rsv->lock);
3637 space.total_bytes = block_rsv->size;
3638 space.used_bytes = block_rsv->size - block_rsv->reserved;
3639 spin_unlock(&block_rsv->lock);
3640 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3641 memcpy(dest, &space, sizeof(space));
3642 space_args.total_spaces++;
3643 }
3644
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003645 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003646 (arg + sizeof(struct btrfs_ioctl_space_args));
3647
3648 if (copy_to_user(user_dest, dest_orig, alloc_size))
3649 ret = -EFAULT;
3650
3651 kfree(dest_orig);
3652out:
3653 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003654 ret = -EFAULT;
3655
3656 return ret;
3657}
3658
Miao Xie9a8c28b2012-11-26 08:40:43 +00003659static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3660 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003661{
Sage Weil46204592010-10-29 15:41:32 -04003662 struct btrfs_trans_handle *trans;
3663 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003664 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003665
Miao Xied4edf392013-02-20 09:17:06 +00003666 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00003667 if (IS_ERR(trans)) {
3668 if (PTR_ERR(trans) != -ENOENT)
3669 return PTR_ERR(trans);
3670
3671 /* No running transaction, don't bother */
3672 transid = root->fs_info->last_trans_committed;
3673 goto out;
3674 }
Sage Weil46204592010-10-29 15:41:32 -04003675 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003676 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003677 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003678 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003679 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00003680 }
Miao Xieff7c1d32012-11-26 08:41:29 +00003681out:
Sage Weil46204592010-10-29 15:41:32 -04003682 if (argp)
3683 if (copy_to_user(argp, &transid, sizeof(transid)))
3684 return -EFAULT;
3685 return 0;
3686}
3687
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003688static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00003689 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003690{
Sage Weil46204592010-10-29 15:41:32 -04003691 u64 transid;
3692
3693 if (argp) {
3694 if (copy_from_user(&transid, argp, sizeof(transid)))
3695 return -EFAULT;
3696 } else {
3697 transid = 0; /* current trans */
3698 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003699 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04003700}
3701
Miao Xieb8e95482012-11-26 08:48:01 +00003702static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003703{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003704 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01003705 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00003706 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003707
3708 if (!capable(CAP_SYS_ADMIN))
3709 return -EPERM;
3710
3711 sa = memdup_user(arg, sizeof(*sa));
3712 if (IS_ERR(sa))
3713 return PTR_ERR(sa);
3714
Miao Xieb8e95482012-11-26 08:48:01 +00003715 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
3716 ret = mnt_want_write_file(file);
3717 if (ret)
3718 goto out;
3719 }
3720
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003721 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01003722 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
3723 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01003724
Filipe Manana5afe6ce2020-01-16 11:29:20 +00003725 /*
3726 * Copy scrub args to user space even if btrfs_scrub_dev() returned an
3727 * error. This is important as it allows user space to know how much
3728 * progress scrub has done. For example, if scrub is canceled we get
3729 * -ECANCELED from btrfs_scrub_dev() and return that error back to user
3730 * space. Later user space can inspect the progress from the structure
3731 * btrfs_ioctl_scrub_args and resume scrub from where it left off
3732 * previously (btrfs-progs does this).
3733 * If we fail to copy the btrfs_ioctl_scrub_args structure to user space
3734 * then return -EFAULT to signal the structure was not copied or it may
3735 * be corrupt and unreliable due to a partial copy.
3736 */
3737 if (copy_to_user(arg, sa, sizeof(*sa)))
Jan Schmidt475f6382011-03-11 15:41:01 +01003738 ret = -EFAULT;
3739
Miao Xieb8e95482012-11-26 08:48:01 +00003740 if (!(sa->flags & BTRFS_SCRUB_READONLY))
3741 mnt_drop_write_file(file);
3742out:
Jan Schmidt475f6382011-03-11 15:41:01 +01003743 kfree(sa);
3744 return ret;
3745}
3746
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003747static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01003748{
3749 if (!capable(CAP_SYS_ADMIN))
3750 return -EPERM;
3751
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003752 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01003753}
3754
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003755static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01003756 void __user *arg)
3757{
3758 struct btrfs_ioctl_scrub_args *sa;
3759 int ret;
3760
3761 if (!capable(CAP_SYS_ADMIN))
3762 return -EPERM;
3763
3764 sa = memdup_user(arg, sizeof(*sa));
3765 if (IS_ERR(sa))
3766 return PTR_ERR(sa);
3767
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003768 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01003769
Filipe Manana4fa99b02018-12-14 19:45:13 +00003770 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
Jan Schmidt475f6382011-03-11 15:41:01 +01003771 ret = -EFAULT;
3772
3773 kfree(sa);
3774 return ret;
3775}
3776
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003777static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06003778 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003779{
3780 struct btrfs_ioctl_get_dev_stats *sa;
3781 int ret;
3782
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003783 sa = memdup_user(arg, sizeof(*sa));
3784 if (IS_ERR(sa))
3785 return PTR_ERR(sa);
3786
David Sterbab27f7c02012-06-22 06:30:39 -06003787 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
3788 kfree(sa);
3789 return -EPERM;
3790 }
3791
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003792 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003793
Filipe Mananaeee99572018-12-14 19:45:22 +00003794 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
Stefan Behrensc11d2c22012-05-25 16:06:09 +02003795 ret = -EFAULT;
3796
3797 kfree(sa);
3798 return ret;
3799}
3800
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003801static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
3802 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003803{
3804 struct btrfs_ioctl_dev_replace_args *p;
3805 int ret;
3806
3807 if (!capable(CAP_SYS_ADMIN))
3808 return -EPERM;
3809
3810 p = memdup_user(arg, sizeof(*p));
3811 if (IS_ERR(p))
3812 return PTR_ERR(p);
3813
3814 switch (p->cmd) {
3815 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01003816 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03003817 ret = -EROFS;
3818 goto out;
3819 }
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003820 if (!btrfs_exclop_start(fs_info, BTRFS_EXCLOP_DEV_REPLACE)) {
Anand Jaine57138b2013-08-21 11:44:48 +08003821 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003822 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003823 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05003824 btrfs_exclop_finish(fs_info);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003825 }
3826 break;
3827 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003828 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003829 ret = 0;
3830 break;
3831 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Anand Jain17d202b2018-02-12 23:33:30 +08003832 p->result = btrfs_dev_replace_cancel(fs_info);
Anand Jain97282032018-02-12 23:33:29 +08003833 ret = 0;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003834 break;
3835 default:
3836 ret = -EINVAL;
3837 break;
3838 }
3839
Filipe Mananad3a53282019-01-08 11:42:09 +00003840 if ((ret == 0 || ret == -ECANCELED) && copy_to_user(arg, p, sizeof(*p)))
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003841 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03003842out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01003843 kfree(p);
3844 return ret;
3845}
3846
Jan Schmidtd7728c92011-07-07 16:48:38 +02003847static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
3848{
3849 int ret = 0;
3850 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04003851 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003852 int size;
Chris Mason806468f2011-11-06 03:07:10 -05003853 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003854 struct inode_fs_paths *ipath = NULL;
3855 struct btrfs_path *path;
3856
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00003857 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02003858 return -EPERM;
3859
3860 path = btrfs_alloc_path();
3861 if (!path) {
3862 ret = -ENOMEM;
3863 goto out;
3864 }
3865
3866 ipa = memdup_user(arg, sizeof(*ipa));
3867 if (IS_ERR(ipa)) {
3868 ret = PTR_ERR(ipa);
3869 ipa = NULL;
3870 goto out;
3871 }
3872
3873 size = min_t(u32, ipa->size, 4096);
3874 ipath = init_ipath(size, root, path);
3875 if (IS_ERR(ipath)) {
3876 ret = PTR_ERR(ipath);
3877 ipath = NULL;
3878 goto out;
3879 }
3880
3881 ret = paths_from_inode(ipa->inum, ipath);
3882 if (ret < 0)
3883 goto out;
3884
3885 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05003886 rel_ptr = ipath->fspath->val[i] -
3887 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04003888 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003889 }
3890
Omar Sandoval718dc5f2017-08-22 23:46:05 -07003891 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
3892 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003893 if (ret) {
3894 ret = -EFAULT;
3895 goto out;
3896 }
3897
3898out:
3899 btrfs_free_path(path);
3900 free_ipath(ipath);
3901 kfree(ipa);
3902
3903 return ret;
3904}
3905
3906static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
3907{
3908 struct btrfs_data_container *inodes = ctx;
3909 const size_t c = 3 * sizeof(u64);
3910
3911 if (inodes->bytes_left >= c) {
3912 inodes->bytes_left -= c;
3913 inodes->val[inodes->elem_cnt] = inum;
3914 inodes->val[inodes->elem_cnt + 1] = offset;
3915 inodes->val[inodes->elem_cnt + 2] = root;
3916 inodes->elem_cnt += 3;
3917 } else {
3918 inodes->bytes_missing += c - inodes->bytes_left;
3919 inodes->bytes_left = 0;
3920 inodes->elem_missed += 3;
3921 }
3922
3923 return 0;
3924}
3925
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003926static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003927 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003928{
3929 int ret = 0;
3930 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003931 struct btrfs_ioctl_logical_ino_args *loi;
3932 struct btrfs_data_container *inodes = NULL;
3933 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003934 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02003935
3936 if (!capable(CAP_SYS_ADMIN))
3937 return -EPERM;
3938
3939 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05303940 if (IS_ERR(loi))
3941 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003942
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003943 if (version == 1) {
3944 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04003945 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003946 } else {
3947 /* All reserved bits must be 0 for now */
3948 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
3949 ret = -EINVAL;
3950 goto out_loi;
3951 }
3952 /* Only accept flags we have defined so far */
3953 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
3954 ret = -EINVAL;
3955 goto out_loi;
3956 }
3957 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04003958 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003959 }
3960
Jan Schmidtd7728c92011-07-07 16:48:38 +02003961 path = btrfs_alloc_path();
3962 if (!path) {
3963 ret = -ENOMEM;
3964 goto out;
3965 }
3966
Jan Schmidtd7728c92011-07-07 16:48:38 +02003967 inodes = init_data_container(size);
3968 if (IS_ERR(inodes)) {
3969 ret = PTR_ERR(inodes);
3970 inodes = NULL;
3971 goto out;
3972 }
3973
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003974 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003975 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06003976 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02003977 ret = -ENOENT;
3978 if (ret < 0)
3979 goto out;
3980
Omar Sandoval718dc5f2017-08-22 23:46:05 -07003981 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
3982 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02003983 if (ret)
3984 ret = -EFAULT;
3985
3986out:
3987 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02003988 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04003989out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02003990 kfree(loi);
3991
3992 return ret;
3993}
3994
David Sterba008ef092018-03-21 02:05:27 +01003995void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003996 struct btrfs_ioctl_balance_args *bargs)
3997{
3998 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3999
4000 bargs->flags = bctl->flags;
4001
David Sterba3009a622018-03-21 01:31:04 +01004002 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags))
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004003 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4004 if (atomic_read(&fs_info->balance_pause_req))
4005 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004006 if (atomic_read(&fs_info->balance_cancel_req))
4007 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004008
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004009 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4010 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4011 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004012
David Sterba008ef092018-03-21 02:05:27 +01004013 spin_lock(&fs_info->balance_lock);
4014 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4015 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004016}
4017
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004018static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004019{
Al Viro496ad9a2013-01-23 17:07:38 -05004020 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004021 struct btrfs_fs_info *fs_info = root->fs_info;
4022 struct btrfs_ioctl_balance_args *bargs;
4023 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004024 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004025 int ret;
4026
4027 if (!capable(CAP_SYS_ADMIN))
4028 return -EPERM;
4029
Liu Boe54bfa312012-06-29 03:58:48 -06004030 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004031 if (ret)
4032 return ret;
4033
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004034again:
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004035 if (btrfs_exclop_start(fs_info, BTRFS_EXCLOP_BALANCE)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004036 mutex_lock(&fs_info->balance_mutex);
4037 need_unlock = true;
4038 goto locked;
4039 }
4040
4041 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004042 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004043 * (1) some other op is running
4044 * (2) balance is running
4045 * (3) balance is paused -- special case (think resume)
4046 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004047 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004048 if (fs_info->balance_ctl) {
4049 /* this is either (2) or (3) */
David Sterba3009a622018-03-21 01:31:04 +01004050 if (!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004051 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004052 /*
4053 * Lock released to allow other waiters to continue,
4054 * we'll reexamine the status again.
4055 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004056 mutex_lock(&fs_info->balance_mutex);
4057
4058 if (fs_info->balance_ctl &&
David Sterba3009a622018-03-21 01:31:04 +01004059 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004060 /* this is (3) */
4061 need_unlock = false;
4062 goto locked;
4063 }
4064
4065 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004066 goto again;
4067 } else {
4068 /* this is (2) */
4069 mutex_unlock(&fs_info->balance_mutex);
4070 ret = -EINPROGRESS;
4071 goto out;
4072 }
4073 } else {
4074 /* this is (1) */
4075 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004076 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004077 goto out;
4078 }
4079
4080locked:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004081
4082 if (arg) {
4083 bargs = memdup_user(arg, sizeof(*bargs));
4084 if (IS_ERR(bargs)) {
4085 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004086 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004087 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004088
4089 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4090 if (!fs_info->balance_ctl) {
4091 ret = -ENOTCONN;
4092 goto out_bargs;
4093 }
4094
4095 bctl = fs_info->balance_ctl;
4096 spin_lock(&fs_info->balance_lock);
4097 bctl->flags |= BTRFS_BALANCE_RESUME;
4098 spin_unlock(&fs_info->balance_lock);
4099
4100 goto do_balance;
4101 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004102 } else {
4103 bargs = NULL;
4104 }
4105
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004106 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004107 ret = -EINPROGRESS;
4108 goto out_bargs;
4109 }
4110
David Sterba8d2db782015-11-04 15:38:29 +01004111 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004112 if (!bctl) {
4113 ret = -ENOMEM;
4114 goto out_bargs;
4115 }
4116
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004117 if (arg) {
4118 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4119 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4120 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4121
4122 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004123 } else {
4124 /* balance everything - no filters */
4125 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004126 }
4127
David Sterba8eb93452015-10-12 16:55:54 +02004128 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4129 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004130 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004131 }
4132
Ilya Dryomovde322262012-01-16 22:04:49 +02004133do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004134 /*
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004135 * Ownership of bctl and exclusive operation goes to btrfs_balance.
4136 * bctl is freed in reset_balance_state, or, if restriper was paused
4137 * all the way until unmount, in free_fs_info. The flag should be
4138 * cleared after reset_balance_state.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004139 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004140 need_unlock = false;
4141
David Sterba6fcf6e22018-05-07 17:44:03 +02004142 ret = btrfs_balance(fs_info, bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004143 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004144
Filipe Mananad00c2d92019-01-08 11:42:01 +00004145 if ((ret == 0 || ret == -ECANCELED) && arg) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004146 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4147 ret = -EFAULT;
4148 }
4149
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004150out_bctl:
4151 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004152out_bargs:
4153 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004154out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004155 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004156 if (need_unlock)
Goldwyn Rodriguesc3e1f962020-08-25 10:02:32 -05004157 btrfs_exclop_finish(fs_info);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004158out:
Liu Boe54bfa312012-06-29 03:58:48 -06004159 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004160 return ret;
4161}
4162
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004163static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004164{
4165 if (!capable(CAP_SYS_ADMIN))
4166 return -EPERM;
4167
4168 switch (cmd) {
4169 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004170 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004171 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004172 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004173 }
4174
4175 return -EINVAL;
4176}
4177
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004178static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004179 void __user *arg)
4180{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004181 struct btrfs_ioctl_balance_args *bargs;
4182 int ret = 0;
4183
4184 if (!capable(CAP_SYS_ADMIN))
4185 return -EPERM;
4186
4187 mutex_lock(&fs_info->balance_mutex);
4188 if (!fs_info->balance_ctl) {
4189 ret = -ENOTCONN;
4190 goto out;
4191 }
4192
David Sterba8d2db782015-11-04 15:38:29 +01004193 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004194 if (!bargs) {
4195 ret = -ENOMEM;
4196 goto out;
4197 }
4198
David Sterba008ef092018-03-21 02:05:27 +01004199 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004200
4201 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4202 ret = -EFAULT;
4203
4204 kfree(bargs);
4205out:
4206 mutex_unlock(&fs_info->balance_mutex);
4207 return ret;
4208}
4209
Miao Xie905b0dd2012-11-26 08:50:11 +00004210static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004211{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004212 struct inode *inode = file_inode(file);
4213 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004214 struct btrfs_ioctl_quota_ctl_args *sa;
Arne Jansen5d13a372011-09-14 15:53:51 +02004215 int ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004216
4217 if (!capable(CAP_SYS_ADMIN))
4218 return -EPERM;
4219
Miao Xie905b0dd2012-11-26 08:50:11 +00004220 ret = mnt_want_write_file(file);
4221 if (ret)
4222 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004223
4224 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004225 if (IS_ERR(sa)) {
4226 ret = PTR_ERR(sa);
4227 goto drop_write;
4228 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004229
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004230 down_write(&fs_info->subvol_sem);
Arne Jansen5d13a372011-09-14 15:53:51 +02004231
4232 switch (sa->cmd) {
4233 case BTRFS_QUOTA_CTL_ENABLE:
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03004234 ret = btrfs_quota_enable(fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004235 break;
4236 case BTRFS_QUOTA_CTL_DISABLE:
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03004237 ret = btrfs_quota_disable(fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004238 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004239 default:
4240 ret = -EINVAL;
4241 break;
4242 }
4243
Arne Jansen5d13a372011-09-14 15:53:51 +02004244 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004245 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004246drop_write:
4247 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004248 return ret;
4249}
4250
Miao Xie905b0dd2012-11-26 08:50:11 +00004251static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004252{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004253 struct inode *inode = file_inode(file);
4254 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4255 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004256 struct btrfs_ioctl_qgroup_assign_args *sa;
4257 struct btrfs_trans_handle *trans;
4258 int ret;
4259 int err;
4260
4261 if (!capable(CAP_SYS_ADMIN))
4262 return -EPERM;
4263
Miao Xie905b0dd2012-11-26 08:50:11 +00004264 ret = mnt_want_write_file(file);
4265 if (ret)
4266 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004267
4268 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004269 if (IS_ERR(sa)) {
4270 ret = PTR_ERR(sa);
4271 goto drop_write;
4272 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004273
4274 trans = btrfs_join_transaction(root);
4275 if (IS_ERR(trans)) {
4276 ret = PTR_ERR(trans);
4277 goto out;
4278 }
4279
Arne Jansen5d13a372011-09-14 15:53:51 +02004280 if (sa->assign) {
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +08004281 ret = btrfs_add_qgroup_relation(trans, sa->src, sa->dst);
Arne Jansen5d13a372011-09-14 15:53:51 +02004282 } else {
Lu Fengqi39616c22018-07-18 14:45:32 +08004283 ret = btrfs_del_qgroup_relation(trans, sa->src, sa->dst);
Arne Jansen5d13a372011-09-14 15:53:51 +02004284 }
4285
Qu Wenruoe082f562015-02-27 16:24:28 +08004286 /* update qgroup status and info */
Lu Fengqi280f8bd2018-07-18 14:45:40 +08004287 err = btrfs_run_qgroups(trans);
Qu Wenruoe082f562015-02-27 16:24:28 +08004288 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004289 btrfs_handle_fs_error(fs_info, err,
4290 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004291 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004292 if (err && !ret)
4293 ret = err;
4294
4295out:
4296 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004297drop_write:
4298 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004299 return ret;
4300}
4301
Miao Xie905b0dd2012-11-26 08:50:11 +00004302static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004303{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004304 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004305 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004306 struct btrfs_ioctl_qgroup_create_args *sa;
4307 struct btrfs_trans_handle *trans;
4308 int ret;
4309 int err;
4310
4311 if (!capable(CAP_SYS_ADMIN))
4312 return -EPERM;
4313
Miao Xie905b0dd2012-11-26 08:50:11 +00004314 ret = mnt_want_write_file(file);
4315 if (ret)
4316 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004317
4318 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004319 if (IS_ERR(sa)) {
4320 ret = PTR_ERR(sa);
4321 goto drop_write;
4322 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004323
Miao Xied86e56c2012-11-15 11:35:41 +00004324 if (!sa->qgroupid) {
4325 ret = -EINVAL;
4326 goto out;
4327 }
4328
Arne Jansen5d13a372011-09-14 15:53:51 +02004329 trans = btrfs_join_transaction(root);
4330 if (IS_ERR(trans)) {
4331 ret = PTR_ERR(trans);
4332 goto out;
4333 }
4334
Arne Jansen5d13a372011-09-14 15:53:51 +02004335 if (sa->create) {
Lu Fengqi49a05ec2018-07-18 14:45:33 +08004336 ret = btrfs_create_qgroup(trans, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004337 } else {
Lu Fengqi3efbee12018-07-18 14:45:34 +08004338 ret = btrfs_remove_qgroup(trans, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004339 }
4340
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004341 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004342 if (err && !ret)
4343 ret = err;
4344
4345out:
4346 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004347drop_write:
4348 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004349 return ret;
4350}
4351
Miao Xie905b0dd2012-11-26 08:50:11 +00004352static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004353{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004354 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004355 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004356 struct btrfs_ioctl_qgroup_limit_args *sa;
4357 struct btrfs_trans_handle *trans;
4358 int ret;
4359 int err;
4360 u64 qgroupid;
4361
4362 if (!capable(CAP_SYS_ADMIN))
4363 return -EPERM;
4364
Miao Xie905b0dd2012-11-26 08:50:11 +00004365 ret = mnt_want_write_file(file);
4366 if (ret)
4367 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004368
4369 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004370 if (IS_ERR(sa)) {
4371 ret = PTR_ERR(sa);
4372 goto drop_write;
4373 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004374
4375 trans = btrfs_join_transaction(root);
4376 if (IS_ERR(trans)) {
4377 ret = PTR_ERR(trans);
4378 goto out;
4379 }
4380
4381 qgroupid = sa->qgroupid;
4382 if (!qgroupid) {
4383 /* take the current subvol as qgroup */
4384 qgroupid = root->root_key.objectid;
4385 }
4386
Lu Fengqif0042d52018-07-18 14:45:35 +08004387 ret = btrfs_limit_qgroup(trans, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004388
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004389 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004390 if (err && !ret)
4391 ret = err;
4392
4393out:
4394 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004395drop_write:
4396 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004397 return ret;
4398}
4399
Jan Schmidt2f232032013-04-25 16:04:51 +00004400static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4401{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004402 struct inode *inode = file_inode(file);
4403 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004404 struct btrfs_ioctl_quota_rescan_args *qsa;
4405 int ret;
4406
4407 if (!capable(CAP_SYS_ADMIN))
4408 return -EPERM;
4409
4410 ret = mnt_want_write_file(file);
4411 if (ret)
4412 return ret;
4413
4414 qsa = memdup_user(arg, sizeof(*qsa));
4415 if (IS_ERR(qsa)) {
4416 ret = PTR_ERR(qsa);
4417 goto drop_write;
4418 }
4419
4420 if (qsa->flags) {
4421 ret = -EINVAL;
4422 goto out;
4423 }
4424
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004425 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00004426
4427out:
4428 kfree(qsa);
4429drop_write:
4430 mnt_drop_write_file(file);
4431 return ret;
4432}
4433
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004434static long btrfs_ioctl_quota_rescan_status(struct btrfs_fs_info *fs_info,
4435 void __user *arg)
Jan Schmidt2f232032013-04-25 16:04:51 +00004436{
Jan Schmidt2f232032013-04-25 16:04:51 +00004437 struct btrfs_ioctl_quota_rescan_args *qsa;
4438 int ret = 0;
4439
4440 if (!capable(CAP_SYS_ADMIN))
4441 return -EPERM;
4442
David Sterba8d2db782015-11-04 15:38:29 +01004443 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00004444 if (!qsa)
4445 return -ENOMEM;
4446
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004447 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00004448 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004449 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00004450 }
4451
4452 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4453 ret = -EFAULT;
4454
4455 kfree(qsa);
4456 return ret;
4457}
4458
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004459static long btrfs_ioctl_quota_rescan_wait(struct btrfs_fs_info *fs_info,
4460 void __user *arg)
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004461{
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004462 if (!capable(CAP_SYS_ADMIN))
4463 return -EPERM;
4464
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004465 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004466}
4467
Hugo Millsabccd002014-01-30 20:17:00 +00004468static long _btrfs_ioctl_set_received_subvol(struct file *file,
4469 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004470{
Al Viro496ad9a2013-01-23 17:07:38 -05004471 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004472 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02004473 struct btrfs_root *root = BTRFS_I(inode)->root;
4474 struct btrfs_root_item *root_item = &root->root_item;
4475 struct btrfs_trans_handle *trans;
Deepa Dinamani95582b02018-05-08 19:36:02 -07004476 struct timespec64 ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02004477 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004478 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004479
David Sterbabd60ea02014-01-16 15:50:22 +01004480 if (!inode_owner_or_capable(inode))
4481 return -EPERM;
4482
Alexander Block8ea05e32012-07-25 17:35:53 +02004483 ret = mnt_want_write_file(file);
4484 if (ret < 0)
4485 return ret;
4486
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004487 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02004488
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004489 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02004490 ret = -EINVAL;
4491 goto out;
4492 }
4493
4494 if (btrfs_root_readonly(root)) {
4495 ret = -EROFS;
4496 goto out;
4497 }
4498
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004499 /*
4500 * 1 - root item
4501 * 2 - uuid items (received uuid + subvol uuid)
4502 */
4503 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004504 if (IS_ERR(trans)) {
4505 ret = PTR_ERR(trans);
4506 trans = NULL;
4507 goto out;
4508 }
4509
4510 sa->rtransid = trans->transid;
4511 sa->rtime.sec = ct.tv_sec;
4512 sa->rtime.nsec = ct.tv_nsec;
4513
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004514 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4515 BTRFS_UUID_SIZE);
4516 if (received_uuid_changed &&
Nikolay Borisovd87ff752018-03-12 14:48:09 +02004517 !btrfs_is_empty_uuid(root_item->received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08004518 ret = btrfs_uuid_tree_remove(trans, root_item->received_uuid,
Nikolay Borisovd87ff752018-03-12 14:48:09 +02004519 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4520 root->root_key.objectid);
4521 if (ret && ret != -ENOENT) {
4522 btrfs_abort_transaction(trans, ret);
4523 btrfs_end_transaction(trans);
4524 goto out;
4525 }
4526 }
Alexander Block8ea05e32012-07-25 17:35:53 +02004527 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4528 btrfs_set_root_stransid(root_item, sa->stransid);
4529 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004530 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4531 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4532 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4533 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004534
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004535 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02004536 &root->root_key, &root->root_item);
4537 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004538 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004539 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004540 }
4541 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08004542 ret = btrfs_uuid_tree_add(trans, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004543 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4544 root->root_key.objectid);
4545 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004546 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03004547 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004548 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004549 }
4550 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004551 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00004552out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004553 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00004554 mnt_drop_write_file(file);
4555 return ret;
4556}
4557
4558#ifdef CONFIG_64BIT
4559static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4560 void __user *arg)
4561{
4562 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4563 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4564 int ret = 0;
4565
4566 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304567 if (IS_ERR(args32))
4568 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00004569
David Sterba8d2db782015-11-04 15:38:29 +01004570 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004571 if (!args64) {
4572 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004573 goto out;
4574 }
4575
4576 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4577 args64->stransid = args32->stransid;
4578 args64->rtransid = args32->rtransid;
4579 args64->stime.sec = args32->stime.sec;
4580 args64->stime.nsec = args32->stime.nsec;
4581 args64->rtime.sec = args32->rtime.sec;
4582 args64->rtime.nsec = args32->rtime.nsec;
4583 args64->flags = args32->flags;
4584
4585 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4586 if (ret)
4587 goto out;
4588
4589 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4590 args32->stransid = args64->stransid;
4591 args32->rtransid = args64->rtransid;
4592 args32->stime.sec = args64->stime.sec;
4593 args32->stime.nsec = args64->stime.nsec;
4594 args32->rtime.sec = args64->rtime.sec;
4595 args32->rtime.nsec = args64->rtime.nsec;
4596 args32->flags = args64->flags;
4597
4598 ret = copy_to_user(arg, args32, sizeof(*args32));
4599 if (ret)
4600 ret = -EFAULT;
4601
4602out:
4603 kfree(args32);
4604 kfree(args64);
4605 return ret;
4606}
4607#endif
4608
4609static long btrfs_ioctl_set_received_subvol(struct file *file,
4610 void __user *arg)
4611{
4612 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4613 int ret = 0;
4614
4615 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304616 if (IS_ERR(sa))
4617 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00004618
4619 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4620
4621 if (ret)
4622 goto out;
4623
Alexander Block8ea05e32012-07-25 17:35:53 +02004624 ret = copy_to_user(arg, sa, sizeof(*sa));
4625 if (ret)
4626 ret = -EFAULT;
4627
4628out:
4629 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004630 return ret;
4631}
4632
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004633static int btrfs_ioctl_get_fslabel(struct btrfs_fs_info *fs_info,
4634 void __user *arg)
jeff.liu867ab662013-01-05 02:48:01 +00004635{
Anand Jaina1b83ac2013-07-19 17:39:32 +08004636 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004637 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004638 char label[BTRFS_LABEL_SIZE];
4639
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004640 spin_lock(&fs_info->super_lock);
4641 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4642 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08004643
4644 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00004645
4646 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004647 btrfs_warn(fs_info,
4648 "label is too long, return the first %zu bytes",
4649 --len);
jeff.liu867ab662013-01-05 02:48:01 +00004650 }
4651
jeff.liu867ab662013-01-05 02:48:01 +00004652 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00004653
4654 return ret ? -EFAULT : 0;
4655}
4656
jeff.liua8bfd4a2013-01-05 02:48:08 +00004657static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4658{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004659 struct inode *inode = file_inode(file);
4660 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4661 struct btrfs_root *root = BTRFS_I(inode)->root;
4662 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00004663 struct btrfs_trans_handle *trans;
4664 char label[BTRFS_LABEL_SIZE];
4665 int ret;
4666
4667 if (!capable(CAP_SYS_ADMIN))
4668 return -EPERM;
4669
4670 if (copy_from_user(label, arg, sizeof(label)))
4671 return -EFAULT;
4672
4673 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004674 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004675 "unable to set label with more than %d bytes",
4676 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004677 return -EINVAL;
4678 }
4679
4680 ret = mnt_want_write_file(file);
4681 if (ret)
4682 return ret;
4683
jeff.liua8bfd4a2013-01-05 02:48:08 +00004684 trans = btrfs_start_transaction(root, 0);
4685 if (IS_ERR(trans)) {
4686 ret = PTR_ERR(trans);
4687 goto out_unlock;
4688 }
4689
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004690 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004691 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004692 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004693 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00004694
4695out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00004696 mnt_drop_write_file(file);
4697 return ret;
4698}
4699
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004700#define INIT_FEATURE_FLAGS(suffix) \
4701 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
4702 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
4703 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
4704
David Sterbad5131b62016-02-17 15:26:27 +01004705int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004706{
David Sterba4d4ab6d2015-11-19 11:42:31 +01004707 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004708 INIT_FEATURE_FLAGS(SUPP),
4709 INIT_FEATURE_FLAGS(SAFE_SET),
4710 INIT_FEATURE_FLAGS(SAFE_CLEAR)
4711 };
4712
4713 if (copy_to_user(arg, &features, sizeof(features)))
4714 return -EFAULT;
4715
4716 return 0;
4717}
4718
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004719static int btrfs_ioctl_get_features(struct btrfs_fs_info *fs_info,
4720 void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004721{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004722 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004723 struct btrfs_ioctl_feature_flags features;
4724
4725 features.compat_flags = btrfs_super_compat_flags(super_block);
4726 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
4727 features.incompat_flags = btrfs_super_incompat_flags(super_block);
4728
4729 if (copy_to_user(arg, &features, sizeof(features)))
4730 return -EFAULT;
4731
4732 return 0;
4733}
4734
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004735static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004736 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004737 u64 change_mask, u64 flags, u64 supported_flags,
4738 u64 safe_set, u64 safe_clear)
4739{
David Sterbaf10152b2019-08-01 19:07:55 +02004740 const char *type = btrfs_feature_set_name(set);
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004741 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004742 u64 disallowed, unsupported;
4743 u64 set_mask = flags & change_mask;
4744 u64 clear_mask = ~flags & change_mask;
4745
4746 unsupported = set_mask & ~supported_flags;
4747 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004748 names = btrfs_printable_features(set, unsupported);
4749 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004750 btrfs_warn(fs_info,
4751 "this kernel does not support the %s feature bit%s",
4752 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004753 kfree(names);
4754 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004755 btrfs_warn(fs_info,
4756 "this kernel does not support %s bits 0x%llx",
4757 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004758 return -EOPNOTSUPP;
4759 }
4760
4761 disallowed = set_mask & ~safe_set;
4762 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004763 names = btrfs_printable_features(set, disallowed);
4764 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004765 btrfs_warn(fs_info,
4766 "can't set the %s feature bit%s while mounted",
4767 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004768 kfree(names);
4769 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004770 btrfs_warn(fs_info,
4771 "can't set %s bits 0x%llx while mounted",
4772 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004773 return -EPERM;
4774 }
4775
4776 disallowed = clear_mask & ~safe_clear;
4777 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004778 names = btrfs_printable_features(set, disallowed);
4779 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004780 btrfs_warn(fs_info,
4781 "can't clear the %s feature bit%s while mounted",
4782 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04004783 kfree(names);
4784 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004785 btrfs_warn(fs_info,
4786 "can't clear %s bits 0x%llx while mounted",
4787 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004788 return -EPERM;
4789 }
4790
4791 return 0;
4792}
4793
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004794#define check_feature(fs_info, change_mask, flags, mask_base) \
4795check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004796 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
4797 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
4798 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
4799
4800static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
4801{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004802 struct inode *inode = file_inode(file);
4803 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4804 struct btrfs_root *root = BTRFS_I(inode)->root;
4805 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004806 struct btrfs_ioctl_feature_flags flags[2];
4807 struct btrfs_trans_handle *trans;
4808 u64 newflags;
4809 int ret;
4810
4811 if (!capable(CAP_SYS_ADMIN))
4812 return -EPERM;
4813
4814 if (copy_from_user(flags, arg, sizeof(flags)))
4815 return -EFAULT;
4816
4817 /* Nothing to do */
4818 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
4819 !flags[0].incompat_flags)
4820 return 0;
4821
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004822 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004823 flags[1].compat_flags, COMPAT);
4824 if (ret)
4825 return ret;
4826
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004827 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004828 flags[1].compat_ro_flags, COMPAT_RO);
4829 if (ret)
4830 return ret;
4831
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004832 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004833 flags[1].incompat_flags, INCOMPAT);
4834 if (ret)
4835 return ret;
4836
David Sterba7ab19622016-05-04 11:32:00 +02004837 ret = mnt_want_write_file(file);
4838 if (ret)
4839 return ret;
4840
David Sterba8051aa12014-02-07 14:34:04 +01004841 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02004842 if (IS_ERR(trans)) {
4843 ret = PTR_ERR(trans);
4844 goto out_drop_write;
4845 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004846
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004847 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004848 newflags = btrfs_super_compat_flags(super_block);
4849 newflags |= flags[0].compat_flags & flags[1].compat_flags;
4850 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
4851 btrfs_set_super_compat_flags(super_block, newflags);
4852
4853 newflags = btrfs_super_compat_ro_flags(super_block);
4854 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
4855 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
4856 btrfs_set_super_compat_ro_flags(super_block, newflags);
4857
4858 newflags = btrfs_super_incompat_flags(super_block);
4859 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
4860 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
4861 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004862 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004863
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004864 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02004865out_drop_write:
4866 mnt_drop_write_file(file);
4867
4868 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05004869}
4870
Josef Bacik2351f432017-09-27 10:43:13 -04004871static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
4872{
4873 struct btrfs_ioctl_send_args *arg;
4874 int ret;
4875
4876 if (compat) {
4877#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
4878 struct btrfs_ioctl_send_args_32 args32;
4879
4880 ret = copy_from_user(&args32, argp, sizeof(args32));
4881 if (ret)
4882 return -EFAULT;
4883 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
4884 if (!arg)
4885 return -ENOMEM;
4886 arg->send_fd = args32.send_fd;
4887 arg->clone_sources_count = args32.clone_sources_count;
4888 arg->clone_sources = compat_ptr(args32.clone_sources);
4889 arg->parent_root = args32.parent_root;
4890 arg->flags = args32.flags;
4891 memcpy(arg->reserved, args32.reserved,
4892 sizeof(args32.reserved));
4893#else
4894 return -ENOTTY;
4895#endif
4896 } else {
4897 arg = memdup_user(argp, sizeof(*arg));
4898 if (IS_ERR(arg))
4899 return PTR_ERR(arg);
4900 }
4901 ret = btrfs_ioctl_send(file, arg);
4902 kfree(arg);
4903 return ret;
4904}
4905
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004906long btrfs_ioctl(struct file *file, unsigned int
4907 cmd, unsigned long arg)
4908{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004909 struct inode *inode = file_inode(file);
4910 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4911 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05004912 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004913
4914 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02004915 case FS_IOC_GETFLAGS:
4916 return btrfs_ioctl_getflags(file, argp);
4917 case FS_IOC_SETFLAGS:
4918 return btrfs_ioctl_setflags(file, argp);
4919 case FS_IOC_GETVERSION:
4920 return btrfs_ioctl_getversion(file, argp);
Eric Sandeen40cf9312019-07-17 12:39:20 -05004921 case FS_IOC_GETFSLABEL:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004922 return btrfs_ioctl_get_fslabel(fs_info, argp);
Eric Sandeen40cf9312019-07-17 12:39:20 -05004923 case FS_IOC_SETFSLABEL:
4924 return btrfs_ioctl_set_fslabel(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00004925 case FITRIM:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03004926 return btrfs_ioctl_fitrim(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004927 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004928 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00004929 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004930 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05004931 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08004932 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02004933 case BTRFS_IOC_SUBVOL_CREATE_V2:
4934 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04004935 case BTRFS_IOC_SNAP_DESTROY:
Marcos Paulo de Souza949964c2020-02-07 10:05:46 -03004936 return btrfs_ioctl_snap_destroy(file, argp, false);
4937 case BTRFS_IOC_SNAP_DESTROY_V2:
4938 return btrfs_ioctl_snap_destroy(file, argp, true);
Li Zefan0caa1022010-12-20 16:30:25 +08004939 case BTRFS_IOC_SUBVOL_GETFLAGS:
4940 return btrfs_ioctl_subvol_getflags(file, argp);
4941 case BTRFS_IOC_SUBVOL_SETFLAGS:
4942 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004943 case BTRFS_IOC_DEFAULT_SUBVOL:
4944 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004945 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05004946 return btrfs_ioctl_defrag(file, NULL);
4947 case BTRFS_IOC_DEFRAG_RANGE:
4948 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004949 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00004950 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004951 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004952 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004953 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00004954 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08004955 case BTRFS_IOC_RM_DEV_V2:
4956 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004957 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004958 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004959 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004960 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004961 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004962 return btrfs_ioctl_balance(file, NULL);
Chris Masonac8e9812010-02-28 15:39:26 -05004963 case BTRFS_IOC_TREE_SEARCH:
4964 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01004965 case BTRFS_IOC_TREE_SEARCH_V2:
4966 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05004967 case BTRFS_IOC_INO_LOOKUP:
4968 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004969 case BTRFS_IOC_INO_PATHS:
4970 return btrfs_ioctl_ino_to_path(root, argp);
4971 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004972 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
4973 case BTRFS_IOC_LOGICAL_INO_V2:
4974 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00004975 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004976 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01004977 case BTRFS_IOC_SYNC: {
4978 int ret;
4979
Nikolay Borisov9db4dc22021-01-11 12:58:11 +02004980 ret = btrfs_start_delalloc_roots(fs_info, LONG_MAX, false);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01004981 if (ret)
4982 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004983 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02004984 /*
4985 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04004986 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02004987 * processing uncleaned subvols.
4988 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004989 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01004990 return ret;
4991 }
Sage Weil46204592010-10-29 15:41:32 -04004992 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00004993 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04004994 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004995 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004996 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00004997 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01004998 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004999 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005000 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005001 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005002 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005003 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005004 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005005 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005006 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005007 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005008 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5009 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005010#ifdef CONFIG_64BIT
5011 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5012 return btrfs_ioctl_set_received_subvol_32(file, argp);
5013#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005014 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04005015 return _btrfs_ioctl_send(file, argp, false);
5016#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5017 case BTRFS_IOC_SEND_32:
5018 return _btrfs_ioctl_send(file, argp, true);
5019#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005020 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005021 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005022 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005023 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005024 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005025 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005026 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005027 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005028 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005029 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005030 case BTRFS_IOC_QUOTA_RESCAN:
5031 return btrfs_ioctl_quota_rescan(file, argp);
5032 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03005033 return btrfs_ioctl_quota_rescan_status(fs_info, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005034 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03005035 return btrfs_ioctl_quota_rescan_wait(fs_info, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005036 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005037 return btrfs_ioctl_dev_replace(fs_info, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005038 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005039 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005040 case BTRFS_IOC_GET_FEATURES:
Marcos Paulo de Souzab929c1d2019-10-10 21:23:11 -03005041 return btrfs_ioctl_get_features(fs_info, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005042 case BTRFS_IOC_SET_FEATURES:
5043 return btrfs_ioctl_set_features(file, argp);
David Sterbae4202ac2018-03-26 19:51:16 +02005044 case FS_IOC_FSGETXATTR:
5045 return btrfs_ioctl_fsgetxattr(file, argp);
David Sterba025f2122018-03-26 19:51:16 +02005046 case FS_IOC_FSSETXATTR:
5047 return btrfs_ioctl_fssetxattr(file, argp);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09005048 case BTRFS_IOC_GET_SUBVOL_INFO:
5049 return btrfs_ioctl_get_subvol_info(file, argp);
Tomohiro Misono42e4b522018-05-21 10:09:43 +09005050 case BTRFS_IOC_GET_SUBVOL_ROOTREF:
5051 return btrfs_ioctl_get_subvol_rootref(file, argp);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09005052 case BTRFS_IOC_INO_LOOKUP_USER:
5053 return btrfs_ioctl_ino_lookup_user(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005054 }
5055
5056 return -ENOTTY;
5057}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005058
5059#ifdef CONFIG_COMPAT
5060long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5061{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005062 /*
5063 * These all access 32-bit values anyway so no further
5064 * handling is necessary.
5065 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005066 switch (cmd) {
5067 case FS_IOC32_GETFLAGS:
5068 cmd = FS_IOC_GETFLAGS;
5069 break;
5070 case FS_IOC32_SETFLAGS:
5071 cmd = FS_IOC_SETFLAGS;
5072 break;
5073 case FS_IOC32_GETVERSION:
5074 cmd = FS_IOC_GETVERSION;
5075 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005076 }
5077
5078 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5079}
5080#endif