blob: d7a1bd74bb71c4cf252250e317c6af3ccb5a529e [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"
31#include "transaction.h"
32#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040033#include "print-tree.h"
34#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040035#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080036#include "inode-map.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
Mark Fasheh416161d2013-08-06 11:42:51 -070089static int btrfs_clone(struct inode *src, struct inode *inode,
Mark Fasheh1c919a52015-06-30 14:42:08 -070090 u64 off, u64 olen, u64 olen_aligned, u64 destoff,
91 int no_time_update);
Mark Fasheh416161d2013-08-06 11:42:51 -070092
Christoph Hellwig6cbff002009-04-17 10:37:41 +020093/* Mask out flags that are inappropriate for the given type of inode. */
David Sterba1905a0f2018-03-26 18:52:15 +020094static unsigned int btrfs_mask_fsflags_for_type(struct inode *inode,
95 unsigned int flags)
Christoph Hellwig6cbff002009-04-17 10:37:41 +020096{
David Sterba1905a0f2018-03-26 18:52:15 +020097 if (S_ISDIR(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +020098 return flags;
David Sterba1905a0f2018-03-26 18:52:15 +020099 else if (S_ISREG(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200100 return flags & ~FS_DIRSYNC_FL;
101 else
102 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
103}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400104
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200105/*
David Sterbaa157d4f2018-03-26 19:12:25 +0200106 * Export internal inode flags to the format expected by the FS_IOC_GETFLAGS
107 * ioctl.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200108 */
David Sterbaa157d4f2018-03-26 19:12:25 +0200109static unsigned int btrfs_inode_flags_to_fsflags(unsigned int flags)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200110{
111 unsigned int iflags = 0;
112
113 if (flags & BTRFS_INODE_SYNC)
114 iflags |= FS_SYNC_FL;
115 if (flags & BTRFS_INODE_IMMUTABLE)
116 iflags |= FS_IMMUTABLE_FL;
117 if (flags & BTRFS_INODE_APPEND)
118 iflags |= FS_APPEND_FL;
119 if (flags & BTRFS_INODE_NODUMP)
120 iflags |= FS_NODUMP_FL;
121 if (flags & BTRFS_INODE_NOATIME)
122 iflags |= FS_NOATIME_FL;
123 if (flags & BTRFS_INODE_DIRSYNC)
124 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000125 if (flags & BTRFS_INODE_NODATACOW)
126 iflags |= FS_NOCOW_FL;
127
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900128 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000129 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900130 else if (flags & BTRFS_INODE_COMPRESS)
131 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200132
133 return iflags;
134}
135
136/*
137 * Update inode->i_flags based on the btrfs internal flags.
138 */
David Sterba7b6a2212018-03-26 18:40:21 +0200139void btrfs_sync_inode_flags_to_i_flags(struct inode *inode)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200140{
David Sterba5c57b8b2018-04-23 15:45:18 +0200141 struct btrfs_inode *binode = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100142 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200143
David Sterba5c57b8b2018-04-23 15:45:18 +0200144 if (binode->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100145 new_fl |= S_SYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200146 if (binode->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100147 new_fl |= S_IMMUTABLE;
David Sterba5c57b8b2018-04-23 15:45:18 +0200148 if (binode->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100149 new_fl |= S_APPEND;
David Sterba5c57b8b2018-04-23 15:45:18 +0200150 if (binode->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100151 new_fl |= S_NOATIME;
David Sterba5c57b8b2018-04-23 15:45:18 +0200152 if (binode->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100153 new_fl |= S_DIRSYNC;
154
155 set_mask_bits(&inode->i_flags,
156 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
157 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200158}
159
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200160static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
161{
David Sterba5c57b8b2018-04-23 15:45:18 +0200162 struct btrfs_inode *binode = BTRFS_I(file_inode(file));
163 unsigned int flags = btrfs_inode_flags_to_fsflags(binode->flags);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200164
165 if (copy_to_user(arg, &flags, sizeof(flags)))
166 return -EFAULT;
167 return 0;
168}
169
David Sterba5ba76ab2018-03-26 18:52:15 +0200170/* Check if @flags are a supported and valid set of FS_*_FL flags */
171static int check_fsflags(unsigned int flags)
Liu Bo75e7cb72011-03-22 10:12:20 +0000172{
173 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
174 FS_NOATIME_FL | FS_NODUMP_FL | \
175 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000176 FS_NOCOMP_FL | FS_COMPR_FL |
177 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000178 return -EOPNOTSUPP;
179
180 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
181 return -EINVAL;
182
Liu Bo75e7cb72011-03-22 10:12:20 +0000183 return 0;
184}
185
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200186static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
187{
Al Viro496ad9a2013-01-23 17:07:38 -0500188 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400189 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
David Sterba5c57b8b2018-04-23 15:45:18 +0200190 struct btrfs_inode *binode = BTRFS_I(inode);
191 struct btrfs_root *root = binode->root;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200192 struct btrfs_trans_handle *trans;
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700193 unsigned int fsflags, old_fsflags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200194 int ret;
Anand Jainff9fef552019-04-20 19:48:53 +0800195 const char *comp = NULL;
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800196 u32 binode_flags = binode->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200197
David Sterbabd60ea02014-01-16 15:50:22 +0100198 if (!inode_owner_or_capable(inode))
199 return -EPERM;
200
Li Zefanb83cc962010-12-20 16:04:08 +0800201 if (btrfs_root_readonly(root))
202 return -EROFS;
203
David Sterba5c57b8b2018-04-23 15:45:18 +0200204 if (copy_from_user(&fsflags, arg, sizeof(fsflags)))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200205 return -EFAULT;
206
David Sterba5c57b8b2018-04-23 15:45:18 +0200207 ret = check_fsflags(fsflags);
Liu Bo75e7cb72011-03-22 10:12:20 +0000208 if (ret)
209 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200210
Jan Karae7848682012-06-12 16:20:32 +0200211 ret = mnt_want_write_file(file);
212 if (ret)
213 return ret;
214
Al Viro59551022016-01-22 15:40:57 -0500215 inode_lock(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200216
David Sterba5c57b8b2018-04-23 15:45:18 +0200217 fsflags = btrfs_mask_fsflags_for_type(inode, fsflags);
Darrick J. Wong5aca2842019-07-01 08:25:34 -0700218 old_fsflags = btrfs_inode_flags_to_fsflags(binode->flags);
219 ret = vfs_ioc_setflags_prepare(inode, old_fsflags, fsflags);
220 if (ret)
221 goto out_unlock;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200222
David Sterba5c57b8b2018-04-23 15:45:18 +0200223 if (fsflags & FS_SYNC_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800224 binode_flags |= BTRFS_INODE_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200225 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800226 binode_flags &= ~BTRFS_INODE_SYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200227 if (fsflags & FS_IMMUTABLE_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800228 binode_flags |= BTRFS_INODE_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200229 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800230 binode_flags &= ~BTRFS_INODE_IMMUTABLE;
David Sterba5c57b8b2018-04-23 15:45:18 +0200231 if (fsflags & FS_APPEND_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800232 binode_flags |= BTRFS_INODE_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200233 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800234 binode_flags &= ~BTRFS_INODE_APPEND;
David Sterba5c57b8b2018-04-23 15:45:18 +0200235 if (fsflags & FS_NODUMP_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800236 binode_flags |= BTRFS_INODE_NODUMP;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200237 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800238 binode_flags &= ~BTRFS_INODE_NODUMP;
David Sterba5c57b8b2018-04-23 15:45:18 +0200239 if (fsflags & FS_NOATIME_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800240 binode_flags |= BTRFS_INODE_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200241 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800242 binode_flags &= ~BTRFS_INODE_NOATIME;
David Sterba5c57b8b2018-04-23 15:45:18 +0200243 if (fsflags & FS_DIRSYNC_FL)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800244 binode_flags |= BTRFS_INODE_DIRSYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200245 else
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800246 binode_flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba5c57b8b2018-04-23 15:45:18 +0200247 if (fsflags & FS_NOCOW_FL) {
Anand Jain44e51942019-04-20 19:48:57 +0800248 if (S_ISREG(inode->i_mode)) {
David Sterba7e97b8d2012-09-07 05:56:55 -0600249 /*
250 * It's safe to turn csums off here, no extents exist.
251 * Otherwise we want the flag to reflect the real COW
252 * status of the file and will not set it.
253 */
254 if (inode->i_size == 0)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800255 binode_flags |= BTRFS_INODE_NODATACOW |
256 BTRFS_INODE_NODATASUM;
David Sterba7e97b8d2012-09-07 05:56:55 -0600257 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800258 binode_flags |= BTRFS_INODE_NODATACOW;
David Sterba7e97b8d2012-09-07 05:56:55 -0600259 }
260 } else {
261 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400262 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600263 */
Anand Jain44e51942019-04-20 19:48:57 +0800264 if (S_ISREG(inode->i_mode)) {
David Sterba7e97b8d2012-09-07 05:56:55 -0600265 if (inode->i_size == 0)
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800266 binode_flags &= ~(BTRFS_INODE_NODATACOW |
267 BTRFS_INODE_NODATASUM);
David Sterba7e97b8d2012-09-07 05:56:55 -0600268 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800269 binode_flags &= ~BTRFS_INODE_NODATACOW;
David Sterba7e97b8d2012-09-07 05:56:55 -0600270 }
271 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200272
Liu Bo75e7cb72011-03-22 10:12:20 +0000273 /*
274 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
275 * flag may be changed automatically if compression code won't make
276 * things smaller.
277 */
David Sterba5c57b8b2018-04-23 15:45:18 +0200278 if (fsflags & FS_NOCOMP_FL) {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800279 binode_flags &= ~BTRFS_INODE_COMPRESS;
280 binode_flags |= BTRFS_INODE_NOCOMPRESS;
David Sterba5c57b8b2018-04-23 15:45:18 +0200281 } else if (fsflags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000282
Omar Sandovaleede2bf2016-11-03 10:28:12 -0700283 if (IS_SWAPFILE(inode)) {
284 ret = -ETXTBSY;
285 goto out_unlock;
286 }
287
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800288 binode_flags |= BTRFS_INODE_COMPRESS;
289 binode_flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000290
David Sterba93370502017-10-31 17:32:41 +0100291 comp = btrfs_compress_type2str(fs_info->compress_type);
292 if (!comp || comp[0] == 0)
293 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
Li Zefanebcb9042011-04-15 03:03:17 +0000294 } else {
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800295 binode_flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000296 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200297
Anand Jainff9fef552019-04-20 19:48:53 +0800298 /*
299 * 1 for inode item
300 * 2 for properties
301 */
302 trans = btrfs_start_transaction(root, 3);
Li Zefanf062abf02011-12-29 13:36:45 +0800303 if (IS_ERR(trans)) {
304 ret = PTR_ERR(trans);
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800305 goto out_unlock;
Li Zefanf062abf02011-12-29 13:36:45 +0800306 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200307
Anand Jainff9fef552019-04-20 19:48:53 +0800308 if (comp) {
309 ret = btrfs_set_prop(trans, inode, "btrfs.compression", comp,
310 strlen(comp), 0);
311 if (ret) {
312 btrfs_abort_transaction(trans, ret);
313 goto out_end_trans;
314 }
Anand Jainff9fef552019-04-20 19:48:53 +0800315 } else {
316 ret = btrfs_set_prop(trans, inode, "btrfs.compression", NULL,
317 0, 0);
318 if (ret && ret != -ENODATA) {
319 btrfs_abort_transaction(trans, ret);
320 goto out_end_trans;
321 }
322 }
323
Anand Jaind2b8fcf2019-04-20 19:48:55 +0800324 binode->flags = binode_flags;
David Sterba7b6a2212018-03-26 18:40:21 +0200325 btrfs_sync_inode_flags_to_i_flags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400326 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700327 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200328 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200329
Anand Jainff9fef552019-04-20 19:48:53 +0800330 out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400331 btrfs_end_transaction(trans);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200332 out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500333 inode_unlock(inode);
Jan Karae7848682012-06-12 16:20:32 +0200334 mnt_drop_write_file(file);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000335 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200336}
337
David Sterba19f93b32018-03-26 19:42:05 +0200338/*
339 * Translate btrfs internal inode flags to xflags as expected by the
340 * FS_IOC_FSGETXATT ioctl. Filter only the supported ones, unknown flags are
341 * silently dropped.
342 */
343static unsigned int btrfs_inode_flags_to_xflags(unsigned int flags)
344{
345 unsigned int xflags = 0;
346
347 if (flags & BTRFS_INODE_APPEND)
348 xflags |= FS_XFLAG_APPEND;
349 if (flags & BTRFS_INODE_IMMUTABLE)
350 xflags |= FS_XFLAG_IMMUTABLE;
351 if (flags & BTRFS_INODE_NOATIME)
352 xflags |= FS_XFLAG_NOATIME;
353 if (flags & BTRFS_INODE_NODUMP)
354 xflags |= FS_XFLAG_NODUMP;
355 if (flags & BTRFS_INODE_SYNC)
356 xflags |= FS_XFLAG_SYNC;
357
358 return xflags;
359}
360
361/* Check if @flags are a supported and valid set of FS_XFLAGS_* flags */
362static int check_xflags(unsigned int flags)
363{
364 if (flags & ~(FS_XFLAG_APPEND | FS_XFLAG_IMMUTABLE | FS_XFLAG_NOATIME |
365 FS_XFLAG_NODUMP | FS_XFLAG_SYNC))
366 return -EOPNOTSUPP;
367 return 0;
368}
369
David Sterbae4202ac2018-03-26 19:51:16 +0200370/*
371 * Set the xflags from the internal inode flags. The remaining items of fsxattr
372 * are zeroed.
373 */
374static int btrfs_ioctl_fsgetxattr(struct file *file, void __user *arg)
375{
376 struct btrfs_inode *binode = BTRFS_I(file_inode(file));
377 struct fsxattr fa;
378
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700379 simple_fill_fsxattr(&fa, btrfs_inode_flags_to_xflags(binode->flags));
David Sterbae4202ac2018-03-26 19:51:16 +0200380 if (copy_to_user(arg, &fa, sizeof(fa)))
381 return -EFAULT;
382
383 return 0;
384}
385
David Sterba025f2122018-03-26 19:51:16 +0200386static int btrfs_ioctl_fssetxattr(struct file *file, void __user *arg)
387{
388 struct inode *inode = file_inode(file);
389 struct btrfs_inode *binode = BTRFS_I(inode);
390 struct btrfs_root *root = binode->root;
391 struct btrfs_trans_handle *trans;
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700392 struct fsxattr fa, old_fa;
David Sterba025f2122018-03-26 19:51:16 +0200393 unsigned old_flags;
394 unsigned old_i_flags;
395 int ret = 0;
396
397 if (!inode_owner_or_capable(inode))
398 return -EPERM;
399
400 if (btrfs_root_readonly(root))
401 return -EROFS;
402
David Sterba025f2122018-03-26 19:51:16 +0200403 if (copy_from_user(&fa, arg, sizeof(fa)))
404 return -EFAULT;
405
406 ret = check_xflags(fa.fsx_xflags);
407 if (ret)
408 return ret;
409
410 if (fa.fsx_extsize != 0 || fa.fsx_projid != 0 || fa.fsx_cowextsize != 0)
411 return -EOPNOTSUPP;
412
413 ret = mnt_want_write_file(file);
414 if (ret)
415 return ret;
416
417 inode_lock(inode);
418
419 old_flags = binode->flags;
420 old_i_flags = inode->i_flags;
421
Darrick J. Wong7b0e4922019-07-01 08:25:35 -0700422 simple_fill_fsxattr(&old_fa,
423 btrfs_inode_flags_to_xflags(binode->flags));
424 ret = vfs_ioc_fssetxattr_check(inode, &old_fa, &fa);
425 if (ret)
David Sterba025f2122018-03-26 19:51:16 +0200426 goto out_unlock;
David Sterba025f2122018-03-26 19:51:16 +0200427
428 if (fa.fsx_xflags & FS_XFLAG_SYNC)
429 binode->flags |= BTRFS_INODE_SYNC;
430 else
431 binode->flags &= ~BTRFS_INODE_SYNC;
432 if (fa.fsx_xflags & FS_XFLAG_IMMUTABLE)
433 binode->flags |= BTRFS_INODE_IMMUTABLE;
434 else
435 binode->flags &= ~BTRFS_INODE_IMMUTABLE;
436 if (fa.fsx_xflags & FS_XFLAG_APPEND)
437 binode->flags |= BTRFS_INODE_APPEND;
438 else
439 binode->flags &= ~BTRFS_INODE_APPEND;
440 if (fa.fsx_xflags & FS_XFLAG_NODUMP)
441 binode->flags |= BTRFS_INODE_NODUMP;
442 else
443 binode->flags &= ~BTRFS_INODE_NODUMP;
444 if (fa.fsx_xflags & FS_XFLAG_NOATIME)
445 binode->flags |= BTRFS_INODE_NOATIME;
446 else
447 binode->flags &= ~BTRFS_INODE_NOATIME;
448
449 /* 1 item for the inode */
450 trans = btrfs_start_transaction(root, 1);
451 if (IS_ERR(trans)) {
452 ret = PTR_ERR(trans);
453 goto out_unlock;
454 }
455
456 btrfs_sync_inode_flags_to_i_flags(inode);
457 inode_inc_iversion(inode);
458 inode->i_ctime = current_time(inode);
459 ret = btrfs_update_inode(trans, root, inode);
460
461 btrfs_end_transaction(trans);
462
463out_unlock:
464 if (ret) {
465 binode->flags = old_flags;
466 inode->i_flags = old_i_flags;
467 }
468
469 inode_unlock(inode);
470 mnt_drop_write_file(file);
471
472 return ret;
473}
474
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200475static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
476{
Al Viro496ad9a2013-01-23 17:07:38 -0500477 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200478
479 return put_user(inode->i_generation, arg);
480}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400481
Li Dongyangf7039b12011-03-24 10:24:28 +0000482static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
483{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400484 struct inode *inode = file_inode(file);
485 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000486 struct btrfs_device *device;
487 struct request_queue *q;
488 struct fstrim_range range;
489 u64 minlen = ULLONG_MAX;
490 u64 num_devices = 0;
491 int ret;
492
493 if (!capable(CAP_SYS_ADMIN))
494 return -EPERM;
495
Filipe Mananaf35f06c2019-03-26 10:49:56 +0000496 /*
497 * If the fs is mounted with nologreplay, which requires it to be
498 * mounted in RO mode as well, we can not allow discard on free space
499 * inside block groups, because log trees refer to extents that are not
500 * pinned in a block group's free space cache (pinning the extents is
501 * precisely the first phase of replaying a log tree).
502 */
503 if (btrfs_test_opt(fs_info, NOLOGREPLAY))
504 return -EROFS;
505
Xiao Guangrong1f781602011-04-20 10:09:16 +0000506 rcu_read_lock();
507 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
508 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000509 if (!device->bdev)
510 continue;
511 q = bdev_get_queue(device->bdev);
512 if (blk_queue_discard(q)) {
513 num_devices++;
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100514 minlen = min_t(u64, q->limits.discard_granularity,
Li Dongyangf7039b12011-03-24 10:24:28 +0000515 minlen);
516 }
517 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000518 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200519
Li Dongyangf7039b12011-03-24 10:24:28 +0000520 if (!num_devices)
521 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000522 if (copy_from_user(&range, arg, sizeof(range)))
523 return -EFAULT;
Qu Wenruo6ba9fc82018-09-07 14:16:24 +0800524
525 /*
526 * NOTE: Don't truncate the range using super->total_bytes. Bytenr of
527 * block group is in the logical address space, which can be any
528 * sectorsize aligned bytenr in the range [0, U64_MAX].
529 */
530 if (range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200531 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000532
533 range.minlen = max(range.minlen, minlen);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400534 ret = btrfs_trim_fs(fs_info, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000535 if (ret < 0)
536 return ret;
537
538 if (copy_to_user(arg, &range, sizeof(range)))
539 return -EFAULT;
540
541 return 0;
542}
543
David Sterbae1f60a62019-10-01 19:57:39 +0200544int __pure btrfs_is_empty_uuid(u8 *uuid)
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200545{
Chris Mason46e0f662013-11-15 12:14:55 +0100546 int i;
547
548 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
549 if (uuid[i])
550 return 0;
551 }
552 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200553}
554
Miao Xied5c12072013-02-28 10:04:33 +0000555static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400556 struct dentry *dentry,
David Sterba52f75f42017-02-14 18:33:53 +0100557 const char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200558 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000559 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400560{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400561 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400562 struct btrfs_trans_handle *trans;
563 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100564 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400565 struct btrfs_inode_item *inode_item;
566 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000567 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400568 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000569 struct btrfs_block_rsv block_rsv;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700570 struct timespec64 cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900571 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400572 int ret;
573 int err;
574 u64 objectid;
575 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500576 u64 index = 0;
Alexander Block8ea05e32012-07-25 17:35:53 +0200577 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400578
David Sterba49a3c4d2016-03-24 17:49:22 +0100579 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
580 if (!root_item)
581 return -ENOMEM;
582
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400583 ret = btrfs_find_free_objectid(fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400584 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100585 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000586
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800587 /*
588 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400589 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800590 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100591 if (btrfs_qgroup_level(objectid)) {
592 ret = -ENOSPC;
593 goto fail_free;
594 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800595
Miao Xied5c12072013-02-28 10:04:33 +0000596 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400597 /*
Miao Xied5c12072013-02-28 10:04:33 +0000598 * The same as the snapshot creation, please see the comment
599 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400600 */
Gu JinXiangc4c129d2018-05-30 11:00:38 +0800601 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv, 8, false);
Miao Xied5c12072013-02-28 10:04:33 +0000602 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100603 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400604
Miao Xied5c12072013-02-28 10:04:33 +0000605 trans = btrfs_start_transaction(root, 0);
606 if (IS_ERR(trans)) {
607 ret = PTR_ERR(trans);
David Sterba7775c812017-02-10 19:18:18 +0100608 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
David Sterba49a3c4d2016-03-24 17:49:22 +0100609 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000610 }
611 trans->block_rsv = &block_rsv;
612 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400613
Lu Fengqia93774222018-07-18 14:45:41 +0800614 ret = btrfs_qgroup_inherit(trans, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200615 if (ret)
616 goto fail;
617
David Sterba4d75f8a2014-06-15 01:54:12 +0200618 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400619 if (IS_ERR(leaf)) {
620 ret = PTR_ERR(leaf);
621 goto fail;
622 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400623
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400624 btrfs_mark_buffer_dirty(leaf);
625
David Sterba49a3c4d2016-03-24 17:49:22 +0100626 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800627 btrfs_set_stack_inode_generation(inode_item, 1);
628 btrfs_set_stack_inode_size(inode_item, 3);
629 btrfs_set_stack_inode_nlink(inode_item, 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400630 btrfs_set_stack_inode_nbytes(inode_item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400631 fs_info->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800632 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400633
David Sterba49a3c4d2016-03-24 17:49:22 +0100634 btrfs_set_root_flags(root_item, 0);
635 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800636 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000637
David Sterba49a3c4d2016-03-24 17:49:22 +0100638 btrfs_set_root_bytenr(root_item, leaf->start);
639 btrfs_set_root_generation(root_item, trans->transid);
640 btrfs_set_root_level(root_item, 0);
641 btrfs_set_root_refs(root_item, 1);
642 btrfs_set_root_used(root_item, leaf->len);
643 btrfs_set_root_last_snapshot(root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400644
David Sterba49a3c4d2016-03-24 17:49:22 +0100645 btrfs_set_root_generation_v2(root_item,
646 btrfs_root_generation(root_item));
Alexander Block8ea05e32012-07-25 17:35:53 +0200647 uuid_le_gen(&new_uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100648 memcpy(root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
649 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
650 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
651 root_item->ctime = root_item->otime;
652 btrfs_set_root_ctransid(root_item, trans->transid);
653 btrfs_set_root_otransid(root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400654
Chris Mason925baed2008-06-25 16:01:30 -0400655 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400656 free_extent_buffer(leaf);
657 leaf = NULL;
658
David Sterba49a3c4d2016-03-24 17:49:22 +0100659 btrfs_set_root_dirid(root_item, new_dirid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400660
661 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400662 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200663 key.type = BTRFS_ROOT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400664 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100665 root_item);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400666 if (ret)
667 goto fail;
668
Yan, Zheng76dda932009-09-21 16:00:26 -0400669 key.offset = (u64)-1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400670 new_root = btrfs_read_fs_root_no_name(fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100671 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100672 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400673 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100674 goto fail;
675 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400676
677 btrfs_record_root_in_trans(trans, new_root);
678
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000679 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700680 if (ret) {
681 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400682 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700683 goto fail;
684 }
685
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530686 mutex_lock(&new_root->objectid_mutex);
687 new_root->highest_objectid = new_dirid;
688 mutex_unlock(&new_root->objectid_mutex);
689
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400690 /*
691 * insert the directory item
692 */
Nikolay Borisov877574e2017-02-20 13:50:33 +0200693 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100694 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400695 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100696 goto fail;
697 }
Chris Mason3de45862008-11-17 21:02:50 -0500698
Lu Fengqi684572d2018-08-04 21:10:57 +0800699 ret = btrfs_insert_dir_item(trans, name, namelen, BTRFS_I(dir), &key,
Chris Mason3de45862008-11-17 21:02:50 -0500700 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100701 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400702 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400703 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100704 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500705
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200706 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
Yan Zheng52c26172009-01-05 15:43:43 -0500707 ret = btrfs_update_inode(trans, root, dir);
708 BUG_ON(ret);
709
Lu Fengqi6025c192018-08-01 11:32:29 +0800710 ret = btrfs_add_root_ref(trans, objectid, root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200711 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500712 BUG_ON(ret);
713
Lu Fengqicdb345a2018-05-29 15:01:53 +0800714 ret = btrfs_uuid_tree_add(trans, root_item->uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400715 BTRFS_UUID_KEY_SUBVOL, objectid);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200716 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400717 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200718
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400719fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100720 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000721 trans->block_rsv = NULL;
722 trans->bytes_reserved = 0;
David Sterba7775c812017-02-10 19:18:18 +0100723 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Liu Bode6e8202014-01-09 14:57:06 +0800724
Sage Weil72fd0322010-10-29 15:41:32 -0400725 if (async_transid) {
726 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400727 err = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000728 if (err)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400729 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400730 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400731 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400732 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400733 if (err && !ret)
734 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500735
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900736 if (!ret) {
737 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800738 if (IS_ERR(inode))
739 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900740 d_instantiate(dentry, inode);
741 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400742 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100743
744fail_free:
745 kfree(root_item);
746 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400747}
748
Miao Xiee9662f72013-02-28 10:01:15 +0000749static int create_snapshot(struct btrfs_root *root, struct inode *dir,
David Sterba61d7e4c2017-02-10 19:54:06 +0100750 struct dentry *dentry,
Miao Xiee9662f72013-02-28 10:01:15 +0000751 u64 *async_transid, bool readonly,
752 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400753{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400754 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000755 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400756 struct btrfs_pending_snapshot *pending_snapshot;
757 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000758 int ret;
Robbie Ko8ecebf4d2018-08-06 10:30:30 +0800759 bool snapshot_force_cow = false;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400760
Miao Xie27cdeb72014-04-02 19:51:05 +0800761 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400762 return -EINVAL;
763
Omar Sandovaleede2bf2016-11-03 10:28:12 -0700764 if (atomic_read(&root->nr_swapfiles)) {
765 btrfs_warn(fs_info,
766 "cannot snapshot subvolume with active swapfile");
767 return -ETXTBSY;
768 }
769
David Sterba23269bf2017-02-13 11:03:44 +0100770 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100771 if (!pending_snapshot)
772 return -ENOMEM;
773
David Sterbab0c0ea62015-11-10 18:54:00 +0100774 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100775 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100776 pending_snapshot->path = btrfs_alloc_path();
777 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100778 ret = -ENOMEM;
779 goto free_pending;
780 }
781
Robbie Ko8ecebf4d2018-08-06 10:30:30 +0800782 /*
783 * Force new buffered writes to reserve space even when NOCOW is
784 * possible. This is to avoid later writeback (running dealloc) to
785 * fallback to COW mode and unexpectedly fail with ENOSPC.
786 */
David Sterbaea14b57f2017-06-22 02:19:11 +0200787 atomic_inc(&root->will_be_snapshotted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100788 smp_mb__after_atomic();
Liu Bo45bac0f2017-09-01 16:14:29 -0600789 /* wait for no snapshot writes */
790 wait_event(root->subv_writers->wait,
791 percpu_counter_sum(&root->subv_writers->counter) == 0);
Miao Xie8257b2d2014-03-06 13:38:19 +0800792
Ethan Lien3cd24c62018-11-01 14:49:03 +0800793 ret = btrfs_start_delalloc_snapshot(root);
Miao Xie6a038432013-05-15 07:48:24 +0000794 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100795 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000796
Robbie Ko8ecebf4d2018-08-06 10:30:30 +0800797 /*
798 * All previous writes have started writeback in NOCOW mode, so now
799 * we force future writes to fallback to COW mode during snapshot
800 * creation.
801 */
802 atomic_inc(&root->snapshot_force_cow);
803 snapshot_force_cow = true;
804
Chris Mason6374e57a2017-06-23 09:48:21 -0700805 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
Miao Xie6a038432013-05-15 07:48:24 +0000806
Miao Xie66d8f3d2012-09-06 04:02:28 -0600807 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
808 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000809 /*
810 * 1 - parent dir inode
811 * 2 - dir entries
812 * 1 - root item
813 * 2 - root ref/backref
814 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200815 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000816 */
817 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200818 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400819 false);
Miao Xied5c12072013-02-28 10:04:33 +0000820 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100821 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000822
Yan, Zhenga22285a2010-05-16 10:48:46 -0400823 pending_snapshot->dentry = dentry;
824 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800825 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000826 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000827 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400828
Miao Xied5c12072013-02-28 10:04:33 +0000829 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400830 if (IS_ERR(trans)) {
831 ret = PTR_ERR(trans);
832 goto fail;
833 }
834
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400835 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400836 list_add(&pending_snapshot->list,
837 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400838 spin_unlock(&fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400839 if (async_transid) {
840 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400841 ret = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000842 if (ret)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400843 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400844 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400845 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400846 }
Miao Xieaec80302013-03-04 09:44:29 +0000847 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400848 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400849
850 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400851 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000852 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400853
Chris Masond3797302014-10-15 13:50:56 -0700854 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
855 if (ret)
856 goto fail;
857
David Howells2b0143b2015-03-17 22:25:59 +0000858 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000859 if (IS_ERR(inode)) {
860 ret = PTR_ERR(inode);
861 goto fail;
862 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900863
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000864 d_instantiate(dentry, inode);
865 ret = 0;
866fail:
David Sterba7775c812017-02-10 19:18:18 +0100867 btrfs_subvolume_release_metadata(fs_info, &pending_snapshot->block_rsv);
David Sterbaa1ee7362015-11-10 18:53:56 +0100868dec_and_free:
Robbie Ko8ecebf4d2018-08-06 10:30:30 +0800869 if (snapshot_force_cow)
870 atomic_dec(&root->snapshot_force_cow);
David Sterbaea14b57f2017-06-22 02:19:11 +0200871 if (atomic_dec_and_test(&root->will_be_snapshotted))
Peter Zijlstra46259562018-03-15 11:43:08 +0100872 wake_up_var(&root->will_be_snapshotted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100873free_pending:
874 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100875 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100876 kfree(pending_snapshot);
877
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400878 return ret;
879}
880
Sage Weil4260f7c2010-10-29 15:46:43 -0400881/* copy of may_delete in fs/namei.c()
882 * Check whether we can remove a link victim from directory dir, check
883 * whether the type of victim is right.
884 * 1. We can't do it if dir is read-only (done in permission())
885 * 2. We should have write and exec permissions on dir
886 * 3. We can't remove anything from append-only dir
887 * 4. We can't do anything with immutable dir (done in permission())
888 * 5. If the sticky bit on dir is set we should either
889 * a. be owner of dir, or
890 * b. be owner of victim, or
891 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400892 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400893 * links pointing to it.
894 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
895 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
896 * 9. We can't remove a root or mountpoint.
897 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
898 * nfs_async_unlink().
899 */
900
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530901static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400902{
903 int error;
904
David Howells2b0143b2015-03-17 22:25:59 +0000905 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400906 return -ENOENT;
907
David Howells2b0143b2015-03-17 22:25:59 +0000908 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400909 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400910
911 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
912 if (error)
913 return error;
914 if (IS_APPEND(dir))
915 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000916 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
917 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400918 return -EPERM;
919 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000920 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400921 return -ENOTDIR;
922 if (IS_ROOT(victim))
923 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000924 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400925 return -EISDIR;
926 if (IS_DEADDIR(dir))
927 return -ENOENT;
928 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
929 return -EBUSY;
930 return 0;
931}
932
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400933/* copy of may_create in fs/namei.c() */
934static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
935{
David Howells2b0143b2015-03-17 22:25:59 +0000936 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400937 return -EEXIST;
938 if (IS_DEADDIR(dir))
939 return -ENOENT;
940 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
941}
942
943/*
944 * Create a new subvolume below @parent. This is largely modeled after
945 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
946 * inside this filesystem so it's quite a bit simpler.
947 */
Al Viro92872092016-11-20 19:34:31 -0500948static noinline int btrfs_mksubvol(const struct path *parent,
David Sterba52f75f42017-02-14 18:33:53 +0100949 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400950 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200951 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000952 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400953{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400954 struct inode *dir = d_inode(parent->dentry);
955 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400956 struct dentry *dentry;
957 int error;
958
Al Viro00235412016-05-26 00:05:12 -0400959 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
960 if (error == -EINTR)
961 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400962
963 dentry = lookup_one_len(name, parent->dentry, namelen);
964 error = PTR_ERR(dentry);
965 if (IS_ERR(dentry))
966 goto out_unlock;
967
Yan, Zheng76dda932009-09-21 16:00:26 -0400968 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400969 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600970 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400971
Chris Mason9c520572012-12-17 14:26:57 -0500972 /*
973 * even if this name doesn't exist, we may get hash collisions.
974 * check for them now when we can safely fail
975 */
976 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
977 dir->i_ino, name,
978 namelen);
979 if (error)
980 goto out_dput;
981
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400982 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400983
984 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
985 goto out_up_read;
986
Chris Mason3de45862008-11-17 21:02:50 -0500987 if (snap_src) {
David Sterba61d7e4c2017-02-10 19:54:06 +0100988 error = create_snapshot(snap_src, dir, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200989 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500990 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000991 error = create_subvol(dir, dentry, name, namelen,
992 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500993 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400994 if (!error)
995 fsnotify_mkdir(dir, dentry);
996out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400997 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400998out_dput:
999 dput(dentry);
1000out_unlock:
Al Viro59551022016-01-22 15:40:57 -05001001 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001002 return error;
1003}
1004
Chris Mason4cb53002011-05-24 15:35:30 -04001005/*
1006 * When we're defragging a range, we don't want to kick it off again
1007 * if it is really just waiting for delalloc to send it down.
1008 * If we find a nice big extent or delalloc range for the bytes in the
1009 * file you want to defrag, we return 0 to let you know to skip this
1010 * part of the file
1011 */
David Sterbaaab110a2014-07-29 17:32:10 +02001012static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -04001013{
1014 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1015 struct extent_map *em = NULL;
1016 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1017 u64 end;
1018
1019 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001020 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -04001021 read_unlock(&em_tree->lock);
1022
1023 if (em) {
1024 end = extent_map_end(em);
1025 free_extent_map(em);
1026 if (end - offset > thresh)
1027 return 0;
1028 }
1029 /* if we already have a nice delalloc here, just stop */
1030 thresh /= 2;
1031 end = count_range_bits(io_tree, &offset, offset + thresh,
1032 thresh, EXTENT_DELALLOC, 1);
1033 if (end >= thresh)
1034 return 0;
1035 return 1;
1036}
1037
1038/*
1039 * helper function to walk through a file and find extents
1040 * newer than a specific transid, and smaller than thresh.
1041 *
1042 * This is used by the defragging code to find new and small
1043 * extents
1044 */
1045static int find_new_extents(struct btrfs_root *root,
1046 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +02001047 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -04001048{
1049 struct btrfs_path *path;
1050 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -04001051 struct extent_buffer *leaf;
1052 struct btrfs_file_extent_item *extent;
1053 int type;
1054 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001055 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -04001056
1057 path = btrfs_alloc_path();
1058 if (!path)
1059 return -ENOMEM;
1060
David Sterbaa4689d22011-05-31 17:08:14 +00001061 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -04001062 min_key.type = BTRFS_EXTENT_DATA_KEY;
1063 min_key.offset = *off;
1064
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05301065 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01001066 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -04001067 if (ret != 0)
1068 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +00001069process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +00001070 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -04001071 goto none;
1072 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
1073 goto none;
1074
1075 leaf = path->nodes[0];
1076 extent = btrfs_item_ptr(leaf, path->slots[0],
1077 struct btrfs_file_extent_item);
1078
1079 type = btrfs_file_extent_type(leaf, extent);
1080 if (type == BTRFS_FILE_EXTENT_REG &&
1081 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
1082 check_defrag_in_cache(inode, min_key.offset, thresh)) {
1083 *off = min_key.offset;
1084 btrfs_free_path(path);
1085 return 0;
1086 }
1087
Filipe Mananaf094c9bd2014-03-12 01:28:24 +00001088 path->slots[0]++;
1089 if (path->slots[0] < btrfs_header_nritems(leaf)) {
1090 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
1091 goto process_slot;
1092 }
1093
Chris Mason4cb53002011-05-24 15:35:30 -04001094 if (min_key.offset == (u64)-1)
1095 goto none;
1096
1097 min_key.offset++;
1098 btrfs_release_path(path);
1099 }
1100none:
1101 btrfs_free_path(path);
1102 return -ENOENT;
1103}
1104
Li Zefan6c282eb2012-06-11 16:03:35 +08001105static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -04001106{
1107 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -05001108 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +08001109 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001110 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -05001111
1112 /*
1113 * hopefully we have this extent in the tree already, try without
1114 * the full extent lock
1115 */
1116 read_lock(&em_tree->lock);
1117 em = lookup_extent_mapping(em_tree, start, len);
1118 read_unlock(&em_tree->lock);
1119
1120 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +00001121 struct extent_state *cached = NULL;
1122 u64 end = start + len - 1;
1123
Chris Mason940100a2010-03-10 10:52:59 -05001124 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +01001125 lock_extent_bits(io_tree, start, end, &cached);
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +02001126 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
David Sterbae43bbe52017-12-12 21:43:52 +01001127 unlock_extent_cached(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -05001128
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +00001129 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001130 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001131 }
1132
Li Zefan6c282eb2012-06-11 16:03:35 +08001133 return em;
1134}
1135
1136static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1137{
1138 struct extent_map *next;
1139 bool ret = true;
1140
1141 /* this is the last extent */
1142 if (em->start + em->len >= i_size_read(inode))
1143 return false;
1144
1145 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001146 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1147 ret = false;
1148 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001149 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001150 ret = false;
1151
1152 free_extent_map(next);
1153 return ret;
1154}
1155
David Sterbaaab110a2014-07-29 17:32:10 +02001156static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001157 u64 *last_len, u64 *skip, u64 *defrag_end,
1158 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001159{
1160 struct extent_map *em;
1161 int ret = 1;
1162 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001163 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001164
1165 /*
1166 * make sure that once we start defragging an extent, we keep on
1167 * defragging it
1168 */
1169 if (start < *defrag_end)
1170 return 1;
1171
1172 *skip = 0;
1173
1174 em = defrag_lookup_extent(inode, start);
1175 if (!em)
1176 return 0;
1177
Chris Mason940100a2010-03-10 10:52:59 -05001178 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001179 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001180 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001181 goto out;
1182 }
1183
Liu Bo4a3560c2015-08-07 16:48:41 +08001184 if (!*defrag_end)
1185 prev_mergeable = false;
1186
Li Zefan6c282eb2012-06-11 16:03:35 +08001187 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001188 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001189 * we hit a real extent, if it is big or the next extent is not a
1190 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001191 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001192 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001193 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001194 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001195out:
Chris Mason940100a2010-03-10 10:52:59 -05001196 /*
1197 * last_len ends up being a counter of how many bytes we've defragged.
1198 * every time we choose not to defrag an extent, we reset *last_len
1199 * so that the next tiny extent will force a defrag.
1200 *
1201 * The end result of this is that tiny extents before a single big
1202 * extent will force at least part of that big extent to be defragged.
1203 */
1204 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001205 *defrag_end = extent_map_end(em);
1206 } else {
1207 *last_len = 0;
1208 *skip = extent_map_end(em);
1209 *defrag_end = 0;
1210 }
1211
1212 free_extent_map(em);
1213 return ret;
1214}
1215
Chris Mason4cb53002011-05-24 15:35:30 -04001216/*
1217 * it doesn't do much good to defrag one or two pages
1218 * at a time. This pulls in a nice chunk of pages
1219 * to COW and defrag.
1220 *
1221 * It also makes sure the delalloc code has enough
1222 * dirty data to avoid making new small extents as part
1223 * of the defrag
1224 *
1225 * It's a good idea to start RA on this range
1226 * before calling this.
1227 */
1228static int cluster_pages_for_defrag(struct inode *inode,
1229 struct page **pages,
1230 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001231 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001232{
Chris Mason4cb53002011-05-24 15:35:30 -04001233 unsigned long file_end;
1234 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001235 u64 page_start;
1236 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001237 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001238 int ret;
1239 int i;
1240 int i_done;
1241 struct btrfs_ordered_extent *ordered;
1242 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001243 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001244 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001245 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001246
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001247 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001248 if (!isize || start_index > file_end)
1249 return 0;
1250
1251 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001252
Qu Wenruo364ecf32017-02-27 15:10:38 +08001253 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001254 start_index << PAGE_SHIFT,
1255 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001256 if (ret)
1257 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001258 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001259 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001260
1261 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001262 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001263 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001264again:
Josef Bacika94733d2011-07-11 10:47:06 -04001265 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001266 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001267 if (!page)
1268 break;
1269
Miao Xie600a45e2012-02-16 15:01:24 +08001270 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001271 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001272 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001273 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001274 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001275 ordered = btrfs_lookup_ordered_extent(inode,
1276 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001277 unlock_extent_cached(tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001278 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001279 if (!ordered)
1280 break;
1281
1282 unlock_page(page);
1283 btrfs_start_ordered_extent(inode, ordered, 1);
1284 btrfs_put_ordered_extent(ordered);
1285 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001286 /*
1287 * we unlocked the page above, so we need check if
1288 * it was released or not.
1289 */
1290 if (page->mapping != inode->i_mapping) {
1291 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001292 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001293 goto again;
1294 }
Miao Xie600a45e2012-02-16 15:01:24 +08001295 }
1296
Chris Mason4cb53002011-05-24 15:35:30 -04001297 if (!PageUptodate(page)) {
1298 btrfs_readpage(NULL, page);
1299 lock_page(page);
1300 if (!PageUptodate(page)) {
1301 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001302 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001303 ret = -EIO;
1304 break;
1305 }
1306 }
Miao Xie600a45e2012-02-16 15:01:24 +08001307
Miao Xie600a45e2012-02-16 15:01:24 +08001308 if (page->mapping != inode->i_mapping) {
1309 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001310 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001311 goto again;
1312 }
1313
Chris Mason4cb53002011-05-24 15:35:30 -04001314 pages[i] = page;
1315 i_done++;
1316 }
1317 if (!i_done || ret)
1318 goto out;
1319
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001320 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001321 goto out;
1322
1323 /*
1324 * so now we have a nice long stream of locked
1325 * and up to date pages, lets wait on them
1326 */
1327 for (i = 0; i < i_done; i++)
1328 wait_on_page_writeback(pages[i]);
1329
1330 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001331 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001332
1333 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001334 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001335 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
Omar Sandovale1821632019-08-15 14:04:04 -07001336 page_end - 1, EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
1337 EXTENT_DEFRAG, 0, 0, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001338
Liu Bo1f12bd02012-03-29 09:57:44 -04001339 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001340 spin_lock(&BTRFS_I(inode)->lock);
Su Yue28c4a3e2018-09-05 11:07:33 +08001341 btrfs_mod_outstanding_extents(BTRFS_I(inode), 1);
Josef Bacik9e0baf62011-07-15 15:16:44 +00001342 spin_unlock(&BTRFS_I(inode)->lock);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001343 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001344 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001345 (page_cnt - i_done) << PAGE_SHIFT, true);
Chris Mason4cb53002011-05-24 15:35:30 -04001346 }
1347
1348
Liu Bo9e8a4a82012-09-05 19:10:51 -06001349 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001350 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001351
1352 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001353 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001354
1355 for (i = 0; i < i_done; i++) {
1356 clear_page_dirty_for_io(pages[i]);
1357 ClearPageChecked(pages[i]);
1358 set_page_extent_mapped(pages[i]);
1359 set_page_dirty(pages[i]);
1360 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001361 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001362 }
Qu Wenruo8702ba92019-10-14 14:34:51 +08001363 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001364 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001365 return i_done;
1366out:
1367 for (i = 0; i < i_done; i++) {
1368 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001369 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001370 }
Qu Wenruobc42bda2017-02-27 15:10:39 +08001371 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001372 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001373 page_cnt << PAGE_SHIFT, true);
Qu Wenruo8702ba92019-10-14 14:34:51 +08001374 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001375 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001376 return ret;
1377
1378}
1379
1380int btrfs_defrag_file(struct inode *inode, struct file *file,
1381 struct btrfs_ioctl_defrag_range_args *range,
1382 u64 newer_than, unsigned long max_to_defrag)
1383{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001384 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001385 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001386 struct file_ra_state *ra = NULL;
1387 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001388 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001389 u64 last_len = 0;
1390 u64 skip = 0;
1391 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001392 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001393 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001394 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001395 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001396 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001397 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001398 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001399 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001400 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001401 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001402 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001403 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001404
Liu Bo0abd5b12013-04-16 09:20:28 +00001405 if (isize == 0)
1406 return 0;
1407
1408 if (range->start >= isize)
1409 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001410
David Sterba1e2ef462017-07-17 20:01:59 +02001411 if (do_compress) {
Li Zefan1a419d82010-10-25 15:12:50 +08001412 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1413 return -EINVAL;
1414 if (range->compress_type)
1415 compress_type = range->compress_type;
1416 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001417
Liu Bo0abd5b12013-04-16 09:20:28 +00001418 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001419 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001420
Chris Mason4cb53002011-05-24 15:35:30 -04001421 /*
David Sterba0a52d102017-06-22 03:22:58 +02001422 * If we were not given a file, allocate a readahead context. As
1423 * readahead is just an optimization, defrag will work without it so
1424 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001425 */
1426 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001427 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001428 if (ra)
1429 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001430 } else {
1431 ra = &file->f_ra;
1432 }
1433
David Sterba63e727e2017-06-22 03:13:02 +02001434 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001435 if (!pages) {
1436 ret = -ENOMEM;
1437 goto out_ra;
1438 }
1439
1440 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001441 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001442 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001443 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001444 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001445 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001446 }
1447
Chris Mason4cb53002011-05-24 15:35:30 -04001448 if (newer_than) {
1449 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001450 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001451 if (!ret) {
1452 range->start = newer_off;
1453 /*
1454 * we always align our defrag to help keep
1455 * the extents in the file evenly spaced
1456 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001457 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001458 } else
1459 goto out_ra;
1460 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001461 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001462 }
1463 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301464 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001465
Li Zefan2a0f7f52011-10-10 15:43:34 -04001466 /*
1467 * make writeback starts from i, so the defrag range can be
1468 * written sequentially.
1469 */
1470 if (i < inode->i_mapping->writeback_index)
1471 inode->i_mapping->writeback_index = i;
1472
Chris Masonf7f43cc2011-10-11 11:41:40 -04001473 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001474 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001475 /*
1476 * make sure we stop running if someone unmounts
1477 * the FS
1478 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001479 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001480 break;
1481
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001482 if (btrfs_defrag_cancelled(fs_info)) {
1483 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001484 ret = -EAGAIN;
1485 break;
1486 }
1487
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001488 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001489 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001490 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001491 unsigned long next;
1492 /*
1493 * the should_defrag function tells us how much to skip
1494 * bump our counter by the suggested amount
1495 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001496 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001497 i = max(i + 1, next);
1498 continue;
1499 }
Li Zefan008873e2011-09-02 15:57:07 +08001500
1501 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001502 cluster = (PAGE_ALIGN(defrag_end) >>
1503 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001504 cluster = min(cluster, max_cluster);
1505 } else {
1506 cluster = max_cluster;
1507 }
1508
Li Zefan008873e2011-09-02 15:57:07 +08001509 if (i + cluster > ra_index) {
1510 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001511 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001512 page_cache_sync_readahead(inode->i_mapping, ra,
1513 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301514 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001515 }
Chris Mason940100a2010-03-10 10:52:59 -05001516
Al Viro59551022016-01-22 15:40:57 -05001517 inode_lock(inode);
Omar Sandovaleede2bf2016-11-03 10:28:12 -07001518 if (IS_SWAPFILE(inode)) {
1519 ret = -ETXTBSY;
1520 } else {
1521 if (do_compress)
1522 BTRFS_I(inode)->defrag_compress = compress_type;
1523 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
1524 }
Liu Boecb8bea2012-03-29 09:57:44 -04001525 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001526 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001527 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001528 }
Chris Mason940100a2010-03-10 10:52:59 -05001529
Chris Mason4cb53002011-05-24 15:35:30 -04001530 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001531 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001532 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001533
1534 if (newer_than) {
1535 if (newer_off == (u64)-1)
1536 break;
1537
Liu Boe1f041e2012-03-29 09:57:45 -04001538 if (ret > 0)
1539 i += ret;
1540
Chris Mason4cb53002011-05-24 15:35:30 -04001541 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001542 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001543
Byongho Leeee221842015-12-15 01:42:10 +09001544 ret = find_new_extents(root, inode, newer_than,
1545 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001546 if (!ret) {
1547 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001548 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001549 } else {
1550 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001551 }
Chris Mason4cb53002011-05-24 15:35:30 -04001552 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001553 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001554 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001555 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001556 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001557 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001558 last_len = 0;
1559 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001560 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001561 }
1562
Filipe Mananadec8ef92014-03-01 10:55:54 +00001563 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001564 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001565 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1566 &BTRFS_I(inode)->runtime_flags))
1567 filemap_flush(inode->i_mapping);
1568 }
Chris Mason1e701a32010-03-11 09:42:04 -05001569
Li Zefan1a419d82010-10-25 15:12:50 +08001570 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001571 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
Nick Terrell5c1aab12017-08-09 19:39:02 -07001572 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1573 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
Li Zefan1a419d82010-10-25 15:12:50 +08001574 }
1575
Diego Calleja60ccf822011-09-01 16:33:57 +02001576 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001577
Chris Mason4cb53002011-05-24 15:35:30 -04001578out_ra:
David Sterba1e2ef462017-07-17 20:01:59 +02001579 if (do_compress) {
Al Viro59551022016-01-22 15:40:57 -05001580 inode_lock(inode);
David Sterbaeec63c62017-07-17 19:41:31 +02001581 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
Al Viro59551022016-01-22 15:40:57 -05001582 inode_unlock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001583 }
Chris Mason4cb53002011-05-24 15:35:30 -04001584 if (!file)
1585 kfree(ra);
1586 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001587 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001588}
1589
Miao Xie198605a2012-11-26 08:43:45 +00001590static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001591 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001592{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001593 struct inode *inode = file_inode(file);
1594 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001595 u64 new_size;
1596 u64 old_size;
1597 u64 devid = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001598 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001599 struct btrfs_ioctl_vol_args *vol_args;
1600 struct btrfs_trans_handle *trans;
1601 struct btrfs_device *device = NULL;
1602 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001603 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001604 char *devstr = NULL;
1605 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001606 int mod = 0;
1607
Chris Masone441d542009-01-05 16:57:23 -05001608 if (!capable(CAP_SYS_ADMIN))
1609 return -EPERM;
1610
Miao Xie198605a2012-11-26 08:43:45 +00001611 ret = mnt_want_write_file(file);
1612 if (ret)
1613 return ret;
1614
David Sterba171938e2017-03-28 14:44:21 +02001615 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Miao Xie97547672012-12-21 10:38:50 +00001616 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001617 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001618 }
1619
Li Zefandae7b662009-04-08 15:06:54 +08001620 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001621 if (IS_ERR(vol_args)) {
1622 ret = PTR_ERR(vol_args);
1623 goto out;
1624 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001625
1626 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001627
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001628 sizestr = vol_args->name;
1629 devstr = strchr(sizestr, ':');
1630 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001631 sizestr = devstr + 1;
1632 *devstr = '\0';
1633 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001634 ret = kstrtoull(devstr, 10, &devid);
1635 if (ret)
1636 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001637 if (!devid) {
1638 ret = -EINVAL;
1639 goto out_free;
1640 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001641 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001642 }
Miao Xiedba60f32012-12-21 09:19:51 +00001643
Anand Jain09ba3bc2019-01-19 14:48:55 +08001644 device = btrfs_find_device(fs_info->fs_devices, devid, NULL, NULL, true);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001645 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001646 btrfs_info(fs_info, "resizer unable to find device %llu",
1647 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001648 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001649 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001650 }
Miao Xiedba60f32012-12-21 09:19:51 +00001651
Anand Jainebbede42017-12-04 12:54:52 +08001652 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001653 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001654 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001655 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001656 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001657 goto out_free;
1658 }
1659
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001660 if (!strcmp(sizestr, "max"))
1661 new_size = device->bdev->bd_inode->i_size;
1662 else {
1663 if (sizestr[0] == '-') {
1664 mod = -1;
1665 sizestr++;
1666 } else if (sizestr[0] == '+') {
1667 mod = 1;
1668 sizestr++;
1669 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001670 new_size = memparse(sizestr, &retptr);
1671 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001672 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001673 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001674 }
1675 }
1676
Anand Jain401e29c2017-12-04 12:54:55 +08001677 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xiedfd79822012-12-21 09:21:30 +00001678 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001679 goto out_free;
1680 }
1681
Miao Xie7cc8e582014-09-03 21:35:38 +08001682 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001683
1684 if (mod < 0) {
1685 if (new_size > old_size) {
1686 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001687 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001688 }
1689 new_size = old_size - new_size;
1690 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001691 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001692 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001693 goto out_free;
1694 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001695 new_size = old_size + new_size;
1696 }
1697
Byongho Leeee221842015-12-15 01:42:10 +09001698 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001699 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001700 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001701 }
1702 if (new_size > device->bdev->bd_inode->i_size) {
1703 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001704 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001705 }
1706
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001707 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001708
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001709 btrfs_info_in_rcu(fs_info, "new size for %s is %llu",
1710 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001711
1712 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001713 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001714 if (IS_ERR(trans)) {
1715 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001716 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001717 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001718 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001719 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001720 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001721 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001722 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001723
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001724out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001725 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001726out:
David Sterba171938e2017-03-28 14:44:21 +02001727 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001728 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001729 return ret;
1730}
1731
Sage Weil72fd0322010-10-29 15:41:32 -04001732static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
David Sterba52f75f42017-02-14 18:33:53 +01001733 const char *name, unsigned long fd, int subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001734 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001735 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001736{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001737 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001738 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001739
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001740 if (!S_ISDIR(file_inode(file)->i_mode))
1741 return -ENOTDIR;
1742
Liu Boa874a632012-06-29 03:58:46 -06001743 ret = mnt_want_write_file(file);
1744 if (ret)
1745 goto out;
1746
Sage Weil72fd0322010-10-29 15:41:32 -04001747 namelen = strlen(name);
1748 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001749 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001750 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001751 }
1752
Chris Mason16780ca2012-02-20 22:14:55 -05001753 if (name[0] == '.' &&
1754 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1755 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001756 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001757 }
1758
Chris Mason3de45862008-11-17 21:02:50 -05001759 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001760 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001761 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001762 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001763 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001764 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001765 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001766 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001767 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001768 }
1769
Al Viro496ad9a2013-01-23 17:07:38 -05001770 src_inode = file_inode(src.file);
1771 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001772 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001773 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001774 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001775 } else if (!inode_owner_or_capable(src_inode)) {
1776 /*
1777 * Subvolume creation is not restricted, but snapshots
1778 * are limited to own subvolumes only
1779 */
1780 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001781 } else {
1782 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1783 BTRFS_I(src_inode)->root,
1784 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001785 }
Al Viro2903ff02012-08-28 12:52:22 -04001786 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001787 }
Liu Boa874a632012-06-29 03:58:46 -06001788out_drop_write:
1789 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001790out:
Sage Weil72fd0322010-10-29 15:41:32 -04001791 return ret;
1792}
1793
1794static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001795 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001796{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001797 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001798 int ret;
1799
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001800 if (!S_ISDIR(file_inode(file)->i_mode))
1801 return -ENOTDIR;
1802
Li Zefanfa0d2b92010-12-20 15:53:28 +08001803 vol_args = memdup_user(arg, sizeof(*vol_args));
1804 if (IS_ERR(vol_args))
1805 return PTR_ERR(vol_args);
1806 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001807
Li Zefanfa0d2b92010-12-20 15:53:28 +08001808 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001809 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001810 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001811
Li Zefanfa0d2b92010-12-20 15:53:28 +08001812 kfree(vol_args);
1813 return ret;
1814}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001815
Li Zefanfa0d2b92010-12-20 15:53:28 +08001816static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1817 void __user *arg, int subvol)
1818{
1819 struct btrfs_ioctl_vol_args_v2 *vol_args;
1820 int ret;
1821 u64 transid = 0;
1822 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001823 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001824 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001825
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001826 if (!S_ISDIR(file_inode(file)->i_mode))
1827 return -ENOTDIR;
1828
Li Zefanfa0d2b92010-12-20 15:53:28 +08001829 vol_args = memdup_user(arg, sizeof(*vol_args));
1830 if (IS_ERR(vol_args))
1831 return PTR_ERR(vol_args);
1832 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001833
Li Zefanb83cc962010-12-20 16:04:08 +08001834 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001835 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1836 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001837 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001838 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001839 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001840
Nikolay Borisovebc87352019-08-26 17:34:24 +03001841 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1842 struct inode *inode = file_inode(file);
1843 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
1844
1845 btrfs_warn(fs_info,
1846"SNAP_CREATE_V2 ioctl with CREATE_ASYNC is deprecated and will be removed in kernel 5.7");
1847
Li Zefanfa0d2b92010-12-20 15:53:28 +08001848 ptr = &transid;
Nikolay Borisovebc87352019-08-26 17:34:24 +03001849 }
Li Zefanb83cc962010-12-20 16:04:08 +08001850 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1851 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001852 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001853 if (vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001854 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001855 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001856 }
1857 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1858 if (IS_ERR(inherit)) {
1859 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001860 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001861 }
1862 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001863
1864 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001865 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001866 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001867 if (ret)
1868 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001869
Dan Carpenterc47ca322014-09-04 14:09:15 +03001870 if (ptr && copy_to_user(arg +
1871 offsetof(struct btrfs_ioctl_vol_args_v2,
1872 transid),
1873 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001874 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001875
1876free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001877 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001878free_args:
1879 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001880 return ret;
1881}
1882
Li Zefan0caa1022010-12-20 16:30:25 +08001883static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1884 void __user *arg)
1885{
Al Viro496ad9a2013-01-23 17:07:38 -05001886 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001887 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001888 struct btrfs_root *root = BTRFS_I(inode)->root;
1889 int ret = 0;
1890 u64 flags = 0;
1891
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001892 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001893 return -EINVAL;
1894
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001895 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001896 if (btrfs_root_readonly(root))
1897 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001898 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001899
1900 if (copy_to_user(arg, &flags, sizeof(flags)))
1901 ret = -EFAULT;
1902
1903 return ret;
1904}
1905
1906static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1907 void __user *arg)
1908{
Al Viro496ad9a2013-01-23 17:07:38 -05001909 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001910 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001911 struct btrfs_root *root = BTRFS_I(inode)->root;
1912 struct btrfs_trans_handle *trans;
1913 u64 root_flags;
1914 u64 flags;
1915 int ret = 0;
1916
David Sterbabd60ea02014-01-16 15:50:22 +01001917 if (!inode_owner_or_capable(inode))
1918 return -EPERM;
1919
Liu Bob9ca0662012-06-29 03:58:49 -06001920 ret = mnt_want_write_file(file);
1921 if (ret)
1922 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001923
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001924 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06001925 ret = -EINVAL;
1926 goto out_drop_write;
1927 }
Li Zefan0caa1022010-12-20 16:30:25 +08001928
Liu Bob9ca0662012-06-29 03:58:49 -06001929 if (copy_from_user(&flags, arg, sizeof(flags))) {
1930 ret = -EFAULT;
1931 goto out_drop_write;
1932 }
Li Zefan0caa1022010-12-20 16:30:25 +08001933
Liu Bob9ca0662012-06-29 03:58:49 -06001934 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1935 ret = -EINVAL;
1936 goto out_drop_write;
1937 }
Li Zefan0caa1022010-12-20 16:30:25 +08001938
Liu Bob9ca0662012-06-29 03:58:49 -06001939 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1940 ret = -EOPNOTSUPP;
1941 goto out_drop_write;
1942 }
Li Zefan0caa1022010-12-20 16:30:25 +08001943
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001944 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001945
1946 /* nothing to do */
1947 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001948 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001949
1950 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001951 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001952 btrfs_set_root_flags(&root->root_item,
1953 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001954 } else {
1955 /*
1956 * Block RO -> RW transition if this subvolume is involved in
1957 * send
1958 */
1959 spin_lock(&root->root_item_lock);
1960 if (root->send_in_progress == 0) {
1961 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001962 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001963 spin_unlock(&root->root_item_lock);
1964 } else {
1965 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001966 btrfs_warn(fs_info,
1967 "Attempt to set subvolume %llu read-write during send",
1968 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01001969 ret = -EPERM;
1970 goto out_drop_sem;
1971 }
1972 }
Li Zefan0caa1022010-12-20 16:30:25 +08001973
1974 trans = btrfs_start_transaction(root, 1);
1975 if (IS_ERR(trans)) {
1976 ret = PTR_ERR(trans);
1977 goto out_reset;
1978 }
1979
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001980 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001981 &root->root_key, &root->root_item);
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001982 if (ret < 0) {
1983 btrfs_end_transaction(trans);
1984 goto out_reset;
1985 }
Li Zefan0caa1022010-12-20 16:30:25 +08001986
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001987 ret = btrfs_commit_transaction(trans);
1988
Li Zefan0caa1022010-12-20 16:30:25 +08001989out_reset:
1990 if (ret)
1991 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001992out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001993 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001994out_drop_write:
1995 mnt_drop_write_file(file);
1996out:
Li Zefan0caa1022010-12-20 16:30:25 +08001997 return ret;
1998}
1999
Chris Masonac8e9812010-02-28 15:39:26 -05002000static noinline int key_in_sk(struct btrfs_key *key,
2001 struct btrfs_ioctl_search_key *sk)
2002{
Chris Masonabc6e132010-03-18 12:10:08 -04002003 struct btrfs_key test;
2004 int ret;
2005
2006 test.objectid = sk->min_objectid;
2007 test.type = sk->min_type;
2008 test.offset = sk->min_offset;
2009
2010 ret = btrfs_comp_cpu_keys(key, &test);
2011 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05002012 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04002013
2014 test.objectid = sk->max_objectid;
2015 test.type = sk->max_type;
2016 test.offset = sk->max_offset;
2017
2018 ret = btrfs_comp_cpu_keys(key, &test);
2019 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05002020 return 0;
2021 return 1;
2022}
2023
Jeff Mahoneydf397562016-06-21 20:18:21 -04002024static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05002025 struct btrfs_key *key,
2026 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002027 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002028 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002029 unsigned long *sk_offset,
2030 int *num_found)
2031{
2032 u64 found_transid;
2033 struct extent_buffer *leaf;
2034 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002035 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05002036 unsigned long item_off;
2037 unsigned long item_len;
2038 int nritems;
2039 int i;
2040 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05002041 int ret = 0;
2042
2043 leaf = path->nodes[0];
2044 slot = path->slots[0];
2045 nritems = btrfs_header_nritems(leaf);
2046
2047 if (btrfs_header_generation(leaf) > sk->max_transid) {
2048 i = nritems;
2049 goto advance_key;
2050 }
2051 found_transid = btrfs_header_generation(leaf);
2052
2053 for (i = slot; i < nritems; i++) {
2054 item_off = btrfs_item_ptr_offset(leaf, i);
2055 item_len = btrfs_item_size_nr(leaf, i);
2056
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00002057 btrfs_item_key_to_cpu(leaf, key, i);
2058 if (!key_in_sk(key, sk))
2059 continue;
2060
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002061 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002062 if (*num_found) {
2063 ret = 1;
2064 goto out;
2065 }
Chris Masonac8e9812010-02-28 15:39:26 -05002066
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002067 /*
2068 * return one empty item back for v1, which does not
2069 * handle -EOVERFLOW
2070 */
2071
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002072 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002073 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002074 ret = -EOVERFLOW;
2075 }
Chris Masonac8e9812010-02-28 15:39:26 -05002076
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002077 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05002078 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002079 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05002080 }
2081
Chris Masonac8e9812010-02-28 15:39:26 -05002082 sh.objectid = key->objectid;
2083 sh.offset = key->offset;
2084 sh.type = key->type;
2085 sh.len = item_len;
2086 sh.transid = found_transid;
2087
2088 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002089 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
2090 ret = -EFAULT;
2091 goto out;
2092 }
2093
Chris Masonac8e9812010-02-28 15:39:26 -05002094 *sk_offset += sizeof(sh);
2095
2096 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002097 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002098 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002099 if (read_extent_buffer_to_user(leaf, up,
2100 item_off, item_len)) {
2101 ret = -EFAULT;
2102 goto out;
2103 }
2104
Chris Masonac8e9812010-02-28 15:39:26 -05002105 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002106 }
Hugo Millse2156862011-05-14 17:43:41 +00002107 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002108
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002109 if (ret) /* -EOVERFLOW from above */
2110 goto out;
2111
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002112 if (*num_found >= sk->nr_items) {
2113 ret = 1;
2114 goto out;
2115 }
Chris Masonac8e9812010-02-28 15:39:26 -05002116 }
2117advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002118 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002119 test.objectid = sk->max_objectid;
2120 test.type = sk->max_type;
2121 test.offset = sk->max_offset;
2122 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2123 ret = 1;
2124 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002125 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002126 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002127 key->offset = 0;
2128 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002129 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002130 key->offset = 0;
2131 key->type = 0;
2132 key->objectid++;
2133 } else
2134 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002135out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002136 /*
2137 * 0: all items from this leaf copied, continue with next
2138 * 1: * more items can be copied, but unused buffer is too small
2139 * * all items were found
2140 * Either way, it will stops the loop which iterates to the next
2141 * leaf
2142 * -EOVERFLOW: item was to large for buffer
2143 * -EFAULT: could not copy extent buffer back to userspace
2144 */
Chris Masonac8e9812010-02-28 15:39:26 -05002145 return ret;
2146}
2147
2148static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002149 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002150 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002151 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002152{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002153 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05002154 struct btrfs_root *root;
2155 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002156 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002157 int ret;
2158 int num_found = 0;
2159 unsigned long sk_offset = 0;
2160
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002161 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2162 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002163 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002164 }
Gerhard Heift12544442014-01-30 16:23:58 +01002165
Chris Masonac8e9812010-02-28 15:39:26 -05002166 path = btrfs_alloc_path();
2167 if (!path)
2168 return -ENOMEM;
2169
2170 if (sk->tree_id == 0) {
2171 /* search the root of the inode that was passed */
2172 root = BTRFS_I(inode)->root;
2173 } else {
2174 key.objectid = sk->tree_id;
2175 key.type = BTRFS_ROOT_ITEM_KEY;
2176 key.offset = (u64)-1;
2177 root = btrfs_read_fs_root_no_name(info, &key);
2178 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002179 btrfs_free_path(path);
Misono Tomohiroad1e3d52018-05-21 13:57:27 +09002180 return PTR_ERR(root);
Chris Masonac8e9812010-02-28 15:39:26 -05002181 }
2182 }
2183
2184 key.objectid = sk->min_objectid;
2185 key.type = sk->min_type;
2186 key.offset = sk->min_offset;
2187
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302188 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002189 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002190 if (ret != 0) {
2191 if (ret > 0)
2192 ret = 0;
2193 goto err;
2194 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002195 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002196 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002197 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002198 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002199 break;
2200
2201 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002202 if (ret > 0)
2203 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002204err:
2205 sk->nr_items = num_found;
2206 btrfs_free_path(path);
2207 return ret;
2208}
2209
2210static noinline int btrfs_ioctl_tree_search(struct file *file,
2211 void __user *argp)
2212{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002213 struct btrfs_ioctl_search_args __user *uargs;
2214 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002215 struct inode *inode;
2216 int ret;
2217 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002218
2219 if (!capable(CAP_SYS_ADMIN))
2220 return -EPERM;
2221
Gerhard Heiftba346b32014-01-30 16:24:02 +01002222 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002223
Gerhard Heiftba346b32014-01-30 16:24:02 +01002224 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2225 return -EFAULT;
2226
2227 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002228
Al Viro496ad9a2013-01-23 17:07:38 -05002229 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002230 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002231
2232 /*
2233 * In the origin implementation an overflow is handled by returning a
2234 * search header with a len of zero, so reset ret.
2235 */
2236 if (ret == -EOVERFLOW)
2237 ret = 0;
2238
Gerhard Heiftba346b32014-01-30 16:24:02 +01002239 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002240 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002241 return ret;
2242}
2243
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002244static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2245 void __user *argp)
2246{
2247 struct btrfs_ioctl_search_args_v2 __user *uarg;
2248 struct btrfs_ioctl_search_args_v2 args;
2249 struct inode *inode;
2250 int ret;
2251 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002252 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002253
2254 if (!capable(CAP_SYS_ADMIN))
2255 return -EPERM;
2256
2257 /* copy search header and buffer size */
2258 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2259 if (copy_from_user(&args, uarg, sizeof(args)))
2260 return -EFAULT;
2261
2262 buf_size = args.buf_size;
2263
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002264 /* limit result size to 16MB */
2265 if (buf_size > buf_limit)
2266 buf_size = buf_limit;
2267
2268 inode = file_inode(file);
2269 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002270 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002271 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2272 ret = -EFAULT;
2273 else if (ret == -EOVERFLOW &&
2274 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2275 ret = -EFAULT;
2276
Yan, Zheng76dda932009-09-21 16:00:26 -04002277 return ret;
2278}
2279
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002280/*
Chris Masonac8e9812010-02-28 15:39:26 -05002281 * Search INODE_REFs to identify path name of 'dirid' directory
2282 * in a 'tree_id' tree. and sets path name to 'name'.
2283 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002284static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2285 u64 tree_id, u64 dirid, char *name)
2286{
2287 struct btrfs_root *root;
2288 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002289 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002290 int ret = -1;
2291 int slot;
2292 int len;
2293 int total_len = 0;
2294 struct btrfs_inode_ref *iref;
2295 struct extent_buffer *l;
2296 struct btrfs_path *path;
2297
2298 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2299 name[0]='\0';
2300 return 0;
2301 }
2302
2303 path = btrfs_alloc_path();
2304 if (!path)
2305 return -ENOMEM;
2306
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002307 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002308
2309 key.objectid = tree_id;
2310 key.type = BTRFS_ROOT_ITEM_KEY;
2311 key.offset = (u64)-1;
2312 root = btrfs_read_fs_root_no_name(info, &key);
2313 if (IS_ERR(root)) {
Misono Tomohiroad1e3d52018-05-21 13:57:27 +09002314 ret = PTR_ERR(root);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002315 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002316 }
2317
2318 key.objectid = dirid;
2319 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002320 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002321
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302322 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002323 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2324 if (ret < 0)
2325 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002326 else if (ret > 0) {
2327 ret = btrfs_previous_item(root, path, dirid,
2328 BTRFS_INODE_REF_KEY);
2329 if (ret < 0)
2330 goto out;
2331 else if (ret > 0) {
2332 ret = -ENOENT;
2333 goto out;
2334 }
2335 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002336
2337 l = path->nodes[0];
2338 slot = path->slots[0];
2339 btrfs_item_key_to_cpu(l, &key, slot);
2340
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002341 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2342 len = btrfs_inode_ref_name_len(l, iref);
2343 ptr -= len + 1;
2344 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002345 if (ptr < name) {
2346 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002347 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002348 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002349
2350 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302351 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002352
2353 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2354 break;
2355
David Sterbab3b4aa72011-04-21 01:20:15 +02002356 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002357 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002358 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002359 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002360 }
Li Zefan77906a502011-07-14 03:16:00 +00002361 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302362 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002363 ret = 0;
2364out:
2365 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002366 return ret;
2367}
2368
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002369static int btrfs_search_path_in_tree_user(struct inode *inode,
2370 struct btrfs_ioctl_ino_lookup_user_args *args)
2371{
2372 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2373 struct super_block *sb = inode->i_sb;
2374 struct btrfs_key upper_limit = BTRFS_I(inode)->location;
2375 u64 treeid = BTRFS_I(inode)->root->root_key.objectid;
2376 u64 dirid = args->dirid;
2377 unsigned long item_off;
2378 unsigned long item_len;
2379 struct btrfs_inode_ref *iref;
2380 struct btrfs_root_ref *rref;
2381 struct btrfs_root *root;
2382 struct btrfs_path *path;
2383 struct btrfs_key key, key2;
2384 struct extent_buffer *leaf;
2385 struct inode *temp_inode;
2386 char *ptr;
2387 int slot;
2388 int len;
2389 int total_len = 0;
2390 int ret;
2391
2392 path = btrfs_alloc_path();
2393 if (!path)
2394 return -ENOMEM;
2395
2396 /*
2397 * If the bottom subvolume does not exist directly under upper_limit,
2398 * construct the path in from the bottom up.
2399 */
2400 if (dirid != upper_limit.objectid) {
2401 ptr = &args->path[BTRFS_INO_LOOKUP_USER_PATH_MAX - 1];
2402
2403 key.objectid = treeid;
2404 key.type = BTRFS_ROOT_ITEM_KEY;
2405 key.offset = (u64)-1;
2406 root = btrfs_read_fs_root_no_name(fs_info, &key);
2407 if (IS_ERR(root)) {
2408 ret = PTR_ERR(root);
2409 goto out;
2410 }
2411
2412 key.objectid = dirid;
2413 key.type = BTRFS_INODE_REF_KEY;
2414 key.offset = (u64)-1;
2415 while (1) {
2416 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2417 if (ret < 0) {
2418 goto out;
2419 } else if (ret > 0) {
2420 ret = btrfs_previous_item(root, path, dirid,
2421 BTRFS_INODE_REF_KEY);
2422 if (ret < 0) {
2423 goto out;
2424 } else if (ret > 0) {
2425 ret = -ENOENT;
2426 goto out;
2427 }
2428 }
2429
2430 leaf = path->nodes[0];
2431 slot = path->slots[0];
2432 btrfs_item_key_to_cpu(leaf, &key, slot);
2433
2434 iref = btrfs_item_ptr(leaf, slot, struct btrfs_inode_ref);
2435 len = btrfs_inode_ref_name_len(leaf, iref);
2436 ptr -= len + 1;
2437 total_len += len + 1;
2438 if (ptr < args->path) {
2439 ret = -ENAMETOOLONG;
2440 goto out;
2441 }
2442
2443 *(ptr + len) = '/';
2444 read_extent_buffer(leaf, ptr,
2445 (unsigned long)(iref + 1), len);
2446
2447 /* Check the read+exec permission of this directory */
2448 ret = btrfs_previous_item(root, path, dirid,
2449 BTRFS_INODE_ITEM_KEY);
2450 if (ret < 0) {
2451 goto out;
2452 } else if (ret > 0) {
2453 ret = -ENOENT;
2454 goto out;
2455 }
2456
2457 leaf = path->nodes[0];
2458 slot = path->slots[0];
2459 btrfs_item_key_to_cpu(leaf, &key2, slot);
2460 if (key2.objectid != dirid) {
2461 ret = -ENOENT;
2462 goto out;
2463 }
2464
David Sterba4c66e0d2019-10-03 19:09:35 +02002465 temp_inode = btrfs_iget(sb, &key2, root);
Misono Tomohiro3ca57bd2018-06-04 16:41:07 +09002466 if (IS_ERR(temp_inode)) {
2467 ret = PTR_ERR(temp_inode);
2468 goto out;
2469 }
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002470 ret = inode_permission(temp_inode, MAY_READ | MAY_EXEC);
2471 iput(temp_inode);
2472 if (ret) {
2473 ret = -EACCES;
2474 goto out;
2475 }
2476
2477 if (key.offset == upper_limit.objectid)
2478 break;
2479 if (key.objectid == BTRFS_FIRST_FREE_OBJECTID) {
2480 ret = -EACCES;
2481 goto out;
2482 }
2483
2484 btrfs_release_path(path);
2485 key.objectid = key.offset;
2486 key.offset = (u64)-1;
2487 dirid = key.objectid;
2488 }
2489
2490 memmove(args->path, ptr, total_len);
2491 args->path[total_len] = '\0';
2492 btrfs_release_path(path);
2493 }
2494
2495 /* Get the bottom subvolume's name from ROOT_REF */
2496 root = fs_info->tree_root;
2497 key.objectid = treeid;
2498 key.type = BTRFS_ROOT_REF_KEY;
2499 key.offset = args->treeid;
2500 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2501 if (ret < 0) {
2502 goto out;
2503 } else if (ret > 0) {
2504 ret = -ENOENT;
2505 goto out;
2506 }
2507
2508 leaf = path->nodes[0];
2509 slot = path->slots[0];
2510 btrfs_item_key_to_cpu(leaf, &key, slot);
2511
2512 item_off = btrfs_item_ptr_offset(leaf, slot);
2513 item_len = btrfs_item_size_nr(leaf, slot);
2514 /* Check if dirid in ROOT_REF corresponds to passed dirid */
2515 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2516 if (args->dirid != btrfs_root_ref_dirid(leaf, rref)) {
2517 ret = -EINVAL;
2518 goto out;
2519 }
2520
2521 /* Copy subvolume's name */
2522 item_off += sizeof(struct btrfs_root_ref);
2523 item_len -= sizeof(struct btrfs_root_ref);
2524 read_extent_buffer(leaf, args->name, item_off, item_len);
2525 args->name[item_len] = 0;
2526
2527out:
2528 btrfs_free_path(path);
2529 return ret;
2530}
2531
Chris Masonac8e9812010-02-28 15:39:26 -05002532static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2533 void __user *argp)
2534{
Bart Van Asschebece2e82018-06-20 10:03:31 -07002535 struct btrfs_ioctl_ino_lookup_args *args;
2536 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002537 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002538
Julia Lawall2354d08f2010-10-29 15:14:18 -04002539 args = memdup_user(argp, sizeof(*args));
2540 if (IS_ERR(args))
2541 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002542
Al Viro496ad9a2013-01-23 17:07:38 -05002543 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002544
David Sterba01b810b2015-05-12 19:14:49 +02002545 /*
2546 * Unprivileged query to obtain the containing subvolume root id. The
2547 * path is reset so it's consistent with btrfs_search_path_in_tree.
2548 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002549 if (args->treeid == 0)
2550 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2551
David Sterba01b810b2015-05-12 19:14:49 +02002552 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2553 args->name[0] = 0;
2554 goto out;
2555 }
2556
2557 if (!capable(CAP_SYS_ADMIN)) {
2558 ret = -EPERM;
2559 goto out;
2560 }
2561
Chris Masonac8e9812010-02-28 15:39:26 -05002562 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2563 args->treeid, args->objectid,
2564 args->name);
2565
David Sterba01b810b2015-05-12 19:14:49 +02002566out:
Chris Masonac8e9812010-02-28 15:39:26 -05002567 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2568 ret = -EFAULT;
2569
2570 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002571 return ret;
2572}
2573
Tomohiro Misono23d0b792018-05-21 10:09:44 +09002574/*
2575 * Version of ino_lookup ioctl (unprivileged)
2576 *
2577 * The main differences from ino_lookup ioctl are:
2578 *
2579 * 1. Read + Exec permission will be checked using inode_permission() during
2580 * path construction. -EACCES will be returned in case of failure.
2581 * 2. Path construction will be stopped at the inode number which corresponds
2582 * to the fd with which this ioctl is called. If constructed path does not
2583 * exist under fd's inode, -EACCES will be returned.
2584 * 3. The name of bottom subvolume is also searched and filled.
2585 */
2586static int btrfs_ioctl_ino_lookup_user(struct file *file, void __user *argp)
2587{
2588 struct btrfs_ioctl_ino_lookup_user_args *args;
2589 struct inode *inode;
2590 int ret;
2591
2592 args = memdup_user(argp, sizeof(*args));
2593 if (IS_ERR(args))
2594 return PTR_ERR(args);
2595
2596 inode = file_inode(file);
2597
2598 if (args->dirid == BTRFS_FIRST_FREE_OBJECTID &&
2599 BTRFS_I(inode)->location.objectid != BTRFS_FIRST_FREE_OBJECTID) {
2600 /*
2601 * The subvolume does not exist under fd with which this is
2602 * called
2603 */
2604 kfree(args);
2605 return -EACCES;
2606 }
2607
2608 ret = btrfs_search_path_in_tree_user(inode, args);
2609
2610 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2611 ret = -EFAULT;
2612
2613 kfree(args);
2614 return ret;
2615}
2616
Tomohiro Misonob64ec072018-05-21 10:09:42 +09002617/* Get the subvolume information in BTRFS_ROOT_ITEM and BTRFS_ROOT_BACKREF */
2618static int btrfs_ioctl_get_subvol_info(struct file *file, void __user *argp)
2619{
2620 struct btrfs_ioctl_get_subvol_info_args *subvol_info;
2621 struct btrfs_fs_info *fs_info;
2622 struct btrfs_root *root;
2623 struct btrfs_path *path;
2624 struct btrfs_key key;
2625 struct btrfs_root_item *root_item;
2626 struct btrfs_root_ref *rref;
2627 struct extent_buffer *leaf;
2628 unsigned long item_off;
2629 unsigned long item_len;
2630 struct inode *inode;
2631 int slot;
2632 int ret = 0;
2633
2634 path = btrfs_alloc_path();
2635 if (!path)
2636 return -ENOMEM;
2637
2638 subvol_info = kzalloc(sizeof(*subvol_info), GFP_KERNEL);
2639 if (!subvol_info) {
2640 btrfs_free_path(path);
2641 return -ENOMEM;
2642 }
2643
2644 inode = file_inode(file);
2645 fs_info = BTRFS_I(inode)->root->fs_info;
2646
2647 /* Get root_item of inode's subvolume */
2648 key.objectid = BTRFS_I(inode)->root->root_key.objectid;
2649 key.type = BTRFS_ROOT_ITEM_KEY;
2650 key.offset = (u64)-1;
2651 root = btrfs_read_fs_root_no_name(fs_info, &key);
2652 if (IS_ERR(root)) {
2653 ret = PTR_ERR(root);
2654 goto out;
2655 }
2656 root_item = &root->root_item;
2657
2658 subvol_info->treeid = key.objectid;
2659
2660 subvol_info->generation = btrfs_root_generation(root_item);
2661 subvol_info->flags = btrfs_root_flags(root_item);
2662
2663 memcpy(subvol_info->uuid, root_item->uuid, BTRFS_UUID_SIZE);
2664 memcpy(subvol_info->parent_uuid, root_item->parent_uuid,
2665 BTRFS_UUID_SIZE);
2666 memcpy(subvol_info->received_uuid, root_item->received_uuid,
2667 BTRFS_UUID_SIZE);
2668
2669 subvol_info->ctransid = btrfs_root_ctransid(root_item);
2670 subvol_info->ctime.sec = btrfs_stack_timespec_sec(&root_item->ctime);
2671 subvol_info->ctime.nsec = btrfs_stack_timespec_nsec(&root_item->ctime);
2672
2673 subvol_info->otransid = btrfs_root_otransid(root_item);
2674 subvol_info->otime.sec = btrfs_stack_timespec_sec(&root_item->otime);
2675 subvol_info->otime.nsec = btrfs_stack_timespec_nsec(&root_item->otime);
2676
2677 subvol_info->stransid = btrfs_root_stransid(root_item);
2678 subvol_info->stime.sec = btrfs_stack_timespec_sec(&root_item->stime);
2679 subvol_info->stime.nsec = btrfs_stack_timespec_nsec(&root_item->stime);
2680
2681 subvol_info->rtransid = btrfs_root_rtransid(root_item);
2682 subvol_info->rtime.sec = btrfs_stack_timespec_sec(&root_item->rtime);
2683 subvol_info->rtime.nsec = btrfs_stack_timespec_nsec(&root_item->rtime);
2684
2685 if (key.objectid != BTRFS_FS_TREE_OBJECTID) {
2686 /* Search root tree for ROOT_BACKREF of this subvolume */
2687 root = fs_info->tree_root;
2688
2689 key.type = BTRFS_ROOT_BACKREF_KEY;
2690 key.offset = 0;
2691 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2692 if (ret < 0) {
2693 goto out;
2694 } else if (path->slots[0] >=
2695 btrfs_header_nritems(path->nodes[0])) {
2696 ret = btrfs_next_leaf(root, path);
2697 if (ret < 0) {
2698 goto out;
2699 } else if (ret > 0) {
2700 ret = -EUCLEAN;
2701 goto out;
2702 }
2703 }
2704
2705 leaf = path->nodes[0];
2706 slot = path->slots[0];
2707 btrfs_item_key_to_cpu(leaf, &key, slot);
2708 if (key.objectid == subvol_info->treeid &&
2709 key.type == BTRFS_ROOT_BACKREF_KEY) {
2710 subvol_info->parent_id = key.offset;
2711
2712 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2713 subvol_info->dirid = btrfs_root_ref_dirid(leaf, rref);
2714
2715 item_off = btrfs_item_ptr_offset(leaf, slot)
2716 + sizeof(struct btrfs_root_ref);
2717 item_len = btrfs_item_size_nr(leaf, slot)
2718 - sizeof(struct btrfs_root_ref);
2719 read_extent_buffer(leaf, subvol_info->name,
2720 item_off, item_len);
2721 } else {
2722 ret = -ENOENT;
2723 goto out;
2724 }
2725 }
2726
2727 if (copy_to_user(argp, subvol_info, sizeof(*subvol_info)))
2728 ret = -EFAULT;
2729
2730out:
2731 btrfs_free_path(path);
2732 kzfree(subvol_info);
2733 return ret;
2734}
2735
Tomohiro Misono42e4b522018-05-21 10:09:43 +09002736/*
2737 * Return ROOT_REF information of the subvolume containing this inode
2738 * except the subvolume name.
2739 */
2740static int btrfs_ioctl_get_subvol_rootref(struct file *file, void __user *argp)
2741{
2742 struct btrfs_ioctl_get_subvol_rootref_args *rootrefs;
2743 struct btrfs_root_ref *rref;
2744 struct btrfs_root *root;
2745 struct btrfs_path *path;
2746 struct btrfs_key key;
2747 struct extent_buffer *leaf;
2748 struct inode *inode;
2749 u64 objectid;
2750 int slot;
2751 int ret;
2752 u8 found;
2753
2754 path = btrfs_alloc_path();
2755 if (!path)
2756 return -ENOMEM;
2757
2758 rootrefs = memdup_user(argp, sizeof(*rootrefs));
2759 if (IS_ERR(rootrefs)) {
2760 btrfs_free_path(path);
2761 return PTR_ERR(rootrefs);
2762 }
2763
2764 inode = file_inode(file);
2765 root = BTRFS_I(inode)->root->fs_info->tree_root;
2766 objectid = BTRFS_I(inode)->root->root_key.objectid;
2767
2768 key.objectid = objectid;
2769 key.type = BTRFS_ROOT_REF_KEY;
2770 key.offset = rootrefs->min_treeid;
2771 found = 0;
2772
2773 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2774 if (ret < 0) {
2775 goto out;
2776 } else if (path->slots[0] >=
2777 btrfs_header_nritems(path->nodes[0])) {
2778 ret = btrfs_next_leaf(root, path);
2779 if (ret < 0) {
2780 goto out;
2781 } else if (ret > 0) {
2782 ret = -EUCLEAN;
2783 goto out;
2784 }
2785 }
2786 while (1) {
2787 leaf = path->nodes[0];
2788 slot = path->slots[0];
2789
2790 btrfs_item_key_to_cpu(leaf, &key, slot);
2791 if (key.objectid != objectid || key.type != BTRFS_ROOT_REF_KEY) {
2792 ret = 0;
2793 goto out;
2794 }
2795
2796 if (found == BTRFS_MAX_ROOTREF_BUFFER_NUM) {
2797 ret = -EOVERFLOW;
2798 goto out;
2799 }
2800
2801 rref = btrfs_item_ptr(leaf, slot, struct btrfs_root_ref);
2802 rootrefs->rootref[found].treeid = key.offset;
2803 rootrefs->rootref[found].dirid =
2804 btrfs_root_ref_dirid(leaf, rref);
2805 found++;
2806
2807 ret = btrfs_next_item(root, path);
2808 if (ret < 0) {
2809 goto out;
2810 } else if (ret > 0) {
2811 ret = -EUCLEAN;
2812 goto out;
2813 }
2814 }
2815
2816out:
2817 if (!ret || ret == -EOVERFLOW) {
2818 rootrefs->num_items = found;
2819 /* update min_treeid for next search */
2820 if (found)
2821 rootrefs->min_treeid =
2822 rootrefs->rootref[found - 1].treeid + 1;
2823 if (copy_to_user(argp, rootrefs, sizeof(*rootrefs)))
2824 ret = -EFAULT;
2825 }
2826
2827 kfree(rootrefs);
2828 btrfs_free_path(path);
2829
2830 return ret;
2831}
2832
Yan, Zheng76dda932009-09-21 16:00:26 -04002833static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2834 void __user *arg)
2835{
Al Viro54563d42013-09-01 15:57:51 -04002836 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002837 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002838 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002839 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002840 struct inode *inode;
2841 struct btrfs_root *root = BTRFS_I(dir)->root;
2842 struct btrfs_root *dest = NULL;
2843 struct btrfs_ioctl_vol_args *vol_args;
Yan, Zheng76dda932009-09-21 16:00:26 -04002844 int namelen;
Yan, Zheng76dda932009-09-21 16:00:26 -04002845 int err = 0;
2846
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002847 if (!S_ISDIR(dir->i_mode))
2848 return -ENOTDIR;
2849
Yan, Zheng76dda932009-09-21 16:00:26 -04002850 vol_args = memdup_user(arg, sizeof(*vol_args));
2851 if (IS_ERR(vol_args))
2852 return PTR_ERR(vol_args);
2853
2854 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2855 namelen = strlen(vol_args->name);
2856 if (strchr(vol_args->name, '/') ||
2857 strncmp(vol_args->name, "..", namelen) == 0) {
2858 err = -EINVAL;
2859 goto out;
2860 }
2861
Al Viroa561be72011-11-23 11:57:51 -05002862 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002863 if (err)
2864 goto out;
2865
David Sterba521e0542014-04-15 16:41:44 +02002866
Al Viro00235412016-05-26 00:05:12 -04002867 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2868 if (err == -EINTR)
2869 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002870 dentry = lookup_one_len(vol_args->name, parent, namelen);
2871 if (IS_ERR(dentry)) {
2872 err = PTR_ERR(dentry);
2873 goto out_unlock_dir;
2874 }
2875
David Howells2b0143b2015-03-17 22:25:59 +00002876 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002877 err = -ENOENT;
2878 goto out_dput;
2879 }
2880
David Howells2b0143b2015-03-17 22:25:59 +00002881 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002882 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302883 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002884 /*
2885 * Regular user. Only allow this with a special mount
2886 * option, when the user has write+exec access to the
2887 * subvol root, and when rmdir(2) would have been
2888 * allowed.
2889 *
2890 * Note that this is _not_ check that the subvol is
2891 * empty or doesn't contain data that we wouldn't
2892 * otherwise be able to delete.
2893 *
2894 * Users who want to delete empty subvols should try
2895 * rmdir(2).
2896 */
2897 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002898 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002899 goto out_dput;
2900
2901 /*
2902 * Do not allow deletion if the parent dir is the same
2903 * as the dir to be deleted. That means the ioctl
2904 * must be called on the dentry referencing the root
2905 * of the subvol, not a random directory contained
2906 * within it.
2907 */
2908 err = -EINVAL;
2909 if (root == dest)
2910 goto out_dput;
2911
2912 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2913 if (err)
2914 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002915 }
2916
Miao Xie5c39da52012-10-22 11:39:53 +00002917 /* check if subvolume may be deleted by a user */
2918 err = btrfs_may_delete(dir, dentry, 1);
2919 if (err)
2920 goto out_dput;
2921
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002922 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002923 err = -EINVAL;
2924 goto out_dput;
2925 }
2926
Al Viro59551022016-01-22 15:40:57 -05002927 inode_lock(inode);
Misono Tomohirof60a2362018-04-18 11:34:52 +09002928 err = btrfs_delete_subvolume(dir, dentry);
Al Viro59551022016-01-22 15:40:57 -05002929 inode_unlock(inode);
Amir Goldstein46008d92019-05-26 17:34:03 +03002930 if (!err) {
2931 fsnotify_rmdir(dir, dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002932 d_delete(dentry);
Amir Goldstein46008d92019-05-26 17:34:03 +03002933 }
Liu Bofa6ac872013-02-20 14:10:23 +00002934
Yan, Zheng76dda932009-09-21 16:00:26 -04002935out_dput:
2936 dput(dentry);
2937out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002938 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002939out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002940 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002941out:
2942 kfree(vol_args);
2943 return err;
2944}
2945
Chris Mason1e701a32010-03-11 09:42:04 -05002946static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002947{
Al Viro496ad9a2013-01-23 17:07:38 -05002948 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002949 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002950 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002951 int ret;
2952
Ilya Dryomov25122d12013-01-20 15:57:57 +02002953 ret = mnt_want_write_file(file);
2954 if (ret)
2955 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002956
Ilya Dryomov25122d12013-01-20 15:57:57 +02002957 if (btrfs_root_readonly(root)) {
2958 ret = -EROFS;
2959 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002960 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002961
2962 switch (inode->i_mode & S_IFMT) {
2963 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002964 if (!capable(CAP_SYS_ADMIN)) {
2965 ret = -EPERM;
2966 goto out;
2967 }
Eric Sandeende78b512013-01-31 18:21:12 +00002968 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002969 break;
2970 case S_IFREG:
Adam Borowski616d3742018-07-18 00:08:59 +02002971 /*
2972 * Note that this does not check the file descriptor for write
2973 * access. This prevents defragmenting executables that are
2974 * running and allows defrag on files open in read-only mode.
2975 */
2976 if (!capable(CAP_SYS_ADMIN) &&
2977 inode_permission(inode, MAY_WRITE)) {
2978 ret = -EPERM;
Chris Masone441d542009-01-05 16:57:23 -05002979 goto out;
2980 }
Chris Mason1e701a32010-03-11 09:42:04 -05002981
2982 range = kzalloc(sizeof(*range), GFP_KERNEL);
2983 if (!range) {
2984 ret = -ENOMEM;
2985 goto out;
2986 }
2987
2988 if (argp) {
2989 if (copy_from_user(range, argp,
2990 sizeof(*range))) {
2991 ret = -EFAULT;
2992 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002993 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002994 }
2995 /* compression requires us to start the IO */
2996 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2997 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2998 range->extent_thresh = (u32)-1;
2999 }
3000 } else {
3001 /* the rest are all set to zero by kzalloc */
3002 range->len = (u64)-1;
3003 }
Al Viro496ad9a2013-01-23 17:07:38 -05003004 ret = btrfs_defrag_file(file_inode(file), file,
Anand Jain7c829b72018-03-07 17:29:18 +08003005 range, BTRFS_OLDEST_GENERATION, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04003006 if (ret > 0)
3007 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05003008 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003009 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04003010 default:
3011 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003012 }
Chris Masone441d542009-01-05 16:57:23 -05003013out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02003014 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05003015 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003016}
3017
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003018static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003019{
3020 struct btrfs_ioctl_vol_args *vol_args;
3021 int ret;
3022
Chris Masone441d542009-01-05 16:57:23 -05003023 if (!capable(CAP_SYS_ADMIN))
3024 return -EPERM;
3025
David Sterba171938e2017-03-28 14:44:21 +02003026 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
Anand Jaine57138b2013-08-21 11:44:48 +08003027 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003028
Li Zefandae7b662009-04-08 15:06:54 +08003029 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003030 if (IS_ERR(vol_args)) {
3031 ret = PTR_ERR(vol_args);
3032 goto out;
3033 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003034
Mark Fasheh5516e592008-07-24 12:20:14 -04003035 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003036 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003037
Anand Jain43d20762014-07-01 00:58:56 +08003038 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003039 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08003040
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003041 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003042out:
David Sterba171938e2017-03-28 14:44:21 +02003043 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003044 return ret;
3045}
3046
Anand Jain6b526ed2016-02-13 10:01:39 +08003047static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003048{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003049 struct inode *inode = file_inode(file);
3050 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08003051 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003052 int ret;
3053
Chris Masone441d542009-01-05 16:57:23 -05003054 if (!capable(CAP_SYS_ADMIN))
3055 return -EPERM;
3056
Miao Xieda249272012-11-26 08:44:50 +00003057 ret = mnt_want_write_file(file);
3058 if (ret)
3059 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05003060
Li Zefandae7b662009-04-08 15:06:54 +08003061 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003062 if (IS_ERR(vol_args)) {
3063 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03003064 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02003065 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003066
Anand Jain6b526ed2016-02-13 10:01:39 +08003067 /* Check for compatibility reject unknown flags */
Omar Sandovalfd4e9942018-05-22 15:44:01 -07003068 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED) {
3069 ret = -EOPNOTSUPP;
3070 goto out;
3071 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003072
David Sterba171938e2017-03-28 14:44:21 +02003073 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jain183860f2013-05-17 10:52:45 +00003074 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
3075 goto out;
3076 }
3077
David Sterba735654e2016-02-15 18:15:21 +01003078 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003079 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08003080 } else {
3081 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003082 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08003083 }
David Sterba171938e2017-03-28 14:44:21 +02003084 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain183860f2013-05-17 10:52:45 +00003085
Anand Jain6b526ed2016-02-13 10:01:39 +08003086 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01003087 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003088 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08003089 vol_args->devid);
3090 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003091 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08003092 vol_args->name);
3093 }
Anand Jain183860f2013-05-17 10:52:45 +00003094out:
3095 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03003096err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02003097 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003098 return ret;
3099}
3100
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003101static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
3102{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003103 struct inode *inode = file_inode(file);
3104 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003105 struct btrfs_ioctl_vol_args *vol_args;
3106 int ret;
3107
3108 if (!capable(CAP_SYS_ADMIN))
3109 return -EPERM;
3110
3111 ret = mnt_want_write_file(file);
3112 if (ret)
3113 return ret;
3114
David Sterba171938e2017-03-28 14:44:21 +02003115 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003116 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02003117 goto out_drop_write;
3118 }
3119
3120 vol_args = memdup_user(arg, sizeof(*vol_args));
3121 if (IS_ERR(vol_args)) {
3122 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003123 goto out;
3124 }
3125
David Sterba58d7bbf2016-05-04 14:10:47 +02003126 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003127 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003128
3129 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003130 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003131 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02003132out:
David Sterba171938e2017-03-28 14:44:21 +02003133 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
David Sterba58d7bbf2016-05-04 14:10:47 +02003134out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003135 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02003136
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003137 return ret;
3138}
3139
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003140static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
3141 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003142{
Li Zefan027ed2f2011-06-08 08:27:56 +00003143 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01003144 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003145 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00003146 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01003147
Li Zefan027ed2f2011-06-08 08:27:56 +00003148 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
3149 if (!fi_args)
3150 return -ENOMEM;
3151
David Sterbad03262c2017-06-16 00:09:21 +02003152 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00003153 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01003154
David Sterbad03262c2017-06-16 00:09:21 +02003155 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00003156 if (device->devid > fi_args->max_id)
3157 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01003158 }
David Sterbad03262c2017-06-16 00:09:21 +02003159 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01003160
Nikolay Borisovde37aa52018-10-30 16:43:24 +02003161 memcpy(&fi_args->fsid, fs_devices->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07003162 fi_args->nodesize = fs_info->nodesize;
3163 fi_args->sectorsize = fs_info->sectorsize;
3164 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02003165
Li Zefan027ed2f2011-06-08 08:27:56 +00003166 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
3167 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01003168
Li Zefan027ed2f2011-06-08 08:27:56 +00003169 kfree(fi_args);
3170 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01003171}
3172
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003173static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
3174 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01003175{
3176 struct btrfs_ioctl_dev_info_args *di_args;
3177 struct btrfs_device *dev;
Jan Schmidt475f6382011-03-11 15:41:01 +01003178 int ret = 0;
3179 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01003180
Jan Schmidt475f6382011-03-11 15:41:01 +01003181 di_args = memdup_user(arg, sizeof(*di_args));
3182 if (IS_ERR(di_args))
3183 return PTR_ERR(di_args);
3184
Stefan Behrensdd5f9612013-08-15 17:11:20 +02003185 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01003186 s_uuid = di_args->uuid;
3187
David Sterbac5593ca2017-06-16 00:09:21 +02003188 rcu_read_lock();
Anand Jaine4319cd2019-01-17 23:32:31 +08003189 dev = btrfs_find_device(fs_info->fs_devices, di_args->devid, s_uuid,
Anand Jain09ba3bc2019-01-19 14:48:55 +08003190 NULL, true);
Jan Schmidt475f6382011-03-11 15:41:01 +01003191
3192 if (!dev) {
3193 ret = -ENODEV;
3194 goto out;
3195 }
3196
3197 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08003198 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
3199 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01003200 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02003201 if (dev->name) {
Misono Tomohiro672d5992018-08-02 16:19:07 +09003202 strncpy(di_args->path, rcu_str_deref(dev->name),
3203 sizeof(di_args->path) - 1);
Jim Meyeringa27202f2012-04-26 18:36:56 +02003204 di_args->path[sizeof(di_args->path) - 1] = 0;
3205 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01003206 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02003207 }
Jan Schmidt475f6382011-03-11 15:41:01 +01003208
3209out:
David Sterbac5593ca2017-06-16 00:09:21 +02003210 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01003211 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
3212 ret = -EFAULT;
3213
3214 kfree(di_args);
3215 return ret;
3216}
3217
Filipe Mananad8b55242019-01-08 11:43:07 +00003218static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
3219 struct inode *inode2, u64 loff2, u64 len)
3220{
3221 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
3222 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
3223}
3224
3225static void btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
3226 struct inode *inode2, u64 loff2, u64 len)
3227{
3228 if (inode1 < inode2) {
3229 swap(inode1, inode2);
3230 swap(loff1, loff2);
3231 } else if (inode1 == inode2 && loff2 < loff1) {
3232 swap(loff1, loff2);
3233 }
3234 lock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
3235 lock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
3236}
3237
Filipe Manana57a50e22018-12-12 18:05:59 +00003238static int btrfs_extent_same_range(struct inode *src, u64 loff, u64 len,
Filipe Manana34a28e32018-12-07 15:25:38 +00003239 struct inode *dst, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003240{
3241 int ret;
Mark Fashehf4414602015-06-30 14:42:05 -07003242
Filipe Manana34a28e32018-12-07 15:25:38 +00003243 /*
Filipe Mananad8b55242019-01-08 11:43:07 +00003244 * Lock destination range to serialize with concurrent readpages() and
3245 * source range to serialize with relocation.
Filipe Manana34a28e32018-12-07 15:25:38 +00003246 */
Filipe Mananad8b55242019-01-08 11:43:07 +00003247 btrfs_double_extent_lock(src, loff, dst, dst_loff, len);
Filipe Manana57a50e22018-12-12 18:05:59 +00003248 ret = btrfs_clone(src, dst, loff, len, len, dst_loff, 1);
Filipe Mananad8b55242019-01-08 11:43:07 +00003249 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Timofey Titovets39739092018-05-02 08:15:36 +03003250
3251 return ret;
3252}
3253
Timofey Titovetsb6728762018-05-02 08:15:37 +03003254#define BTRFS_MAX_DEDUPE_LEN SZ_16M
3255
Timofey Titovets39739092018-05-02 08:15:36 +03003256static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
3257 struct inode *dst, u64 dst_loff)
3258{
3259 int ret;
Timofey Titovetsb6728762018-05-02 08:15:37 +03003260 u64 i, tail_len, chunk_count;
Filipe Manana62d54f32019-04-22 16:43:42 +01003261 struct btrfs_root *root_dst = BTRFS_I(dst)->root;
3262
3263 spin_lock(&root_dst->root_item_lock);
3264 if (root_dst->send_in_progress) {
3265 btrfs_warn_rl(root_dst->fs_info,
3266"cannot deduplicate to root %llu while send operations are using it (%d in progress)",
3267 root_dst->root_key.objectid,
3268 root_dst->send_in_progress);
3269 spin_unlock(&root_dst->root_item_lock);
3270 return -EAGAIN;
3271 }
3272 root_dst->dedupe_in_progress++;
3273 spin_unlock(&root_dst->root_item_lock);
Timofey Titovets39739092018-05-02 08:15:36 +03003274
Timofey Titovetsb6728762018-05-02 08:15:37 +03003275 tail_len = olen % BTRFS_MAX_DEDUPE_LEN;
3276 chunk_count = div_u64(olen, BTRFS_MAX_DEDUPE_LEN);
Timofey Titovets67b07bd2018-05-02 08:15:38 +03003277
Timofey Titovetsb6728762018-05-02 08:15:37 +03003278 for (i = 0; i < chunk_count; i++) {
3279 ret = btrfs_extent_same_range(src, loff, BTRFS_MAX_DEDUPE_LEN,
Filipe Manana34a28e32018-12-07 15:25:38 +00003280 dst, dst_loff);
Timofey Titovetsb6728762018-05-02 08:15:37 +03003281 if (ret)
Filipe Manana62d54f32019-04-22 16:43:42 +01003282 goto out;
Timofey Titovetsb6728762018-05-02 08:15:37 +03003283
3284 loff += BTRFS_MAX_DEDUPE_LEN;
3285 dst_loff += BTRFS_MAX_DEDUPE_LEN;
3286 }
3287
3288 if (tail_len > 0)
Timofey Titovets67b07bd2018-05-02 08:15:38 +03003289 ret = btrfs_extent_same_range(src, loff, tail_len, dst,
Filipe Manana34a28e32018-12-07 15:25:38 +00003290 dst_loff);
Filipe Manana62d54f32019-04-22 16:43:42 +01003291out:
3292 spin_lock(&root_dst->root_item_lock);
3293 root_dst->dedupe_in_progress--;
3294 spin_unlock(&root_dst->root_item_lock);
Mark Fasheh416161d2013-08-06 11:42:51 -07003295
3296 return ret;
3297}
3298
Filipe Mananaf82a9902014-06-01 01:50:28 +01003299static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3300 struct inode *inode,
3301 u64 endoff,
3302 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003303 const u64 olen,
3304 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003305{
3306 struct btrfs_root *root = BTRFS_I(inode)->root;
3307 int ret;
3308
3309 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003310 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003311 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003312 /*
3313 * We round up to the block size at eof when determining which
3314 * extents to clone above, but shouldn't round up the file size.
3315 */
3316 if (endoff > destoff + olen)
3317 endoff = destoff + olen;
3318 if (endoff > inode->i_size)
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003319 btrfs_i_size_write(BTRFS_I(inode), endoff);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003320
3321 ret = btrfs_update_inode(trans, root, inode);
3322 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003323 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003324 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003325 goto out;
3326 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003327 ret = btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003328out:
3329 return ret;
3330}
3331
Filipe Manana8039d872015-10-13 15:15:00 +01003332/*
3333 * Make sure we do not end up inserting an inline extent into a file that has
3334 * already other (non-inline) extents. If a file has an inline extent it can
3335 * not have any other extents and the (single) inline extent must start at the
3336 * file offset 0. Failing to respect these rules will lead to file corruption,
3337 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3338 *
3339 * We can have extents that have been already written to disk or we can have
3340 * dirty ranges still in delalloc, in which case the extent maps and items are
3341 * created only when we run delalloc, and the delalloc ranges might fall outside
3342 * the range we are currently locking in the inode's io tree. So we check the
3343 * inode's i_size because of that (i_size updates are done while holding the
3344 * i_mutex, which we are holding here).
3345 * We also check to see if the inode has a size not greater than "datal" but has
3346 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3347 * protected against such concurrent fallocate calls by the i_mutex).
3348 *
3349 * If the file has no extents but a size greater than datal, do not allow the
3350 * copy because we would need turn the inline extent into a non-inline one (even
3351 * with NO_HOLES enabled). If we find our destination inode only has one inline
3352 * extent, just overwrite it with the source inline extent if its size is less
3353 * than the source extent's size, or we could copy the source inline extent's
3354 * data into the destination inode's inline extent if the later is greater then
3355 * the former.
3356 */
David Sterba4a0ab9d2017-02-10 20:18:49 +01003357static int clone_copy_inline_extent(struct inode *dst,
Filipe Manana8039d872015-10-13 15:15:00 +01003358 struct btrfs_trans_handle *trans,
3359 struct btrfs_path *path,
3360 struct btrfs_key *new_key,
3361 const u64 drop_start,
3362 const u64 datal,
3363 const u64 skip,
3364 const u64 size,
3365 char *inline_data)
3366{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003367 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
Filipe Manana8039d872015-10-13 15:15:00 +01003368 struct btrfs_root *root = BTRFS_I(dst)->root;
3369 const u64 aligned_end = ALIGN(new_key->offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003370 fs_info->sectorsize);
Filipe Manana8039d872015-10-13 15:15:00 +01003371 int ret;
3372 struct btrfs_key key;
3373
3374 if (new_key->offset > 0)
3375 return -EOPNOTSUPP;
3376
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003377 key.objectid = btrfs_ino(BTRFS_I(dst));
Filipe Manana8039d872015-10-13 15:15:00 +01003378 key.type = BTRFS_EXTENT_DATA_KEY;
3379 key.offset = 0;
3380 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3381 if (ret < 0) {
3382 return ret;
3383 } else if (ret > 0) {
3384 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3385 ret = btrfs_next_leaf(root, path);
3386 if (ret < 0)
3387 return ret;
3388 else if (ret > 0)
3389 goto copy_inline_extent;
3390 }
3391 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003392 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003393 key.type == BTRFS_EXTENT_DATA_KEY) {
3394 ASSERT(key.offset > 0);
3395 return -EOPNOTSUPP;
3396 }
3397 } else if (i_size_read(dst) <= datal) {
3398 struct btrfs_file_extent_item *ei;
3399 u64 ext_len;
3400
3401 /*
3402 * If the file size is <= datal, make sure there are no other
3403 * extents following (can happen do to an fallocate call with
3404 * the flag FALLOC_FL_KEEP_SIZE).
3405 */
3406 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3407 struct btrfs_file_extent_item);
3408 /*
3409 * If it's an inline extent, it can not have other extents
3410 * following it.
3411 */
3412 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3413 BTRFS_FILE_EXTENT_INLINE)
3414 goto copy_inline_extent;
3415
3416 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3417 if (ext_len > aligned_end)
3418 return -EOPNOTSUPP;
3419
3420 ret = btrfs_next_item(root, path);
3421 if (ret < 0) {
3422 return ret;
3423 } else if (ret == 0) {
3424 btrfs_item_key_to_cpu(path->nodes[0], &key,
3425 path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003426 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003427 key.type == BTRFS_EXTENT_DATA_KEY)
3428 return -EOPNOTSUPP;
3429 }
3430 }
3431
3432copy_inline_extent:
3433 /*
3434 * We have no extent items, or we have an extent at offset 0 which may
3435 * or may not be inlined. All these cases are dealt the same way.
3436 */
3437 if (i_size_read(dst) > datal) {
3438 /*
3439 * If the destination inode has an inline extent...
3440 * This would require copying the data from the source inline
3441 * extent into the beginning of the destination's inline extent.
3442 * But this is really complex, both extents can be compressed
3443 * or just one of them, which would require decompressing and
3444 * re-compressing data (which could increase the new compressed
3445 * size, not allowing the compressed data to fit anymore in an
3446 * inline extent).
3447 * So just don't support this case for now (it should be rare,
3448 * we are not really saving space when cloning inline extents).
3449 */
3450 return -EOPNOTSUPP;
3451 }
3452
3453 btrfs_release_path(path);
3454 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3455 if (ret)
3456 return ret;
3457 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3458 if (ret)
3459 return ret;
3460
3461 if (skip) {
3462 const u32 start = btrfs_file_extent_calc_inline_size(0);
3463
3464 memmove(inline_data + start, inline_data + start + skip, datal);
3465 }
3466
3467 write_extent_buffer(path->nodes[0], inline_data,
3468 btrfs_item_ptr_offset(path->nodes[0],
3469 path->slots[0]),
3470 size);
3471 inode_add_bytes(dst, datal);
Filipe Manana690a5db2019-07-05 11:09:50 +01003472 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(dst)->runtime_flags);
Filipe Manana8039d872015-10-13 15:15:00 +01003473
3474 return 0;
3475}
3476
Mark Fasheh32b7c682013-08-06 11:42:49 -07003477/**
3478 * btrfs_clone() - clone a range from inode file to another
3479 *
3480 * @src: Inode to clone from
3481 * @inode: Inode to clone to
3482 * @off: Offset within source to start clone from
3483 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003484 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003485 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003486 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003487 */
3488static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003489 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003490 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003491{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003492 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003493 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003494 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003495 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003496 struct btrfs_trans_handle *trans;
3497 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003498 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003499 u32 nritems;
3500 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003501 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003502 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003503 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003504
3505 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07003506 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3507 if (!buf)
3508 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003509
3510 path = btrfs_alloc_path();
3511 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003512 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003513 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003514 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003515
David Sterbae4058b52015-11-27 16:31:35 +01003516 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003517 /* clone data */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003518 key.objectid = btrfs_ino(BTRFS_I(src));
Yan Zhengae01a0a2008-08-04 23:23:47 -04003519 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003520 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003521
3522 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003523 u64 next_key_min_offset = key.offset + 1;
Filipe Mananab64119b2019-07-02 15:23:07 +01003524 struct btrfs_file_extent_item *extent;
3525 int type;
3526 u32 size;
3527 struct btrfs_key new_key;
3528 u64 disko = 0, diskl = 0;
3529 u64 datao = 0, datal = 0;
3530 u8 comp;
3531 u64 drop_start;
Filipe Mananadf858e72015-03-31 14:56:46 +01003532
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003533 /*
3534 * note the key will change type as we walk through the
3535 * tree.
3536 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003537 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003538 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3539 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003540 if (ret < 0)
3541 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003542 /*
3543 * First search, if no extent item that starts at offset off was
3544 * found but the previous item is an extent item, it's possible
3545 * it might overlap our target range, therefore process it.
3546 */
3547 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3548 btrfs_item_key_to_cpu(path->nodes[0], &key,
3549 path->slots[0] - 1);
3550 if (key.type == BTRFS_EXTENT_DATA_KEY)
3551 path->slots[0]--;
3552 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003553
Yan Zhengae01a0a2008-08-04 23:23:47 -04003554 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003555process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003556 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003557 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003558 if (ret < 0)
3559 goto out;
3560 if (ret > 0)
3561 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003562 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003563 }
3564 leaf = path->nodes[0];
3565 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003566
Yan Zhengae01a0a2008-08-04 23:23:47 -04003567 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003568 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003569 key.objectid != btrfs_ino(BTRFS_I(src)))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003570 break;
3571
Filipe Mananab64119b2019-07-02 15:23:07 +01003572 ASSERT(key.type == BTRFS_EXTENT_DATA_KEY);
Zheng Yan31840ae2008-09-23 13:14:14 -04003573
Filipe Mananab64119b2019-07-02 15:23:07 +01003574 extent = btrfs_item_ptr(leaf, slot,
3575 struct btrfs_file_extent_item);
3576 comp = btrfs_file_extent_compression(leaf, extent);
3577 type = btrfs_file_extent_type(leaf, extent);
3578 if (type == BTRFS_FILE_EXTENT_REG ||
3579 type == BTRFS_FILE_EXTENT_PREALLOC) {
3580 disko = btrfs_file_extent_disk_bytenr(leaf, extent);
3581 diskl = btrfs_file_extent_disk_num_bytes(leaf, extent);
3582 datao = btrfs_file_extent_offset(leaf, extent);
3583 datal = btrfs_file_extent_num_bytes(leaf, extent);
3584 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3585 /* Take upper bound, may be compressed */
3586 datal = btrfs_file_extent_ram_bytes(leaf, extent);
3587 }
3588
3589 /*
3590 * The first search might have left us at an extent item that
3591 * ends before our target range's start, can happen if we have
3592 * holes and NO_HOLES feature enabled.
3593 */
3594 if (key.offset + datal <= off) {
3595 path->slots[0]++;
3596 goto process_slot;
3597 } else if (key.offset >= off + len) {
3598 break;
3599 }
3600 next_key_min_offset = key.offset + datal;
3601 size = btrfs_item_size_nr(leaf, slot);
3602 read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf, slot),
3603 size);
3604
3605 btrfs_release_path(path);
3606 path->leave_spinning = 0;
3607
3608 memcpy(&new_key, &key, sizeof(new_key));
3609 new_key.objectid = btrfs_ino(BTRFS_I(inode));
3610 if (off <= key.offset)
3611 new_key.offset = key.offset + destoff - off;
3612 else
3613 new_key.offset = destoff;
3614
3615 /*
3616 * Deal with a hole that doesn't have an extent item that
3617 * represents it (NO_HOLES feature enabled).
3618 * This hole is either in the middle of the cloning range or at
3619 * the beginning (fully overlaps it or partially overlaps it).
3620 */
3621 if (new_key.offset != last_dest_end)
3622 drop_start = last_dest_end;
3623 else
3624 drop_start = new_key.offset;
3625
3626 if (type == BTRFS_FILE_EXTENT_REG ||
3627 type == BTRFS_FILE_EXTENT_PREALLOC) {
3628 struct btrfs_clone_extent_info clone_info;
Zheng Yan31840ae2008-09-23 13:14:14 -04003629
Filipe Manana2c463822014-05-31 02:31:05 +01003630 /*
Filipe Mananab64119b2019-07-02 15:23:07 +01003631 * a | --- range to clone ---| b
3632 * | ------------- extent ------------- |
Filipe Manana2c463822014-05-31 02:31:05 +01003633 */
Filipe Mananab64119b2019-07-02 15:23:07 +01003634
3635 /* Subtract range b */
3636 if (key.offset + datal > off + len)
3637 datal = off + len - key.offset;
3638
3639 /* Subtract range a */
3640 if (off > key.offset) {
3641 datao += off - key.offset;
3642 datal -= off - key.offset;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003643 }
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003644
Filipe Mananab64119b2019-07-02 15:23:07 +01003645 clone_info.disk_offset = disko;
3646 clone_info.disk_len = diskl;
3647 clone_info.data_offset = datao;
3648 clone_info.data_len = datal;
3649 clone_info.file_offset = new_key.offset;
3650 clone_info.extent_buf = buf;
3651 clone_info.item_size = size;
3652 ret = btrfs_punch_hole_range(inode, path,
Filipe Manana690a5db2019-07-05 11:09:50 +01003653 drop_start,
3654 new_key.offset + datal - 1,
3655 &clone_info, &trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003656 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003657 goto out;
Filipe Mananab64119b2019-07-02 15:23:07 +01003658 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3659 u64 skip = 0;
3660 u64 trim = 0;
3661
3662 if (off > key.offset) {
3663 skip = off - key.offset;
3664 new_key.offset += skip;
3665 }
3666
3667 if (key.offset + datal > off + len)
3668 trim = key.offset + datal - (off + len);
3669
3670 if (comp && (skip || trim)) {
3671 ret = -EINVAL;
3672 goto out;
3673 }
3674 size -= skip + trim;
3675 datal -= skip + trim;
3676
3677 /*
3678 * If our extent is inline, we know we will drop or
3679 * adjust at most 1 extent item in the destination root.
3680 *
3681 * 1 - adjusting old extent (we may have to split it)
3682 * 1 - add new extent
3683 * 1 - inode update
3684 */
3685 trans = btrfs_start_transaction(root, 3);
3686 if (IS_ERR(trans)) {
3687 ret = PTR_ERR(trans);
3688 goto out;
3689 }
3690
3691 ret = clone_copy_inline_extent(inode, trans, path,
3692 &new_key, drop_start,
3693 datal, skip, size, buf);
3694 if (ret) {
3695 if (ret != -EOPNOTSUPP)
3696 btrfs_abort_transaction(trans, ret);
3697 btrfs_end_transaction(trans);
3698 goto out;
3699 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003700 }
Filipe Mananab64119b2019-07-02 15:23:07 +01003701
3702 btrfs_release_path(path);
3703
3704 last_dest_end = ALIGN(new_key.offset + datal,
3705 fs_info->sectorsize);
3706 ret = clone_finish_inode_update(trans, inode, last_dest_end,
3707 destoff, olen, no_time_update);
3708 if (ret)
3709 goto out;
3710 if (new_key.offset + datal >= destoff + len)
3711 break;
3712
David Sterbab3b4aa72011-04-21 01:20:15 +02003713 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003714 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003715
3716 if (fatal_signal_pending(current)) {
3717 ret = -EINTR;
3718 goto out;
3719 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003720 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003721 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003722
Filipe Mananaf82a9902014-06-01 01:50:28 +01003723 if (last_dest_end < destoff + len) {
Filipe Manana690a5db2019-07-05 11:09:50 +01003724 struct btrfs_clone_extent_info clone_info = { 0 };
Filipe Mananaf82a9902014-06-01 01:50:28 +01003725 /*
3726 * We have an implicit hole (NO_HOLES feature is enabled) that
3727 * fully or partially overlaps our cloning range at its end.
3728 */
3729 btrfs_release_path(path);
Filipe Manana690a5db2019-07-05 11:09:50 +01003730 path->leave_spinning = 0;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003731
3732 /*
Filipe Manana690a5db2019-07-05 11:09:50 +01003733 * We are dealing with a hole and our clone_info already has a
3734 * disk_offset of 0, we only need to fill the data length and
3735 * file offset.
Filipe Mananaf82a9902014-06-01 01:50:28 +01003736 */
Filipe Manana690a5db2019-07-05 11:09:50 +01003737 clone_info.data_len = destoff + len - last_dest_end;
3738 clone_info.file_offset = last_dest_end;
3739 ret = btrfs_punch_hole_range(inode, path,
3740 last_dest_end, destoff + len - 1,
3741 &clone_info, &trans);
3742 if (ret)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003743 goto out;
Filipe Manana690a5db2019-07-05 11:09:50 +01003744
Filipe Mananaf82a9902014-06-01 01:50:28 +01003745 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003746 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003747 }
3748
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003749out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003750 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003751 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003752 return ret;
3753}
3754
Zach Brown3db11b22015-11-10 16:53:32 -05003755static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3756 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003757{
Al Viro54563d42013-09-01 15:57:51 -04003758 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003759 struct inode *src = file_inode(file_src);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003760 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003761 int ret;
3762 u64 len = olen;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003763 u64 bs = fs_info->sb->s_blocksize;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003764
3765 /*
3766 * TODO:
3767 * - split compressed inline extents. annoying: we need to
3768 * decompress into destination's address_space (the file offset
3769 * may change, so source mapping won't do), then recompress (or
3770 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003771 *
3772 * - split destination inode's inline extents. The inline extents can
3773 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003774 */
3775
Filipe Mananaac765f82018-11-05 11:14:17 +00003776 /*
Filipe Manana34a28e32018-12-07 15:25:38 +00003777 * VFS's generic_remap_file_range_prep() protects us from cloning the
3778 * eof block into the middle of a file, which would result in corruption
3779 * if the file size is not blocksize aligned. So we don't need to check
3780 * for that case here.
Filipe Mananaac765f82018-11-05 11:14:17 +00003781 */
Filipe Manana34a28e32018-12-07 15:25:38 +00003782 if (off + len == src->i_size)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003783 len = ALIGN(src->i_size, bs) - off;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003784
3785 if (destoff > inode->i_size) {
Filipe Mananaf7fa1102019-01-08 11:42:54 +00003786 const u64 wb_start = ALIGN_DOWN(inode->i_size, bs);
3787
Mark Fasheh32b7c682013-08-06 11:42:49 -07003788 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3789 if (ret)
Filipe Manana34a28e32018-12-07 15:25:38 +00003790 return ret;
Filipe Mananaf7fa1102019-01-08 11:42:54 +00003791 /*
3792 * We may have truncated the last block if the inode's size is
3793 * not sector size aligned, so we need to wait for writeback to
3794 * complete before proceeding further, otherwise we can race
3795 * with cloning and attempt to increment a reference to an
3796 * extent that no longer exists (writeback completed right after
3797 * we found the previous extent covering eof and before we
3798 * attempted to increment its reference count).
3799 */
3800 ret = btrfs_wait_ordered_range(inode, wb_start,
3801 destoff - wb_start);
3802 if (ret)
3803 return ret;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003804 }
3805
Filipe Mananac125b8b2014-05-23 05:03:34 +01003806 /*
Filipe Mananad8b55242019-01-08 11:43:07 +00003807 * Lock destination range to serialize with concurrent readpages() and
3808 * source range to serialize with relocation.
Filipe Mananac125b8b2014-05-23 05:03:34 +01003809 */
Filipe Mananad8b55242019-01-08 11:43:07 +00003810 btrfs_double_extent_lock(src, off, inode, destoff, len);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003811 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Filipe Mananad8b55242019-01-08 11:43:07 +00003812 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003813 /*
3814 * Truncate page cache pages so that future reads will see the cloned
3815 * data immediately and not the previous data.
3816 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303817 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003818 round_down(destoff, PAGE_SIZE),
3819 round_up(destoff + len, PAGE_SIZE) - 1);
Filipe Manana34a28e32018-12-07 15:25:38 +00003820
3821 return ret;
3822}
3823
3824static int btrfs_remap_file_range_prep(struct file *file_in, loff_t pos_in,
3825 struct file *file_out, loff_t pos_out,
3826 loff_t *len, unsigned int remap_flags)
3827{
3828 struct inode *inode_in = file_inode(file_in);
3829 struct inode *inode_out = file_inode(file_out);
3830 u64 bs = BTRFS_I(inode_out)->root->fs_info->sb->s_blocksize;
3831 bool same_inode = inode_out == inode_in;
3832 u64 wb_len;
3833 int ret;
3834
3835 if (!(remap_flags & REMAP_FILE_DEDUP)) {
3836 struct btrfs_root *root_out = BTRFS_I(inode_out)->root;
3837
3838 if (btrfs_root_readonly(root_out))
3839 return -EROFS;
3840
3841 if (file_in->f_path.mnt != file_out->f_path.mnt ||
3842 inode_in->i_sb != inode_out->i_sb)
3843 return -EXDEV;
3844 }
3845
Filipe Manana500710d2018-12-12 18:05:56 +00003846 /* don't make the dst file partly checksummed */
3847 if ((BTRFS_I(inode_in)->flags & BTRFS_INODE_NODATASUM) !=
3848 (BTRFS_I(inode_out)->flags & BTRFS_INODE_NODATASUM)) {
Goldwyn Rodrigues7984ae52019-02-25 13:07:44 -06003849 return -EINVAL;
Filipe Manana500710d2018-12-12 18:05:56 +00003850 }
3851
Filipe Manana34a28e32018-12-07 15:25:38 +00003852 /*
3853 * Now that the inodes are locked, we need to start writeback ourselves
3854 * and can not rely on the writeback from the VFS's generic helper
3855 * generic_remap_file_range_prep() because:
3856 *
3857 * 1) For compression we must call filemap_fdatawrite_range() range
3858 * twice (btrfs_fdatawrite_range() does it for us), and the generic
3859 * helper only calls it once;
3860 *
3861 * 2) filemap_fdatawrite_range(), called by the generic helper only
3862 * waits for the writeback to complete, i.e. for IO to be done, and
3863 * not for the ordered extents to complete. We need to wait for them
3864 * to complete so that new file extent items are in the fs tree.
3865 */
3866 if (*len == 0 && !(remap_flags & REMAP_FILE_DEDUP))
3867 wb_len = ALIGN(inode_in->i_size, bs) - ALIGN_DOWN(pos_in, bs);
3868 else
3869 wb_len = ALIGN(*len, bs);
3870
3871 /*
3872 * Since we don't lock ranges, wait for ongoing lockless dio writes (as
3873 * any in progress could create its ordered extents after we wait for
3874 * existing ordered extents below).
3875 */
3876 inode_dio_wait(inode_in);
3877 if (!same_inode)
3878 inode_dio_wait(inode_out);
3879
Qu Wenruoa94d1d02019-05-08 18:49:58 +08003880 /*
3881 * Workaround to make sure NOCOW buffered write reach disk as NOCOW.
3882 *
3883 * Btrfs' back references do not have a block level granularity, they
3884 * work at the whole extent level.
3885 * NOCOW buffered write without data space reserved may not be able
3886 * to fall back to CoW due to lack of data space, thus could cause
3887 * data loss.
3888 *
3889 * Here we take a shortcut by flushing the whole inode, so that all
3890 * nocow write should reach disk as nocow before we increase the
3891 * reference of the extent. We could do better by only flushing NOCOW
3892 * data, but that needs extra accounting.
3893 *
3894 * Also we don't need to check ASYNC_EXTENT, as async extent will be
3895 * CoWed anyway, not affecting nocow part.
3896 */
3897 ret = filemap_flush(inode_in->i_mapping);
3898 if (ret < 0)
3899 return ret;
3900
Filipe Manana34a28e32018-12-07 15:25:38 +00003901 ret = btrfs_wait_ordered_range(inode_in, ALIGN_DOWN(pos_in, bs),
3902 wb_len);
3903 if (ret < 0)
Goldwyn Rodrigues7984ae52019-02-25 13:07:44 -06003904 return ret;
Filipe Manana34a28e32018-12-07 15:25:38 +00003905 ret = btrfs_wait_ordered_range(inode_out, ALIGN_DOWN(pos_out, bs),
3906 wb_len);
3907 if (ret < 0)
Goldwyn Rodrigues7984ae52019-02-25 13:07:44 -06003908 return ret;
Filipe Manana34a28e32018-12-07 15:25:38 +00003909
Goldwyn Rodrigues7984ae52019-02-25 13:07:44 -06003910 return generic_remap_file_range_prep(file_in, pos_in, file_out, pos_out,
Filipe Manana34a28e32018-12-07 15:25:38 +00003911 len, remap_flags);
Zach Brown3db11b22015-11-10 16:53:32 -05003912}
3913
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11003914loff_t btrfs_remap_file_range(struct file *src_file, loff_t off,
3915 struct file *dst_file, loff_t destoff, loff_t len,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003916 unsigned int remap_flags)
Zach Brown3db11b22015-11-10 16:53:32 -05003917{
Filipe Manana34a28e32018-12-07 15:25:38 +00003918 struct inode *src_inode = file_inode(src_file);
3919 struct inode *dst_inode = file_inode(dst_file);
3920 bool same_inode = dst_inode == src_inode;
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11003921 int ret;
3922
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003923 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
3924 return -EINVAL;
3925
Goldwyn Rodrigues7984ae52019-02-25 13:07:44 -06003926 if (same_inode)
3927 inode_lock(src_inode);
3928 else
3929 lock_two_nondirectories(src_inode, dst_inode);
3930
Filipe Manana34a28e32018-12-07 15:25:38 +00003931 ret = btrfs_remap_file_range_prep(src_file, off, dst_file, destoff,
3932 &len, remap_flags);
3933 if (ret < 0 || len == 0)
Goldwyn Rodrigues7984ae52019-02-25 13:07:44 -06003934 goto out_unlock;
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11003935
Filipe Manana34a28e32018-12-07 15:25:38 +00003936 if (remap_flags & REMAP_FILE_DEDUP)
3937 ret = btrfs_extent_same(src_inode, off, len, dst_inode, destoff);
3938 else
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11003939 ret = btrfs_clone_files(dst_file, src_file, off, len, destoff);
Filipe Manana34a28e32018-12-07 15:25:38 +00003940
Goldwyn Rodrigues7984ae52019-02-25 13:07:44 -06003941out_unlock:
Filipe Manana34a28e32018-12-07 15:25:38 +00003942 if (same_inode)
3943 inode_unlock(src_inode);
3944 else
Filipe Manana4ea748e2019-02-26 12:06:09 +00003945 unlock_two_nondirectories(src_inode, dst_inode);
Filipe Manana34a28e32018-12-07 15:25:38 +00003946
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11003947 return ret < 0 ? ret : len;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003948}
3949
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003950static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3951{
Al Viro496ad9a2013-01-23 17:07:38 -05003952 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003953 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003954 struct btrfs_root *root = BTRFS_I(inode)->root;
3955 struct btrfs_root *new_root;
3956 struct btrfs_dir_item *di;
3957 struct btrfs_trans_handle *trans;
3958 struct btrfs_path *path;
3959 struct btrfs_key location;
3960 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003961 u64 objectid = 0;
3962 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003963 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003964
3965 if (!capable(CAP_SYS_ADMIN))
3966 return -EPERM;
3967
Miao Xie3c04ce02012-11-26 08:43:07 +00003968 ret = mnt_want_write_file(file);
3969 if (ret)
3970 return ret;
3971
3972 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3973 ret = -EFAULT;
3974 goto out;
3975 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003976
3977 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303978 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003979
3980 location.objectid = objectid;
3981 location.type = BTRFS_ROOT_ITEM_KEY;
3982 location.offset = (u64)-1;
3983
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003984 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003985 if (IS_ERR(new_root)) {
3986 ret = PTR_ERR(new_root);
3987 goto out;
3988 }
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09003989 if (!is_fstree(new_root->root_key.objectid)) {
satoru takeuchi6d6d2822017-09-12 22:42:52 +09003990 ret = -ENOENT;
3991 goto out;
3992 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003993
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003994 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003995 if (!path) {
3996 ret = -ENOMEM;
3997 goto out;
3998 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003999 path->leave_spinning = 1;
4000
4001 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004002 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004003 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00004004 ret = PTR_ERR(trans);
4005 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004006 }
4007
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004008 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4009 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004010 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00004011 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004012 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004013 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004014 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004015 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00004016 ret = -ENOENT;
4017 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004018 }
4019
4020 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4021 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4022 btrfs_mark_buffer_dirty(path->nodes[0]);
4023 btrfs_free_path(path);
4024
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004025 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004026 btrfs_end_transaction(trans);
Miao Xie3c04ce02012-11-26 08:43:07 +00004027out:
4028 mnt_drop_write_file(file);
4029 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004030}
4031
Su Yuec065f5b12018-04-02 17:24:11 +08004032static void get_block_group_info(struct list_head *groups_list,
4033 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004034{
4035 struct btrfs_block_group_cache *block_group;
4036
4037 space->total_bytes = 0;
4038 space->used_bytes = 0;
4039 space->flags = 0;
4040 list_for_each_entry(block_group, groups_list, list) {
4041 space->flags = block_group->flags;
4042 space->total_bytes += block_group->key.offset;
4043 space->used_bytes +=
4044 btrfs_block_group_used(&block_group->item);
4045 }
4046}
4047
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004048static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
4049 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004050{
4051 struct btrfs_ioctl_space_args space_args;
4052 struct btrfs_ioctl_space_info space;
4053 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004054 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004055 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004056 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01004057 static const u64 types[] = {
4058 BTRFS_BLOCK_GROUP_DATA,
4059 BTRFS_BLOCK_GROUP_SYSTEM,
4060 BTRFS_BLOCK_GROUP_METADATA,
4061 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
4062 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004063 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004064 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004065 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004066 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004067 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004068
4069 if (copy_from_user(&space_args,
4070 (struct btrfs_ioctl_space_args __user *)arg,
4071 sizeof(space_args)))
4072 return -EFAULT;
4073
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004074 for (i = 0; i < num_types; i++) {
4075 struct btrfs_space_info *tmp;
4076
4077 info = NULL;
4078 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004079 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004080 list) {
4081 if (tmp->flags == types[i]) {
4082 info = tmp;
4083 break;
4084 }
4085 }
4086 rcu_read_unlock();
4087
4088 if (!info)
4089 continue;
4090
4091 down_read(&info->groups_sem);
4092 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4093 if (!list_empty(&info->block_groups[c]))
4094 slot_count++;
4095 }
4096 up_read(&info->groups_sem);
4097 }
Josef Bacik1406e432010-01-13 18:19:06 +00004098
David Sterba36523e952014-02-07 14:34:12 +01004099 /*
4100 * Global block reserve, exported as a space_info
4101 */
4102 slot_count++;
4103
Chris Mason7fde62b2010-03-16 15:40:10 -04004104 /* space_slots == 0 means they are asking for a count */
4105 if (space_args.space_slots == 0) {
4106 space_args.total_spaces = slot_count;
4107 goto out;
4108 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004109
Dan Rosenberg51788b12011-02-14 16:04:23 -05004110 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004111
Chris Mason7fde62b2010-03-16 15:40:10 -04004112 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004113
Chris Mason7fde62b2010-03-16 15:40:10 -04004114 /* we generally have at most 6 or so space infos, one for each raid
4115 * level. So, a whole page should be more than enough for everyone
4116 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004117 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04004118 return -ENOMEM;
4119
4120 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01004121 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04004122 if (!dest)
4123 return -ENOMEM;
4124 dest_orig = dest;
4125
4126 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004127 for (i = 0; i < num_types; i++) {
4128 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004129
Dan Rosenberg51788b12011-02-14 16:04:23 -05004130 if (!slot_count)
4131 break;
4132
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004133 info = NULL;
4134 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004135 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004136 list) {
4137 if (tmp->flags == types[i]) {
4138 info = tmp;
4139 break;
4140 }
4141 }
4142 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004143
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004144 if (!info)
4145 continue;
4146 down_read(&info->groups_sem);
4147 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4148 if (!list_empty(&info->block_groups[c])) {
Su Yuec065f5b12018-04-02 17:24:11 +08004149 get_block_group_info(&info->block_groups[c],
4150 &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004151 memcpy(dest, &space, sizeof(space));
4152 dest++;
4153 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004154 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004155 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004156 if (!slot_count)
4157 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004158 }
4159 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004160 }
Josef Bacik1406e432010-01-13 18:19:06 +00004161
David Sterba36523e952014-02-07 14:34:12 +01004162 /*
4163 * Add global block reserve
4164 */
4165 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004166 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01004167
4168 spin_lock(&block_rsv->lock);
4169 space.total_bytes = block_rsv->size;
4170 space.used_bytes = block_rsv->size - block_rsv->reserved;
4171 spin_unlock(&block_rsv->lock);
4172 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4173 memcpy(dest, &space, sizeof(space));
4174 space_args.total_spaces++;
4175 }
4176
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004177 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004178 (arg + sizeof(struct btrfs_ioctl_space_args));
4179
4180 if (copy_to_user(user_dest, dest_orig, alloc_size))
4181 ret = -EFAULT;
4182
4183 kfree(dest_orig);
4184out:
4185 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004186 ret = -EFAULT;
4187
4188 return ret;
4189}
4190
Miao Xie9a8c28b2012-11-26 08:40:43 +00004191static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4192 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004193{
Sage Weil46204592010-10-29 15:41:32 -04004194 struct btrfs_trans_handle *trans;
4195 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004196 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004197
Miao Xied4edf392013-02-20 09:17:06 +00004198 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004199 if (IS_ERR(trans)) {
4200 if (PTR_ERR(trans) != -ENOENT)
4201 return PTR_ERR(trans);
4202
4203 /* No running transaction, don't bother */
4204 transid = root->fs_info->last_trans_committed;
4205 goto out;
4206 }
Sage Weil46204592010-10-29 15:41:32 -04004207 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004208 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004209 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004210 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004211 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004212 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004213out:
Sage Weil46204592010-10-29 15:41:32 -04004214 if (argp)
4215 if (copy_to_user(argp, &transid, sizeof(transid)))
4216 return -EFAULT;
4217 return 0;
4218}
4219
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004220static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00004221 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004222{
Sage Weil46204592010-10-29 15:41:32 -04004223 u64 transid;
4224
4225 if (argp) {
4226 if (copy_from_user(&transid, argp, sizeof(transid)))
4227 return -EFAULT;
4228 } else {
4229 transid = 0; /* current trans */
4230 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004231 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04004232}
4233
Miao Xieb8e95482012-11-26 08:48:01 +00004234static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004235{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004236 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01004237 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004238 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004239
4240 if (!capable(CAP_SYS_ADMIN))
4241 return -EPERM;
4242
4243 sa = memdup_user(arg, sizeof(*sa));
4244 if (IS_ERR(sa))
4245 return PTR_ERR(sa);
4246
Miao Xieb8e95482012-11-26 08:48:01 +00004247 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4248 ret = mnt_want_write_file(file);
4249 if (ret)
4250 goto out;
4251 }
4252
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004253 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004254 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4255 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004256
Filipe Manana06fe39a2018-12-14 19:50:17 +00004257 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
Jan Schmidt475f6382011-03-11 15:41:01 +01004258 ret = -EFAULT;
4259
Miao Xieb8e95482012-11-26 08:48:01 +00004260 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4261 mnt_drop_write_file(file);
4262out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004263 kfree(sa);
4264 return ret;
4265}
4266
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004267static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01004268{
4269 if (!capable(CAP_SYS_ADMIN))
4270 return -EPERM;
4271
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004272 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004273}
4274
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004275static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01004276 void __user *arg)
4277{
4278 struct btrfs_ioctl_scrub_args *sa;
4279 int ret;
4280
4281 if (!capable(CAP_SYS_ADMIN))
4282 return -EPERM;
4283
4284 sa = memdup_user(arg, sizeof(*sa));
4285 if (IS_ERR(sa))
4286 return PTR_ERR(sa);
4287
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004288 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01004289
Filipe Manana4fa99b02018-12-14 19:45:13 +00004290 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
Jan Schmidt475f6382011-03-11 15:41:01 +01004291 ret = -EFAULT;
4292
4293 kfree(sa);
4294 return ret;
4295}
4296
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004297static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06004298 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004299{
4300 struct btrfs_ioctl_get_dev_stats *sa;
4301 int ret;
4302
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004303 sa = memdup_user(arg, sizeof(*sa));
4304 if (IS_ERR(sa))
4305 return PTR_ERR(sa);
4306
David Sterbab27f7c02012-06-22 06:30:39 -06004307 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4308 kfree(sa);
4309 return -EPERM;
4310 }
4311
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004312 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004313
Filipe Mananaeee99572018-12-14 19:45:22 +00004314 if (ret == 0 && copy_to_user(arg, sa, sizeof(*sa)))
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004315 ret = -EFAULT;
4316
4317 kfree(sa);
4318 return ret;
4319}
4320
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004321static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4322 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004323{
4324 struct btrfs_ioctl_dev_replace_args *p;
4325 int ret;
4326
4327 if (!capable(CAP_SYS_ADMIN))
4328 return -EPERM;
4329
4330 p = memdup_user(arg, sizeof(*p));
4331 if (IS_ERR(p))
4332 return PTR_ERR(p);
4333
4334 switch (p->cmd) {
4335 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01004336 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004337 ret = -EROFS;
4338 goto out;
4339 }
David Sterba171938e2017-03-28 14:44:21 +02004340 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004341 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004342 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004343 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
David Sterba171938e2017-03-28 14:44:21 +02004344 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004345 }
4346 break;
4347 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004348 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004349 ret = 0;
4350 break;
4351 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Anand Jain17d202b2018-02-12 23:33:30 +08004352 p->result = btrfs_dev_replace_cancel(fs_info);
Anand Jain97282032018-02-12 23:33:29 +08004353 ret = 0;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004354 break;
4355 default:
4356 ret = -EINVAL;
4357 break;
4358 }
4359
Filipe Mananad3a53282019-01-08 11:42:09 +00004360 if ((ret == 0 || ret == -ECANCELED) && copy_to_user(arg, p, sizeof(*p)))
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004361 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004362out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004363 kfree(p);
4364 return ret;
4365}
4366
Jan Schmidtd7728c92011-07-07 16:48:38 +02004367static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4368{
4369 int ret = 0;
4370 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004371 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004372 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004373 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004374 struct inode_fs_paths *ipath = NULL;
4375 struct btrfs_path *path;
4376
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004377 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004378 return -EPERM;
4379
4380 path = btrfs_alloc_path();
4381 if (!path) {
4382 ret = -ENOMEM;
4383 goto out;
4384 }
4385
4386 ipa = memdup_user(arg, sizeof(*ipa));
4387 if (IS_ERR(ipa)) {
4388 ret = PTR_ERR(ipa);
4389 ipa = NULL;
4390 goto out;
4391 }
4392
4393 size = min_t(u32, ipa->size, 4096);
4394 ipath = init_ipath(size, root, path);
4395 if (IS_ERR(ipath)) {
4396 ret = PTR_ERR(ipath);
4397 ipath = NULL;
4398 goto out;
4399 }
4400
4401 ret = paths_from_inode(ipa->inum, ipath);
4402 if (ret < 0)
4403 goto out;
4404
4405 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004406 rel_ptr = ipath->fspath->val[i] -
4407 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004408 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004409 }
4410
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004411 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
4412 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004413 if (ret) {
4414 ret = -EFAULT;
4415 goto out;
4416 }
4417
4418out:
4419 btrfs_free_path(path);
4420 free_ipath(ipath);
4421 kfree(ipa);
4422
4423 return ret;
4424}
4425
4426static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4427{
4428 struct btrfs_data_container *inodes = ctx;
4429 const size_t c = 3 * sizeof(u64);
4430
4431 if (inodes->bytes_left >= c) {
4432 inodes->bytes_left -= c;
4433 inodes->val[inodes->elem_cnt] = inum;
4434 inodes->val[inodes->elem_cnt + 1] = offset;
4435 inodes->val[inodes->elem_cnt + 2] = root;
4436 inodes->elem_cnt += 3;
4437 } else {
4438 inodes->bytes_missing += c - inodes->bytes_left;
4439 inodes->bytes_left = 0;
4440 inodes->elem_missed += 3;
4441 }
4442
4443 return 0;
4444}
4445
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004446static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004447 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004448{
4449 int ret = 0;
4450 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004451 struct btrfs_ioctl_logical_ino_args *loi;
4452 struct btrfs_data_container *inodes = NULL;
4453 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004454 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004455
4456 if (!capable(CAP_SYS_ADMIN))
4457 return -EPERM;
4458
4459 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304460 if (IS_ERR(loi))
4461 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004462
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004463 if (version == 1) {
4464 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004465 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004466 } else {
4467 /* All reserved bits must be 0 for now */
4468 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
4469 ret = -EINVAL;
4470 goto out_loi;
4471 }
4472 /* Only accept flags we have defined so far */
4473 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
4474 ret = -EINVAL;
4475 goto out_loi;
4476 }
4477 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004478 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004479 }
4480
Jan Schmidtd7728c92011-07-07 16:48:38 +02004481 path = btrfs_alloc_path();
4482 if (!path) {
4483 ret = -ENOMEM;
4484 goto out;
4485 }
4486
Jan Schmidtd7728c92011-07-07 16:48:38 +02004487 inodes = init_data_container(size);
4488 if (IS_ERR(inodes)) {
4489 ret = PTR_ERR(inodes);
4490 inodes = NULL;
4491 goto out;
4492 }
4493
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004494 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004495 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06004496 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004497 ret = -ENOENT;
4498 if (ret < 0)
4499 goto out;
4500
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004501 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4502 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004503 if (ret)
4504 ret = -EFAULT;
4505
4506out:
4507 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004508 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004509out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02004510 kfree(loi);
4511
4512 return ret;
4513}
4514
David Sterba008ef092018-03-21 02:05:27 +01004515void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004516 struct btrfs_ioctl_balance_args *bargs)
4517{
4518 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4519
4520 bargs->flags = bctl->flags;
4521
David Sterba3009a622018-03-21 01:31:04 +01004522 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags))
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004523 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4524 if (atomic_read(&fs_info->balance_pause_req))
4525 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004526 if (atomic_read(&fs_info->balance_cancel_req))
4527 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004528
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004529 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4530 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4531 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004532
David Sterba008ef092018-03-21 02:05:27 +01004533 spin_lock(&fs_info->balance_lock);
4534 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4535 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004536}
4537
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004538static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004539{
Al Viro496ad9a2013-01-23 17:07:38 -05004540 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004541 struct btrfs_fs_info *fs_info = root->fs_info;
4542 struct btrfs_ioctl_balance_args *bargs;
4543 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004544 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004545 int ret;
4546
4547 if (!capable(CAP_SYS_ADMIN))
4548 return -EPERM;
4549
Liu Boe54bfa312012-06-29 03:58:48 -06004550 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004551 if (ret)
4552 return ret;
4553
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004554again:
David Sterba171938e2017-03-28 14:44:21 +02004555 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004556 mutex_lock(&fs_info->balance_mutex);
4557 need_unlock = true;
4558 goto locked;
4559 }
4560
4561 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004562 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004563 * (1) some other op is running
4564 * (2) balance is running
4565 * (3) balance is paused -- special case (think resume)
4566 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004567 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004568 if (fs_info->balance_ctl) {
4569 /* this is either (2) or (3) */
David Sterba3009a622018-03-21 01:31:04 +01004570 if (!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004571 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004572 /*
4573 * Lock released to allow other waiters to continue,
4574 * we'll reexamine the status again.
4575 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004576 mutex_lock(&fs_info->balance_mutex);
4577
4578 if (fs_info->balance_ctl &&
David Sterba3009a622018-03-21 01:31:04 +01004579 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004580 /* this is (3) */
4581 need_unlock = false;
4582 goto locked;
4583 }
4584
4585 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004586 goto again;
4587 } else {
4588 /* this is (2) */
4589 mutex_unlock(&fs_info->balance_mutex);
4590 ret = -EINPROGRESS;
4591 goto out;
4592 }
4593 } else {
4594 /* this is (1) */
4595 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004596 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004597 goto out;
4598 }
4599
4600locked:
David Sterba171938e2017-03-28 14:44:21 +02004601 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004602
4603 if (arg) {
4604 bargs = memdup_user(arg, sizeof(*bargs));
4605 if (IS_ERR(bargs)) {
4606 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004607 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004608 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004609
4610 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4611 if (!fs_info->balance_ctl) {
4612 ret = -ENOTCONN;
4613 goto out_bargs;
4614 }
4615
4616 bctl = fs_info->balance_ctl;
4617 spin_lock(&fs_info->balance_lock);
4618 bctl->flags |= BTRFS_BALANCE_RESUME;
4619 spin_unlock(&fs_info->balance_lock);
4620
4621 goto do_balance;
4622 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004623 } else {
4624 bargs = NULL;
4625 }
4626
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004627 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004628 ret = -EINPROGRESS;
4629 goto out_bargs;
4630 }
4631
David Sterba8d2db782015-11-04 15:38:29 +01004632 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004633 if (!bctl) {
4634 ret = -ENOMEM;
4635 goto out_bargs;
4636 }
4637
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004638 if (arg) {
4639 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4640 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4641 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4642
4643 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004644 } else {
4645 /* balance everything - no filters */
4646 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004647 }
4648
David Sterba8eb93452015-10-12 16:55:54 +02004649 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4650 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004651 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004652 }
4653
Ilya Dryomovde322262012-01-16 22:04:49 +02004654do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004655 /*
David Sterba149196a2018-03-20 20:23:09 +01004656 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP goes to
4657 * btrfs_balance. bctl is freed in reset_balance_state, or, if
4658 * restriper was paused all the way until unmount, in free_fs_info.
4659 * The flag should be cleared after reset_balance_state.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004660 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004661 need_unlock = false;
4662
David Sterba6fcf6e22018-05-07 17:44:03 +02004663 ret = btrfs_balance(fs_info, bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004664 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004665
Filipe Mananad00c2d92019-01-08 11:42:01 +00004666 if ((ret == 0 || ret == -ECANCELED) && arg) {
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004667 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4668 ret = -EFAULT;
4669 }
4670
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004671out_bctl:
4672 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004673out_bargs:
4674 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004675out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004676 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004677 if (need_unlock)
David Sterba171938e2017-03-28 14:44:21 +02004678 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004679out:
Liu Boe54bfa312012-06-29 03:58:48 -06004680 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004681 return ret;
4682}
4683
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004684static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004685{
4686 if (!capable(CAP_SYS_ADMIN))
4687 return -EPERM;
4688
4689 switch (cmd) {
4690 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004691 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004692 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004693 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004694 }
4695
4696 return -EINVAL;
4697}
4698
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004699static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004700 void __user *arg)
4701{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004702 struct btrfs_ioctl_balance_args *bargs;
4703 int ret = 0;
4704
4705 if (!capable(CAP_SYS_ADMIN))
4706 return -EPERM;
4707
4708 mutex_lock(&fs_info->balance_mutex);
4709 if (!fs_info->balance_ctl) {
4710 ret = -ENOTCONN;
4711 goto out;
4712 }
4713
David Sterba8d2db782015-11-04 15:38:29 +01004714 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004715 if (!bargs) {
4716 ret = -ENOMEM;
4717 goto out;
4718 }
4719
David Sterba008ef092018-03-21 02:05:27 +01004720 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004721
4722 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4723 ret = -EFAULT;
4724
4725 kfree(bargs);
4726out:
4727 mutex_unlock(&fs_info->balance_mutex);
4728 return ret;
4729}
4730
Miao Xie905b0dd2012-11-26 08:50:11 +00004731static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004732{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004733 struct inode *inode = file_inode(file);
4734 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004735 struct btrfs_ioctl_quota_ctl_args *sa;
Arne Jansen5d13a372011-09-14 15:53:51 +02004736 int ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004737
4738 if (!capable(CAP_SYS_ADMIN))
4739 return -EPERM;
4740
Miao Xie905b0dd2012-11-26 08:50:11 +00004741 ret = mnt_want_write_file(file);
4742 if (ret)
4743 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004744
4745 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004746 if (IS_ERR(sa)) {
4747 ret = PTR_ERR(sa);
4748 goto drop_write;
4749 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004750
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004751 down_write(&fs_info->subvol_sem);
Arne Jansen5d13a372011-09-14 15:53:51 +02004752
4753 switch (sa->cmd) {
4754 case BTRFS_QUOTA_CTL_ENABLE:
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03004755 ret = btrfs_quota_enable(fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004756 break;
4757 case BTRFS_QUOTA_CTL_DISABLE:
Nikolay Borisov340f1aa2018-07-05 14:50:48 +03004758 ret = btrfs_quota_disable(fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004759 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004760 default:
4761 ret = -EINVAL;
4762 break;
4763 }
4764
Arne Jansen5d13a372011-09-14 15:53:51 +02004765 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004766 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004767drop_write:
4768 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004769 return ret;
4770}
4771
Miao Xie905b0dd2012-11-26 08:50:11 +00004772static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004773{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004774 struct inode *inode = file_inode(file);
4775 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4776 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004777 struct btrfs_ioctl_qgroup_assign_args *sa;
4778 struct btrfs_trans_handle *trans;
4779 int ret;
4780 int err;
4781
4782 if (!capable(CAP_SYS_ADMIN))
4783 return -EPERM;
4784
Miao Xie905b0dd2012-11-26 08:50:11 +00004785 ret = mnt_want_write_file(file);
4786 if (ret)
4787 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004788
4789 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004790 if (IS_ERR(sa)) {
4791 ret = PTR_ERR(sa);
4792 goto drop_write;
4793 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004794
4795 trans = btrfs_join_transaction(root);
4796 if (IS_ERR(trans)) {
4797 ret = PTR_ERR(trans);
4798 goto out;
4799 }
4800
Arne Jansen5d13a372011-09-14 15:53:51 +02004801 if (sa->assign) {
Lu Fengqi9f8a6ce2018-07-18 14:45:30 +08004802 ret = btrfs_add_qgroup_relation(trans, sa->src, sa->dst);
Arne Jansen5d13a372011-09-14 15:53:51 +02004803 } else {
Lu Fengqi39616c22018-07-18 14:45:32 +08004804 ret = btrfs_del_qgroup_relation(trans, sa->src, sa->dst);
Arne Jansen5d13a372011-09-14 15:53:51 +02004805 }
4806
Qu Wenruoe082f562015-02-27 16:24:28 +08004807 /* update qgroup status and info */
Lu Fengqi280f8bd2018-07-18 14:45:40 +08004808 err = btrfs_run_qgroups(trans);
Qu Wenruoe082f562015-02-27 16:24:28 +08004809 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004810 btrfs_handle_fs_error(fs_info, err,
4811 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004812 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004813 if (err && !ret)
4814 ret = err;
4815
4816out:
4817 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004818drop_write:
4819 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004820 return ret;
4821}
4822
Miao Xie905b0dd2012-11-26 08:50:11 +00004823static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004824{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004825 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004826 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004827 struct btrfs_ioctl_qgroup_create_args *sa;
4828 struct btrfs_trans_handle *trans;
4829 int ret;
4830 int err;
4831
4832 if (!capable(CAP_SYS_ADMIN))
4833 return -EPERM;
4834
Miao Xie905b0dd2012-11-26 08:50:11 +00004835 ret = mnt_want_write_file(file);
4836 if (ret)
4837 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004838
4839 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004840 if (IS_ERR(sa)) {
4841 ret = PTR_ERR(sa);
4842 goto drop_write;
4843 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004844
Miao Xied86e56c2012-11-15 11:35:41 +00004845 if (!sa->qgroupid) {
4846 ret = -EINVAL;
4847 goto out;
4848 }
4849
Arne Jansen5d13a372011-09-14 15:53:51 +02004850 trans = btrfs_join_transaction(root);
4851 if (IS_ERR(trans)) {
4852 ret = PTR_ERR(trans);
4853 goto out;
4854 }
4855
Arne Jansen5d13a372011-09-14 15:53:51 +02004856 if (sa->create) {
Lu Fengqi49a05ec2018-07-18 14:45:33 +08004857 ret = btrfs_create_qgroup(trans, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004858 } else {
Lu Fengqi3efbee12018-07-18 14:45:34 +08004859 ret = btrfs_remove_qgroup(trans, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004860 }
4861
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004862 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004863 if (err && !ret)
4864 ret = err;
4865
4866out:
4867 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004868drop_write:
4869 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004870 return ret;
4871}
4872
Miao Xie905b0dd2012-11-26 08:50:11 +00004873static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004874{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004875 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004876 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004877 struct btrfs_ioctl_qgroup_limit_args *sa;
4878 struct btrfs_trans_handle *trans;
4879 int ret;
4880 int err;
4881 u64 qgroupid;
4882
4883 if (!capable(CAP_SYS_ADMIN))
4884 return -EPERM;
4885
Miao Xie905b0dd2012-11-26 08:50:11 +00004886 ret = mnt_want_write_file(file);
4887 if (ret)
4888 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004889
4890 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004891 if (IS_ERR(sa)) {
4892 ret = PTR_ERR(sa);
4893 goto drop_write;
4894 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004895
4896 trans = btrfs_join_transaction(root);
4897 if (IS_ERR(trans)) {
4898 ret = PTR_ERR(trans);
4899 goto out;
4900 }
4901
4902 qgroupid = sa->qgroupid;
4903 if (!qgroupid) {
4904 /* take the current subvol as qgroup */
4905 qgroupid = root->root_key.objectid;
4906 }
4907
Lu Fengqif0042d52018-07-18 14:45:35 +08004908 ret = btrfs_limit_qgroup(trans, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004909
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004910 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004911 if (err && !ret)
4912 ret = err;
4913
4914out:
4915 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004916drop_write:
4917 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004918 return ret;
4919}
4920
Jan Schmidt2f232032013-04-25 16:04:51 +00004921static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4922{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004923 struct inode *inode = file_inode(file);
4924 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004925 struct btrfs_ioctl_quota_rescan_args *qsa;
4926 int ret;
4927
4928 if (!capable(CAP_SYS_ADMIN))
4929 return -EPERM;
4930
4931 ret = mnt_want_write_file(file);
4932 if (ret)
4933 return ret;
4934
4935 qsa = memdup_user(arg, sizeof(*qsa));
4936 if (IS_ERR(qsa)) {
4937 ret = PTR_ERR(qsa);
4938 goto drop_write;
4939 }
4940
4941 if (qsa->flags) {
4942 ret = -EINVAL;
4943 goto out;
4944 }
4945
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004946 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00004947
4948out:
4949 kfree(qsa);
4950drop_write:
4951 mnt_drop_write_file(file);
4952 return ret;
4953}
4954
4955static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4956{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004957 struct inode *inode = file_inode(file);
4958 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004959 struct btrfs_ioctl_quota_rescan_args *qsa;
4960 int ret = 0;
4961
4962 if (!capable(CAP_SYS_ADMIN))
4963 return -EPERM;
4964
David Sterba8d2db782015-11-04 15:38:29 +01004965 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00004966 if (!qsa)
4967 return -ENOMEM;
4968
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004969 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00004970 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004971 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00004972 }
4973
4974 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4975 ret = -EFAULT;
4976
4977 kfree(qsa);
4978 return ret;
4979}
4980
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004981static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4982{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004983 struct inode *inode = file_inode(file);
4984 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004985
4986 if (!capable(CAP_SYS_ADMIN))
4987 return -EPERM;
4988
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004989 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004990}
4991
Hugo Millsabccd002014-01-30 20:17:00 +00004992static long _btrfs_ioctl_set_received_subvol(struct file *file,
4993 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004994{
Al Viro496ad9a2013-01-23 17:07:38 -05004995 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004996 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02004997 struct btrfs_root *root = BTRFS_I(inode)->root;
4998 struct btrfs_root_item *root_item = &root->root_item;
4999 struct btrfs_trans_handle *trans;
Deepa Dinamani95582b02018-05-08 19:36:02 -07005000 struct timespec64 ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02005001 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005002 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005003
David Sterbabd60ea02014-01-16 15:50:22 +01005004 if (!inode_owner_or_capable(inode))
5005 return -EPERM;
5006
Alexander Block8ea05e32012-07-25 17:35:53 +02005007 ret = mnt_want_write_file(file);
5008 if (ret < 0)
5009 return ret;
5010
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005011 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02005012
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005013 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02005014 ret = -EINVAL;
5015 goto out;
5016 }
5017
5018 if (btrfs_root_readonly(root)) {
5019 ret = -EROFS;
5020 goto out;
5021 }
5022
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005023 /*
5024 * 1 - root item
5025 * 2 - uuid items (received uuid + subvol uuid)
5026 */
5027 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005028 if (IS_ERR(trans)) {
5029 ret = PTR_ERR(trans);
5030 trans = NULL;
5031 goto out;
5032 }
5033
5034 sa->rtransid = trans->transid;
5035 sa->rtime.sec = ct.tv_sec;
5036 sa->rtime.nsec = ct.tv_nsec;
5037
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005038 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5039 BTRFS_UUID_SIZE);
5040 if (received_uuid_changed &&
Nikolay Borisovd87ff752018-03-12 14:48:09 +02005041 !btrfs_is_empty_uuid(root_item->received_uuid)) {
Lu Fengqid1957792018-05-29 15:01:54 +08005042 ret = btrfs_uuid_tree_remove(trans, root_item->received_uuid,
Nikolay Borisovd87ff752018-03-12 14:48:09 +02005043 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5044 root->root_key.objectid);
5045 if (ret && ret != -ENOENT) {
5046 btrfs_abort_transaction(trans, ret);
5047 btrfs_end_transaction(trans);
5048 goto out;
5049 }
5050 }
Alexander Block8ea05e32012-07-25 17:35:53 +02005051 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5052 btrfs_set_root_stransid(root_item, sa->stransid);
5053 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005054 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5055 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5056 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5057 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005058
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005059 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02005060 &root->root_key, &root->root_item);
5061 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005062 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005063 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005064 }
5065 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Lu Fengqicdb345a2018-05-29 15:01:53 +08005066 ret = btrfs_uuid_tree_add(trans, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005067 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5068 root->root_key.objectid);
5069 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005070 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03005071 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005072 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005073 }
5074 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005075 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00005076out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005077 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00005078 mnt_drop_write_file(file);
5079 return ret;
5080}
5081
5082#ifdef CONFIG_64BIT
5083static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5084 void __user *arg)
5085{
5086 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5087 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5088 int ret = 0;
5089
5090 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305091 if (IS_ERR(args32))
5092 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00005093
David Sterba8d2db782015-11-04 15:38:29 +01005094 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005095 if (!args64) {
5096 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005097 goto out;
5098 }
5099
5100 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5101 args64->stransid = args32->stransid;
5102 args64->rtransid = args32->rtransid;
5103 args64->stime.sec = args32->stime.sec;
5104 args64->stime.nsec = args32->stime.nsec;
5105 args64->rtime.sec = args32->rtime.sec;
5106 args64->rtime.nsec = args32->rtime.nsec;
5107 args64->flags = args32->flags;
5108
5109 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5110 if (ret)
5111 goto out;
5112
5113 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5114 args32->stransid = args64->stransid;
5115 args32->rtransid = args64->rtransid;
5116 args32->stime.sec = args64->stime.sec;
5117 args32->stime.nsec = args64->stime.nsec;
5118 args32->rtime.sec = args64->rtime.sec;
5119 args32->rtime.nsec = args64->rtime.nsec;
5120 args32->flags = args64->flags;
5121
5122 ret = copy_to_user(arg, args32, sizeof(*args32));
5123 if (ret)
5124 ret = -EFAULT;
5125
5126out:
5127 kfree(args32);
5128 kfree(args64);
5129 return ret;
5130}
5131#endif
5132
5133static long btrfs_ioctl_set_received_subvol(struct file *file,
5134 void __user *arg)
5135{
5136 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5137 int ret = 0;
5138
5139 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305140 if (IS_ERR(sa))
5141 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00005142
5143 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5144
5145 if (ret)
5146 goto out;
5147
Alexander Block8ea05e32012-07-25 17:35:53 +02005148 ret = copy_to_user(arg, sa, sizeof(*sa));
5149 if (ret)
5150 ret = -EFAULT;
5151
5152out:
5153 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005154 return ret;
5155}
5156
jeff.liu867ab662013-01-05 02:48:01 +00005157static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5158{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005159 struct inode *inode = file_inode(file);
5160 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005161 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005162 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005163 char label[BTRFS_LABEL_SIZE];
5164
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005165 spin_lock(&fs_info->super_lock);
5166 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5167 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005168
5169 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005170
5171 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005172 btrfs_warn(fs_info,
5173 "label is too long, return the first %zu bytes",
5174 --len);
jeff.liu867ab662013-01-05 02:48:01 +00005175 }
5176
jeff.liu867ab662013-01-05 02:48:01 +00005177 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005178
5179 return ret ? -EFAULT : 0;
5180}
5181
jeff.liua8bfd4a2013-01-05 02:48:08 +00005182static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5183{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005184 struct inode *inode = file_inode(file);
5185 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5186 struct btrfs_root *root = BTRFS_I(inode)->root;
5187 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005188 struct btrfs_trans_handle *trans;
5189 char label[BTRFS_LABEL_SIZE];
5190 int ret;
5191
5192 if (!capable(CAP_SYS_ADMIN))
5193 return -EPERM;
5194
5195 if (copy_from_user(label, arg, sizeof(label)))
5196 return -EFAULT;
5197
5198 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005199 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005200 "unable to set label with more than %d bytes",
5201 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005202 return -EINVAL;
5203 }
5204
5205 ret = mnt_want_write_file(file);
5206 if (ret)
5207 return ret;
5208
jeff.liua8bfd4a2013-01-05 02:48:08 +00005209 trans = btrfs_start_transaction(root, 0);
5210 if (IS_ERR(trans)) {
5211 ret = PTR_ERR(trans);
5212 goto out_unlock;
5213 }
5214
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005215 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005216 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005217 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005218 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005219
5220out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005221 mnt_drop_write_file(file);
5222 return ret;
5223}
5224
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005225#define INIT_FEATURE_FLAGS(suffix) \
5226 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5227 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5228 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5229
David Sterbad5131b62016-02-17 15:26:27 +01005230int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005231{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005232 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005233 INIT_FEATURE_FLAGS(SUPP),
5234 INIT_FEATURE_FLAGS(SAFE_SET),
5235 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5236 };
5237
5238 if (copy_to_user(arg, &features, sizeof(features)))
5239 return -EFAULT;
5240
5241 return 0;
5242}
5243
5244static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5245{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005246 struct inode *inode = file_inode(file);
5247 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5248 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005249 struct btrfs_ioctl_feature_flags features;
5250
5251 features.compat_flags = btrfs_super_compat_flags(super_block);
5252 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5253 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5254
5255 if (copy_to_user(arg, &features, sizeof(features)))
5256 return -EFAULT;
5257
5258 return 0;
5259}
5260
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005261static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005262 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005263 u64 change_mask, u64 flags, u64 supported_flags,
5264 u64 safe_set, u64 safe_clear)
5265{
David Sterbaf10152b2019-08-01 19:07:55 +02005266 const char *type = btrfs_feature_set_name(set);
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005267 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005268 u64 disallowed, unsupported;
5269 u64 set_mask = flags & change_mask;
5270 u64 clear_mask = ~flags & change_mask;
5271
5272 unsupported = set_mask & ~supported_flags;
5273 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005274 names = btrfs_printable_features(set, unsupported);
5275 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005276 btrfs_warn(fs_info,
5277 "this kernel does not support the %s feature bit%s",
5278 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005279 kfree(names);
5280 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005281 btrfs_warn(fs_info,
5282 "this kernel does not support %s bits 0x%llx",
5283 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005284 return -EOPNOTSUPP;
5285 }
5286
5287 disallowed = set_mask & ~safe_set;
5288 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005289 names = btrfs_printable_features(set, disallowed);
5290 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005291 btrfs_warn(fs_info,
5292 "can't set the %s feature bit%s while mounted",
5293 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005294 kfree(names);
5295 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005296 btrfs_warn(fs_info,
5297 "can't set %s bits 0x%llx while mounted",
5298 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005299 return -EPERM;
5300 }
5301
5302 disallowed = clear_mask & ~safe_clear;
5303 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005304 names = btrfs_printable_features(set, disallowed);
5305 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005306 btrfs_warn(fs_info,
5307 "can't clear the %s feature bit%s while mounted",
5308 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005309 kfree(names);
5310 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005311 btrfs_warn(fs_info,
5312 "can't clear %s bits 0x%llx while mounted",
5313 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005314 return -EPERM;
5315 }
5316
5317 return 0;
5318}
5319
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005320#define check_feature(fs_info, change_mask, flags, mask_base) \
5321check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005322 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5323 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5324 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5325
5326static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5327{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005328 struct inode *inode = file_inode(file);
5329 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5330 struct btrfs_root *root = BTRFS_I(inode)->root;
5331 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005332 struct btrfs_ioctl_feature_flags flags[2];
5333 struct btrfs_trans_handle *trans;
5334 u64 newflags;
5335 int ret;
5336
5337 if (!capable(CAP_SYS_ADMIN))
5338 return -EPERM;
5339
5340 if (copy_from_user(flags, arg, sizeof(flags)))
5341 return -EFAULT;
5342
5343 /* Nothing to do */
5344 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5345 !flags[0].incompat_flags)
5346 return 0;
5347
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005348 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005349 flags[1].compat_flags, COMPAT);
5350 if (ret)
5351 return ret;
5352
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005353 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005354 flags[1].compat_ro_flags, COMPAT_RO);
5355 if (ret)
5356 return ret;
5357
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005358 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005359 flags[1].incompat_flags, INCOMPAT);
5360 if (ret)
5361 return ret;
5362
David Sterba7ab19622016-05-04 11:32:00 +02005363 ret = mnt_want_write_file(file);
5364 if (ret)
5365 return ret;
5366
David Sterba8051aa12014-02-07 14:34:04 +01005367 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005368 if (IS_ERR(trans)) {
5369 ret = PTR_ERR(trans);
5370 goto out_drop_write;
5371 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005372
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005373 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005374 newflags = btrfs_super_compat_flags(super_block);
5375 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5376 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5377 btrfs_set_super_compat_flags(super_block, newflags);
5378
5379 newflags = btrfs_super_compat_ro_flags(super_block);
5380 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5381 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5382 btrfs_set_super_compat_ro_flags(super_block, newflags);
5383
5384 newflags = btrfs_super_incompat_flags(super_block);
5385 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5386 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5387 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005388 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005389
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005390 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02005391out_drop_write:
5392 mnt_drop_write_file(file);
5393
5394 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005395}
5396
Josef Bacik2351f432017-09-27 10:43:13 -04005397static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
5398{
5399 struct btrfs_ioctl_send_args *arg;
5400 int ret;
5401
5402 if (compat) {
5403#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5404 struct btrfs_ioctl_send_args_32 args32;
5405
5406 ret = copy_from_user(&args32, argp, sizeof(args32));
5407 if (ret)
5408 return -EFAULT;
5409 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
5410 if (!arg)
5411 return -ENOMEM;
5412 arg->send_fd = args32.send_fd;
5413 arg->clone_sources_count = args32.clone_sources_count;
5414 arg->clone_sources = compat_ptr(args32.clone_sources);
5415 arg->parent_root = args32.parent_root;
5416 arg->flags = args32.flags;
5417 memcpy(arg->reserved, args32.reserved,
5418 sizeof(args32.reserved));
5419#else
5420 return -ENOTTY;
5421#endif
5422 } else {
5423 arg = memdup_user(argp, sizeof(*arg));
5424 if (IS_ERR(arg))
5425 return PTR_ERR(arg);
5426 }
5427 ret = btrfs_ioctl_send(file, arg);
5428 kfree(arg);
5429 return ret;
5430}
5431
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005432long btrfs_ioctl(struct file *file, unsigned int
5433 cmd, unsigned long arg)
5434{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005435 struct inode *inode = file_inode(file);
5436 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5437 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005438 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005439
5440 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005441 case FS_IOC_GETFLAGS:
5442 return btrfs_ioctl_getflags(file, argp);
5443 case FS_IOC_SETFLAGS:
5444 return btrfs_ioctl_setflags(file, argp);
5445 case FS_IOC_GETVERSION:
5446 return btrfs_ioctl_getversion(file, argp);
Eric Sandeen40cf9312019-07-17 12:39:20 -05005447 case FS_IOC_GETFSLABEL:
5448 return btrfs_ioctl_get_fslabel(file, argp);
5449 case FS_IOC_SETFSLABEL:
5450 return btrfs_ioctl_set_fslabel(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005451 case FITRIM:
5452 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005453 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005454 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005455 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005456 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005457 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005458 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005459 case BTRFS_IOC_SUBVOL_CREATE_V2:
5460 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005461 case BTRFS_IOC_SNAP_DESTROY:
5462 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005463 case BTRFS_IOC_SUBVOL_GETFLAGS:
5464 return btrfs_ioctl_subvol_getflags(file, argp);
5465 case BTRFS_IOC_SUBVOL_SETFLAGS:
5466 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005467 case BTRFS_IOC_DEFAULT_SUBVOL:
5468 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005469 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005470 return btrfs_ioctl_defrag(file, NULL);
5471 case BTRFS_IOC_DEFRAG_RANGE:
5472 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005473 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005474 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005475 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005476 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005477 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005478 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005479 case BTRFS_IOC_RM_DEV_V2:
5480 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005481 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005482 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005483 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005484 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005485 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005486 return btrfs_ioctl_balance(file, NULL);
Chris Masonac8e9812010-02-28 15:39:26 -05005487 case BTRFS_IOC_TREE_SEARCH:
5488 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005489 case BTRFS_IOC_TREE_SEARCH_V2:
5490 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005491 case BTRFS_IOC_INO_LOOKUP:
5492 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005493 case BTRFS_IOC_INO_PATHS:
5494 return btrfs_ioctl_ino_to_path(root, argp);
5495 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04005496 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
5497 case BTRFS_IOC_LOGICAL_INO_V2:
5498 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00005499 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005500 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005501 case BTRFS_IOC_SYNC: {
5502 int ret;
5503
Nikolay Borisov82b3e532018-04-23 10:54:13 +03005504 ret = btrfs_start_delalloc_roots(fs_info, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005505 if (ret)
5506 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005507 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005508 /*
5509 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005510 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005511 * processing uncleaned subvols.
5512 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005513 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005514 return ret;
5515 }
Sage Weil46204592010-10-29 15:41:32 -04005516 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005517 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005518 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005519 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005520 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005521 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005522 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005523 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005524 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005525 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005526 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005527 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005528 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005529 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005530 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005531 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005532 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5533 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005534#ifdef CONFIG_64BIT
5535 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5536 return btrfs_ioctl_set_received_subvol_32(file, argp);
5537#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005538 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04005539 return _btrfs_ioctl_send(file, argp, false);
5540#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5541 case BTRFS_IOC_SEND_32:
5542 return _btrfs_ioctl_send(file, argp, true);
5543#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005544 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005545 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005546 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005547 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005548 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005549 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005550 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005551 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005552 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005553 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005554 case BTRFS_IOC_QUOTA_RESCAN:
5555 return btrfs_ioctl_quota_rescan(file, argp);
5556 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5557 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005558 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5559 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005560 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005561 return btrfs_ioctl_dev_replace(fs_info, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005562 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005563 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005564 case BTRFS_IOC_GET_FEATURES:
5565 return btrfs_ioctl_get_features(file, argp);
5566 case BTRFS_IOC_SET_FEATURES:
5567 return btrfs_ioctl_set_features(file, argp);
David Sterbae4202ac2018-03-26 19:51:16 +02005568 case FS_IOC_FSGETXATTR:
5569 return btrfs_ioctl_fsgetxattr(file, argp);
David Sterba025f2122018-03-26 19:51:16 +02005570 case FS_IOC_FSSETXATTR:
5571 return btrfs_ioctl_fssetxattr(file, argp);
Tomohiro Misonob64ec072018-05-21 10:09:42 +09005572 case BTRFS_IOC_GET_SUBVOL_INFO:
5573 return btrfs_ioctl_get_subvol_info(file, argp);
Tomohiro Misono42e4b522018-05-21 10:09:43 +09005574 case BTRFS_IOC_GET_SUBVOL_ROOTREF:
5575 return btrfs_ioctl_get_subvol_rootref(file, argp);
Tomohiro Misono23d0b792018-05-21 10:09:44 +09005576 case BTRFS_IOC_INO_LOOKUP_USER:
5577 return btrfs_ioctl_ino_lookup_user(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005578 }
5579
5580 return -ENOTTY;
5581}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005582
5583#ifdef CONFIG_COMPAT
5584long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5585{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005586 /*
5587 * These all access 32-bit values anyway so no further
5588 * handling is necessary.
5589 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005590 switch (cmd) {
5591 case FS_IOC32_GETFLAGS:
5592 cmd = FS_IOC_GETFLAGS;
5593 break;
5594 case FS_IOC32_SETFLAGS:
5595 cmd = FS_IOC_SETFLAGS;
5596 break;
5597 case FS_IOC32_GETVERSION:
5598 cmd = FS_IOC_GETVERSION;
5599 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005600 }
5601
5602 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5603}
5604#endif