blob: 6c7a49faf4e0636e67c9f818893975dc48d7436a [file] [log] [blame]
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/kernel.h>
20#include <linux/bio.h>
21#include <linux/buffer_head.h>
22#include <linux/file.h>
23#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040024#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040025#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040030#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040031#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040032#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040033#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include <linux/swap.h>
35#include <linux/writeback.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040036#include <linux/compat.h>
37#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040038#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040039#include <linux/xattr.h>
David Sterbaf54de062017-05-31 19:32:09 +020040#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000042#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020043#include <linux/uuid.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000044#include <linux/btrfs.h>
Mark Fasheh416161d2013-08-06 11:42:51 -070045#include <linux/uaccess.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040046#include "ctree.h"
47#include "disk-io.h"
48#include "transaction.h"
49#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040050#include "print-tree.h"
51#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040052#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080053#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020054#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040055#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020056#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010057#include "dev-replace.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000058#include "props.h"
Jeff Mahoney3b02a682013-11-01 13:07:02 -040059#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070060#include "qgroup.h"
Filipe Manana1ec9a1a2016-02-10 10:42:25 +000061#include "tree-log.h"
Anand Jainebb87652016-03-10 17:26:59 +080062#include "compression.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040063
Hugo Millsabccd002014-01-30 20:17:00 +000064#ifdef CONFIG_64BIT
65/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
66 * structures are incorrect, as the timespec structure from userspace
67 * is 4 bytes too small. We define these alternatives here to teach
68 * the kernel about the 32-bit struct packing.
69 */
70struct btrfs_ioctl_timespec_32 {
71 __u64 sec;
72 __u32 nsec;
73} __attribute__ ((__packed__));
74
75struct btrfs_ioctl_received_subvol_args_32 {
76 char uuid[BTRFS_UUID_SIZE]; /* in */
77 __u64 stransid; /* in */
78 __u64 rtransid; /* out */
79 struct btrfs_ioctl_timespec_32 stime; /* in */
80 struct btrfs_ioctl_timespec_32 rtime; /* out */
81 __u64 flags; /* in */
82 __u64 reserved[16]; /* in */
83} __attribute__ ((__packed__));
84
85#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
86 struct btrfs_ioctl_received_subvol_args_32)
87#endif
88
89
Mark Fasheh416161d2013-08-06 11:42:51 -070090static int btrfs_clone(struct inode *src, struct inode *inode,
Mark Fasheh1c919a52015-06-30 14:42:08 -070091 u64 off, u64 olen, u64 olen_aligned, u64 destoff,
92 int no_time_update);
Mark Fasheh416161d2013-08-06 11:42:51 -070093
Christoph Hellwig6cbff002009-04-17 10:37:41 +020094/* Mask out flags that are inappropriate for the given type of inode. */
95static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
96{
97 if (S_ISDIR(mode))
98 return flags;
99 else if (S_ISREG(mode))
100 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/*
106 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
107 */
108static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
109{
110 unsigned int iflags = 0;
111
112 if (flags & BTRFS_INODE_SYNC)
113 iflags |= FS_SYNC_FL;
114 if (flags & BTRFS_INODE_IMMUTABLE)
115 iflags |= FS_IMMUTABLE_FL;
116 if (flags & BTRFS_INODE_APPEND)
117 iflags |= FS_APPEND_FL;
118 if (flags & BTRFS_INODE_NODUMP)
119 iflags |= FS_NODUMP_FL;
120 if (flags & BTRFS_INODE_NOATIME)
121 iflags |= FS_NOATIME_FL;
122 if (flags & BTRFS_INODE_DIRSYNC)
123 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000124 if (flags & BTRFS_INODE_NODATACOW)
125 iflags |= FS_NOCOW_FL;
126
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900127 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000128 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900129 else if (flags & BTRFS_INODE_COMPRESS)
130 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200131
132 return iflags;
133}
134
135/*
136 * Update inode->i_flags based on the btrfs internal flags.
137 */
138void btrfs_update_iflags(struct inode *inode)
139{
140 struct btrfs_inode *ip = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100141 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200142
143 if (ip->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100144 new_fl |= S_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200145 if (ip->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100146 new_fl |= S_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200147 if (ip->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100148 new_fl |= S_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200149 if (ip->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100150 new_fl |= S_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200151 if (ip->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100152 new_fl |= S_DIRSYNC;
153
154 set_mask_bits(&inode->i_flags,
155 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
156 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200157}
158
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200159static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
160{
Al Viro496ad9a2013-01-23 17:07:38 -0500161 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200162 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
163
164 if (copy_to_user(arg, &flags, sizeof(flags)))
165 return -EFAULT;
166 return 0;
167}
168
Liu Bo75e7cb72011-03-22 10:12:20 +0000169static int check_flags(unsigned int flags)
170{
171 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
172 FS_NOATIME_FL | FS_NODUMP_FL | \
173 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000174 FS_NOCOMP_FL | FS_COMPR_FL |
175 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000176 return -EOPNOTSUPP;
177
178 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
179 return -EINVAL;
180
Liu Bo75e7cb72011-03-22 10:12:20 +0000181 return 0;
182}
183
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200184static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
185{
Al Viro496ad9a2013-01-23 17:07:38 -0500186 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400187 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200188 struct btrfs_inode *ip = BTRFS_I(inode);
189 struct btrfs_root *root = ip->root;
190 struct btrfs_trans_handle *trans;
191 unsigned int flags, oldflags;
192 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800193 u64 ip_oldflags;
194 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600195 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200196
David Sterbabd60ea02014-01-16 15:50:22 +0100197 if (!inode_owner_or_capable(inode))
198 return -EPERM;
199
Li Zefanb83cc962010-12-20 16:04:08 +0800200 if (btrfs_root_readonly(root))
201 return -EROFS;
202
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200203 if (copy_from_user(&flags, arg, sizeof(flags)))
204 return -EFAULT;
205
Liu Bo75e7cb72011-03-22 10:12:20 +0000206 ret = check_flags(flags);
207 if (ret)
208 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200209
Jan Karae7848682012-06-12 16:20:32 +0200210 ret = mnt_want_write_file(file);
211 if (ret)
212 return ret;
213
Al Viro59551022016-01-22 15:40:57 -0500214 inode_lock(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200215
Li Zefanf062abf2011-12-29 13:36:45 +0800216 ip_oldflags = ip->flags;
217 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600218 mode = inode->i_mode;
Li Zefanf062abf2011-12-29 13:36:45 +0800219
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200220 flags = btrfs_mask_flags(inode->i_mode, flags);
221 oldflags = btrfs_flags_to_ioctl(ip->flags);
222 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
223 if (!capable(CAP_LINUX_IMMUTABLE)) {
224 ret = -EPERM;
225 goto out_unlock;
226 }
227 }
228
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200229 if (flags & FS_SYNC_FL)
230 ip->flags |= BTRFS_INODE_SYNC;
231 else
232 ip->flags &= ~BTRFS_INODE_SYNC;
233 if (flags & FS_IMMUTABLE_FL)
234 ip->flags |= BTRFS_INODE_IMMUTABLE;
235 else
236 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
237 if (flags & FS_APPEND_FL)
238 ip->flags |= BTRFS_INODE_APPEND;
239 else
240 ip->flags &= ~BTRFS_INODE_APPEND;
241 if (flags & FS_NODUMP_FL)
242 ip->flags |= BTRFS_INODE_NODUMP;
243 else
244 ip->flags &= ~BTRFS_INODE_NODUMP;
245 if (flags & FS_NOATIME_FL)
246 ip->flags |= BTRFS_INODE_NOATIME;
247 else
248 ip->flags &= ~BTRFS_INODE_NOATIME;
249 if (flags & FS_DIRSYNC_FL)
250 ip->flags |= BTRFS_INODE_DIRSYNC;
251 else
252 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600253 if (flags & FS_NOCOW_FL) {
254 if (S_ISREG(mode)) {
255 /*
256 * It's safe to turn csums off here, no extents exist.
257 * Otherwise we want the flag to reflect the real COW
258 * status of the file and will not set it.
259 */
260 if (inode->i_size == 0)
261 ip->flags |= BTRFS_INODE_NODATACOW
262 | BTRFS_INODE_NODATASUM;
263 } else {
264 ip->flags |= BTRFS_INODE_NODATACOW;
265 }
266 } else {
267 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400268 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600269 */
270 if (S_ISREG(mode)) {
271 if (inode->i_size == 0)
272 ip->flags &= ~(BTRFS_INODE_NODATACOW
273 | BTRFS_INODE_NODATASUM);
274 } else {
275 ip->flags &= ~BTRFS_INODE_NODATACOW;
276 }
277 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200278
Liu Bo75e7cb72011-03-22 10:12:20 +0000279 /*
280 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
281 * flag may be changed automatically if compression code won't make
282 * things smaller.
283 */
284 if (flags & FS_NOCOMP_FL) {
285 ip->flags &= ~BTRFS_INODE_COMPRESS;
286 ip->flags |= BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000287
288 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
289 if (ret && ret != -ENODATA)
290 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000291 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000292 const char *comp;
293
Liu Bo75e7cb72011-03-22 10:12:20 +0000294 ip->flags |= BTRFS_INODE_COMPRESS;
295 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000296
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400297 if (fs_info->compress_type == BTRFS_COMPRESS_LZO)
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000298 comp = "lzo";
Nick Terrell5c1aab12017-08-09 19:39:02 -0700299 else if (fs_info->compress_type == BTRFS_COMPRESS_ZLIB)
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000300 comp = "zlib";
Nick Terrell5c1aab12017-08-09 19:39:02 -0700301 else
302 comp = "zstd";
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000303 ret = btrfs_set_prop(inode, "btrfs.compression",
304 comp, strlen(comp), 0);
305 if (ret)
306 goto out_drop;
307
Li Zefanebcb9042011-04-15 03:03:17 +0000308 } else {
Filipe Manana78a017a2014-09-11 11:44:49 +0100309 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
310 if (ret && ret != -ENODATA)
311 goto out_drop;
Li Zefanebcb9042011-04-15 03:03:17 +0000312 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000313 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200314
Li Zefan4da6f1a2011-12-29 13:39:50 +0800315 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800316 if (IS_ERR(trans)) {
317 ret = PTR_ERR(trans);
318 goto out_drop;
319 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200320
Li Zefan306424cc2011-12-14 20:12:02 -0500321 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400322 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700323 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200324 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200325
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400326 btrfs_end_transaction(trans);
Li Zefanf062abf2011-12-29 13:36:45 +0800327 out_drop:
328 if (ret) {
329 ip->flags = ip_oldflags;
330 inode->i_flags = i_oldflags;
331 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200332
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200333 out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500334 inode_unlock(inode);
Jan Karae7848682012-06-12 16:20:32 +0200335 mnt_drop_write_file(file);
liubo2d4e6f62011-02-24 09:38:16 +0000336 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200337}
338
339static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
340{
Al Viro496ad9a2013-01-23 17:07:38 -0500341 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200342
343 return put_user(inode->i_generation, arg);
344}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400345
Li Dongyangf7039b12011-03-24 10:24:28 +0000346static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
347{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400348 struct inode *inode = file_inode(file);
349 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000350 struct btrfs_device *device;
351 struct request_queue *q;
352 struct fstrim_range range;
353 u64 minlen = ULLONG_MAX;
354 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500355 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000356 int ret;
357
358 if (!capable(CAP_SYS_ADMIN))
359 return -EPERM;
360
Xiao Guangrong1f781602011-04-20 10:09:16 +0000361 rcu_read_lock();
362 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
363 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000364 if (!device->bdev)
365 continue;
366 q = bdev_get_queue(device->bdev);
367 if (blk_queue_discard(q)) {
368 num_devices++;
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100369 minlen = min_t(u64, q->limits.discard_granularity,
Li Dongyangf7039b12011-03-24 10:24:28 +0000370 minlen);
371 }
372 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000373 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200374
Li Dongyangf7039b12011-03-24 10:24:28 +0000375 if (!num_devices)
376 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000377 if (copy_from_user(&range, arg, sizeof(range)))
378 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000379 if (range.start > total_bytes ||
380 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200381 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000382
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200383 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000384 range.minlen = max(range.minlen, minlen);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400385 ret = btrfs_trim_fs(fs_info, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000386 if (ret < 0)
387 return ret;
388
389 if (copy_to_user(arg, &range, sizeof(range)))
390 return -EFAULT;
391
392 return 0;
393}
394
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200395int btrfs_is_empty_uuid(u8 *uuid)
396{
Chris Mason46e0f662013-11-15 12:14:55 +0100397 int i;
398
399 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
400 if (uuid[i])
401 return 0;
402 }
403 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200404}
405
Miao Xied5c12072013-02-28 10:04:33 +0000406static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400407 struct dentry *dentry,
David Sterba52f75f42017-02-14 18:33:53 +0100408 const char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200409 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000410 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400411{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400412 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400413 struct btrfs_trans_handle *trans;
414 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100415 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400416 struct btrfs_inode_item *inode_item;
417 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000418 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400419 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000420 struct btrfs_block_rsv block_rsv;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700421 struct timespec cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900422 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400423 int ret;
424 int err;
425 u64 objectid;
426 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500427 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000428 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200429 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400430
David Sterba49a3c4d2016-03-24 17:49:22 +0100431 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
432 if (!root_item)
433 return -ENOMEM;
434
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400435 ret = btrfs_find_free_objectid(fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400436 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100437 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000438
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800439 /*
440 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400441 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800442 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100443 if (btrfs_qgroup_level(objectid)) {
444 ret = -ENOSPC;
445 goto fail_free;
446 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800447
Miao Xied5c12072013-02-28 10:04:33 +0000448 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400449 /*
Miao Xied5c12072013-02-28 10:04:33 +0000450 * The same as the snapshot creation, please see the comment
451 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400452 */
Miao Xied5c12072013-02-28 10:04:33 +0000453 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200454 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000455 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100456 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400457
Miao Xied5c12072013-02-28 10:04:33 +0000458 trans = btrfs_start_transaction(root, 0);
459 if (IS_ERR(trans)) {
460 ret = PTR_ERR(trans);
David Sterba7775c812017-02-10 19:18:18 +0100461 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
David Sterba49a3c4d2016-03-24 17:49:22 +0100462 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000463 }
464 trans->block_rsv = &block_rsv;
465 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400466
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400467 ret = btrfs_qgroup_inherit(trans, fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200468 if (ret)
469 goto fail;
470
David Sterba4d75f8a2014-06-15 01:54:12 +0200471 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400472 if (IS_ERR(leaf)) {
473 ret = PTR_ERR(leaf);
474 goto fail;
475 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400476
David Sterbab159fa22016-11-08 18:09:03 +0100477 memzero_extent_buffer(leaf, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400478 btrfs_set_header_bytenr(leaf, leaf->start);
479 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400480 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400481 btrfs_set_header_owner(leaf, objectid);
482
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400483 write_extent_buffer_fsid(leaf, fs_info->fsid);
484 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400485 btrfs_mark_buffer_dirty(leaf);
486
David Sterba49a3c4d2016-03-24 17:49:22 +0100487 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800488 btrfs_set_stack_inode_generation(inode_item, 1);
489 btrfs_set_stack_inode_size(inode_item, 3);
490 btrfs_set_stack_inode_nlink(inode_item, 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400491 btrfs_set_stack_inode_nbytes(inode_item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400492 fs_info->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800493 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400494
David Sterba49a3c4d2016-03-24 17:49:22 +0100495 btrfs_set_root_flags(root_item, 0);
496 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800497 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000498
David Sterba49a3c4d2016-03-24 17:49:22 +0100499 btrfs_set_root_bytenr(root_item, leaf->start);
500 btrfs_set_root_generation(root_item, trans->transid);
501 btrfs_set_root_level(root_item, 0);
502 btrfs_set_root_refs(root_item, 1);
503 btrfs_set_root_used(root_item, leaf->len);
504 btrfs_set_root_last_snapshot(root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400505
David Sterba49a3c4d2016-03-24 17:49:22 +0100506 btrfs_set_root_generation_v2(root_item,
507 btrfs_root_generation(root_item));
Alexander Block8ea05e32012-07-25 17:35:53 +0200508 uuid_le_gen(&new_uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100509 memcpy(root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
510 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
511 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
512 root_item->ctime = root_item->otime;
513 btrfs_set_root_ctransid(root_item, trans->transid);
514 btrfs_set_root_otransid(root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400515
Chris Mason925baed2008-06-25 16:01:30 -0400516 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400517 free_extent_buffer(leaf);
518 leaf = NULL;
519
David Sterba49a3c4d2016-03-24 17:49:22 +0100520 btrfs_set_root_dirid(root_item, new_dirid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400521
522 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400523 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200524 key.type = BTRFS_ROOT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400525 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100526 root_item);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400527 if (ret)
528 goto fail;
529
Yan, Zheng76dda932009-09-21 16:00:26 -0400530 key.offset = (u64)-1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400531 new_root = btrfs_read_fs_root_no_name(fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100532 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100533 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400534 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100535 goto fail;
536 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400537
538 btrfs_record_root_in_trans(trans, new_root);
539
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000540 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700541 if (ret) {
542 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400543 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700544 goto fail;
545 }
546
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530547 mutex_lock(&new_root->objectid_mutex);
548 new_root->highest_objectid = new_dirid;
549 mutex_unlock(&new_root->objectid_mutex);
550
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400551 /*
552 * insert the directory item
553 */
Nikolay Borisov877574e2017-02-20 13:50:33 +0200554 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100555 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400556 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100557 goto fail;
558 }
Chris Mason3de45862008-11-17 21:02:50 -0500559
560 ret = btrfs_insert_dir_item(trans, root,
Nikolay Borisov8e7611c2017-02-20 13:50:31 +0200561 name, namelen, BTRFS_I(dir), &key,
Chris Mason3de45862008-11-17 21:02:50 -0500562 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100563 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400564 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400565 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100566 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500567
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200568 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
Yan Zheng52c26172009-01-05 15:43:43 -0500569 ret = btrfs_update_inode(trans, root, dir);
570 BUG_ON(ret);
571
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400572 ret = btrfs_add_root_ref(trans, fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400573 objectid, root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200574 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500575 BUG_ON(ret);
576
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400577 ret = btrfs_uuid_tree_add(trans, fs_info, root_item->uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400578 BTRFS_UUID_KEY_SUBVOL, objectid);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200579 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400580 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200581
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400582fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100583 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000584 trans->block_rsv = NULL;
585 trans->bytes_reserved = 0;
David Sterba7775c812017-02-10 19:18:18 +0100586 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Liu Bode6e8202014-01-09 14:57:06 +0800587
Sage Weil72fd0322010-10-29 15:41:32 -0400588 if (async_transid) {
589 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400590 err = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000591 if (err)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400592 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400593 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400594 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400595 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400596 if (err && !ret)
597 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500598
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900599 if (!ret) {
600 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800601 if (IS_ERR(inode))
602 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900603 d_instantiate(dentry, inode);
604 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400605 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100606
607fail_free:
608 kfree(root_item);
609 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400610}
611
David Sterbaea14b57f2017-06-22 02:19:11 +0200612static void btrfs_wait_for_no_snapshotting_writes(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +0800613{
614 s64 writers;
615 DEFINE_WAIT(wait);
616
617 do {
618 prepare_to_wait(&root->subv_writers->wait, &wait,
619 TASK_UNINTERRUPTIBLE);
620
621 writers = percpu_counter_sum(&root->subv_writers->counter);
622 if (writers)
623 schedule();
624
625 finish_wait(&root->subv_writers->wait, &wait);
626 } while (writers);
627}
628
Miao Xiee9662f72013-02-28 10:01:15 +0000629static int create_snapshot(struct btrfs_root *root, struct inode *dir,
David Sterba61d7e4c2017-02-10 19:54:06 +0100630 struct dentry *dentry,
Miao Xiee9662f72013-02-28 10:01:15 +0000631 u64 *async_transid, bool readonly,
632 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400633{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400634 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000635 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400636 struct btrfs_pending_snapshot *pending_snapshot;
637 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000638 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400639
Miao Xie27cdeb72014-04-02 19:51:05 +0800640 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400641 return -EINVAL;
642
David Sterba23269bf2017-02-13 11:03:44 +0100643 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100644 if (!pending_snapshot)
645 return -ENOMEM;
646
David Sterbab0c0ea62015-11-10 18:54:00 +0100647 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100648 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100649 pending_snapshot->path = btrfs_alloc_path();
650 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100651 ret = -ENOMEM;
652 goto free_pending;
653 }
654
David Sterbaea14b57f2017-06-22 02:19:11 +0200655 atomic_inc(&root->will_be_snapshotted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100656 smp_mb__after_atomic();
David Sterbaea14b57f2017-06-22 02:19:11 +0200657 btrfs_wait_for_no_snapshotting_writes(root);
Miao Xie8257b2d2014-03-06 13:38:19 +0800658
Miao Xie6a038432013-05-15 07:48:24 +0000659 ret = btrfs_start_delalloc_inodes(root, 0);
660 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100661 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000662
Chris Mason6374e57a2017-06-23 09:48:21 -0700663 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
Miao Xie6a038432013-05-15 07:48:24 +0000664
Miao Xie66d8f3d2012-09-06 04:02:28 -0600665 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
666 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000667 /*
668 * 1 - parent dir inode
669 * 2 - dir entries
670 * 1 - root item
671 * 2 - root ref/backref
672 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200673 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000674 */
675 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200676 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400677 &pending_snapshot->qgroup_reserved,
678 false);
Miao Xied5c12072013-02-28 10:04:33 +0000679 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100680 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000681
Yan, Zhenga22285a2010-05-16 10:48:46 -0400682 pending_snapshot->dentry = dentry;
683 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800684 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000685 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000686 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400687
Miao Xied5c12072013-02-28 10:04:33 +0000688 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400689 if (IS_ERR(trans)) {
690 ret = PTR_ERR(trans);
691 goto fail;
692 }
693
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400694 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400695 list_add(&pending_snapshot->list,
696 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400697 spin_unlock(&fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400698 if (async_transid) {
699 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400700 ret = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000701 if (ret)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400702 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400703 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400704 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400705 }
Miao Xieaec80302013-03-04 09:44:29 +0000706 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400707 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400708
709 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400710 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000711 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400712
Chris Masond3797302014-10-15 13:50:56 -0700713 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
714 if (ret)
715 goto fail;
716
David Howells2b0143b2015-03-17 22:25:59 +0000717 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000718 if (IS_ERR(inode)) {
719 ret = PTR_ERR(inode);
720 goto fail;
721 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900722
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000723 d_instantiate(dentry, inode);
724 ret = 0;
725fail:
David Sterba7775c812017-02-10 19:18:18 +0100726 btrfs_subvolume_release_metadata(fs_info, &pending_snapshot->block_rsv);
David Sterbaa1ee7362015-11-10 18:53:56 +0100727dec_and_free:
David Sterbaea14b57f2017-06-22 02:19:11 +0200728 if (atomic_dec_and_test(&root->will_be_snapshotted))
729 wake_up_atomic_t(&root->will_be_snapshotted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100730free_pending:
731 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100732 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100733 kfree(pending_snapshot);
734
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400735 return ret;
736}
737
Sage Weil4260f7c2010-10-29 15:46:43 -0400738/* copy of may_delete in fs/namei.c()
739 * Check whether we can remove a link victim from directory dir, check
740 * whether the type of victim is right.
741 * 1. We can't do it if dir is read-only (done in permission())
742 * 2. We should have write and exec permissions on dir
743 * 3. We can't remove anything from append-only dir
744 * 4. We can't do anything with immutable dir (done in permission())
745 * 5. If the sticky bit on dir is set we should either
746 * a. be owner of dir, or
747 * b. be owner of victim, or
748 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400749 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400750 * links pointing to it.
751 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
752 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
753 * 9. We can't remove a root or mountpoint.
754 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
755 * nfs_async_unlink().
756 */
757
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530758static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400759{
760 int error;
761
David Howells2b0143b2015-03-17 22:25:59 +0000762 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400763 return -ENOENT;
764
David Howells2b0143b2015-03-17 22:25:59 +0000765 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400766 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400767
768 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
769 if (error)
770 return error;
771 if (IS_APPEND(dir))
772 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000773 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
774 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400775 return -EPERM;
776 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000777 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400778 return -ENOTDIR;
779 if (IS_ROOT(victim))
780 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000781 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400782 return -EISDIR;
783 if (IS_DEADDIR(dir))
784 return -ENOENT;
785 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
786 return -EBUSY;
787 return 0;
788}
789
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400790/* copy of may_create in fs/namei.c() */
791static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
792{
David Howells2b0143b2015-03-17 22:25:59 +0000793 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400794 return -EEXIST;
795 if (IS_DEADDIR(dir))
796 return -ENOENT;
797 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
798}
799
800/*
801 * Create a new subvolume below @parent. This is largely modeled after
802 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
803 * inside this filesystem so it's quite a bit simpler.
804 */
Al Viro92872092016-11-20 19:34:31 -0500805static noinline int btrfs_mksubvol(const struct path *parent,
David Sterba52f75f42017-02-14 18:33:53 +0100806 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400807 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200808 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000809 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400810{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400811 struct inode *dir = d_inode(parent->dentry);
812 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400813 struct dentry *dentry;
814 int error;
815
Al Viro00235412016-05-26 00:05:12 -0400816 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
817 if (error == -EINTR)
818 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400819
820 dentry = lookup_one_len(name, parent->dentry, namelen);
821 error = PTR_ERR(dentry);
822 if (IS_ERR(dentry))
823 goto out_unlock;
824
Yan, Zheng76dda932009-09-21 16:00:26 -0400825 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400826 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600827 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400828
Chris Mason9c520572012-12-17 14:26:57 -0500829 /*
830 * even if this name doesn't exist, we may get hash collisions.
831 * check for them now when we can safely fail
832 */
833 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
834 dir->i_ino, name,
835 namelen);
836 if (error)
837 goto out_dput;
838
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400839 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400840
841 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
842 goto out_up_read;
843
Chris Mason3de45862008-11-17 21:02:50 -0500844 if (snap_src) {
David Sterba61d7e4c2017-02-10 19:54:06 +0100845 error = create_snapshot(snap_src, dir, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200846 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500847 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000848 error = create_subvol(dir, dentry, name, namelen,
849 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500850 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400851 if (!error)
852 fsnotify_mkdir(dir, dentry);
853out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400854 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400855out_dput:
856 dput(dentry);
857out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500858 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400859 return error;
860}
861
Chris Mason4cb53002011-05-24 15:35:30 -0400862/*
863 * When we're defragging a range, we don't want to kick it off again
864 * if it is really just waiting for delalloc to send it down.
865 * If we find a nice big extent or delalloc range for the bytes in the
866 * file you want to defrag, we return 0 to let you know to skip this
867 * part of the file
868 */
David Sterbaaab110a2014-07-29 17:32:10 +0200869static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400870{
871 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
872 struct extent_map *em = NULL;
873 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
874 u64 end;
875
876 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300877 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -0400878 read_unlock(&em_tree->lock);
879
880 if (em) {
881 end = extent_map_end(em);
882 free_extent_map(em);
883 if (end - offset > thresh)
884 return 0;
885 }
886 /* if we already have a nice delalloc here, just stop */
887 thresh /= 2;
888 end = count_range_bits(io_tree, &offset, offset + thresh,
889 thresh, EXTENT_DELALLOC, 1);
890 if (end >= thresh)
891 return 0;
892 return 1;
893}
894
895/*
896 * helper function to walk through a file and find extents
897 * newer than a specific transid, and smaller than thresh.
898 *
899 * This is used by the defragging code to find new and small
900 * extents
901 */
902static int find_new_extents(struct btrfs_root *root,
903 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200904 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400905{
906 struct btrfs_path *path;
907 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400908 struct extent_buffer *leaf;
909 struct btrfs_file_extent_item *extent;
910 int type;
911 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200912 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -0400913
914 path = btrfs_alloc_path();
915 if (!path)
916 return -ENOMEM;
917
David Sterbaa4689d22011-05-31 17:08:14 +0000918 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400919 min_key.type = BTRFS_EXTENT_DATA_KEY;
920 min_key.offset = *off;
921
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530922 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100923 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400924 if (ret != 0)
925 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000926process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000927 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400928 goto none;
929 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
930 goto none;
931
932 leaf = path->nodes[0];
933 extent = btrfs_item_ptr(leaf, path->slots[0],
934 struct btrfs_file_extent_item);
935
936 type = btrfs_file_extent_type(leaf, extent);
937 if (type == BTRFS_FILE_EXTENT_REG &&
938 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
939 check_defrag_in_cache(inode, min_key.offset, thresh)) {
940 *off = min_key.offset;
941 btrfs_free_path(path);
942 return 0;
943 }
944
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000945 path->slots[0]++;
946 if (path->slots[0] < btrfs_header_nritems(leaf)) {
947 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
948 goto process_slot;
949 }
950
Chris Mason4cb53002011-05-24 15:35:30 -0400951 if (min_key.offset == (u64)-1)
952 goto none;
953
954 min_key.offset++;
955 btrfs_release_path(path);
956 }
957none:
958 btrfs_free_path(path);
959 return -ENOENT;
960}
961
Li Zefan6c282eb2012-06-11 16:03:35 +0800962static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400963{
964 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500965 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800966 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300967 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500968
969 /*
970 * hopefully we have this extent in the tree already, try without
971 * the full extent lock
972 */
973 read_lock(&em_tree->lock);
974 em = lookup_extent_mapping(em_tree, start, len);
975 read_unlock(&em_tree->lock);
976
977 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000978 struct extent_state *cached = NULL;
979 u64 end = start + len - 1;
980
Chris Mason940100a2010-03-10 10:52:59 -0500981 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +0100982 lock_extent_bits(io_tree, start, end, &cached);
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +0200983 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +0000984 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -0500985
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000986 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800987 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500988 }
989
Li Zefan6c282eb2012-06-11 16:03:35 +0800990 return em;
991}
992
993static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
994{
995 struct extent_map *next;
996 bool ret = true;
997
998 /* this is the last extent */
999 if (em->start + em->len >= i_size_read(inode))
1000 return false;
1001
1002 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001003 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1004 ret = false;
1005 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001006 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001007 ret = false;
1008
1009 free_extent_map(next);
1010 return ret;
1011}
1012
David Sterbaaab110a2014-07-29 17:32:10 +02001013static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001014 u64 *last_len, u64 *skip, u64 *defrag_end,
1015 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001016{
1017 struct extent_map *em;
1018 int ret = 1;
1019 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001020 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001021
1022 /*
1023 * make sure that once we start defragging an extent, we keep on
1024 * defragging it
1025 */
1026 if (start < *defrag_end)
1027 return 1;
1028
1029 *skip = 0;
1030
1031 em = defrag_lookup_extent(inode, start);
1032 if (!em)
1033 return 0;
1034
Chris Mason940100a2010-03-10 10:52:59 -05001035 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001036 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001037 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001038 goto out;
1039 }
1040
Liu Bo4a3560c2015-08-07 16:48:41 +08001041 if (!*defrag_end)
1042 prev_mergeable = false;
1043
Li Zefan6c282eb2012-06-11 16:03:35 +08001044 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001045 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001046 * we hit a real extent, if it is big or the next extent is not a
1047 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001048 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001049 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001050 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001051 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001052out:
Chris Mason940100a2010-03-10 10:52:59 -05001053 /*
1054 * last_len ends up being a counter of how many bytes we've defragged.
1055 * every time we choose not to defrag an extent, we reset *last_len
1056 * so that the next tiny extent will force a defrag.
1057 *
1058 * The end result of this is that tiny extents before a single big
1059 * extent will force at least part of that big extent to be defragged.
1060 */
1061 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001062 *defrag_end = extent_map_end(em);
1063 } else {
1064 *last_len = 0;
1065 *skip = extent_map_end(em);
1066 *defrag_end = 0;
1067 }
1068
1069 free_extent_map(em);
1070 return ret;
1071}
1072
Chris Mason4cb53002011-05-24 15:35:30 -04001073/*
1074 * it doesn't do much good to defrag one or two pages
1075 * at a time. This pulls in a nice chunk of pages
1076 * to COW and defrag.
1077 *
1078 * It also makes sure the delalloc code has enough
1079 * dirty data to avoid making new small extents as part
1080 * of the defrag
1081 *
1082 * It's a good idea to start RA on this range
1083 * before calling this.
1084 */
1085static int cluster_pages_for_defrag(struct inode *inode,
1086 struct page **pages,
1087 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001088 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001089{
Chris Mason4cb53002011-05-24 15:35:30 -04001090 unsigned long file_end;
1091 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001092 u64 page_start;
1093 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001094 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001095 int ret;
1096 int i;
1097 int i_done;
1098 struct btrfs_ordered_extent *ordered;
1099 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001100 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001101 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001102 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001103
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001104 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001105 if (!isize || start_index > file_end)
1106 return 0;
1107
1108 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001109
Qu Wenruo364ecf32017-02-27 15:10:38 +08001110 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001111 start_index << PAGE_SHIFT,
1112 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001113 if (ret)
1114 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001115 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001116 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001117
1118 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001119 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001120 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001121again:
Josef Bacika94733d2011-07-11 10:47:06 -04001122 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001123 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001124 if (!page)
1125 break;
1126
Miao Xie600a45e2012-02-16 15:01:24 +08001127 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001128 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001129 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001130 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001131 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001132 ordered = btrfs_lookup_ordered_extent(inode,
1133 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001134 unlock_extent_cached(tree, page_start, page_end,
1135 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001136 if (!ordered)
1137 break;
1138
1139 unlock_page(page);
1140 btrfs_start_ordered_extent(inode, ordered, 1);
1141 btrfs_put_ordered_extent(ordered);
1142 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001143 /*
1144 * we unlocked the page above, so we need check if
1145 * it was released or not.
1146 */
1147 if (page->mapping != inode->i_mapping) {
1148 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001149 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001150 goto again;
1151 }
Miao Xie600a45e2012-02-16 15:01:24 +08001152 }
1153
Chris Mason4cb53002011-05-24 15:35:30 -04001154 if (!PageUptodate(page)) {
1155 btrfs_readpage(NULL, page);
1156 lock_page(page);
1157 if (!PageUptodate(page)) {
1158 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001159 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001160 ret = -EIO;
1161 break;
1162 }
1163 }
Miao Xie600a45e2012-02-16 15:01:24 +08001164
Miao Xie600a45e2012-02-16 15:01:24 +08001165 if (page->mapping != inode->i_mapping) {
1166 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001167 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001168 goto again;
1169 }
1170
Chris Mason4cb53002011-05-24 15:35:30 -04001171 pages[i] = page;
1172 i_done++;
1173 }
1174 if (!i_done || ret)
1175 goto out;
1176
1177 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1178 goto out;
1179
1180 /*
1181 * so now we have a nice long stream of locked
1182 * and up to date pages, lets wait on them
1183 */
1184 for (i = 0; i < i_done; i++)
1185 wait_on_page_writeback(pages[i]);
1186
1187 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001188 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001189
1190 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001191 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001192 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1193 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001194 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1195 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001196
Liu Bo1f12bd02012-03-29 09:57:44 -04001197 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001198 spin_lock(&BTRFS_I(inode)->lock);
1199 BTRFS_I(inode)->outstanding_extents++;
1200 spin_unlock(&BTRFS_I(inode)->lock);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001201 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001202 start_index << PAGE_SHIFT,
1203 (page_cnt - i_done) << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001204 }
1205
1206
Liu Bo9e8a4a82012-09-05 19:10:51 -06001207 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001208 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001209
1210 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1211 page_start, page_end - 1, &cached_state,
1212 GFP_NOFS);
1213
1214 for (i = 0; i < i_done; i++) {
1215 clear_page_dirty_for_io(pages[i]);
1216 ClearPageChecked(pages[i]);
1217 set_page_extent_mapped(pages[i]);
1218 set_page_dirty(pages[i]);
1219 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001220 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001221 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08001222 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001223 return i_done;
1224out:
1225 for (i = 0; i < i_done; i++) {
1226 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001227 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001228 }
Qu Wenruobc42bda2017-02-27 15:10:39 +08001229 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001230 start_index << PAGE_SHIFT,
1231 page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001232 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001233 return ret;
1234
1235}
1236
1237int btrfs_defrag_file(struct inode *inode, struct file *file,
1238 struct btrfs_ioctl_defrag_range_args *range,
1239 u64 newer_than, unsigned long max_to_defrag)
1240{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001241 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001242 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001243 struct file_ra_state *ra = NULL;
1244 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001245 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001246 u64 last_len = 0;
1247 u64 skip = 0;
1248 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001249 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001250 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001251 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001252 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001253 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001254 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001255 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001256 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001257 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001258 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001259 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001260 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001261
Liu Bo0abd5b12013-04-16 09:20:28 +00001262 if (isize == 0)
1263 return 0;
1264
1265 if (range->start >= isize)
1266 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001267
David Sterba1e2ef462017-07-17 20:01:59 +02001268 if (do_compress) {
Li Zefan1a419d82010-10-25 15:12:50 +08001269 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1270 return -EINVAL;
1271 if (range->compress_type)
1272 compress_type = range->compress_type;
1273 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001274
Liu Bo0abd5b12013-04-16 09:20:28 +00001275 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001276 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001277
Chris Mason4cb53002011-05-24 15:35:30 -04001278 /*
David Sterba0a52d102017-06-22 03:22:58 +02001279 * If we were not given a file, allocate a readahead context. As
1280 * readahead is just an optimization, defrag will work without it so
1281 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001282 */
1283 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001284 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001285 if (ra)
1286 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001287 } else {
1288 ra = &file->f_ra;
1289 }
1290
David Sterba63e727e2017-06-22 03:13:02 +02001291 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001292 if (!pages) {
1293 ret = -ENOMEM;
1294 goto out_ra;
1295 }
1296
1297 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001298 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001299 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001300 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001301 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001302 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001303 }
1304
Chris Mason4cb53002011-05-24 15:35:30 -04001305 if (newer_than) {
1306 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001307 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001308 if (!ret) {
1309 range->start = newer_off;
1310 /*
1311 * we always align our defrag to help keep
1312 * the extents in the file evenly spaced
1313 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001314 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001315 } else
1316 goto out_ra;
1317 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001318 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001319 }
1320 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301321 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001322
Li Zefan2a0f7f52011-10-10 15:43:34 -04001323 /*
1324 * make writeback starts from i, so the defrag range can be
1325 * written sequentially.
1326 */
1327 if (i < inode->i_mapping->writeback_index)
1328 inode->i_mapping->writeback_index = i;
1329
Chris Masonf7f43cc2011-10-11 11:41:40 -04001330 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001331 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001332 /*
1333 * make sure we stop running if someone unmounts
1334 * the FS
1335 */
1336 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1337 break;
1338
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001339 if (btrfs_defrag_cancelled(fs_info)) {
1340 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001341 ret = -EAGAIN;
1342 break;
1343 }
1344
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001345 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001346 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001347 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001348 unsigned long next;
1349 /*
1350 * the should_defrag function tells us how much to skip
1351 * bump our counter by the suggested amount
1352 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001353 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001354 i = max(i + 1, next);
1355 continue;
1356 }
Li Zefan008873e2011-09-02 15:57:07 +08001357
1358 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001359 cluster = (PAGE_ALIGN(defrag_end) >>
1360 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001361 cluster = min(cluster, max_cluster);
1362 } else {
1363 cluster = max_cluster;
1364 }
1365
Li Zefan008873e2011-09-02 15:57:07 +08001366 if (i + cluster > ra_index) {
1367 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001368 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001369 page_cache_sync_readahead(inode->i_mapping, ra,
1370 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301371 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001372 }
Chris Mason940100a2010-03-10 10:52:59 -05001373
Al Viro59551022016-01-22 15:40:57 -05001374 inode_lock(inode);
David Sterba1e2ef462017-07-17 20:01:59 +02001375 if (do_compress)
David Sterbaeec63c62017-07-17 19:41:31 +02001376 BTRFS_I(inode)->defrag_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001377 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001378 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001379 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001380 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001381 }
Chris Mason940100a2010-03-10 10:52:59 -05001382
Chris Mason4cb53002011-05-24 15:35:30 -04001383 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001384 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001385 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001386
1387 if (newer_than) {
1388 if (newer_off == (u64)-1)
1389 break;
1390
Liu Boe1f041e12012-03-29 09:57:45 -04001391 if (ret > 0)
1392 i += ret;
1393
Chris Mason4cb53002011-05-24 15:35:30 -04001394 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001395 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001396
Byongho Leeee221842015-12-15 01:42:10 +09001397 ret = find_new_extents(root, inode, newer_than,
1398 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001399 if (!ret) {
1400 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001401 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001402 } else {
1403 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001404 }
Chris Mason4cb53002011-05-24 15:35:30 -04001405 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001406 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001407 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001408 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001409 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001410 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001411 last_len = 0;
1412 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001413 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001414 }
1415
Filipe Mananadec8ef92014-03-01 10:55:54 +00001416 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001417 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001418 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1419 &BTRFS_I(inode)->runtime_flags))
1420 filemap_flush(inode->i_mapping);
1421 }
Chris Mason1e701a32010-03-11 09:42:04 -05001422
David Sterba1e2ef462017-07-17 20:01:59 +02001423 if (do_compress) {
Chris Mason1e701a32010-03-11 09:42:04 -05001424 /* the filemap_flush will queue IO into the worker threads, but
1425 * we have to make sure the IO is actually started and that
1426 * ordered extents get created before we return
1427 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001428 atomic_inc(&fs_info->async_submit_draining);
1429 while (atomic_read(&fs_info->nr_async_submits) ||
1430 atomic_read(&fs_info->async_delalloc_pages)) {
1431 wait_event(fs_info->async_submit_wait,
1432 (atomic_read(&fs_info->nr_async_submits) == 0 &&
1433 atomic_read(&fs_info->async_delalloc_pages) == 0));
Chris Mason1e701a32010-03-11 09:42:04 -05001434 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001435 atomic_dec(&fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001436 }
1437
Li Zefan1a419d82010-10-25 15:12:50 +08001438 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001439 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
Nick Terrell5c1aab12017-08-09 19:39:02 -07001440 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1441 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
Li Zefan1a419d82010-10-25 15:12:50 +08001442 }
1443
Diego Calleja60ccf822011-09-01 16:33:57 +02001444 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001445
Chris Mason4cb53002011-05-24 15:35:30 -04001446out_ra:
David Sterba1e2ef462017-07-17 20:01:59 +02001447 if (do_compress) {
Al Viro59551022016-01-22 15:40:57 -05001448 inode_lock(inode);
David Sterbaeec63c62017-07-17 19:41:31 +02001449 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
Al Viro59551022016-01-22 15:40:57 -05001450 inode_unlock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001451 }
Chris Mason4cb53002011-05-24 15:35:30 -04001452 if (!file)
1453 kfree(ra);
1454 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001455 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001456}
1457
Miao Xie198605a2012-11-26 08:43:45 +00001458static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001459 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001460{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001461 struct inode *inode = file_inode(file);
1462 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001463 u64 new_size;
1464 u64 old_size;
1465 u64 devid = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001466 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001467 struct btrfs_ioctl_vol_args *vol_args;
1468 struct btrfs_trans_handle *trans;
1469 struct btrfs_device *device = NULL;
1470 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001471 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001472 char *devstr = NULL;
1473 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001474 int mod = 0;
1475
Chris Masone441d542009-01-05 16:57:23 -05001476 if (!capable(CAP_SYS_ADMIN))
1477 return -EPERM;
1478
Miao Xie198605a2012-11-26 08:43:45 +00001479 ret = mnt_want_write_file(file);
1480 if (ret)
1481 return ret;
1482
David Sterba171938e2017-03-28 14:44:21 +02001483 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Miao Xie97547672012-12-21 10:38:50 +00001484 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001485 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001486 }
1487
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001488 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001489 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001490 if (IS_ERR(vol_args)) {
1491 ret = PTR_ERR(vol_args);
1492 goto out;
1493 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001494
1495 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001496
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001497 sizestr = vol_args->name;
1498 devstr = strchr(sizestr, ':');
1499 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001500 sizestr = devstr + 1;
1501 *devstr = '\0';
1502 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001503 ret = kstrtoull(devstr, 10, &devid);
1504 if (ret)
1505 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001506 if (!devid) {
1507 ret = -EINVAL;
1508 goto out_free;
1509 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001510 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001511 }
Miao Xiedba60f32012-12-21 09:19:51 +00001512
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001513 device = btrfs_find_device(fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001514 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001515 btrfs_info(fs_info, "resizer unable to find device %llu",
1516 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001517 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001518 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001519 }
Miao Xiedba60f32012-12-21 09:19:51 +00001520
1521 if (!device->writeable) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001522 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001523 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001524 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001525 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001526 goto out_free;
1527 }
1528
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001529 if (!strcmp(sizestr, "max"))
1530 new_size = device->bdev->bd_inode->i_size;
1531 else {
1532 if (sizestr[0] == '-') {
1533 mod = -1;
1534 sizestr++;
1535 } else if (sizestr[0] == '+') {
1536 mod = 1;
1537 sizestr++;
1538 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001539 new_size = memparse(sizestr, &retptr);
1540 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001541 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001542 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001543 }
1544 }
1545
Stefan Behrens63a212a2012-11-05 18:29:28 +01001546 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001547 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001548 goto out_free;
1549 }
1550
Miao Xie7cc8e582014-09-03 21:35:38 +08001551 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001552
1553 if (mod < 0) {
1554 if (new_size > old_size) {
1555 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001556 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001557 }
1558 new_size = old_size - new_size;
1559 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001560 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001561 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001562 goto out_free;
1563 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001564 new_size = old_size + new_size;
1565 }
1566
Byongho Leeee221842015-12-15 01:42:10 +09001567 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001568 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001569 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001570 }
1571 if (new_size > device->bdev->bd_inode->i_size) {
1572 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001573 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001574 }
1575
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001576 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001577
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001578 btrfs_info_in_rcu(fs_info, "new size for %s is %llu",
1579 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001580
1581 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001582 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001583 if (IS_ERR(trans)) {
1584 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001585 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001586 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001587 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001588 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001589 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001590 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001591 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001592
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001593out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001594 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001595out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001596 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02001597 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001598 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001599 return ret;
1600}
1601
Sage Weil72fd0322010-10-29 15:41:32 -04001602static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
David Sterba52f75f42017-02-14 18:33:53 +01001603 const char *name, unsigned long fd, int subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001604 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001605 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001606{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001607 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001608 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001609
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001610 if (!S_ISDIR(file_inode(file)->i_mode))
1611 return -ENOTDIR;
1612
Liu Boa874a632012-06-29 03:58:46 -06001613 ret = mnt_want_write_file(file);
1614 if (ret)
1615 goto out;
1616
Sage Weil72fd0322010-10-29 15:41:32 -04001617 namelen = strlen(name);
1618 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001619 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001620 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001621 }
1622
Chris Mason16780ca2012-02-20 22:14:55 -05001623 if (name[0] == '.' &&
1624 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1625 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001626 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001627 }
1628
Chris Mason3de45862008-11-17 21:02:50 -05001629 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001630 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001631 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001632 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001633 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001634 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001635 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001636 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001637 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001638 }
1639
Al Viro496ad9a2013-01-23 17:07:38 -05001640 src_inode = file_inode(src.file);
1641 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001642 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001643 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001644 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001645 } else if (!inode_owner_or_capable(src_inode)) {
1646 /*
1647 * Subvolume creation is not restricted, but snapshots
1648 * are limited to own subvolumes only
1649 */
1650 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001651 } else {
1652 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1653 BTRFS_I(src_inode)->root,
1654 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001655 }
Al Viro2903ff02012-08-28 12:52:22 -04001656 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001657 }
Liu Boa874a632012-06-29 03:58:46 -06001658out_drop_write:
1659 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001660out:
Sage Weil72fd0322010-10-29 15:41:32 -04001661 return ret;
1662}
1663
1664static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001665 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001666{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001667 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001668 int ret;
1669
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001670 if (!S_ISDIR(file_inode(file)->i_mode))
1671 return -ENOTDIR;
1672
Li Zefanfa0d2b92010-12-20 15:53:28 +08001673 vol_args = memdup_user(arg, sizeof(*vol_args));
1674 if (IS_ERR(vol_args))
1675 return PTR_ERR(vol_args);
1676 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001677
Li Zefanfa0d2b92010-12-20 15:53:28 +08001678 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001679 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001680 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001681
Li Zefanfa0d2b92010-12-20 15:53:28 +08001682 kfree(vol_args);
1683 return ret;
1684}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001685
Li Zefanfa0d2b92010-12-20 15:53:28 +08001686static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1687 void __user *arg, int subvol)
1688{
1689 struct btrfs_ioctl_vol_args_v2 *vol_args;
1690 int ret;
1691 u64 transid = 0;
1692 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001693 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001694 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001695
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001696 if (!S_ISDIR(file_inode(file)->i_mode))
1697 return -ENOTDIR;
1698
Li Zefanfa0d2b92010-12-20 15:53:28 +08001699 vol_args = memdup_user(arg, sizeof(*vol_args));
1700 if (IS_ERR(vol_args))
1701 return PTR_ERR(vol_args);
1702 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001703
Li Zefanb83cc962010-12-20 16:04:08 +08001704 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001705 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1706 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001707 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001708 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001709 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001710
1711 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1712 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001713 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1714 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001715 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001716 if (vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001717 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001718 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001719 }
1720 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1721 if (IS_ERR(inherit)) {
1722 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001723 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001724 }
1725 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001726
1727 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001728 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001729 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001730 if (ret)
1731 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001732
Dan Carpenterc47ca322014-09-04 14:09:15 +03001733 if (ptr && copy_to_user(arg +
1734 offsetof(struct btrfs_ioctl_vol_args_v2,
1735 transid),
1736 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001737 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001738
1739free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001740 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001741free_args:
1742 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001743 return ret;
1744}
1745
Li Zefan0caa1022010-12-20 16:30:25 +08001746static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1747 void __user *arg)
1748{
Al Viro496ad9a2013-01-23 17:07:38 -05001749 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001750 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001751 struct btrfs_root *root = BTRFS_I(inode)->root;
1752 int ret = 0;
1753 u64 flags = 0;
1754
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001755 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001756 return -EINVAL;
1757
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001758 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001759 if (btrfs_root_readonly(root))
1760 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001761 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001762
1763 if (copy_to_user(arg, &flags, sizeof(flags)))
1764 ret = -EFAULT;
1765
1766 return ret;
1767}
1768
1769static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1770 void __user *arg)
1771{
Al Viro496ad9a2013-01-23 17:07:38 -05001772 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001773 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001774 struct btrfs_root *root = BTRFS_I(inode)->root;
1775 struct btrfs_trans_handle *trans;
1776 u64 root_flags;
1777 u64 flags;
1778 int ret = 0;
1779
David Sterbabd60ea02014-01-16 15:50:22 +01001780 if (!inode_owner_or_capable(inode))
1781 return -EPERM;
1782
Liu Bob9ca0662012-06-29 03:58:49 -06001783 ret = mnt_want_write_file(file);
1784 if (ret)
1785 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001786
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001787 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06001788 ret = -EINVAL;
1789 goto out_drop_write;
1790 }
Li Zefan0caa1022010-12-20 16:30:25 +08001791
Liu Bob9ca0662012-06-29 03:58:49 -06001792 if (copy_from_user(&flags, arg, sizeof(flags))) {
1793 ret = -EFAULT;
1794 goto out_drop_write;
1795 }
Li Zefan0caa1022010-12-20 16:30:25 +08001796
Liu Bob9ca0662012-06-29 03:58:49 -06001797 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1798 ret = -EINVAL;
1799 goto out_drop_write;
1800 }
Li Zefan0caa1022010-12-20 16:30:25 +08001801
Liu Bob9ca0662012-06-29 03:58:49 -06001802 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1803 ret = -EOPNOTSUPP;
1804 goto out_drop_write;
1805 }
Li Zefan0caa1022010-12-20 16:30:25 +08001806
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001807 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001808
1809 /* nothing to do */
1810 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001811 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001812
1813 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001814 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001815 btrfs_set_root_flags(&root->root_item,
1816 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001817 } else {
1818 /*
1819 * Block RO -> RW transition if this subvolume is involved in
1820 * send
1821 */
1822 spin_lock(&root->root_item_lock);
1823 if (root->send_in_progress == 0) {
1824 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001825 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001826 spin_unlock(&root->root_item_lock);
1827 } else {
1828 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001829 btrfs_warn(fs_info,
1830 "Attempt to set subvolume %llu read-write during send",
1831 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01001832 ret = -EPERM;
1833 goto out_drop_sem;
1834 }
1835 }
Li Zefan0caa1022010-12-20 16:30:25 +08001836
1837 trans = btrfs_start_transaction(root, 1);
1838 if (IS_ERR(trans)) {
1839 ret = PTR_ERR(trans);
1840 goto out_reset;
1841 }
1842
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001843 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001844 &root->root_key, &root->root_item);
1845
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001846 btrfs_commit_transaction(trans);
Li Zefan0caa1022010-12-20 16:30:25 +08001847out_reset:
1848 if (ret)
1849 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001850out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001851 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001852out_drop_write:
1853 mnt_drop_write_file(file);
1854out:
Li Zefan0caa1022010-12-20 16:30:25 +08001855 return ret;
1856}
1857
Yan, Zheng76dda932009-09-21 16:00:26 -04001858/*
1859 * helper to check if the subvolume references other subvolumes
1860 */
1861static noinline int may_destroy_subvol(struct btrfs_root *root)
1862{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001863 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04001864 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001865 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001866 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001867 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001868 int ret;
1869
1870 path = btrfs_alloc_path();
1871 if (!path)
1872 return -ENOMEM;
1873
Josef Bacik175a2b82013-08-12 15:36:44 -04001874 /* Make sure this root isn't set as the default subvol */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001875 dir_id = btrfs_super_root_dir(fs_info->super_copy);
1876 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
Josef Bacik175a2b82013-08-12 15:36:44 -04001877 dir_id, "default", 7, 0);
1878 if (di && !IS_ERR(di)) {
1879 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1880 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001881 ret = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001882 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001883 "deleting default subvolume %llu is not allowed",
1884 key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001885 goto out;
1886 }
1887 btrfs_release_path(path);
1888 }
1889
Yan, Zheng76dda932009-09-21 16:00:26 -04001890 key.objectid = root->root_key.objectid;
1891 key.type = BTRFS_ROOT_REF_KEY;
1892 key.offset = (u64)-1;
1893
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001894 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001895 if (ret < 0)
1896 goto out;
1897 BUG_ON(ret == 0);
1898
1899 ret = 0;
1900 if (path->slots[0] > 0) {
1901 path->slots[0]--;
1902 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1903 if (key.objectid == root->root_key.objectid &&
1904 key.type == BTRFS_ROOT_REF_KEY)
1905 ret = -ENOTEMPTY;
1906 }
1907out:
1908 btrfs_free_path(path);
1909 return ret;
1910}
1911
Chris Masonac8e9812010-02-28 15:39:26 -05001912static noinline int key_in_sk(struct btrfs_key *key,
1913 struct btrfs_ioctl_search_key *sk)
1914{
Chris Masonabc6e132010-03-18 12:10:08 -04001915 struct btrfs_key test;
1916 int ret;
1917
1918 test.objectid = sk->min_objectid;
1919 test.type = sk->min_type;
1920 test.offset = sk->min_offset;
1921
1922 ret = btrfs_comp_cpu_keys(key, &test);
1923 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001924 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001925
1926 test.objectid = sk->max_objectid;
1927 test.type = sk->max_type;
1928 test.offset = sk->max_offset;
1929
1930 ret = btrfs_comp_cpu_keys(key, &test);
1931 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001932 return 0;
1933 return 1;
1934}
1935
Jeff Mahoneydf397562016-06-21 20:18:21 -04001936static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05001937 struct btrfs_key *key,
1938 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001939 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001940 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001941 unsigned long *sk_offset,
1942 int *num_found)
1943{
1944 u64 found_transid;
1945 struct extent_buffer *leaf;
1946 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001947 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001948 unsigned long item_off;
1949 unsigned long item_len;
1950 int nritems;
1951 int i;
1952 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001953 int ret = 0;
1954
1955 leaf = path->nodes[0];
1956 slot = path->slots[0];
1957 nritems = btrfs_header_nritems(leaf);
1958
1959 if (btrfs_header_generation(leaf) > sk->max_transid) {
1960 i = nritems;
1961 goto advance_key;
1962 }
1963 found_transid = btrfs_header_generation(leaf);
1964
1965 for (i = slot; i < nritems; i++) {
1966 item_off = btrfs_item_ptr_offset(leaf, i);
1967 item_len = btrfs_item_size_nr(leaf, i);
1968
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001969 btrfs_item_key_to_cpu(leaf, key, i);
1970 if (!key_in_sk(key, sk))
1971 continue;
1972
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001973 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001974 if (*num_found) {
1975 ret = 1;
1976 goto out;
1977 }
Chris Masonac8e9812010-02-28 15:39:26 -05001978
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001979 /*
1980 * return one empty item back for v1, which does not
1981 * handle -EOVERFLOW
1982 */
1983
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001984 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001985 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001986 ret = -EOVERFLOW;
1987 }
Chris Masonac8e9812010-02-28 15:39:26 -05001988
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001989 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001990 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001991 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001992 }
1993
Chris Masonac8e9812010-02-28 15:39:26 -05001994 sh.objectid = key->objectid;
1995 sh.offset = key->offset;
1996 sh.type = key->type;
1997 sh.len = item_len;
1998 sh.transid = found_transid;
1999
2000 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002001 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
2002 ret = -EFAULT;
2003 goto out;
2004 }
2005
Chris Masonac8e9812010-02-28 15:39:26 -05002006 *sk_offset += sizeof(sh);
2007
2008 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002009 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002010 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002011 if (read_extent_buffer_to_user(leaf, up,
2012 item_off, item_len)) {
2013 ret = -EFAULT;
2014 goto out;
2015 }
2016
Chris Masonac8e9812010-02-28 15:39:26 -05002017 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002018 }
Hugo Millse2156862011-05-14 17:43:41 +00002019 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002020
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002021 if (ret) /* -EOVERFLOW from above */
2022 goto out;
2023
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002024 if (*num_found >= sk->nr_items) {
2025 ret = 1;
2026 goto out;
2027 }
Chris Masonac8e9812010-02-28 15:39:26 -05002028 }
2029advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002030 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002031 test.objectid = sk->max_objectid;
2032 test.type = sk->max_type;
2033 test.offset = sk->max_offset;
2034 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2035 ret = 1;
2036 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002037 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002038 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002039 key->offset = 0;
2040 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002041 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002042 key->offset = 0;
2043 key->type = 0;
2044 key->objectid++;
2045 } else
2046 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002047out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002048 /*
2049 * 0: all items from this leaf copied, continue with next
2050 * 1: * more items can be copied, but unused buffer is too small
2051 * * all items were found
2052 * Either way, it will stops the loop which iterates to the next
2053 * leaf
2054 * -EOVERFLOW: item was to large for buffer
2055 * -EFAULT: could not copy extent buffer back to userspace
2056 */
Chris Masonac8e9812010-02-28 15:39:26 -05002057 return ret;
2058}
2059
2060static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002061 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002062 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002063 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002064{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002065 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05002066 struct btrfs_root *root;
2067 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002068 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002069 int ret;
2070 int num_found = 0;
2071 unsigned long sk_offset = 0;
2072
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002073 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2074 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002075 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002076 }
Gerhard Heift12544442014-01-30 16:23:58 +01002077
Chris Masonac8e9812010-02-28 15:39:26 -05002078 path = btrfs_alloc_path();
2079 if (!path)
2080 return -ENOMEM;
2081
2082 if (sk->tree_id == 0) {
2083 /* search the root of the inode that was passed */
2084 root = BTRFS_I(inode)->root;
2085 } else {
2086 key.objectid = sk->tree_id;
2087 key.type = BTRFS_ROOT_ITEM_KEY;
2088 key.offset = (u64)-1;
2089 root = btrfs_read_fs_root_no_name(info, &key);
2090 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002091 btrfs_free_path(path);
2092 return -ENOENT;
2093 }
2094 }
2095
2096 key.objectid = sk->min_objectid;
2097 key.type = sk->min_type;
2098 key.offset = sk->min_offset;
2099
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302100 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002101 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002102 if (ret != 0) {
2103 if (ret > 0)
2104 ret = 0;
2105 goto err;
2106 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002107 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002108 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002109 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002110 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002111 break;
2112
2113 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002114 if (ret > 0)
2115 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002116err:
2117 sk->nr_items = num_found;
2118 btrfs_free_path(path);
2119 return ret;
2120}
2121
2122static noinline int btrfs_ioctl_tree_search(struct file *file,
2123 void __user *argp)
2124{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002125 struct btrfs_ioctl_search_args __user *uargs;
2126 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002127 struct inode *inode;
2128 int ret;
2129 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002130
2131 if (!capable(CAP_SYS_ADMIN))
2132 return -EPERM;
2133
Gerhard Heiftba346b32014-01-30 16:24:02 +01002134 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002135
Gerhard Heiftba346b32014-01-30 16:24:02 +01002136 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2137 return -EFAULT;
2138
2139 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002140
Al Viro496ad9a2013-01-23 17:07:38 -05002141 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002142 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002143
2144 /*
2145 * In the origin implementation an overflow is handled by returning a
2146 * search header with a len of zero, so reset ret.
2147 */
2148 if (ret == -EOVERFLOW)
2149 ret = 0;
2150
Gerhard Heiftba346b32014-01-30 16:24:02 +01002151 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002152 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002153 return ret;
2154}
2155
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002156static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2157 void __user *argp)
2158{
2159 struct btrfs_ioctl_search_args_v2 __user *uarg;
2160 struct btrfs_ioctl_search_args_v2 args;
2161 struct inode *inode;
2162 int ret;
2163 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002164 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002165
2166 if (!capable(CAP_SYS_ADMIN))
2167 return -EPERM;
2168
2169 /* copy search header and buffer size */
2170 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2171 if (copy_from_user(&args, uarg, sizeof(args)))
2172 return -EFAULT;
2173
2174 buf_size = args.buf_size;
2175
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002176 /* limit result size to 16MB */
2177 if (buf_size > buf_limit)
2178 buf_size = buf_limit;
2179
2180 inode = file_inode(file);
2181 ret = search_ioctl(inode, &args.key, &buf_size,
2182 (char *)(&uarg->buf[0]));
2183 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2184 ret = -EFAULT;
2185 else if (ret == -EOVERFLOW &&
2186 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2187 ret = -EFAULT;
2188
Yan, Zheng76dda932009-09-21 16:00:26 -04002189 return ret;
2190}
2191
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002192/*
Chris Masonac8e9812010-02-28 15:39:26 -05002193 * Search INODE_REFs to identify path name of 'dirid' directory
2194 * in a 'tree_id' tree. and sets path name to 'name'.
2195 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002196static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2197 u64 tree_id, u64 dirid, char *name)
2198{
2199 struct btrfs_root *root;
2200 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002201 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002202 int ret = -1;
2203 int slot;
2204 int len;
2205 int total_len = 0;
2206 struct btrfs_inode_ref *iref;
2207 struct extent_buffer *l;
2208 struct btrfs_path *path;
2209
2210 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2211 name[0]='\0';
2212 return 0;
2213 }
2214
2215 path = btrfs_alloc_path();
2216 if (!path)
2217 return -ENOMEM;
2218
Chris Masonac8e9812010-02-28 15:39:26 -05002219 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002220
2221 key.objectid = tree_id;
2222 key.type = BTRFS_ROOT_ITEM_KEY;
2223 key.offset = (u64)-1;
2224 root = btrfs_read_fs_root_no_name(info, &key);
2225 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002226 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002227 ret = -ENOENT;
2228 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002229 }
2230
2231 key.objectid = dirid;
2232 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002233 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002234
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302235 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002236 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2237 if (ret < 0)
2238 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002239 else if (ret > 0) {
2240 ret = btrfs_previous_item(root, path, dirid,
2241 BTRFS_INODE_REF_KEY);
2242 if (ret < 0)
2243 goto out;
2244 else if (ret > 0) {
2245 ret = -ENOENT;
2246 goto out;
2247 }
2248 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002249
2250 l = path->nodes[0];
2251 slot = path->slots[0];
2252 btrfs_item_key_to_cpu(l, &key, slot);
2253
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002254 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2255 len = btrfs_inode_ref_name_len(l, iref);
2256 ptr -= len + 1;
2257 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002258 if (ptr < name) {
2259 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002260 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002261 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002262
2263 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302264 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002265
2266 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2267 break;
2268
David Sterbab3b4aa72011-04-21 01:20:15 +02002269 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002270 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002271 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002272 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002273 }
Li Zefan77906a502011-07-14 03:16:00 +00002274 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302275 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002276 ret = 0;
2277out:
2278 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002279 return ret;
2280}
2281
2282static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2283 void __user *argp)
2284{
2285 struct btrfs_ioctl_ino_lookup_args *args;
2286 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002287 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002288
Julia Lawall2354d082010-10-29 15:14:18 -04002289 args = memdup_user(argp, sizeof(*args));
2290 if (IS_ERR(args))
2291 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002292
Al Viro496ad9a2013-01-23 17:07:38 -05002293 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002294
David Sterba01b810b2015-05-12 19:14:49 +02002295 /*
2296 * Unprivileged query to obtain the containing subvolume root id. The
2297 * path is reset so it's consistent with btrfs_search_path_in_tree.
2298 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002299 if (args->treeid == 0)
2300 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2301
David Sterba01b810b2015-05-12 19:14:49 +02002302 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2303 args->name[0] = 0;
2304 goto out;
2305 }
2306
2307 if (!capable(CAP_SYS_ADMIN)) {
2308 ret = -EPERM;
2309 goto out;
2310 }
2311
Chris Masonac8e9812010-02-28 15:39:26 -05002312 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2313 args->treeid, args->objectid,
2314 args->name);
2315
David Sterba01b810b2015-05-12 19:14:49 +02002316out:
Chris Masonac8e9812010-02-28 15:39:26 -05002317 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2318 ret = -EFAULT;
2319
2320 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002321 return ret;
2322}
2323
Yan, Zheng76dda932009-09-21 16:00:26 -04002324static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2325 void __user *arg)
2326{
Al Viro54563d42013-09-01 15:57:51 -04002327 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002328 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002329 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002330 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002331 struct inode *inode;
2332 struct btrfs_root *root = BTRFS_I(dir)->root;
2333 struct btrfs_root *dest = NULL;
2334 struct btrfs_ioctl_vol_args *vol_args;
2335 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002336 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002337 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002338 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002339 int namelen;
2340 int ret;
2341 int err = 0;
2342
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002343 if (!S_ISDIR(dir->i_mode))
2344 return -ENOTDIR;
2345
Yan, Zheng76dda932009-09-21 16:00:26 -04002346 vol_args = memdup_user(arg, sizeof(*vol_args));
2347 if (IS_ERR(vol_args))
2348 return PTR_ERR(vol_args);
2349
2350 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2351 namelen = strlen(vol_args->name);
2352 if (strchr(vol_args->name, '/') ||
2353 strncmp(vol_args->name, "..", namelen) == 0) {
2354 err = -EINVAL;
2355 goto out;
2356 }
2357
Al Viroa561be72011-11-23 11:57:51 -05002358 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002359 if (err)
2360 goto out;
2361
David Sterba521e0542014-04-15 16:41:44 +02002362
Al Viro00235412016-05-26 00:05:12 -04002363 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2364 if (err == -EINTR)
2365 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002366 dentry = lookup_one_len(vol_args->name, parent, namelen);
2367 if (IS_ERR(dentry)) {
2368 err = PTR_ERR(dentry);
2369 goto out_unlock_dir;
2370 }
2371
David Howells2b0143b2015-03-17 22:25:59 +00002372 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002373 err = -ENOENT;
2374 goto out_dput;
2375 }
2376
David Howells2b0143b2015-03-17 22:25:59 +00002377 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002378 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302379 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002380 /*
2381 * Regular user. Only allow this with a special mount
2382 * option, when the user has write+exec access to the
2383 * subvol root, and when rmdir(2) would have been
2384 * allowed.
2385 *
2386 * Note that this is _not_ check that the subvol is
2387 * empty or doesn't contain data that we wouldn't
2388 * otherwise be able to delete.
2389 *
2390 * Users who want to delete empty subvols should try
2391 * rmdir(2).
2392 */
2393 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002394 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002395 goto out_dput;
2396
2397 /*
2398 * Do not allow deletion if the parent dir is the same
2399 * as the dir to be deleted. That means the ioctl
2400 * must be called on the dentry referencing the root
2401 * of the subvol, not a random directory contained
2402 * within it.
2403 */
2404 err = -EINVAL;
2405 if (root == dest)
2406 goto out_dput;
2407
2408 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2409 if (err)
2410 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002411 }
2412
Miao Xie5c39da52012-10-22 11:39:53 +00002413 /* check if subvolume may be deleted by a user */
2414 err = btrfs_may_delete(dir, dentry, 1);
2415 if (err)
2416 goto out_dput;
2417
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002418 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002419 err = -EINVAL;
2420 goto out_dput;
2421 }
2422
Al Viro59551022016-01-22 15:40:57 -05002423 inode_lock(inode);
David Sterba521e0542014-04-15 16:41:44 +02002424
2425 /*
2426 * Don't allow to delete a subvolume with send in progress. This is
2427 * inside the i_mutex so the error handling that has to drop the bit
2428 * again is not run concurrently.
2429 */
2430 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002431 root_flags = btrfs_root_flags(&dest->root_item);
2432 if (dest->send_in_progress == 0) {
2433 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002434 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2435 spin_unlock(&dest->root_item_lock);
2436 } else {
2437 spin_unlock(&dest->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002438 btrfs_warn(fs_info,
2439 "Attempt to delete subvolume %llu during send",
2440 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002441 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002442 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002443 }
2444
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002445 down_write(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -04002446
2447 err = may_destroy_subvol(dest);
2448 if (err)
2449 goto out_up_write;
2450
Miao Xiec58aaad2013-02-28 10:05:36 +00002451 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2452 /*
2453 * One for dir inode, two for dir entries, two for root
2454 * ref/backref.
2455 */
2456 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002457 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002458 if (err)
2459 goto out_up_write;
2460
Yan, Zhenga22285a2010-05-16 10:48:46 -04002461 trans = btrfs_start_transaction(root, 0);
2462 if (IS_ERR(trans)) {
2463 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002464 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002465 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002466 trans->block_rsv = &block_rsv;
2467 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002468
Nikolay Borisov43663552017-01-18 00:31:29 +02002469 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
Filipe Manana2be63d52016-02-12 11:34:23 +00002470
Yan, Zheng76dda932009-09-21 16:00:26 -04002471 ret = btrfs_unlink_subvol(trans, root, dir,
2472 dest->root_key.objectid,
2473 dentry->d_name.name,
2474 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002475 if (ret) {
2476 err = ret;
Jeff Mahoney66642832016-06-10 18:19:25 -04002477 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002478 goto out_end_trans;
2479 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002480
2481 btrfs_record_root_in_trans(trans, dest);
2482
2483 memset(&dest->root_item.drop_progress, 0,
2484 sizeof(dest->root_item.drop_progress));
2485 dest->root_item.drop_level = 0;
2486 btrfs_set_root_refs(&dest->root_item, 0);
2487
Miao Xie27cdeb72014-04-02 19:51:05 +08002488 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002489 ret = btrfs_insert_orphan_item(trans,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002490 fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04002491 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002492 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002493 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002494 err = ret;
2495 goto out_end_trans;
2496 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002497 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002498
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002499 ret = btrfs_uuid_tree_rem(trans, fs_info, dest->root_item.uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002500 BTRFS_UUID_KEY_SUBVOL,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002501 dest->root_key.objectid);
2502 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002503 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002504 err = ret;
2505 goto out_end_trans;
2506 }
2507 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002508 ret = btrfs_uuid_tree_rem(trans, fs_info,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002509 dest->root_item.received_uuid,
2510 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2511 dest->root_key.objectid);
2512 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002513 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002514 err = ret;
2515 goto out_end_trans;
2516 }
2517 }
2518
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002519out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002520 trans->block_rsv = NULL;
2521 trans->bytes_reserved = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002522 ret = btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002523 if (ret && !err)
2524 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002525 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002526out_release:
David Sterba7775c812017-02-10 19:18:18 +01002527 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Yan, Zheng76dda932009-09-21 16:00:26 -04002528out_up_write:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002529 up_write(&fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002530 if (err) {
2531 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002532 root_flags = btrfs_root_flags(&dest->root_item);
2533 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002534 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2535 spin_unlock(&dest->root_item_lock);
2536 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002537out_unlock_inode:
Al Viro59551022016-01-22 15:40:57 -05002538 inode_unlock(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04002539 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002540 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002541 btrfs_invalidate_inodes(dest);
2542 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002543 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002544
2545 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002546 if (dest->ino_cache_inode) {
2547 iput(dest->ino_cache_inode);
2548 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002549 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002550 }
2551out_dput:
2552 dput(dentry);
2553out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002554 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002555out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002556 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002557out:
2558 kfree(vol_args);
2559 return err;
2560}
2561
Chris Mason1e701a32010-03-11 09:42:04 -05002562static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002563{
Al Viro496ad9a2013-01-23 17:07:38 -05002564 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002565 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002566 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002567 int ret;
2568
Ilya Dryomov25122d12013-01-20 15:57:57 +02002569 ret = mnt_want_write_file(file);
2570 if (ret)
2571 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002572
Ilya Dryomov25122d12013-01-20 15:57:57 +02002573 if (btrfs_root_readonly(root)) {
2574 ret = -EROFS;
2575 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002576 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002577
2578 switch (inode->i_mode & S_IFMT) {
2579 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002580 if (!capable(CAP_SYS_ADMIN)) {
2581 ret = -EPERM;
2582 goto out;
2583 }
Eric Sandeende78b512013-01-31 18:21:12 +00002584 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002585 break;
2586 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002587 if (!(file->f_mode & FMODE_WRITE)) {
2588 ret = -EINVAL;
2589 goto out;
2590 }
Chris Mason1e701a32010-03-11 09:42:04 -05002591
2592 range = kzalloc(sizeof(*range), GFP_KERNEL);
2593 if (!range) {
2594 ret = -ENOMEM;
2595 goto out;
2596 }
2597
2598 if (argp) {
2599 if (copy_from_user(range, argp,
2600 sizeof(*range))) {
2601 ret = -EFAULT;
2602 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002603 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002604 }
2605 /* compression requires us to start the IO */
2606 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2607 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2608 range->extent_thresh = (u32)-1;
2609 }
2610 } else {
2611 /* the rest are all set to zero by kzalloc */
2612 range->len = (u64)-1;
2613 }
Al Viro496ad9a2013-01-23 17:07:38 -05002614 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002615 range, 0, 0);
2616 if (ret > 0)
2617 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002618 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002619 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002620 default:
2621 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002622 }
Chris Masone441d542009-01-05 16:57:23 -05002623out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002624 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002625 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002626}
2627
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002628static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002629{
2630 struct btrfs_ioctl_vol_args *vol_args;
2631 int ret;
2632
Chris Masone441d542009-01-05 16:57:23 -05002633 if (!capable(CAP_SYS_ADMIN))
2634 return -EPERM;
2635
David Sterba171938e2017-03-28 14:44:21 +02002636 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
Anand Jaine57138b2013-08-21 11:44:48 +08002637 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002638
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002639 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002640 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002641 if (IS_ERR(vol_args)) {
2642 ret = PTR_ERR(vol_args);
2643 goto out;
2644 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002645
Mark Fasheh5516e592008-07-24 12:20:14 -04002646 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002647 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002648
Anand Jain43d20762014-07-01 00:58:56 +08002649 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002650 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08002651
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002652 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002653out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002654 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002655 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002656 return ret;
2657}
2658
Anand Jain6b526ed2016-02-13 10:01:39 +08002659static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002660{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002661 struct inode *inode = file_inode(file);
2662 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08002663 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002664 int ret;
2665
Chris Masone441d542009-01-05 16:57:23 -05002666 if (!capable(CAP_SYS_ADMIN))
2667 return -EPERM;
2668
Miao Xieda249272012-11-26 08:44:50 +00002669 ret = mnt_want_write_file(file);
2670 if (ret)
2671 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002672
Li Zefandae7b662009-04-08 15:06:54 +08002673 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002674 if (IS_ERR(vol_args)) {
2675 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002676 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002677 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002678
Anand Jain6b526ed2016-02-13 10:01:39 +08002679 /* Check for compatibility reject unknown flags */
David Sterba735654e2016-02-15 18:15:21 +01002680 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED)
2681 return -EOPNOTSUPP;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002682
David Sterba171938e2017-03-28 14:44:21 +02002683 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jain183860f2013-05-17 10:52:45 +00002684 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2685 goto out;
2686 }
2687
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002688 mutex_lock(&fs_info->volume_mutex);
David Sterba735654e2016-02-15 18:15:21 +01002689 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002690 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08002691 } else {
2692 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002693 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08002694 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002695 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002696 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain183860f2013-05-17 10:52:45 +00002697
Anand Jain6b526ed2016-02-13 10:01:39 +08002698 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01002699 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002700 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08002701 vol_args->devid);
2702 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002703 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08002704 vol_args->name);
2705 }
Anand Jain183860f2013-05-17 10:52:45 +00002706out:
2707 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002708err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002709 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002710 return ret;
2711}
2712
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002713static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2714{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002715 struct inode *inode = file_inode(file);
2716 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002717 struct btrfs_ioctl_vol_args *vol_args;
2718 int ret;
2719
2720 if (!capable(CAP_SYS_ADMIN))
2721 return -EPERM;
2722
2723 ret = mnt_want_write_file(file);
2724 if (ret)
2725 return ret;
2726
David Sterba171938e2017-03-28 14:44:21 +02002727 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002728 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02002729 goto out_drop_write;
2730 }
2731
2732 vol_args = memdup_user(arg, sizeof(*vol_args));
2733 if (IS_ERR(vol_args)) {
2734 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002735 goto out;
2736 }
2737
David Sterba58d7bbf2016-05-04 14:10:47 +02002738 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002739 mutex_lock(&fs_info->volume_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002740 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002741 mutex_unlock(&fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002742
2743 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002744 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002745 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02002746out:
David Sterba171938e2017-03-28 14:44:21 +02002747 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
David Sterba58d7bbf2016-05-04 14:10:47 +02002748out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002749 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02002750
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002751 return ret;
2752}
2753
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002754static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
2755 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002756{
Li Zefan027ed2f2011-06-08 08:27:56 +00002757 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002758 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002759 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002760 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002761
Li Zefan027ed2f2011-06-08 08:27:56 +00002762 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2763 if (!fi_args)
2764 return -ENOMEM;
2765
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002766 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002767 fi_args->num_devices = fs_devices->num_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002768 memcpy(&fi_args->fsid, fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002769
Byongho Leed7641a42015-09-01 23:10:57 +09002770 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002771 if (device->devid > fi_args->max_id)
2772 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002773 }
2774 mutex_unlock(&fs_devices->device_list_mutex);
2775
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07002776 fi_args->nodesize = fs_info->nodesize;
2777 fi_args->sectorsize = fs_info->sectorsize;
2778 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02002779
Li Zefan027ed2f2011-06-08 08:27:56 +00002780 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2781 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002782
Li Zefan027ed2f2011-06-08 08:27:56 +00002783 kfree(fi_args);
2784 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002785}
2786
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002787static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
2788 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002789{
2790 struct btrfs_ioctl_dev_info_args *di_args;
2791 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002792 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01002793 int ret = 0;
2794 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002795
Jan Schmidt475f6382011-03-11 15:41:01 +01002796 di_args = memdup_user(arg, sizeof(*di_args));
2797 if (IS_ERR(di_args))
2798 return PTR_ERR(di_args);
2799
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002800 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002801 s_uuid = di_args->uuid;
2802
2803 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002804 dev = btrfs_find_device(fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002805
2806 if (!dev) {
2807 ret = -ENODEV;
2808 goto out;
2809 }
2810
2811 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002812 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2813 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002814 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002815 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002816 struct rcu_string *name;
2817
2818 rcu_read_lock();
2819 name = rcu_dereference(dev->name);
2820 strncpy(di_args->path, name->str, sizeof(di_args->path));
2821 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002822 di_args->path[sizeof(di_args->path) - 1] = 0;
2823 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002824 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002825 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002826
2827out:
David Sterba55793c02013-04-26 15:20:23 +00002828 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002829 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2830 ret = -EFAULT;
2831
2832 kfree(di_args);
2833 return ret;
2834}
2835
Mark Fashehf4414602015-06-30 14:42:05 -07002836static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002837{
2838 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002839
Mark Fasheh416161d2013-08-06 11:42:51 -07002840 page = grab_cache_page(inode->i_mapping, index);
2841 if (!page)
Filipe Manana31314002016-01-27 18:37:47 +00002842 return ERR_PTR(-ENOMEM);
Mark Fasheh416161d2013-08-06 11:42:51 -07002843
2844 if (!PageUptodate(page)) {
Filipe Manana31314002016-01-27 18:37:47 +00002845 int ret;
2846
2847 ret = btrfs_readpage(NULL, page);
2848 if (ret)
2849 return ERR_PTR(ret);
Mark Fasheh416161d2013-08-06 11:42:51 -07002850 lock_page(page);
2851 if (!PageUptodate(page)) {
2852 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002853 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002854 return ERR_PTR(-EIO);
2855 }
2856 if (page->mapping != inode->i_mapping) {
2857 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002858 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002859 return ERR_PTR(-EAGAIN);
Mark Fasheh416161d2013-08-06 11:42:51 -07002860 }
2861 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002862
2863 return page;
2864}
2865
Mark Fashehf4414602015-06-30 14:42:05 -07002866static int gather_extent_pages(struct inode *inode, struct page **pages,
2867 int num_pages, u64 off)
2868{
2869 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002870 pgoff_t index = off >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002871
2872 for (i = 0; i < num_pages; i++) {
Filipe Manana31314002016-01-27 18:37:47 +00002873again:
Mark Fashehf4414602015-06-30 14:42:05 -07002874 pages[i] = extent_same_get_page(inode, index + i);
Filipe Manana31314002016-01-27 18:37:47 +00002875 if (IS_ERR(pages[i])) {
2876 int err = PTR_ERR(pages[i]);
2877
2878 if (err == -EAGAIN)
2879 goto again;
2880 pages[i] = NULL;
2881 return err;
2882 }
Mark Fashehf4414602015-06-30 14:42:05 -07002883 }
2884 return 0;
2885}
2886
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002887static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2888 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002889{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002890 /*
2891 * Do any pending delalloc/csum calculations on inode, one way or
2892 * another, and lock file content.
2893 * The locking order is:
2894 *
2895 * 1) pages
2896 * 2) range in the inode's io tree
2897 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002898 while (1) {
2899 struct btrfs_ordered_extent *ordered;
2900 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2901 ordered = btrfs_lookup_first_ordered_extent(inode,
2902 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002903 if ((!ordered ||
2904 ordered->file_offset + ordered->len <= off ||
2905 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002906 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002907 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2908 if (ordered)
2909 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002910 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002911 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002912 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2913 if (ordered)
2914 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002915 if (!retry_range_locking)
2916 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002917 btrfs_wait_ordered_range(inode, off, len);
2918 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002919 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002920}
2921
Mark Fashehf4414602015-06-30 14:42:05 -07002922static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002923{
Al Viro59551022016-01-22 15:40:57 -05002924 inode_unlock(inode1);
2925 inode_unlock(inode2);
Mark Fasheh416161d2013-08-06 11:42:51 -07002926}
2927
Mark Fashehf4414602015-06-30 14:42:05 -07002928static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2929{
2930 if (inode1 < inode2)
2931 swap(inode1, inode2);
2932
Al Viro59551022016-01-22 15:40:57 -05002933 inode_lock_nested(inode1, I_MUTEX_PARENT);
2934 inode_lock_nested(inode2, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002935}
2936
2937static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2938 struct inode *inode2, u64 loff2, u64 len)
2939{
2940 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2941 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2942}
2943
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002944static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2945 struct inode *inode2, u64 loff2, u64 len,
2946 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002947{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002948 int ret;
2949
Mark Fasheh416161d2013-08-06 11:42:51 -07002950 if (inode1 < inode2) {
2951 swap(inode1, inode2);
2952 swap(loff1, loff2);
2953 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002954 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2955 if (ret)
2956 return ret;
2957 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2958 if (ret)
2959 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2960 loff1 + len - 1);
2961 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002962}
2963
2964struct cmp_pages {
2965 int num_pages;
2966 struct page **src_pages;
2967 struct page **dst_pages;
2968};
2969
2970static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2971{
2972 int i;
2973 struct page *pg;
2974
2975 for (i = 0; i < cmp->num_pages; i++) {
2976 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002977 if (pg) {
2978 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002979 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002980 }
Mark Fashehf4414602015-06-30 14:42:05 -07002981 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002982 if (pg) {
2983 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002984 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002985 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002986 }
Mark Fashehf4414602015-06-30 14:42:05 -07002987 kfree(cmp->src_pages);
2988 kfree(cmp->dst_pages);
2989}
2990
2991static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2992 struct inode *dst, u64 dst_loff,
2993 u64 len, struct cmp_pages *cmp)
2994{
2995 int ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002996 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002997 struct page **src_pgarr, **dst_pgarr;
2998
2999 /*
3000 * We must gather up all the pages before we initiate our
3001 * extent locking. We use an array for the page pointers. Size
3002 * of the array is bounded by len, which is in turn bounded by
3003 * BTRFS_MAX_DEDUPE_LEN.
3004 */
David Sterba66722f72016-02-11 15:01:38 +01003005 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
3006 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
Mark Fashehf4414602015-06-30 14:42:05 -07003007 if (!src_pgarr || !dst_pgarr) {
3008 kfree(src_pgarr);
3009 kfree(dst_pgarr);
3010 return -ENOMEM;
3011 }
3012 cmp->num_pages = num_pages;
3013 cmp->src_pages = src_pgarr;
3014 cmp->dst_pages = dst_pgarr;
3015
Filipe Mananab1517622017-02-21 17:14:52 +00003016 /*
3017 * If deduping ranges in the same inode, locking rules make it mandatory
3018 * to always lock pages in ascending order to avoid deadlocks with
3019 * concurrent tasks (such as starting writeback/delalloc).
3020 */
3021 if (src == dst && dst_loff < loff) {
3022 swap(src_pgarr, dst_pgarr);
3023 swap(loff, dst_loff);
3024 }
3025
3026 ret = gather_extent_pages(src, src_pgarr, cmp->num_pages, loff);
Mark Fashehf4414602015-06-30 14:42:05 -07003027 if (ret)
3028 goto out;
3029
Filipe Mananab1517622017-02-21 17:14:52 +00003030 ret = gather_extent_pages(dst, dst_pgarr, cmp->num_pages, dst_loff);
Mark Fashehf4414602015-06-30 14:42:05 -07003031
3032out:
3033 if (ret)
3034 btrfs_cmp_data_free(cmp);
Naohiro Aota78ad4ce2017-09-08 17:48:55 +09003035 return ret;
Mark Fasheh416161d2013-08-06 11:42:51 -07003036}
3037
David Sterba1a287cf2017-02-10 20:15:10 +01003038static int btrfs_cmp_data(u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003039{
3040 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07003041 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07003042 struct page *src_page, *dst_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003043 unsigned int cmp_len = PAGE_SIZE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003044 void *addr, *dst_addr;
3045
Mark Fashehf4414602015-06-30 14:42:05 -07003046 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003047 while (len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003048 if (len < PAGE_SIZE)
Mark Fasheh416161d2013-08-06 11:42:51 -07003049 cmp_len = len;
3050
Mark Fashehf4414602015-06-30 14:42:05 -07003051 BUG_ON(i >= cmp->num_pages);
3052
3053 src_page = cmp->src_pages[i];
3054 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003055 ASSERT(PageLocked(src_page));
3056 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07003057
Mark Fasheh416161d2013-08-06 11:42:51 -07003058 addr = kmap_atomic(src_page);
3059 dst_addr = kmap_atomic(dst_page);
3060
3061 flush_dcache_page(src_page);
3062 flush_dcache_page(dst_page);
3063
3064 if (memcmp(addr, dst_addr, cmp_len))
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003065 ret = -EBADE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003066
3067 kunmap_atomic(addr);
3068 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07003069
3070 if (ret)
3071 break;
3072
Mark Fasheh416161d2013-08-06 11:42:51 -07003073 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07003074 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07003075 }
3076
3077 return ret;
3078}
3079
Mark Fashehe1d227a2015-06-08 15:05:25 -07003080static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
3081 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07003082{
Mark Fashehe1d227a2015-06-08 15:05:25 -07003083 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003084 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
3085
Mark Fashehe1d227a2015-06-08 15:05:25 -07003086 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07003087 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003088
3089 /* if we extend to eof, continue to block boundary */
3090 if (off + len == inode->i_size)
3091 *plen = len = ALIGN(inode->i_size, bs) - off;
3092
Mark Fasheh416161d2013-08-06 11:42:51 -07003093 /* Check that we are block aligned - btrfs_clone() requires this */
3094 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
3095 return -EINVAL;
3096
3097 return 0;
3098}
3099
Mark Fashehe1d227a2015-06-08 15:05:25 -07003100static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07003101 struct inode *dst, u64 dst_loff)
3102{
3103 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003104 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07003105 struct cmp_pages cmp;
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003106 bool same_inode = (src == dst);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003107 u64 same_lock_start = 0;
3108 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003109
Filipe Manana113e8282015-03-30 18:26:47 +01003110 if (len == 0)
3111 return 0;
3112
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003113 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003114 inode_lock(src);
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003115 else
3116 btrfs_double_inode_lock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003117
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003118 ret = extent_same_check_offsets(src, loff, &len, olen);
3119 if (ret)
3120 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07003121
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003122 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3123 if (ret)
3124 goto out_unlock;
3125
3126 if (same_inode) {
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003127 /*
3128 * Single inode case wants the same checks, except we
3129 * don't want our length pushed out past i_size as
3130 * comparing that data range makes no sense.
3131 *
3132 * extent_same_check_offsets() will do this for an
3133 * unaligned length at i_size, so catch it here and
3134 * reject the request.
3135 *
3136 * This effectively means we require aligned extents
3137 * for the single-inode case, whereas the other cases
3138 * allow an unaligned length so long as it ends at
3139 * i_size.
3140 */
3141 if (len != olen) {
3142 ret = -EINVAL;
3143 goto out_unlock;
3144 }
3145
3146 /* Check for overlapping ranges */
3147 if (dst_loff + len > loff && dst_loff < loff + len) {
3148 ret = -EINVAL;
3149 goto out_unlock;
3150 }
3151
3152 same_lock_start = min_t(u64, loff, dst_loff);
3153 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003154 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003155
3156 /* don't make the dst file partly checksummed */
3157 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3158 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3159 ret = -EINVAL;
3160 goto out_unlock;
3161 }
3162
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003163again:
Mark Fashehf4414602015-06-30 14:42:05 -07003164 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3165 if (ret)
3166 goto out_unlock;
3167
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003168 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003169 ret = lock_extent_range(src, same_lock_start, same_lock_len,
3170 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003171 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003172 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
3173 false);
3174 /*
3175 * If one of the inodes has dirty pages in the respective range or
3176 * ordered extents, we need to flush dellaloc and wait for all ordered
3177 * extents in the range. We must unlock the pages and the ranges in the
3178 * io trees to avoid deadlocks when flushing delalloc (requires locking
3179 * pages) and when waiting for ordered extents to complete (they require
3180 * range locking).
3181 */
3182 if (ret == -EAGAIN) {
3183 /*
3184 * Ranges in the io trees already unlocked. Now unlock all
3185 * pages before waiting for all IO to complete.
3186 */
3187 btrfs_cmp_data_free(&cmp);
3188 if (same_inode) {
3189 btrfs_wait_ordered_range(src, same_lock_start,
3190 same_lock_len);
3191 } else {
3192 btrfs_wait_ordered_range(src, loff, len);
3193 btrfs_wait_ordered_range(dst, dst_loff, len);
3194 }
3195 goto again;
3196 }
3197 ASSERT(ret == 0);
3198 if (WARN_ON(ret)) {
3199 /* ranges in the io trees already unlocked */
3200 btrfs_cmp_data_free(&cmp);
3201 return ret;
3202 }
Mark Fashehf4414602015-06-30 14:42:05 -07003203
Mark Fasheh207910d2015-06-30 14:42:04 -07003204 /* pass original length for comparison so we stay within i_size */
David Sterba1a287cf2017-02-10 20:15:10 +01003205 ret = btrfs_cmp_data(olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003206 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003207 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003208
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003209 if (same_inode)
3210 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3211 same_lock_start + same_lock_len - 1);
3212 else
3213 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003214
3215 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003216out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003217 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003218 inode_unlock(src);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003219 else
3220 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003221
3222 return ret;
3223}
3224
Byongho Leeee221842015-12-15 01:42:10 +09003225#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003226
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003227ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3228 struct file *dst_file, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003229{
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003230 struct inode *src = file_inode(src_file);
3231 struct inode *dst = file_inode(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003232 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003233 ssize_t res;
Mark Fasheh416161d2013-08-06 11:42:51 -07003234
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003235 if (olen > BTRFS_MAX_DEDUPE_LEN)
3236 olen = BTRFS_MAX_DEDUPE_LEN;
Mark Fasheh416161d2013-08-06 11:42:51 -07003237
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003238 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003239 /*
3240 * Btrfs does not support blocksize < page_size. As a
3241 * result, btrfs_cmp_data() won't correctly handle
3242 * this situation without an update.
3243 */
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003244 return -EINVAL;
Mark Fasheh416161d2013-08-06 11:42:51 -07003245 }
3246
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003247 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3248 if (res)
3249 return res;
3250 return olen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003251}
3252
Filipe Mananaf82a9902014-06-01 01:50:28 +01003253static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3254 struct inode *inode,
3255 u64 endoff,
3256 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003257 const u64 olen,
3258 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003259{
3260 struct btrfs_root *root = BTRFS_I(inode)->root;
3261 int ret;
3262
3263 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003264 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003265 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003266 /*
3267 * We round up to the block size at eof when determining which
3268 * extents to clone above, but shouldn't round up the file size.
3269 */
3270 if (endoff > destoff + olen)
3271 endoff = destoff + olen;
3272 if (endoff > inode->i_size)
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003273 btrfs_i_size_write(BTRFS_I(inode), endoff);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003274
3275 ret = btrfs_update_inode(trans, root, inode);
3276 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003277 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003278 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003279 goto out;
3280 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003281 ret = btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003282out:
3283 return ret;
3284}
3285
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003286static void clone_update_extent_map(struct btrfs_inode *inode,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003287 const struct btrfs_trans_handle *trans,
3288 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003289 const u64 hole_offset,
3290 const u64 hole_len)
3291{
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003292 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01003293 struct extent_map *em;
3294 int ret;
3295
3296 em = alloc_extent_map();
3297 if (!em) {
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003298 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003299 return;
3300 }
3301
Filipe Manana14f59792014-06-29 21:45:40 +01003302 if (path) {
3303 struct btrfs_file_extent_item *fi;
3304
3305 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3306 struct btrfs_file_extent_item);
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003307 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003308 em->generation = -1;
3309 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3310 BTRFS_FILE_EXTENT_INLINE)
3311 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003312 &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003313 } else {
3314 em->start = hole_offset;
3315 em->len = hole_len;
3316 em->ram_bytes = em->len;
3317 em->orig_start = hole_offset;
3318 em->block_start = EXTENT_MAP_HOLE;
3319 em->block_len = 0;
3320 em->orig_block_len = 0;
3321 em->compress_type = BTRFS_COMPRESS_NONE;
3322 em->generation = trans->transid;
3323 }
3324
3325 while (1) {
3326 write_lock(&em_tree->lock);
3327 ret = add_extent_mapping(em_tree, em, 1);
3328 write_unlock(&em_tree->lock);
3329 if (ret != -EEXIST) {
3330 free_extent_map(em);
3331 break;
3332 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003333 btrfs_drop_extent_cache(inode, em->start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003334 em->start + em->len - 1, 0);
3335 }
3336
David Sterbaee39b432014-09-30 01:33:33 +02003337 if (ret)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003338 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003339}
3340
Filipe Manana8039d872015-10-13 15:15:00 +01003341/*
3342 * Make sure we do not end up inserting an inline extent into a file that has
3343 * already other (non-inline) extents. If a file has an inline extent it can
3344 * not have any other extents and the (single) inline extent must start at the
3345 * file offset 0. Failing to respect these rules will lead to file corruption,
3346 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3347 *
3348 * We can have extents that have been already written to disk or we can have
3349 * dirty ranges still in delalloc, in which case the extent maps and items are
3350 * created only when we run delalloc, and the delalloc ranges might fall outside
3351 * the range we are currently locking in the inode's io tree. So we check the
3352 * inode's i_size because of that (i_size updates are done while holding the
3353 * i_mutex, which we are holding here).
3354 * We also check to see if the inode has a size not greater than "datal" but has
3355 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3356 * protected against such concurrent fallocate calls by the i_mutex).
3357 *
3358 * If the file has no extents but a size greater than datal, do not allow the
3359 * copy because we would need turn the inline extent into a non-inline one (even
3360 * with NO_HOLES enabled). If we find our destination inode only has one inline
3361 * extent, just overwrite it with the source inline extent if its size is less
3362 * than the source extent's size, or we could copy the source inline extent's
3363 * data into the destination inode's inline extent if the later is greater then
3364 * the former.
3365 */
David Sterba4a0ab9d2017-02-10 20:18:49 +01003366static int clone_copy_inline_extent(struct inode *dst,
Filipe Manana8039d872015-10-13 15:15:00 +01003367 struct btrfs_trans_handle *trans,
3368 struct btrfs_path *path,
3369 struct btrfs_key *new_key,
3370 const u64 drop_start,
3371 const u64 datal,
3372 const u64 skip,
3373 const u64 size,
3374 char *inline_data)
3375{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003376 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
Filipe Manana8039d872015-10-13 15:15:00 +01003377 struct btrfs_root *root = BTRFS_I(dst)->root;
3378 const u64 aligned_end = ALIGN(new_key->offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003379 fs_info->sectorsize);
Filipe Manana8039d872015-10-13 15:15:00 +01003380 int ret;
3381 struct btrfs_key key;
3382
3383 if (new_key->offset > 0)
3384 return -EOPNOTSUPP;
3385
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003386 key.objectid = btrfs_ino(BTRFS_I(dst));
Filipe Manana8039d872015-10-13 15:15:00 +01003387 key.type = BTRFS_EXTENT_DATA_KEY;
3388 key.offset = 0;
3389 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3390 if (ret < 0) {
3391 return ret;
3392 } else if (ret > 0) {
3393 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3394 ret = btrfs_next_leaf(root, path);
3395 if (ret < 0)
3396 return ret;
3397 else if (ret > 0)
3398 goto copy_inline_extent;
3399 }
3400 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003401 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003402 key.type == BTRFS_EXTENT_DATA_KEY) {
3403 ASSERT(key.offset > 0);
3404 return -EOPNOTSUPP;
3405 }
3406 } else if (i_size_read(dst) <= datal) {
3407 struct btrfs_file_extent_item *ei;
3408 u64 ext_len;
3409
3410 /*
3411 * If the file size is <= datal, make sure there are no other
3412 * extents following (can happen do to an fallocate call with
3413 * the flag FALLOC_FL_KEEP_SIZE).
3414 */
3415 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3416 struct btrfs_file_extent_item);
3417 /*
3418 * If it's an inline extent, it can not have other extents
3419 * following it.
3420 */
3421 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3422 BTRFS_FILE_EXTENT_INLINE)
3423 goto copy_inline_extent;
3424
3425 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3426 if (ext_len > aligned_end)
3427 return -EOPNOTSUPP;
3428
3429 ret = btrfs_next_item(root, path);
3430 if (ret < 0) {
3431 return ret;
3432 } else if (ret == 0) {
3433 btrfs_item_key_to_cpu(path->nodes[0], &key,
3434 path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003435 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003436 key.type == BTRFS_EXTENT_DATA_KEY)
3437 return -EOPNOTSUPP;
3438 }
3439 }
3440
3441copy_inline_extent:
3442 /*
3443 * We have no extent items, or we have an extent at offset 0 which may
3444 * or may not be inlined. All these cases are dealt the same way.
3445 */
3446 if (i_size_read(dst) > datal) {
3447 /*
3448 * If the destination inode has an inline extent...
3449 * This would require copying the data from the source inline
3450 * extent into the beginning of the destination's inline extent.
3451 * But this is really complex, both extents can be compressed
3452 * or just one of them, which would require decompressing and
3453 * re-compressing data (which could increase the new compressed
3454 * size, not allowing the compressed data to fit anymore in an
3455 * inline extent).
3456 * So just don't support this case for now (it should be rare,
3457 * we are not really saving space when cloning inline extents).
3458 */
3459 return -EOPNOTSUPP;
3460 }
3461
3462 btrfs_release_path(path);
3463 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3464 if (ret)
3465 return ret;
3466 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3467 if (ret)
3468 return ret;
3469
3470 if (skip) {
3471 const u32 start = btrfs_file_extent_calc_inline_size(0);
3472
3473 memmove(inline_data + start, inline_data + start + skip, datal);
3474 }
3475
3476 write_extent_buffer(path->nodes[0], inline_data,
3477 btrfs_item_ptr_offset(path->nodes[0],
3478 path->slots[0]),
3479 size);
3480 inode_add_bytes(dst, datal);
3481
3482 return 0;
3483}
3484
Mark Fasheh32b7c682013-08-06 11:42:49 -07003485/**
3486 * btrfs_clone() - clone a range from inode file to another
3487 *
3488 * @src: Inode to clone from
3489 * @inode: Inode to clone to
3490 * @off: Offset within source to start clone from
3491 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003492 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003493 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003494 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003495 */
3496static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003497 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003498 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003499{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003500 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003501 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003502 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003503 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003504 struct btrfs_trans_handle *trans;
3505 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003506 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003507 u32 nritems;
3508 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003509 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003510 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003511 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003512
3513 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07003514 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3515 if (!buf)
3516 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003517
3518 path = btrfs_alloc_path();
3519 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003520 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003521 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003522 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003523
David Sterbae4058b52015-11-27 16:31:35 +01003524 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003525 /* clone data */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003526 key.objectid = btrfs_ino(BTRFS_I(src));
Yan Zhengae01a0a2008-08-04 23:23:47 -04003527 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003528 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003529
3530 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003531 u64 next_key_min_offset = key.offset + 1;
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
David Sterba962a2982014-06-04 18:41:45 +02003572 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003573 struct btrfs_file_extent_item *extent;
3574 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003575 u32 size;
3576 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003577 u64 disko = 0, diskl = 0;
3578 u64 datao = 0, datal = 0;
3579 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003580 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003581
Sage Weilc5c9cd42008-11-12 14:32:25 -05003582 extent = btrfs_item_ptr(leaf, slot,
3583 struct btrfs_file_extent_item);
3584 comp = btrfs_file_extent_compression(leaf, extent);
3585 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003586 if (type == BTRFS_FILE_EXTENT_REG ||
3587 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003588 disko = btrfs_file_extent_disk_bytenr(leaf,
3589 extent);
3590 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3591 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003592 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003593 datal = btrfs_file_extent_num_bytes(leaf,
3594 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003595 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3596 /* take upper bound, may be compressed */
3597 datal = btrfs_file_extent_ram_bytes(leaf,
3598 extent);
3599 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003600
Filipe Manana2c463822014-05-31 02:31:05 +01003601 /*
3602 * The first search might have left us at an extent
3603 * item that ends before our target range's start, can
3604 * happen if we have holes and NO_HOLES feature enabled.
3605 */
3606 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003607 path->slots[0]++;
3608 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003609 } else if (key.offset >= off + len) {
3610 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003611 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003612 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003613 size = btrfs_item_size_nr(leaf, slot);
3614 read_extent_buffer(leaf, buf,
3615 btrfs_item_ptr_offset(leaf, slot),
3616 size);
3617
3618 btrfs_release_path(path);
3619 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003620
Zheng Yan31840ae2008-09-23 13:14:14 -04003621 memcpy(&new_key, &key, sizeof(new_key));
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003622 new_key.objectid = btrfs_ino(BTRFS_I(inode));
Li Zefan4d728ec2011-01-26 14:10:43 +08003623 if (off <= key.offset)
3624 new_key.offset = key.offset + destoff - off;
3625 else
3626 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003627
Sage Weilb6f34092011-09-20 14:48:51 -04003628 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003629 * Deal with a hole that doesn't have an extent item
3630 * that represents it (NO_HOLES feature enabled).
3631 * This hole is either in the middle of the cloning
3632 * range or at the beginning (fully overlaps it or
3633 * partially overlaps it).
3634 */
3635 if (new_key.offset != last_dest_end)
3636 drop_start = last_dest_end;
3637 else
3638 drop_start = new_key.offset;
3639
3640 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003641 * 1 - adjusting old extent (we may have to split it)
3642 * 1 - add new extent
3643 * 1 - inode update
3644 */
3645 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003646 if (IS_ERR(trans)) {
3647 ret = PTR_ERR(trans);
3648 goto out;
3649 }
3650
Chris Masonc8a894d2009-06-27 21:07:03 -04003651 if (type == BTRFS_FILE_EXTENT_REG ||
3652 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003653 /*
3654 * a | --- range to clone ---| b
3655 * | ------------- extent ------------- |
3656 */
3657
Antonio Ospite93915582014-06-04 14:03:48 +02003658 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003659 if (key.offset + datal > off + len)
3660 datal = off + len - key.offset;
3661
Antonio Ospite93915582014-06-04 14:03:48 +02003662 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003663 if (off > key.offset) {
3664 datao += off - key.offset;
3665 datal -= off - key.offset;
3666 }
3667
Josef Bacik5dc562c2012-08-17 13:14:17 -04003668 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003669 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003670 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003671 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003672 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003673 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003674 btrfs_abort_transaction(trans,
Jeff Mahoney66642832016-06-10 18:19:25 -04003675 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003676 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003677 goto out;
3678 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003679
Sage Weilc5c9cd42008-11-12 14:32:25 -05003680 ret = btrfs_insert_empty_item(trans, root, path,
3681 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003682 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003683 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003684 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003685 goto out;
3686 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003687
3688 leaf = path->nodes[0];
3689 slot = path->slots[0];
3690 write_extent_buffer(leaf, buf,
3691 btrfs_item_ptr_offset(leaf, slot),
3692 size);
3693
3694 extent = btrfs_item_ptr(leaf, slot,
3695 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003696
Sage Weilc5c9cd42008-11-12 14:32:25 -05003697 /* disko == 0 means it's a hole */
3698 if (!disko)
3699 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003700
3701 btrfs_set_file_extent_offset(leaf, extent,
3702 datao);
3703 btrfs_set_file_extent_num_bytes(leaf, extent,
3704 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003705
Sage Weilc5c9cd42008-11-12 14:32:25 -05003706 if (disko) {
3707 inode_add_bytes(inode, datal);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003708 ret = btrfs_inc_extent_ref(trans,
3709 fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003710 disko, diskl, 0,
3711 root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003712 btrfs_ino(BTRFS_I(inode)),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003713 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003714 if (ret) {
3715 btrfs_abort_transaction(trans,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003716 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003717 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003718 goto out;
3719
3720 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003721 }
3722 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3723 u64 skip = 0;
3724 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003725
Sage Weilc5c9cd42008-11-12 14:32:25 -05003726 if (off > key.offset) {
3727 skip = off - key.offset;
3728 new_key.offset += skip;
3729 }
Chris Masond3977122009-01-05 21:25:51 -05003730
Liu Boaa42ffd2012-09-18 03:52:23 -06003731 if (key.offset + datal > off + len)
3732 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003733
Sage Weilc5c9cd42008-11-12 14:32:25 -05003734 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003735 ret = -EINVAL;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003736 btrfs_end_transaction(trans);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003737 goto out;
3738 }
3739 size -= skip + trim;
3740 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003741
David Sterba4a0ab9d2017-02-10 20:18:49 +01003742 ret = clone_copy_inline_extent(inode,
Filipe Manana8039d872015-10-13 15:15:00 +01003743 trans, path,
3744 &new_key,
3745 drop_start,
3746 datal,
3747 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003748 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003749 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003750 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003751 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003752 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003753 goto out;
3754 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003755 leaf = path->nodes[0];
3756 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003757 }
3758
Filipe Manana7ffbb592014-06-09 03:48:05 +01003759 /* If we have an implicit hole (NO_HOLES feature). */
3760 if (drop_start < new_key.offset)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003761 clone_update_extent_map(BTRFS_I(inode), trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003762 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003763 new_key.offset - drop_start);
3764
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003765 clone_update_extent_map(BTRFS_I(inode), trans,
3766 path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003767
Sage Weilc5c9cd42008-11-12 14:32:25 -05003768 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003769 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003770
Filipe Manana62e23902014-08-08 02:47:06 +01003771 last_dest_end = ALIGN(new_key.offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003772 fs_info->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003773 ret = clone_finish_inode_update(trans, inode,
3774 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003775 destoff, olen,
3776 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003777 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003778 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003779 if (new_key.offset + datal >= destoff + len)
3780 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003781 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003782 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003783 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003784
3785 if (fatal_signal_pending(current)) {
3786 ret = -EINTR;
3787 goto out;
3788 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003789 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003790 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003791
Filipe Mananaf82a9902014-06-01 01:50:28 +01003792 if (last_dest_end < destoff + len) {
3793 /*
3794 * We have an implicit hole (NO_HOLES feature is enabled) that
3795 * fully or partially overlaps our cloning range at its end.
3796 */
3797 btrfs_release_path(path);
3798
3799 /*
3800 * 1 - remove extent(s)
3801 * 1 - inode update
3802 */
3803 trans = btrfs_start_transaction(root, 2);
3804 if (IS_ERR(trans)) {
3805 ret = PTR_ERR(trans);
3806 goto out;
3807 }
3808 ret = btrfs_drop_extents(trans, root, inode,
3809 last_dest_end, destoff + len, 1);
3810 if (ret) {
3811 if (ret != -EOPNOTSUPP)
Jeff Mahoney66642832016-06-10 18:19:25 -04003812 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003813 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003814 goto out;
3815 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003816 clone_update_extent_map(BTRFS_I(inode), trans, NULL,
3817 last_dest_end,
3818 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003819 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003820 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003821 }
3822
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003823out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003824 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003825 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003826 return ret;
3827}
3828
Zach Brown3db11b22015-11-10 16:53:32 -05003829static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3830 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003831{
Al Viro54563d42013-09-01 15:57:51 -04003832 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003833 struct inode *src = file_inode(file_src);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003834 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003835 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003836 int ret;
3837 u64 len = olen;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003838 u64 bs = fs_info->sb->s_blocksize;
Zach Brown3db11b22015-11-10 16:53:32 -05003839 int same_inode = src == inode;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003840
3841 /*
3842 * TODO:
3843 * - split compressed inline extents. annoying: we need to
3844 * decompress into destination's address_space (the file offset
3845 * may change, so source mapping won't do), then recompress (or
3846 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003847 *
3848 * - split destination inode's inline extents. The inline extents can
3849 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003850 */
3851
Mark Fasheh32b7c682013-08-06 11:42:49 -07003852 if (btrfs_root_readonly(root))
3853 return -EROFS;
3854
Zach Brown3db11b22015-11-10 16:53:32 -05003855 if (file_src->f_path.mnt != file->f_path.mnt ||
3856 src->i_sb != inode->i_sb)
3857 return -EXDEV;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003858
3859 /* don't make the dst file partly checksummed */
3860 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3861 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
Zach Brown3db11b22015-11-10 16:53:32 -05003862 return -EINVAL;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003863
Mark Fasheh32b7c682013-08-06 11:42:49 -07003864 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Zach Brown3db11b22015-11-10 16:53:32 -05003865 return -EISDIR;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003866
3867 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003868 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003869 } else {
Al Viro59551022016-01-22 15:40:57 -05003870 inode_lock(src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003871 }
3872
3873 /* determine range to clone */
3874 ret = -EINVAL;
3875 if (off + len > src->i_size || off + len < off)
3876 goto out_unlock;
3877 if (len == 0)
3878 olen = len = src->i_size - off;
3879 /* if we extend to eof, continue to block boundary */
3880 if (off + len == src->i_size)
3881 len = ALIGN(src->i_size, bs) - off;
3882
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003883 if (len == 0) {
3884 ret = 0;
3885 goto out_unlock;
3886 }
3887
Mark Fasheh32b7c682013-08-06 11:42:49 -07003888 /* verify the end result is block aligned */
3889 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3890 !IS_ALIGNED(destoff, bs))
3891 goto out_unlock;
3892
3893 /* verify if ranges are overlapped within the same file */
3894 if (same_inode) {
3895 if (destoff + len > off && destoff < off + len)
3896 goto out_unlock;
3897 }
3898
3899 if (destoff > inode->i_size) {
3900 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3901 if (ret)
3902 goto out_unlock;
3903 }
3904
Filipe Mananac125b8b2014-05-23 05:03:34 +01003905 /*
3906 * Lock the target range too. Right after we replace the file extent
3907 * items in the fs tree (which now point to the cloned data), we might
3908 * have a worker replace them with extent items relative to a write
3909 * operation that was issued before this clone operation (i.e. confront
3910 * with inode.c:btrfs_finish_ordered_io).
3911 */
3912 if (same_inode) {
3913 u64 lock_start = min_t(u64, off, destoff);
3914 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003915
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003916 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003917 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003918 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3919 true);
3920 }
3921 ASSERT(ret == 0);
3922 if (WARN_ON(ret)) {
3923 /* ranges in the io trees already unlocked */
3924 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003925 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003926
Mark Fasheh1c919a52015-06-30 14:42:08 -07003927 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003928
Filipe Mananac125b8b2014-05-23 05:03:34 +01003929 if (same_inode) {
3930 u64 lock_start = min_t(u64, off, destoff);
3931 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3932
3933 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3934 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003935 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003936 }
3937 /*
3938 * Truncate page cache pages so that future reads will see the cloned
3939 * data immediately and not the previous data.
3940 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303941 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003942 round_down(destoff, PAGE_SIZE),
3943 round_up(destoff + len, PAGE_SIZE) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003944out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003945 if (!same_inode)
3946 btrfs_double_inode_unlock(src, inode);
3947 else
Al Viro59551022016-01-22 15:40:57 -05003948 inode_unlock(src);
Zach Brown3db11b22015-11-10 16:53:32 -05003949 return ret;
3950}
3951
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003952int btrfs_clone_file_range(struct file *src_file, loff_t off,
3953 struct file *dst_file, loff_t destoff, u64 len)
Zach Brown3db11b22015-11-10 16:53:32 -05003954{
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003955 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003956}
3957
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003958/*
3959 * there are many ways the trans_start and trans_end ioctls can lead
3960 * to deadlocks. They should only be used by applications that
3961 * basically own the machine, and have a very in depth understanding
3962 * of all the possible deadlocks and enospc problems.
3963 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003964static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003965{
Al Viro496ad9a2013-01-23 17:07:38 -05003966 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003967 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003968 struct btrfs_root *root = BTRFS_I(inode)->root;
3969 struct btrfs_trans_handle *trans;
Josef Bacik23b5ec72017-07-24 15:14:25 -04003970 struct btrfs_file_private *private;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003971 int ret;
Nikolay Borisov3558d4f2017-07-26 11:26:28 +03003972 static bool warned = false;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003973
Sage Weil1ab86ae2009-09-29 18:38:44 -04003974 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003975 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003976 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003977
Nikolay Borisov3558d4f2017-07-26 11:26:28 +03003978 if (!warned) {
3979 btrfs_warn(fs_info,
3980 "Userspace transaction mechanism is considered "
3981 "deprecated and slated to be removed in 4.17. "
3982 "If you have a valid use case please "
3983 "speak up on the mailing list");
3984 WARN_ON(1);
3985 warned = true;
3986 }
3987
Sage Weil1ab86ae2009-09-29 18:38:44 -04003988 ret = -EINPROGRESS;
Josef Bacik23b5ec72017-07-24 15:14:25 -04003989 private = file->private_data;
3990 if (private && private->trans)
Sage Weil1ab86ae2009-09-29 18:38:44 -04003991 goto out;
Josef Bacik23b5ec72017-07-24 15:14:25 -04003992 if (!private) {
3993 private = kzalloc(sizeof(struct btrfs_file_private),
3994 GFP_KERNEL);
3995 if (!private)
3996 return -ENOMEM;
3997 file->private_data = private;
3998 }
Sage Weil9ca9ee02008-08-04 10:41:27 -04003999
Li Zefanb83cc962010-12-20 16:04:08 +08004000 ret = -EROFS;
4001 if (btrfs_root_readonly(root))
4002 goto out;
4003
Al Viroa561be72011-11-23 11:57:51 -05004004 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05004005 if (ret)
4006 goto out;
4007
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004008 atomic_inc(&fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004009
Sage Weil1ab86ae2009-09-29 18:38:44 -04004010 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004011 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00004012 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04004013 goto out_drop;
4014
Josef Bacik23b5ec72017-07-24 15:14:25 -04004015 private->trans = trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004016 return 0;
4017
4018out_drop:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004019 atomic_dec(&fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05004020 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004021out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004022 return ret;
4023}
4024
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004025static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
4026{
Al Viro496ad9a2013-01-23 17:07:38 -05004027 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004028 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004029 struct btrfs_root *root = BTRFS_I(inode)->root;
4030 struct btrfs_root *new_root;
4031 struct btrfs_dir_item *di;
4032 struct btrfs_trans_handle *trans;
4033 struct btrfs_path *path;
4034 struct btrfs_key location;
4035 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004036 u64 objectid = 0;
4037 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00004038 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004039
4040 if (!capable(CAP_SYS_ADMIN))
4041 return -EPERM;
4042
Miao Xie3c04ce02012-11-26 08:43:07 +00004043 ret = mnt_want_write_file(file);
4044 if (ret)
4045 return ret;
4046
4047 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
4048 ret = -EFAULT;
4049 goto out;
4050 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004051
4052 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05304053 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004054
4055 location.objectid = objectid;
4056 location.type = BTRFS_ROOT_ITEM_KEY;
4057 location.offset = (u64)-1;
4058
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004059 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00004060 if (IS_ERR(new_root)) {
4061 ret = PTR_ERR(new_root);
4062 goto out;
4063 }
satoru takeuchi6d6d2822017-09-12 22:42:52 +09004064 if (!is_fstree(new_root->objectid)) {
4065 ret = -ENOENT;
4066 goto out;
4067 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004068
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004069 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00004070 if (!path) {
4071 ret = -ENOMEM;
4072 goto out;
4073 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004074 path->leave_spinning = 1;
4075
4076 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004077 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004078 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00004079 ret = PTR_ERR(trans);
4080 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004081 }
4082
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004083 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4084 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004085 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00004086 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004087 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004088 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004089 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004090 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00004091 ret = -ENOENT;
4092 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004093 }
4094
4095 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4096 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4097 btrfs_mark_buffer_dirty(path->nodes[0]);
4098 btrfs_free_path(path);
4099
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004100 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004101 btrfs_end_transaction(trans);
Miao Xie3c04ce02012-11-26 08:43:07 +00004102out:
4103 mnt_drop_write_file(file);
4104 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004105}
4106
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004107void btrfs_get_block_group_info(struct list_head *groups_list,
4108 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004109{
4110 struct btrfs_block_group_cache *block_group;
4111
4112 space->total_bytes = 0;
4113 space->used_bytes = 0;
4114 space->flags = 0;
4115 list_for_each_entry(block_group, groups_list, list) {
4116 space->flags = block_group->flags;
4117 space->total_bytes += block_group->key.offset;
4118 space->used_bytes +=
4119 btrfs_block_group_used(&block_group->item);
4120 }
4121}
4122
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004123static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
4124 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004125{
4126 struct btrfs_ioctl_space_args space_args;
4127 struct btrfs_ioctl_space_info space;
4128 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004129 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004130 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004131 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004132 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
4133 BTRFS_BLOCK_GROUP_SYSTEM,
4134 BTRFS_BLOCK_GROUP_METADATA,
4135 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
4136 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004137 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004138 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004139 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004140 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004141
4142 if (copy_from_user(&space_args,
4143 (struct btrfs_ioctl_space_args __user *)arg,
4144 sizeof(space_args)))
4145 return -EFAULT;
4146
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004147 for (i = 0; i < num_types; i++) {
4148 struct btrfs_space_info *tmp;
4149
4150 info = NULL;
4151 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004152 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004153 list) {
4154 if (tmp->flags == types[i]) {
4155 info = tmp;
4156 break;
4157 }
4158 }
4159 rcu_read_unlock();
4160
4161 if (!info)
4162 continue;
4163
4164 down_read(&info->groups_sem);
4165 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4166 if (!list_empty(&info->block_groups[c]))
4167 slot_count++;
4168 }
4169 up_read(&info->groups_sem);
4170 }
Josef Bacik1406e432010-01-13 18:19:06 +00004171
David Sterba36523e952014-02-07 14:34:12 +01004172 /*
4173 * Global block reserve, exported as a space_info
4174 */
4175 slot_count++;
4176
Chris Mason7fde62b2010-03-16 15:40:10 -04004177 /* space_slots == 0 means they are asking for a count */
4178 if (space_args.space_slots == 0) {
4179 space_args.total_spaces = slot_count;
4180 goto out;
4181 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004182
Dan Rosenberg51788b12011-02-14 16:04:23 -05004183 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004184
Chris Mason7fde62b2010-03-16 15:40:10 -04004185 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004186
Chris Mason7fde62b2010-03-16 15:40:10 -04004187 /* we generally have at most 6 or so space infos, one for each raid
4188 * level. So, a whole page should be more than enough for everyone
4189 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004190 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04004191 return -ENOMEM;
4192
4193 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01004194 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04004195 if (!dest)
4196 return -ENOMEM;
4197 dest_orig = dest;
4198
4199 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004200 for (i = 0; i < num_types; i++) {
4201 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004202
Dan Rosenberg51788b12011-02-14 16:04:23 -05004203 if (!slot_count)
4204 break;
4205
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004206 info = NULL;
4207 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004208 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004209 list) {
4210 if (tmp->flags == types[i]) {
4211 info = tmp;
4212 break;
4213 }
4214 }
4215 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004216
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004217 if (!info)
4218 continue;
4219 down_read(&info->groups_sem);
4220 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4221 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004222 btrfs_get_block_group_info(
4223 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004224 memcpy(dest, &space, sizeof(space));
4225 dest++;
4226 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004227 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004228 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004229 if (!slot_count)
4230 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004231 }
4232 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004233 }
Josef Bacik1406e432010-01-13 18:19:06 +00004234
David Sterba36523e952014-02-07 14:34:12 +01004235 /*
4236 * Add global block reserve
4237 */
4238 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004239 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01004240
4241 spin_lock(&block_rsv->lock);
4242 space.total_bytes = block_rsv->size;
4243 space.used_bytes = block_rsv->size - block_rsv->reserved;
4244 spin_unlock(&block_rsv->lock);
4245 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4246 memcpy(dest, &space, sizeof(space));
4247 space_args.total_spaces++;
4248 }
4249
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004250 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004251 (arg + sizeof(struct btrfs_ioctl_space_args));
4252
4253 if (copy_to_user(user_dest, dest_orig, alloc_size))
4254 ret = -EFAULT;
4255
4256 kfree(dest_orig);
4257out:
4258 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004259 ret = -EFAULT;
4260
4261 return ret;
4262}
4263
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004264/*
4265 * there are many ways the trans_start and trans_end ioctls can lead
4266 * to deadlocks. They should only be used by applications that
4267 * basically own the machine, and have a very in depth understanding
4268 * of all the possible deadlocks and enospc problems.
4269 */
4270long btrfs_ioctl_trans_end(struct file *file)
4271{
Al Viro496ad9a2013-01-23 17:07:38 -05004272 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004273 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04004274 struct btrfs_file_private *private = file->private_data;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004275
Josef Bacik23b5ec72017-07-24 15:14:25 -04004276 if (!private || !private->trans)
Sage Weil1ab86ae2009-09-29 18:38:44 -04004277 return -EINVAL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004278
Josef Bacik23b5ec72017-07-24 15:14:25 -04004279 btrfs_end_transaction(private->trans);
4280 private->trans = NULL;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004281
Josef Bacika4abeea2011-04-11 17:25:13 -04004282 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004283
Al Viro2a79f172011-12-09 08:06:57 -05004284 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004285 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004286}
4287
Miao Xie9a8c28b2012-11-26 08:40:43 +00004288static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4289 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004290{
Sage Weil46204592010-10-29 15:41:32 -04004291 struct btrfs_trans_handle *trans;
4292 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004293 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004294
Miao Xied4edf392013-02-20 09:17:06 +00004295 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004296 if (IS_ERR(trans)) {
4297 if (PTR_ERR(trans) != -ENOENT)
4298 return PTR_ERR(trans);
4299
4300 /* No running transaction, don't bother */
4301 transid = root->fs_info->last_trans_committed;
4302 goto out;
4303 }
Sage Weil46204592010-10-29 15:41:32 -04004304 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004305 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004306 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004307 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004308 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004309 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004310out:
Sage Weil46204592010-10-29 15:41:32 -04004311 if (argp)
4312 if (copy_to_user(argp, &transid, sizeof(transid)))
4313 return -EFAULT;
4314 return 0;
4315}
4316
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004317static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00004318 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004319{
Sage Weil46204592010-10-29 15:41:32 -04004320 u64 transid;
4321
4322 if (argp) {
4323 if (copy_from_user(&transid, argp, sizeof(transid)))
4324 return -EFAULT;
4325 } else {
4326 transid = 0; /* current trans */
4327 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004328 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04004329}
4330
Miao Xieb8e95482012-11-26 08:48:01 +00004331static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004332{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004333 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01004334 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004335 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004336
4337 if (!capable(CAP_SYS_ADMIN))
4338 return -EPERM;
4339
4340 sa = memdup_user(arg, sizeof(*sa));
4341 if (IS_ERR(sa))
4342 return PTR_ERR(sa);
4343
Miao Xieb8e95482012-11-26 08:48:01 +00004344 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4345 ret = mnt_want_write_file(file);
4346 if (ret)
4347 goto out;
4348 }
4349
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004350 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004351 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4352 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004353
4354 if (copy_to_user(arg, sa, sizeof(*sa)))
4355 ret = -EFAULT;
4356
Miao Xieb8e95482012-11-26 08:48:01 +00004357 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4358 mnt_drop_write_file(file);
4359out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004360 kfree(sa);
4361 return ret;
4362}
4363
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004364static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01004365{
4366 if (!capable(CAP_SYS_ADMIN))
4367 return -EPERM;
4368
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004369 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004370}
4371
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004372static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01004373 void __user *arg)
4374{
4375 struct btrfs_ioctl_scrub_args *sa;
4376 int ret;
4377
4378 if (!capable(CAP_SYS_ADMIN))
4379 return -EPERM;
4380
4381 sa = memdup_user(arg, sizeof(*sa));
4382 if (IS_ERR(sa))
4383 return PTR_ERR(sa);
4384
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004385 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01004386
4387 if (copy_to_user(arg, sa, sizeof(*sa)))
4388 ret = -EFAULT;
4389
4390 kfree(sa);
4391 return ret;
4392}
4393
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004394static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06004395 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004396{
4397 struct btrfs_ioctl_get_dev_stats *sa;
4398 int ret;
4399
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004400 sa = memdup_user(arg, sizeof(*sa));
4401 if (IS_ERR(sa))
4402 return PTR_ERR(sa);
4403
David Sterbab27f7c02012-06-22 06:30:39 -06004404 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4405 kfree(sa);
4406 return -EPERM;
4407 }
4408
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004409 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004410
4411 if (copy_to_user(arg, sa, sizeof(*sa)))
4412 ret = -EFAULT;
4413
4414 kfree(sa);
4415 return ret;
4416}
4417
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004418static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4419 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004420{
4421 struct btrfs_ioctl_dev_replace_args *p;
4422 int ret;
4423
4424 if (!capable(CAP_SYS_ADMIN))
4425 return -EPERM;
4426
4427 p = memdup_user(arg, sizeof(*p));
4428 if (IS_ERR(p))
4429 return PTR_ERR(p);
4430
4431 switch (p->cmd) {
4432 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01004433 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004434 ret = -EROFS;
4435 goto out;
4436 }
David Sterba171938e2017-03-28 14:44:21 +02004437 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004438 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004439 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004440 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
David Sterba171938e2017-03-28 14:44:21 +02004441 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004442 }
4443 break;
4444 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004445 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004446 ret = 0;
4447 break;
4448 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004449 ret = btrfs_dev_replace_cancel(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004450 break;
4451 default:
4452 ret = -EINVAL;
4453 break;
4454 }
4455
4456 if (copy_to_user(arg, p, sizeof(*p)))
4457 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004458out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004459 kfree(p);
4460 return ret;
4461}
4462
Jan Schmidtd7728c92011-07-07 16:48:38 +02004463static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4464{
4465 int ret = 0;
4466 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004467 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004468 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004469 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004470 struct inode_fs_paths *ipath = NULL;
4471 struct btrfs_path *path;
4472
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004473 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004474 return -EPERM;
4475
4476 path = btrfs_alloc_path();
4477 if (!path) {
4478 ret = -ENOMEM;
4479 goto out;
4480 }
4481
4482 ipa = memdup_user(arg, sizeof(*ipa));
4483 if (IS_ERR(ipa)) {
4484 ret = PTR_ERR(ipa);
4485 ipa = NULL;
4486 goto out;
4487 }
4488
4489 size = min_t(u32, ipa->size, 4096);
4490 ipath = init_ipath(size, root, path);
4491 if (IS_ERR(ipath)) {
4492 ret = PTR_ERR(ipath);
4493 ipath = NULL;
4494 goto out;
4495 }
4496
4497 ret = paths_from_inode(ipa->inum, ipath);
4498 if (ret < 0)
4499 goto out;
4500
4501 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004502 rel_ptr = ipath->fspath->val[i] -
4503 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004504 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004505 }
4506
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004507 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4508 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004509 if (ret) {
4510 ret = -EFAULT;
4511 goto out;
4512 }
4513
4514out:
4515 btrfs_free_path(path);
4516 free_ipath(ipath);
4517 kfree(ipa);
4518
4519 return ret;
4520}
4521
4522static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4523{
4524 struct btrfs_data_container *inodes = ctx;
4525 const size_t c = 3 * sizeof(u64);
4526
4527 if (inodes->bytes_left >= c) {
4528 inodes->bytes_left -= c;
4529 inodes->val[inodes->elem_cnt] = inum;
4530 inodes->val[inodes->elem_cnt + 1] = offset;
4531 inodes->val[inodes->elem_cnt + 2] = root;
4532 inodes->elem_cnt += 3;
4533 } else {
4534 inodes->bytes_missing += c - inodes->bytes_left;
4535 inodes->bytes_left = 0;
4536 inodes->elem_missed += 3;
4537 }
4538
4539 return 0;
4540}
4541
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004542static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Jan Schmidtd7728c92011-07-07 16:48:38 +02004543 void __user *arg)
4544{
4545 int ret = 0;
4546 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004547 struct btrfs_ioctl_logical_ino_args *loi;
4548 struct btrfs_data_container *inodes = NULL;
4549 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004550
4551 if (!capable(CAP_SYS_ADMIN))
4552 return -EPERM;
4553
4554 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304555 if (IS_ERR(loi))
4556 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004557
4558 path = btrfs_alloc_path();
4559 if (!path) {
4560 ret = -ENOMEM;
4561 goto out;
4562 }
4563
Byongho Leeee221842015-12-15 01:42:10 +09004564 size = min_t(u32, loi->size, SZ_64K);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004565 inodes = init_data_container(size);
4566 if (IS_ERR(inodes)) {
4567 ret = PTR_ERR(inodes);
4568 inodes = NULL;
4569 goto out;
4570 }
4571
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004572 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Liu Bodf031f02012-09-07 20:01:29 -06004573 build_ino_list, inodes);
4574 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004575 ret = -ENOENT;
4576 if (ret < 0)
4577 goto out;
4578
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004579 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4580 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004581 if (ret)
4582 ret = -EFAULT;
4583
4584out:
4585 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004586 kvfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004587 kfree(loi);
4588
4589 return ret;
4590}
4591
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004592void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004593 struct btrfs_ioctl_balance_args *bargs)
4594{
4595 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4596
4597 bargs->flags = bctl->flags;
4598
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004599 if (atomic_read(&fs_info->balance_running))
4600 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4601 if (atomic_read(&fs_info->balance_pause_req))
4602 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004603 if (atomic_read(&fs_info->balance_cancel_req))
4604 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004605
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004606 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4607 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4608 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004609
4610 if (lock) {
4611 spin_lock(&fs_info->balance_lock);
4612 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4613 spin_unlock(&fs_info->balance_lock);
4614 } else {
4615 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4616 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004617}
4618
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004619static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004620{
Al Viro496ad9a2013-01-23 17:07:38 -05004621 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004622 struct btrfs_fs_info *fs_info = root->fs_info;
4623 struct btrfs_ioctl_balance_args *bargs;
4624 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004625 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004626 int ret;
4627
4628 if (!capable(CAP_SYS_ADMIN))
4629 return -EPERM;
4630
Liu Boe54bfa32012-06-29 03:58:48 -06004631 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004632 if (ret)
4633 return ret;
4634
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004635again:
David Sterba171938e2017-03-28 14:44:21 +02004636 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004637 mutex_lock(&fs_info->volume_mutex);
4638 mutex_lock(&fs_info->balance_mutex);
4639 need_unlock = true;
4640 goto locked;
4641 }
4642
4643 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004644 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004645 * (1) some other op is running
4646 * (2) balance is running
4647 * (3) balance is paused -- special case (think resume)
4648 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004649 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004650 if (fs_info->balance_ctl) {
4651 /* this is either (2) or (3) */
4652 if (!atomic_read(&fs_info->balance_running)) {
4653 mutex_unlock(&fs_info->balance_mutex);
4654 if (!mutex_trylock(&fs_info->volume_mutex))
4655 goto again;
4656 mutex_lock(&fs_info->balance_mutex);
4657
4658 if (fs_info->balance_ctl &&
4659 !atomic_read(&fs_info->balance_running)) {
4660 /* this is (3) */
4661 need_unlock = false;
4662 goto locked;
4663 }
4664
4665 mutex_unlock(&fs_info->balance_mutex);
4666 mutex_unlock(&fs_info->volume_mutex);
4667 goto again;
4668 } else {
4669 /* this is (2) */
4670 mutex_unlock(&fs_info->balance_mutex);
4671 ret = -EINPROGRESS;
4672 goto out;
4673 }
4674 } else {
4675 /* this is (1) */
4676 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004677 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004678 goto out;
4679 }
4680
4681locked:
David Sterba171938e2017-03-28 14:44:21 +02004682 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004683
4684 if (arg) {
4685 bargs = memdup_user(arg, sizeof(*bargs));
4686 if (IS_ERR(bargs)) {
4687 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004688 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004689 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004690
4691 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4692 if (!fs_info->balance_ctl) {
4693 ret = -ENOTCONN;
4694 goto out_bargs;
4695 }
4696
4697 bctl = fs_info->balance_ctl;
4698 spin_lock(&fs_info->balance_lock);
4699 bctl->flags |= BTRFS_BALANCE_RESUME;
4700 spin_unlock(&fs_info->balance_lock);
4701
4702 goto do_balance;
4703 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004704 } else {
4705 bargs = NULL;
4706 }
4707
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004708 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004709 ret = -EINPROGRESS;
4710 goto out_bargs;
4711 }
4712
David Sterba8d2db782015-11-04 15:38:29 +01004713 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004714 if (!bctl) {
4715 ret = -ENOMEM;
4716 goto out_bargs;
4717 }
4718
4719 bctl->fs_info = fs_info;
4720 if (arg) {
4721 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4722 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4723 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4724
4725 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004726 } else {
4727 /* balance everything - no filters */
4728 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004729 }
4730
David Sterba8eb93452015-10-12 16:55:54 +02004731 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4732 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004733 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004734 }
4735
Ilya Dryomovde322262012-01-16 22:04:49 +02004736do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004737 /*
David Sterba171938e2017-03-28 14:44:21 +02004738 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004739 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4740 * or, if restriper was paused all the way until unmount, in
David Sterba171938e2017-03-28 14:44:21 +02004741 * free_fs_info. The flag is cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004742 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004743 need_unlock = false;
4744
4745 ret = btrfs_balance(bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004746 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004747
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004748 if (arg) {
4749 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4750 ret = -EFAULT;
4751 }
4752
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004753out_bctl:
4754 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004755out_bargs:
4756 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004757out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004758 mutex_unlock(&fs_info->balance_mutex);
4759 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004760 if (need_unlock)
David Sterba171938e2017-03-28 14:44:21 +02004761 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004762out:
Liu Boe54bfa32012-06-29 03:58:48 -06004763 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004764 return ret;
4765}
4766
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004767static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004768{
4769 if (!capable(CAP_SYS_ADMIN))
4770 return -EPERM;
4771
4772 switch (cmd) {
4773 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004774 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004775 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004776 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004777 }
4778
4779 return -EINVAL;
4780}
4781
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004782static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004783 void __user *arg)
4784{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004785 struct btrfs_ioctl_balance_args *bargs;
4786 int ret = 0;
4787
4788 if (!capable(CAP_SYS_ADMIN))
4789 return -EPERM;
4790
4791 mutex_lock(&fs_info->balance_mutex);
4792 if (!fs_info->balance_ctl) {
4793 ret = -ENOTCONN;
4794 goto out;
4795 }
4796
David Sterba8d2db782015-11-04 15:38:29 +01004797 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004798 if (!bargs) {
4799 ret = -ENOMEM;
4800 goto out;
4801 }
4802
4803 update_ioctl_balance_args(fs_info, 1, bargs);
4804
4805 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4806 ret = -EFAULT;
4807
4808 kfree(bargs);
4809out:
4810 mutex_unlock(&fs_info->balance_mutex);
4811 return ret;
4812}
4813
Miao Xie905b0dd2012-11-26 08:50:11 +00004814static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004815{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004816 struct inode *inode = file_inode(file);
4817 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004818 struct btrfs_ioctl_quota_ctl_args *sa;
4819 struct btrfs_trans_handle *trans = NULL;
4820 int ret;
4821 int err;
4822
4823 if (!capable(CAP_SYS_ADMIN))
4824 return -EPERM;
4825
Miao Xie905b0dd2012-11-26 08:50:11 +00004826 ret = mnt_want_write_file(file);
4827 if (ret)
4828 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004829
4830 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004831 if (IS_ERR(sa)) {
4832 ret = PTR_ERR(sa);
4833 goto drop_write;
4834 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004835
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004836 down_write(&fs_info->subvol_sem);
4837 trans = btrfs_start_transaction(fs_info->tree_root, 2);
Jan Schmidt2f232032013-04-25 16:04:51 +00004838 if (IS_ERR(trans)) {
4839 ret = PTR_ERR(trans);
4840 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004841 }
4842
4843 switch (sa->cmd) {
4844 case BTRFS_QUOTA_CTL_ENABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004845 ret = btrfs_quota_enable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004846 break;
4847 case BTRFS_QUOTA_CTL_DISABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004848 ret = btrfs_quota_disable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004849 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004850 default:
4851 ret = -EINVAL;
4852 break;
4853 }
4854
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004855 err = btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00004856 if (err && !ret)
4857 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004858out:
4859 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004860 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004861drop_write:
4862 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004863 return ret;
4864}
4865
Miao Xie905b0dd2012-11-26 08:50:11 +00004866static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004867{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004868 struct inode *inode = file_inode(file);
4869 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4870 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004871 struct btrfs_ioctl_qgroup_assign_args *sa;
4872 struct btrfs_trans_handle *trans;
4873 int ret;
4874 int err;
4875
4876 if (!capable(CAP_SYS_ADMIN))
4877 return -EPERM;
4878
Miao Xie905b0dd2012-11-26 08:50:11 +00004879 ret = mnt_want_write_file(file);
4880 if (ret)
4881 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004882
4883 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004884 if (IS_ERR(sa)) {
4885 ret = PTR_ERR(sa);
4886 goto drop_write;
4887 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004888
4889 trans = btrfs_join_transaction(root);
4890 if (IS_ERR(trans)) {
4891 ret = PTR_ERR(trans);
4892 goto out;
4893 }
4894
Arne Jansen5d13a372011-09-14 15:53:51 +02004895 if (sa->assign) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004896 ret = btrfs_add_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004897 sa->src, sa->dst);
4898 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004899 ret = btrfs_del_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004900 sa->src, sa->dst);
4901 }
4902
Qu Wenruoe082f562015-02-27 16:24:28 +08004903 /* update qgroup status and info */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004904 err = btrfs_run_qgroups(trans, fs_info);
Qu Wenruoe082f562015-02-27 16:24:28 +08004905 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004906 btrfs_handle_fs_error(fs_info, err,
4907 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004908 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004909 if (err && !ret)
4910 ret = err;
4911
4912out:
4913 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004914drop_write:
4915 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004916 return ret;
4917}
4918
Miao Xie905b0dd2012-11-26 08:50:11 +00004919static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004920{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004921 struct inode *inode = file_inode(file);
4922 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4923 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004924 struct btrfs_ioctl_qgroup_create_args *sa;
4925 struct btrfs_trans_handle *trans;
4926 int ret;
4927 int err;
4928
4929 if (!capable(CAP_SYS_ADMIN))
4930 return -EPERM;
4931
Miao Xie905b0dd2012-11-26 08:50:11 +00004932 ret = mnt_want_write_file(file);
4933 if (ret)
4934 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004935
4936 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004937 if (IS_ERR(sa)) {
4938 ret = PTR_ERR(sa);
4939 goto drop_write;
4940 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004941
Miao Xied86e56c2012-11-15 11:35:41 +00004942 if (!sa->qgroupid) {
4943 ret = -EINVAL;
4944 goto out;
4945 }
4946
Arne Jansen5d13a372011-09-14 15:53:51 +02004947 trans = btrfs_join_transaction(root);
4948 if (IS_ERR(trans)) {
4949 ret = PTR_ERR(trans);
4950 goto out;
4951 }
4952
Arne Jansen5d13a372011-09-14 15:53:51 +02004953 if (sa->create) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004954 ret = btrfs_create_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004955 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004956 ret = btrfs_remove_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004957 }
4958
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004959 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004960 if (err && !ret)
4961 ret = err;
4962
4963out:
4964 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004965drop_write:
4966 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004967 return ret;
4968}
4969
Miao Xie905b0dd2012-11-26 08:50:11 +00004970static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004971{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004972 struct inode *inode = file_inode(file);
4973 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4974 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004975 struct btrfs_ioctl_qgroup_limit_args *sa;
4976 struct btrfs_trans_handle *trans;
4977 int ret;
4978 int err;
4979 u64 qgroupid;
4980
4981 if (!capable(CAP_SYS_ADMIN))
4982 return -EPERM;
4983
Miao Xie905b0dd2012-11-26 08:50:11 +00004984 ret = mnt_want_write_file(file);
4985 if (ret)
4986 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004987
4988 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004989 if (IS_ERR(sa)) {
4990 ret = PTR_ERR(sa);
4991 goto drop_write;
4992 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004993
4994 trans = btrfs_join_transaction(root);
4995 if (IS_ERR(trans)) {
4996 ret = PTR_ERR(trans);
4997 goto out;
4998 }
4999
5000 qgroupid = sa->qgroupid;
5001 if (!qgroupid) {
5002 /* take the current subvol as qgroup */
5003 qgroupid = root->root_key.objectid;
5004 }
5005
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005006 ret = btrfs_limit_qgroup(trans, fs_info, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02005007
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005008 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02005009 if (err && !ret)
5010 ret = err;
5011
5012out:
5013 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00005014drop_write:
5015 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02005016 return ret;
5017}
5018
Jan Schmidt2f232032013-04-25 16:04:51 +00005019static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
5020{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005021 struct inode *inode = file_inode(file);
5022 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00005023 struct btrfs_ioctl_quota_rescan_args *qsa;
5024 int ret;
5025
5026 if (!capable(CAP_SYS_ADMIN))
5027 return -EPERM;
5028
5029 ret = mnt_want_write_file(file);
5030 if (ret)
5031 return ret;
5032
5033 qsa = memdup_user(arg, sizeof(*qsa));
5034 if (IS_ERR(qsa)) {
5035 ret = PTR_ERR(qsa);
5036 goto drop_write;
5037 }
5038
5039 if (qsa->flags) {
5040 ret = -EINVAL;
5041 goto out;
5042 }
5043
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005044 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00005045
5046out:
5047 kfree(qsa);
5048drop_write:
5049 mnt_drop_write_file(file);
5050 return ret;
5051}
5052
5053static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
5054{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005055 struct inode *inode = file_inode(file);
5056 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00005057 struct btrfs_ioctl_quota_rescan_args *qsa;
5058 int ret = 0;
5059
5060 if (!capable(CAP_SYS_ADMIN))
5061 return -EPERM;
5062
David Sterba8d2db782015-11-04 15:38:29 +01005063 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00005064 if (!qsa)
5065 return -ENOMEM;
5066
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005067 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00005068 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005069 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00005070 }
5071
5072 if (copy_to_user(arg, qsa, sizeof(*qsa)))
5073 ret = -EFAULT;
5074
5075 kfree(qsa);
5076 return ret;
5077}
5078
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005079static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
5080{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005081 struct inode *inode = file_inode(file);
5082 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005083
5084 if (!capable(CAP_SYS_ADMIN))
5085 return -EPERM;
5086
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005087 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005088}
5089
Hugo Millsabccd002014-01-30 20:17:00 +00005090static long _btrfs_ioctl_set_received_subvol(struct file *file,
5091 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02005092{
Al Viro496ad9a2013-01-23 17:07:38 -05005093 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005094 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02005095 struct btrfs_root *root = BTRFS_I(inode)->root;
5096 struct btrfs_root_item *root_item = &root->root_item;
5097 struct btrfs_trans_handle *trans;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005098 struct timespec ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02005099 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005100 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005101
David Sterbabd60ea02014-01-16 15:50:22 +01005102 if (!inode_owner_or_capable(inode))
5103 return -EPERM;
5104
Alexander Block8ea05e32012-07-25 17:35:53 +02005105 ret = mnt_want_write_file(file);
5106 if (ret < 0)
5107 return ret;
5108
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005109 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02005110
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005111 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02005112 ret = -EINVAL;
5113 goto out;
5114 }
5115
5116 if (btrfs_root_readonly(root)) {
5117 ret = -EROFS;
5118 goto out;
5119 }
5120
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005121 /*
5122 * 1 - root item
5123 * 2 - uuid items (received uuid + subvol uuid)
5124 */
5125 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005126 if (IS_ERR(trans)) {
5127 ret = PTR_ERR(trans);
5128 trans = NULL;
5129 goto out;
5130 }
5131
5132 sa->rtransid = trans->transid;
5133 sa->rtime.sec = ct.tv_sec;
5134 sa->rtime.nsec = ct.tv_nsec;
5135
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005136 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5137 BTRFS_UUID_SIZE);
5138 if (received_uuid_changed &&
5139 !btrfs_is_empty_uuid(root_item->received_uuid))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005140 btrfs_uuid_tree_rem(trans, fs_info, root_item->received_uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005141 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5142 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02005143 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5144 btrfs_set_root_stransid(root_item, sa->stransid);
5145 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005146 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5147 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5148 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5149 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005150
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005151 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02005152 &root->root_key, &root->root_item);
5153 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005154 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005155 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005156 }
5157 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005158 ret = btrfs_uuid_tree_add(trans, fs_info, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005159 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5160 root->root_key.objectid);
5161 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005162 btrfs_abort_transaction(trans, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02005163 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005164 }
5165 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005166 ret = btrfs_commit_transaction(trans);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005167 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005168 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005169 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02005170 }
5171
Hugo Millsabccd002014-01-30 20:17:00 +00005172out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005173 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00005174 mnt_drop_write_file(file);
5175 return ret;
5176}
5177
5178#ifdef CONFIG_64BIT
5179static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5180 void __user *arg)
5181{
5182 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5183 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5184 int ret = 0;
5185
5186 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305187 if (IS_ERR(args32))
5188 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00005189
David Sterba8d2db782015-11-04 15:38:29 +01005190 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005191 if (!args64) {
5192 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005193 goto out;
5194 }
5195
5196 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5197 args64->stransid = args32->stransid;
5198 args64->rtransid = args32->rtransid;
5199 args64->stime.sec = args32->stime.sec;
5200 args64->stime.nsec = args32->stime.nsec;
5201 args64->rtime.sec = args32->rtime.sec;
5202 args64->rtime.nsec = args32->rtime.nsec;
5203 args64->flags = args32->flags;
5204
5205 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5206 if (ret)
5207 goto out;
5208
5209 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5210 args32->stransid = args64->stransid;
5211 args32->rtransid = args64->rtransid;
5212 args32->stime.sec = args64->stime.sec;
5213 args32->stime.nsec = args64->stime.nsec;
5214 args32->rtime.sec = args64->rtime.sec;
5215 args32->rtime.nsec = args64->rtime.nsec;
5216 args32->flags = args64->flags;
5217
5218 ret = copy_to_user(arg, args32, sizeof(*args32));
5219 if (ret)
5220 ret = -EFAULT;
5221
5222out:
5223 kfree(args32);
5224 kfree(args64);
5225 return ret;
5226}
5227#endif
5228
5229static long btrfs_ioctl_set_received_subvol(struct file *file,
5230 void __user *arg)
5231{
5232 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5233 int ret = 0;
5234
5235 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305236 if (IS_ERR(sa))
5237 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00005238
5239 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5240
5241 if (ret)
5242 goto out;
5243
Alexander Block8ea05e32012-07-25 17:35:53 +02005244 ret = copy_to_user(arg, sa, sizeof(*sa));
5245 if (ret)
5246 ret = -EFAULT;
5247
5248out:
5249 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005250 return ret;
5251}
5252
jeff.liu867ab662013-01-05 02:48:01 +00005253static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5254{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005255 struct inode *inode = file_inode(file);
5256 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005257 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005258 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005259 char label[BTRFS_LABEL_SIZE];
5260
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005261 spin_lock(&fs_info->super_lock);
5262 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5263 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005264
5265 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005266
5267 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005268 btrfs_warn(fs_info,
5269 "label is too long, return the first %zu bytes",
5270 --len);
jeff.liu867ab662013-01-05 02:48:01 +00005271 }
5272
jeff.liu867ab662013-01-05 02:48:01 +00005273 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005274
5275 return ret ? -EFAULT : 0;
5276}
5277
jeff.liua8bfd4a2013-01-05 02:48:08 +00005278static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5279{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005280 struct inode *inode = file_inode(file);
5281 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5282 struct btrfs_root *root = BTRFS_I(inode)->root;
5283 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005284 struct btrfs_trans_handle *trans;
5285 char label[BTRFS_LABEL_SIZE];
5286 int ret;
5287
5288 if (!capable(CAP_SYS_ADMIN))
5289 return -EPERM;
5290
5291 if (copy_from_user(label, arg, sizeof(label)))
5292 return -EFAULT;
5293
5294 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005295 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005296 "unable to set label with more than %d bytes",
5297 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005298 return -EINVAL;
5299 }
5300
5301 ret = mnt_want_write_file(file);
5302 if (ret)
5303 return ret;
5304
jeff.liua8bfd4a2013-01-05 02:48:08 +00005305 trans = btrfs_start_transaction(root, 0);
5306 if (IS_ERR(trans)) {
5307 ret = PTR_ERR(trans);
5308 goto out_unlock;
5309 }
5310
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005311 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005312 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005313 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005314 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005315
5316out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005317 mnt_drop_write_file(file);
5318 return ret;
5319}
5320
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005321#define INIT_FEATURE_FLAGS(suffix) \
5322 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5323 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5324 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5325
David Sterbad5131b62016-02-17 15:26:27 +01005326int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005327{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005328 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005329 INIT_FEATURE_FLAGS(SUPP),
5330 INIT_FEATURE_FLAGS(SAFE_SET),
5331 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5332 };
5333
5334 if (copy_to_user(arg, &features, sizeof(features)))
5335 return -EFAULT;
5336
5337 return 0;
5338}
5339
5340static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5341{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005342 struct inode *inode = file_inode(file);
5343 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5344 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005345 struct btrfs_ioctl_feature_flags features;
5346
5347 features.compat_flags = btrfs_super_compat_flags(super_block);
5348 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5349 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5350
5351 if (copy_to_user(arg, &features, sizeof(features)))
5352 return -EFAULT;
5353
5354 return 0;
5355}
5356
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005357static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005358 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005359 u64 change_mask, u64 flags, u64 supported_flags,
5360 u64 safe_set, u64 safe_clear)
5361{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005362 const char *type = btrfs_feature_set_names[set];
5363 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005364 u64 disallowed, unsupported;
5365 u64 set_mask = flags & change_mask;
5366 u64 clear_mask = ~flags & change_mask;
5367
5368 unsupported = set_mask & ~supported_flags;
5369 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005370 names = btrfs_printable_features(set, unsupported);
5371 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005372 btrfs_warn(fs_info,
5373 "this kernel does not support the %s feature bit%s",
5374 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005375 kfree(names);
5376 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005377 btrfs_warn(fs_info,
5378 "this kernel does not support %s bits 0x%llx",
5379 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005380 return -EOPNOTSUPP;
5381 }
5382
5383 disallowed = set_mask & ~safe_set;
5384 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005385 names = btrfs_printable_features(set, disallowed);
5386 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005387 btrfs_warn(fs_info,
5388 "can't set the %s feature bit%s while mounted",
5389 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005390 kfree(names);
5391 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005392 btrfs_warn(fs_info,
5393 "can't set %s bits 0x%llx while mounted",
5394 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005395 return -EPERM;
5396 }
5397
5398 disallowed = clear_mask & ~safe_clear;
5399 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005400 names = btrfs_printable_features(set, disallowed);
5401 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005402 btrfs_warn(fs_info,
5403 "can't clear the %s feature bit%s while mounted",
5404 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005405 kfree(names);
5406 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005407 btrfs_warn(fs_info,
5408 "can't clear %s bits 0x%llx while mounted",
5409 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005410 return -EPERM;
5411 }
5412
5413 return 0;
5414}
5415
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005416#define check_feature(fs_info, change_mask, flags, mask_base) \
5417check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005418 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5419 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5420 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5421
5422static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5423{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005424 struct inode *inode = file_inode(file);
5425 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5426 struct btrfs_root *root = BTRFS_I(inode)->root;
5427 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005428 struct btrfs_ioctl_feature_flags flags[2];
5429 struct btrfs_trans_handle *trans;
5430 u64 newflags;
5431 int ret;
5432
5433 if (!capable(CAP_SYS_ADMIN))
5434 return -EPERM;
5435
5436 if (copy_from_user(flags, arg, sizeof(flags)))
5437 return -EFAULT;
5438
5439 /* Nothing to do */
5440 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5441 !flags[0].incompat_flags)
5442 return 0;
5443
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005444 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005445 flags[1].compat_flags, COMPAT);
5446 if (ret)
5447 return ret;
5448
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005449 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005450 flags[1].compat_ro_flags, COMPAT_RO);
5451 if (ret)
5452 return ret;
5453
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005454 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005455 flags[1].incompat_flags, INCOMPAT);
5456 if (ret)
5457 return ret;
5458
David Sterba7ab19622016-05-04 11:32:00 +02005459 ret = mnt_want_write_file(file);
5460 if (ret)
5461 return ret;
5462
David Sterba8051aa12014-02-07 14:34:04 +01005463 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005464 if (IS_ERR(trans)) {
5465 ret = PTR_ERR(trans);
5466 goto out_drop_write;
5467 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005468
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005469 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005470 newflags = btrfs_super_compat_flags(super_block);
5471 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5472 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5473 btrfs_set_super_compat_flags(super_block, newflags);
5474
5475 newflags = btrfs_super_compat_ro_flags(super_block);
5476 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5477 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5478 btrfs_set_super_compat_ro_flags(super_block, newflags);
5479
5480 newflags = btrfs_super_incompat_flags(super_block);
5481 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5482 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5483 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005484 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005485
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005486 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02005487out_drop_write:
5488 mnt_drop_write_file(file);
5489
5490 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005491}
5492
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005493long btrfs_ioctl(struct file *file, unsigned int
5494 cmd, unsigned long arg)
5495{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005496 struct inode *inode = file_inode(file);
5497 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5498 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005499 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005500
5501 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005502 case FS_IOC_GETFLAGS:
5503 return btrfs_ioctl_getflags(file, argp);
5504 case FS_IOC_SETFLAGS:
5505 return btrfs_ioctl_setflags(file, argp);
5506 case FS_IOC_GETVERSION:
5507 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005508 case FITRIM:
5509 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005510 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005511 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005512 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005513 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005514 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005515 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005516 case BTRFS_IOC_SUBVOL_CREATE_V2:
5517 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005518 case BTRFS_IOC_SNAP_DESTROY:
5519 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005520 case BTRFS_IOC_SUBVOL_GETFLAGS:
5521 return btrfs_ioctl_subvol_getflags(file, argp);
5522 case BTRFS_IOC_SUBVOL_SETFLAGS:
5523 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005524 case BTRFS_IOC_DEFAULT_SUBVOL:
5525 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005526 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005527 return btrfs_ioctl_defrag(file, NULL);
5528 case BTRFS_IOC_DEFRAG_RANGE:
5529 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005530 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005531 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005532 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005533 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005534 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005535 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005536 case BTRFS_IOC_RM_DEV_V2:
5537 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005538 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005539 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005540 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005541 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005542 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005543 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005544 case BTRFS_IOC_TRANS_START:
5545 return btrfs_ioctl_trans_start(file);
5546 case BTRFS_IOC_TRANS_END:
5547 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005548 case BTRFS_IOC_TREE_SEARCH:
5549 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005550 case BTRFS_IOC_TREE_SEARCH_V2:
5551 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005552 case BTRFS_IOC_INO_LOOKUP:
5553 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005554 case BTRFS_IOC_INO_PATHS:
5555 return btrfs_ioctl_ino_to_path(root, argp);
5556 case BTRFS_IOC_LOGICAL_INO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005557 return btrfs_ioctl_logical_to_ino(fs_info, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005558 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005559 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005560 case BTRFS_IOC_SYNC: {
5561 int ret;
5562
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005563 ret = btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005564 if (ret)
5565 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005566 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005567 /*
5568 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005569 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005570 * processing uncleaned subvols.
5571 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005572 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005573 return ret;
5574 }
Sage Weil46204592010-10-29 15:41:32 -04005575 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005576 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005577 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005578 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005579 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005580 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005581 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005582 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005583 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005584 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005585 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005586 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005587 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005588 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005589 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005590 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005591 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5592 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005593#ifdef CONFIG_64BIT
5594 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5595 return btrfs_ioctl_set_received_subvol_32(file, argp);
5596#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005597 case BTRFS_IOC_SEND:
5598 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005599 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005600 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005601 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005602 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005603 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005604 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005605 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005606 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005607 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005608 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005609 case BTRFS_IOC_QUOTA_RESCAN:
5610 return btrfs_ioctl_quota_rescan(file, argp);
5611 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5612 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005613 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5614 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005615 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005616 return btrfs_ioctl_dev_replace(fs_info, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005617 case BTRFS_IOC_GET_FSLABEL:
5618 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005619 case BTRFS_IOC_SET_FSLABEL:
5620 return btrfs_ioctl_set_fslabel(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005621 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005622 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005623 case BTRFS_IOC_GET_FEATURES:
5624 return btrfs_ioctl_get_features(file, argp);
5625 case BTRFS_IOC_SET_FEATURES:
5626 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005627 }
5628
5629 return -ENOTTY;
5630}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005631
5632#ifdef CONFIG_COMPAT
5633long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5634{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005635 /*
5636 * These all access 32-bit values anyway so no further
5637 * handling is necessary.
5638 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005639 switch (cmd) {
5640 case FS_IOC32_GETFLAGS:
5641 cmd = FS_IOC_GETFLAGS;
5642 break;
5643 case FS_IOC32_SETFLAGS:
5644 cmd = FS_IOC_SETFLAGS;
5645 break;
5646 case FS_IOC32_GETVERSION:
5647 cmd = FS_IOC_GETVERSION;
5648 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005649 }
5650
5651 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5652}
5653#endif