blob: a74ed6c12d6a3477d521b21c44f8367b16c804c2 [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 Zefanf062abf02011-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 Zefanf062abf02011-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 Zefanf062abf02011-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 Zefanf062abf02011-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 Zefanf062abf02011-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);
liubo2d4e6f6ad2011-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
Miao Xiee9662f72013-02-28 10:01:15 +0000612static int create_snapshot(struct btrfs_root *root, struct inode *dir,
David Sterba61d7e4c2017-02-10 19:54:06 +0100613 struct dentry *dentry,
Miao Xiee9662f72013-02-28 10:01:15 +0000614 u64 *async_transid, bool readonly,
615 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400616{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400617 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000618 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400619 struct btrfs_pending_snapshot *pending_snapshot;
620 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000621 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400622
Miao Xie27cdeb72014-04-02 19:51:05 +0800623 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400624 return -EINVAL;
625
David Sterba23269bf2017-02-13 11:03:44 +0100626 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100627 if (!pending_snapshot)
628 return -ENOMEM;
629
David Sterbab0c0ea62015-11-10 18:54:00 +0100630 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100631 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100632 pending_snapshot->path = btrfs_alloc_path();
633 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100634 ret = -ENOMEM;
635 goto free_pending;
636 }
637
David Sterbaea14b57f2017-06-22 02:19:11 +0200638 atomic_inc(&root->will_be_snapshotted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100639 smp_mb__after_atomic();
Liu Bo45bac0f2017-09-01 16:14:29 -0600640 /* wait for no snapshot writes */
641 wait_event(root->subv_writers->wait,
642 percpu_counter_sum(&root->subv_writers->counter) == 0);
Miao Xie8257b2d2014-03-06 13:38:19 +0800643
Miao Xie6a038432013-05-15 07:48:24 +0000644 ret = btrfs_start_delalloc_inodes(root, 0);
645 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100646 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000647
Chris Mason6374e57a2017-06-23 09:48:21 -0700648 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
Miao Xie6a038432013-05-15 07:48:24 +0000649
Miao Xie66d8f3d2012-09-06 04:02:28 -0600650 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
651 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000652 /*
653 * 1 - parent dir inode
654 * 2 - dir entries
655 * 1 - root item
656 * 2 - root ref/backref
657 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200658 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000659 */
660 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200661 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400662 &pending_snapshot->qgroup_reserved,
663 false);
Miao Xied5c12072013-02-28 10:04:33 +0000664 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100665 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000666
Yan, Zhenga22285a2010-05-16 10:48:46 -0400667 pending_snapshot->dentry = dentry;
668 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800669 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000670 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000671 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400672
Miao Xied5c12072013-02-28 10:04:33 +0000673 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400674 if (IS_ERR(trans)) {
675 ret = PTR_ERR(trans);
676 goto fail;
677 }
678
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400679 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400680 list_add(&pending_snapshot->list,
681 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400682 spin_unlock(&fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400683 if (async_transid) {
684 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400685 ret = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000686 if (ret)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400687 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400688 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400689 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400690 }
Miao Xieaec80302013-03-04 09:44:29 +0000691 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400692 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400693
694 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400695 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000696 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400697
Chris Masond3797302014-10-15 13:50:56 -0700698 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
699 if (ret)
700 goto fail;
701
David Howells2b0143b2015-03-17 22:25:59 +0000702 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000703 if (IS_ERR(inode)) {
704 ret = PTR_ERR(inode);
705 goto fail;
706 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900707
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000708 d_instantiate(dentry, inode);
709 ret = 0;
710fail:
David Sterba7775c812017-02-10 19:18:18 +0100711 btrfs_subvolume_release_metadata(fs_info, &pending_snapshot->block_rsv);
David Sterbaa1ee7362015-11-10 18:53:56 +0100712dec_and_free:
David Sterbaea14b57f2017-06-22 02:19:11 +0200713 if (atomic_dec_and_test(&root->will_be_snapshotted))
714 wake_up_atomic_t(&root->will_be_snapshotted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100715free_pending:
716 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100717 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100718 kfree(pending_snapshot);
719
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400720 return ret;
721}
722
Sage Weil4260f7c2010-10-29 15:46:43 -0400723/* copy of may_delete in fs/namei.c()
724 * Check whether we can remove a link victim from directory dir, check
725 * whether the type of victim is right.
726 * 1. We can't do it if dir is read-only (done in permission())
727 * 2. We should have write and exec permissions on dir
728 * 3. We can't remove anything from append-only dir
729 * 4. We can't do anything with immutable dir (done in permission())
730 * 5. If the sticky bit on dir is set we should either
731 * a. be owner of dir, or
732 * b. be owner of victim, or
733 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400734 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400735 * links pointing to it.
736 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
737 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
738 * 9. We can't remove a root or mountpoint.
739 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
740 * nfs_async_unlink().
741 */
742
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530743static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400744{
745 int error;
746
David Howells2b0143b2015-03-17 22:25:59 +0000747 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400748 return -ENOENT;
749
David Howells2b0143b2015-03-17 22:25:59 +0000750 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400751 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400752
753 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
754 if (error)
755 return error;
756 if (IS_APPEND(dir))
757 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000758 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
759 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400760 return -EPERM;
761 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000762 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400763 return -ENOTDIR;
764 if (IS_ROOT(victim))
765 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000766 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400767 return -EISDIR;
768 if (IS_DEADDIR(dir))
769 return -ENOENT;
770 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
771 return -EBUSY;
772 return 0;
773}
774
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400775/* copy of may_create in fs/namei.c() */
776static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
777{
David Howells2b0143b2015-03-17 22:25:59 +0000778 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400779 return -EEXIST;
780 if (IS_DEADDIR(dir))
781 return -ENOENT;
782 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
783}
784
785/*
786 * Create a new subvolume below @parent. This is largely modeled after
787 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
788 * inside this filesystem so it's quite a bit simpler.
789 */
Al Viro92872092016-11-20 19:34:31 -0500790static noinline int btrfs_mksubvol(const struct path *parent,
David Sterba52f75f42017-02-14 18:33:53 +0100791 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400792 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200793 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000794 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400795{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400796 struct inode *dir = d_inode(parent->dentry);
797 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400798 struct dentry *dentry;
799 int error;
800
Al Viro00235412016-05-26 00:05:12 -0400801 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
802 if (error == -EINTR)
803 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400804
805 dentry = lookup_one_len(name, parent->dentry, namelen);
806 error = PTR_ERR(dentry);
807 if (IS_ERR(dentry))
808 goto out_unlock;
809
Yan, Zheng76dda932009-09-21 16:00:26 -0400810 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400811 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600812 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400813
Chris Mason9c520572012-12-17 14:26:57 -0500814 /*
815 * even if this name doesn't exist, we may get hash collisions.
816 * check for them now when we can safely fail
817 */
818 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
819 dir->i_ino, name,
820 namelen);
821 if (error)
822 goto out_dput;
823
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400824 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400825
826 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
827 goto out_up_read;
828
Chris Mason3de45862008-11-17 21:02:50 -0500829 if (snap_src) {
David Sterba61d7e4c2017-02-10 19:54:06 +0100830 error = create_snapshot(snap_src, dir, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200831 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500832 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000833 error = create_subvol(dir, dentry, name, namelen,
834 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500835 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400836 if (!error)
837 fsnotify_mkdir(dir, dentry);
838out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400839 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400840out_dput:
841 dput(dentry);
842out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500843 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400844 return error;
845}
846
Chris Mason4cb53002011-05-24 15:35:30 -0400847/*
848 * When we're defragging a range, we don't want to kick it off again
849 * if it is really just waiting for delalloc to send it down.
850 * If we find a nice big extent or delalloc range for the bytes in the
851 * file you want to defrag, we return 0 to let you know to skip this
852 * part of the file
853 */
David Sterbaaab110a2014-07-29 17:32:10 +0200854static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400855{
856 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
857 struct extent_map *em = NULL;
858 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
859 u64 end;
860
861 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300862 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -0400863 read_unlock(&em_tree->lock);
864
865 if (em) {
866 end = extent_map_end(em);
867 free_extent_map(em);
868 if (end - offset > thresh)
869 return 0;
870 }
871 /* if we already have a nice delalloc here, just stop */
872 thresh /= 2;
873 end = count_range_bits(io_tree, &offset, offset + thresh,
874 thresh, EXTENT_DELALLOC, 1);
875 if (end >= thresh)
876 return 0;
877 return 1;
878}
879
880/*
881 * helper function to walk through a file and find extents
882 * newer than a specific transid, and smaller than thresh.
883 *
884 * This is used by the defragging code to find new and small
885 * extents
886 */
887static int find_new_extents(struct btrfs_root *root,
888 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200889 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400890{
891 struct btrfs_path *path;
892 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400893 struct extent_buffer *leaf;
894 struct btrfs_file_extent_item *extent;
895 int type;
896 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200897 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -0400898
899 path = btrfs_alloc_path();
900 if (!path)
901 return -ENOMEM;
902
David Sterbaa4689d22011-05-31 17:08:14 +0000903 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400904 min_key.type = BTRFS_EXTENT_DATA_KEY;
905 min_key.offset = *off;
906
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530907 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100908 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400909 if (ret != 0)
910 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000911process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000912 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400913 goto none;
914 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
915 goto none;
916
917 leaf = path->nodes[0];
918 extent = btrfs_item_ptr(leaf, path->slots[0],
919 struct btrfs_file_extent_item);
920
921 type = btrfs_file_extent_type(leaf, extent);
922 if (type == BTRFS_FILE_EXTENT_REG &&
923 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
924 check_defrag_in_cache(inode, min_key.offset, thresh)) {
925 *off = min_key.offset;
926 btrfs_free_path(path);
927 return 0;
928 }
929
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000930 path->slots[0]++;
931 if (path->slots[0] < btrfs_header_nritems(leaf)) {
932 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
933 goto process_slot;
934 }
935
Chris Mason4cb53002011-05-24 15:35:30 -0400936 if (min_key.offset == (u64)-1)
937 goto none;
938
939 min_key.offset++;
940 btrfs_release_path(path);
941 }
942none:
943 btrfs_free_path(path);
944 return -ENOENT;
945}
946
Li Zefan6c282eb2012-06-11 16:03:35 +0800947static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400948{
949 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500950 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800951 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300952 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500953
954 /*
955 * hopefully we have this extent in the tree already, try without
956 * the full extent lock
957 */
958 read_lock(&em_tree->lock);
959 em = lookup_extent_mapping(em_tree, start, len);
960 read_unlock(&em_tree->lock);
961
962 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000963 struct extent_state *cached = NULL;
964 u64 end = start + len - 1;
965
Chris Mason940100a2010-03-10 10:52:59 -0500966 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +0100967 lock_extent_bits(io_tree, start, end, &cached);
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +0200968 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +0000969 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -0500970
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000971 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800972 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500973 }
974
Li Zefan6c282eb2012-06-11 16:03:35 +0800975 return em;
976}
977
978static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
979{
980 struct extent_map *next;
981 bool ret = true;
982
983 /* this is the last extent */
984 if (em->start + em->len >= i_size_read(inode))
985 return false;
986
987 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -0700988 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
989 ret = false;
990 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +0900991 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +0800992 ret = false;
993
994 free_extent_map(next);
995 return ret;
996}
997
David Sterbaaab110a2014-07-29 17:32:10 +0200998static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400999 u64 *last_len, u64 *skip, u64 *defrag_end,
1000 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001001{
1002 struct extent_map *em;
1003 int ret = 1;
1004 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001005 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001006
1007 /*
1008 * make sure that once we start defragging an extent, we keep on
1009 * defragging it
1010 */
1011 if (start < *defrag_end)
1012 return 1;
1013
1014 *skip = 0;
1015
1016 em = defrag_lookup_extent(inode, start);
1017 if (!em)
1018 return 0;
1019
Chris Mason940100a2010-03-10 10:52:59 -05001020 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001021 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001022 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001023 goto out;
1024 }
1025
Liu Bo4a3560c2015-08-07 16:48:41 +08001026 if (!*defrag_end)
1027 prev_mergeable = false;
1028
Li Zefan6c282eb2012-06-11 16:03:35 +08001029 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001030 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001031 * we hit a real extent, if it is big or the next extent is not a
1032 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001033 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001034 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001035 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001036 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001037out:
Chris Mason940100a2010-03-10 10:52:59 -05001038 /*
1039 * last_len ends up being a counter of how many bytes we've defragged.
1040 * every time we choose not to defrag an extent, we reset *last_len
1041 * so that the next tiny extent will force a defrag.
1042 *
1043 * The end result of this is that tiny extents before a single big
1044 * extent will force at least part of that big extent to be defragged.
1045 */
1046 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001047 *defrag_end = extent_map_end(em);
1048 } else {
1049 *last_len = 0;
1050 *skip = extent_map_end(em);
1051 *defrag_end = 0;
1052 }
1053
1054 free_extent_map(em);
1055 return ret;
1056}
1057
Chris Mason4cb53002011-05-24 15:35:30 -04001058/*
1059 * it doesn't do much good to defrag one or two pages
1060 * at a time. This pulls in a nice chunk of pages
1061 * to COW and defrag.
1062 *
1063 * It also makes sure the delalloc code has enough
1064 * dirty data to avoid making new small extents as part
1065 * of the defrag
1066 *
1067 * It's a good idea to start RA on this range
1068 * before calling this.
1069 */
1070static int cluster_pages_for_defrag(struct inode *inode,
1071 struct page **pages,
1072 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001073 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001074{
Chris Mason4cb53002011-05-24 15:35:30 -04001075 unsigned long file_end;
1076 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001077 u64 page_start;
1078 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001079 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001080 int ret;
1081 int i;
1082 int i_done;
1083 struct btrfs_ordered_extent *ordered;
1084 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001085 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001086 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001087 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001088
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001089 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001090 if (!isize || start_index > file_end)
1091 return 0;
1092
1093 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001094
Qu Wenruo364ecf32017-02-27 15:10:38 +08001095 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001096 start_index << PAGE_SHIFT,
1097 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001098 if (ret)
1099 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001100 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001101 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001102
1103 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001104 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001105 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001106again:
Josef Bacika94733d2011-07-11 10:47:06 -04001107 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001108 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001109 if (!page)
1110 break;
1111
Miao Xie600a45e2012-02-16 15:01:24 +08001112 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001113 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001114 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001115 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001116 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001117 ordered = btrfs_lookup_ordered_extent(inode,
1118 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001119 unlock_extent_cached(tree, page_start, page_end,
1120 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001121 if (!ordered)
1122 break;
1123
1124 unlock_page(page);
1125 btrfs_start_ordered_extent(inode, ordered, 1);
1126 btrfs_put_ordered_extent(ordered);
1127 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001128 /*
1129 * we unlocked the page above, so we need check if
1130 * it was released or not.
1131 */
1132 if (page->mapping != inode->i_mapping) {
1133 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001134 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001135 goto again;
1136 }
Miao Xie600a45e2012-02-16 15:01:24 +08001137 }
1138
Chris Mason4cb53002011-05-24 15:35:30 -04001139 if (!PageUptodate(page)) {
1140 btrfs_readpage(NULL, page);
1141 lock_page(page);
1142 if (!PageUptodate(page)) {
1143 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001144 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001145 ret = -EIO;
1146 break;
1147 }
1148 }
Miao Xie600a45e2012-02-16 15:01:24 +08001149
Miao Xie600a45e2012-02-16 15:01:24 +08001150 if (page->mapping != inode->i_mapping) {
1151 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001152 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001153 goto again;
1154 }
1155
Chris Mason4cb53002011-05-24 15:35:30 -04001156 pages[i] = page;
1157 i_done++;
1158 }
1159 if (!i_done || ret)
1160 goto out;
1161
1162 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1163 goto out;
1164
1165 /*
1166 * so now we have a nice long stream of locked
1167 * and up to date pages, lets wait on them
1168 */
1169 for (i = 0; i < i_done; i++)
1170 wait_on_page_writeback(pages[i]);
1171
1172 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001173 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001174
1175 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001176 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001177 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1178 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001179 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1180 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001181
Liu Bo1f12bd02012-03-29 09:57:44 -04001182 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001183 spin_lock(&BTRFS_I(inode)->lock);
1184 BTRFS_I(inode)->outstanding_extents++;
1185 spin_unlock(&BTRFS_I(inode)->lock);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001186 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001187 start_index << PAGE_SHIFT,
1188 (page_cnt - i_done) << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001189 }
1190
1191
Liu Bo9e8a4a82012-09-05 19:10:51 -06001192 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001193 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001194
1195 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1196 page_start, page_end - 1, &cached_state,
1197 GFP_NOFS);
1198
1199 for (i = 0; i < i_done; i++) {
1200 clear_page_dirty_for_io(pages[i]);
1201 ClearPageChecked(pages[i]);
1202 set_page_extent_mapped(pages[i]);
1203 set_page_dirty(pages[i]);
1204 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001205 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001206 }
Qu Wenruo364ecf32017-02-27 15:10:38 +08001207 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001208 return i_done;
1209out:
1210 for (i = 0; i < i_done; i++) {
1211 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001212 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001213 }
Qu Wenruobc42bda2017-02-27 15:10:39 +08001214 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001215 start_index << PAGE_SHIFT,
1216 page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001217 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001218 return ret;
1219
1220}
1221
1222int btrfs_defrag_file(struct inode *inode, struct file *file,
1223 struct btrfs_ioctl_defrag_range_args *range,
1224 u64 newer_than, unsigned long max_to_defrag)
1225{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001226 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001227 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001228 struct file_ra_state *ra = NULL;
1229 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001230 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001231 u64 last_len = 0;
1232 u64 skip = 0;
1233 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001234 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001235 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001236 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001237 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001238 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001239 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001240 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001241 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001242 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001243 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001244 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001245 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001246
Liu Bo0abd5b12013-04-16 09:20:28 +00001247 if (isize == 0)
1248 return 0;
1249
1250 if (range->start >= isize)
1251 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001252
David Sterba1e2ef462017-07-17 20:01:59 +02001253 if (do_compress) {
Li Zefan1a419d82010-10-25 15:12:50 +08001254 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1255 return -EINVAL;
1256 if (range->compress_type)
1257 compress_type = range->compress_type;
1258 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001259
Liu Bo0abd5b12013-04-16 09:20:28 +00001260 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001261 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001262
Chris Mason4cb53002011-05-24 15:35:30 -04001263 /*
David Sterba0a52d102017-06-22 03:22:58 +02001264 * If we were not given a file, allocate a readahead context. As
1265 * readahead is just an optimization, defrag will work without it so
1266 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001267 */
1268 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001269 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001270 if (ra)
1271 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001272 } else {
1273 ra = &file->f_ra;
1274 }
1275
David Sterba63e727e2017-06-22 03:13:02 +02001276 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001277 if (!pages) {
1278 ret = -ENOMEM;
1279 goto out_ra;
1280 }
1281
1282 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001283 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001284 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001285 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001286 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001287 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001288 }
1289
Chris Mason4cb53002011-05-24 15:35:30 -04001290 if (newer_than) {
1291 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001292 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001293 if (!ret) {
1294 range->start = newer_off;
1295 /*
1296 * we always align our defrag to help keep
1297 * the extents in the file evenly spaced
1298 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001299 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001300 } else
1301 goto out_ra;
1302 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001303 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001304 }
1305 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301306 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001307
Li Zefan2a0f7f52011-10-10 15:43:34 -04001308 /*
1309 * make writeback starts from i, so the defrag range can be
1310 * written sequentially.
1311 */
1312 if (i < inode->i_mapping->writeback_index)
1313 inode->i_mapping->writeback_index = i;
1314
Chris Masonf7f43cc2011-10-11 11:41:40 -04001315 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001316 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001317 /*
1318 * make sure we stop running if someone unmounts
1319 * the FS
1320 */
1321 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1322 break;
1323
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001324 if (btrfs_defrag_cancelled(fs_info)) {
1325 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001326 ret = -EAGAIN;
1327 break;
1328 }
1329
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001330 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001331 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001332 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001333 unsigned long next;
1334 /*
1335 * the should_defrag function tells us how much to skip
1336 * bump our counter by the suggested amount
1337 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001338 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001339 i = max(i + 1, next);
1340 continue;
1341 }
Li Zefan008873e2011-09-02 15:57:07 +08001342
1343 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001344 cluster = (PAGE_ALIGN(defrag_end) >>
1345 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001346 cluster = min(cluster, max_cluster);
1347 } else {
1348 cluster = max_cluster;
1349 }
1350
Li Zefan008873e2011-09-02 15:57:07 +08001351 if (i + cluster > ra_index) {
1352 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001353 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001354 page_cache_sync_readahead(inode->i_mapping, ra,
1355 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301356 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001357 }
Chris Mason940100a2010-03-10 10:52:59 -05001358
Al Viro59551022016-01-22 15:40:57 -05001359 inode_lock(inode);
David Sterba1e2ef462017-07-17 20:01:59 +02001360 if (do_compress)
David Sterbaeec63c62017-07-17 19:41:31 +02001361 BTRFS_I(inode)->defrag_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001362 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001363 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001364 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001365 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001366 }
Chris Mason940100a2010-03-10 10:52:59 -05001367
Chris Mason4cb53002011-05-24 15:35:30 -04001368 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001369 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001370 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001371
1372 if (newer_than) {
1373 if (newer_off == (u64)-1)
1374 break;
1375
Liu Boe1f041e2012-03-29 09:57:45 -04001376 if (ret > 0)
1377 i += ret;
1378
Chris Mason4cb53002011-05-24 15:35:30 -04001379 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001380 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001381
Byongho Leeee221842015-12-15 01:42:10 +09001382 ret = find_new_extents(root, inode, newer_than,
1383 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001384 if (!ret) {
1385 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001386 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001387 } else {
1388 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001389 }
Chris Mason4cb53002011-05-24 15:35:30 -04001390 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001391 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001392 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001393 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001394 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001395 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001396 last_len = 0;
1397 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001398 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001399 }
1400
Filipe Mananadec8ef92014-03-01 10:55:54 +00001401 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001402 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001403 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1404 &BTRFS_I(inode)->runtime_flags))
1405 filemap_flush(inode->i_mapping);
1406 }
Chris Mason1e701a32010-03-11 09:42:04 -05001407
David Sterba1e2ef462017-07-17 20:01:59 +02001408 if (do_compress) {
Chris Mason1e701a32010-03-11 09:42:04 -05001409 /* the filemap_flush will queue IO into the worker threads, but
1410 * we have to make sure the IO is actually started and that
1411 * ordered extents get created before we return
1412 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001413 atomic_inc(&fs_info->async_submit_draining);
1414 while (atomic_read(&fs_info->nr_async_submits) ||
1415 atomic_read(&fs_info->async_delalloc_pages)) {
1416 wait_event(fs_info->async_submit_wait,
1417 (atomic_read(&fs_info->nr_async_submits) == 0 &&
1418 atomic_read(&fs_info->async_delalloc_pages) == 0));
Chris Mason1e701a32010-03-11 09:42:04 -05001419 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001420 atomic_dec(&fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001421 }
1422
Li Zefan1a419d82010-10-25 15:12:50 +08001423 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001424 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
Nick Terrell5c1aab12017-08-09 19:39:02 -07001425 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1426 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
Li Zefan1a419d82010-10-25 15:12:50 +08001427 }
1428
Diego Calleja60ccf822011-09-01 16:33:57 +02001429 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001430
Chris Mason4cb53002011-05-24 15:35:30 -04001431out_ra:
David Sterba1e2ef462017-07-17 20:01:59 +02001432 if (do_compress) {
Al Viro59551022016-01-22 15:40:57 -05001433 inode_lock(inode);
David Sterbaeec63c62017-07-17 19:41:31 +02001434 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
Al Viro59551022016-01-22 15:40:57 -05001435 inode_unlock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001436 }
Chris Mason4cb53002011-05-24 15:35:30 -04001437 if (!file)
1438 kfree(ra);
1439 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001440 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001441}
1442
Miao Xie198605a2012-11-26 08:43:45 +00001443static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001444 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001445{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001446 struct inode *inode = file_inode(file);
1447 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001448 u64 new_size;
1449 u64 old_size;
1450 u64 devid = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001451 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001452 struct btrfs_ioctl_vol_args *vol_args;
1453 struct btrfs_trans_handle *trans;
1454 struct btrfs_device *device = NULL;
1455 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001456 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001457 char *devstr = NULL;
1458 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001459 int mod = 0;
1460
Chris Masone441d542009-01-05 16:57:23 -05001461 if (!capable(CAP_SYS_ADMIN))
1462 return -EPERM;
1463
Miao Xie198605a2012-11-26 08:43:45 +00001464 ret = mnt_want_write_file(file);
1465 if (ret)
1466 return ret;
1467
David Sterba171938e2017-03-28 14:44:21 +02001468 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Miao Xie97547672012-12-21 10:38:50 +00001469 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001470 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001471 }
1472
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001473 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001474 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001475 if (IS_ERR(vol_args)) {
1476 ret = PTR_ERR(vol_args);
1477 goto out;
1478 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001479
1480 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001481
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001482 sizestr = vol_args->name;
1483 devstr = strchr(sizestr, ':');
1484 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001485 sizestr = devstr + 1;
1486 *devstr = '\0';
1487 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001488 ret = kstrtoull(devstr, 10, &devid);
1489 if (ret)
1490 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001491 if (!devid) {
1492 ret = -EINVAL;
1493 goto out_free;
1494 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001495 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001496 }
Miao Xiedba60f32012-12-21 09:19:51 +00001497
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001498 device = btrfs_find_device(fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001499 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001500 btrfs_info(fs_info, "resizer unable to find device %llu",
1501 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001502 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001503 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001504 }
Miao Xiedba60f32012-12-21 09:19:51 +00001505
1506 if (!device->writeable) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001507 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001508 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001509 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001510 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001511 goto out_free;
1512 }
1513
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001514 if (!strcmp(sizestr, "max"))
1515 new_size = device->bdev->bd_inode->i_size;
1516 else {
1517 if (sizestr[0] == '-') {
1518 mod = -1;
1519 sizestr++;
1520 } else if (sizestr[0] == '+') {
1521 mod = 1;
1522 sizestr++;
1523 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001524 new_size = memparse(sizestr, &retptr);
1525 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001526 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001527 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001528 }
1529 }
1530
Stefan Behrens63a212a2012-11-05 18:29:28 +01001531 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001532 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001533 goto out_free;
1534 }
1535
Miao Xie7cc8e582014-09-03 21:35:38 +08001536 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001537
1538 if (mod < 0) {
1539 if (new_size > old_size) {
1540 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001541 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001542 }
1543 new_size = old_size - new_size;
1544 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001545 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001546 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001547 goto out_free;
1548 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001549 new_size = old_size + new_size;
1550 }
1551
Byongho Leeee221842015-12-15 01:42:10 +09001552 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001553 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001554 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001555 }
1556 if (new_size > device->bdev->bd_inode->i_size) {
1557 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001558 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001559 }
1560
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001561 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001562
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001563 btrfs_info_in_rcu(fs_info, "new size for %s is %llu",
1564 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001565
1566 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001567 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001568 if (IS_ERR(trans)) {
1569 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001570 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001571 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001572 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001573 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001574 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001575 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001576 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001577
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001578out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001579 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001580out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001581 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02001582 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001583 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001584 return ret;
1585}
1586
Sage Weil72fd0322010-10-29 15:41:32 -04001587static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
David Sterba52f75f42017-02-14 18:33:53 +01001588 const char *name, unsigned long fd, int subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001589 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001590 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001591{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001592 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001593 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001594
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001595 if (!S_ISDIR(file_inode(file)->i_mode))
1596 return -ENOTDIR;
1597
Liu Boa874a632012-06-29 03:58:46 -06001598 ret = mnt_want_write_file(file);
1599 if (ret)
1600 goto out;
1601
Sage Weil72fd0322010-10-29 15:41:32 -04001602 namelen = strlen(name);
1603 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001604 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001605 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001606 }
1607
Chris Mason16780ca2012-02-20 22:14:55 -05001608 if (name[0] == '.' &&
1609 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1610 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001611 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001612 }
1613
Chris Mason3de45862008-11-17 21:02:50 -05001614 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001615 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001616 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001617 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001618 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001619 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001620 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001621 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001622 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001623 }
1624
Al Viro496ad9a2013-01-23 17:07:38 -05001625 src_inode = file_inode(src.file);
1626 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001627 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001628 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001629 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001630 } else if (!inode_owner_or_capable(src_inode)) {
1631 /*
1632 * Subvolume creation is not restricted, but snapshots
1633 * are limited to own subvolumes only
1634 */
1635 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001636 } else {
1637 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1638 BTRFS_I(src_inode)->root,
1639 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001640 }
Al Viro2903ff02012-08-28 12:52:22 -04001641 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001642 }
Liu Boa874a632012-06-29 03:58:46 -06001643out_drop_write:
1644 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001645out:
Sage Weil72fd0322010-10-29 15:41:32 -04001646 return ret;
1647}
1648
1649static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001650 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001651{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001652 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001653 int ret;
1654
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001655 if (!S_ISDIR(file_inode(file)->i_mode))
1656 return -ENOTDIR;
1657
Li Zefanfa0d2b92010-12-20 15:53:28 +08001658 vol_args = memdup_user(arg, sizeof(*vol_args));
1659 if (IS_ERR(vol_args))
1660 return PTR_ERR(vol_args);
1661 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001662
Li Zefanfa0d2b92010-12-20 15:53:28 +08001663 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001664 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001665 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001666
Li Zefanfa0d2b92010-12-20 15:53:28 +08001667 kfree(vol_args);
1668 return ret;
1669}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001670
Li Zefanfa0d2b92010-12-20 15:53:28 +08001671static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1672 void __user *arg, int subvol)
1673{
1674 struct btrfs_ioctl_vol_args_v2 *vol_args;
1675 int ret;
1676 u64 transid = 0;
1677 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001678 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001679 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001680
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001681 if (!S_ISDIR(file_inode(file)->i_mode))
1682 return -ENOTDIR;
1683
Li Zefanfa0d2b92010-12-20 15:53:28 +08001684 vol_args = memdup_user(arg, sizeof(*vol_args));
1685 if (IS_ERR(vol_args))
1686 return PTR_ERR(vol_args);
1687 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001688
Li Zefanb83cc962010-12-20 16:04:08 +08001689 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001690 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1691 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001692 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001693 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001694 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001695
1696 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1697 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001698 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1699 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001700 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001701 if (vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001702 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001703 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001704 }
1705 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1706 if (IS_ERR(inherit)) {
1707 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001708 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001709 }
1710 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001711
1712 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001713 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001714 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001715 if (ret)
1716 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001717
Dan Carpenterc47ca322014-09-04 14:09:15 +03001718 if (ptr && copy_to_user(arg +
1719 offsetof(struct btrfs_ioctl_vol_args_v2,
1720 transid),
1721 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001722 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001723
1724free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001725 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001726free_args:
1727 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001728 return ret;
1729}
1730
Li Zefan0caa1022010-12-20 16:30:25 +08001731static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1732 void __user *arg)
1733{
Al Viro496ad9a2013-01-23 17:07:38 -05001734 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001735 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001736 struct btrfs_root *root = BTRFS_I(inode)->root;
1737 int ret = 0;
1738 u64 flags = 0;
1739
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001740 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001741 return -EINVAL;
1742
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001743 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001744 if (btrfs_root_readonly(root))
1745 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001746 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001747
1748 if (copy_to_user(arg, &flags, sizeof(flags)))
1749 ret = -EFAULT;
1750
1751 return ret;
1752}
1753
1754static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1755 void __user *arg)
1756{
Al Viro496ad9a2013-01-23 17:07:38 -05001757 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001758 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001759 struct btrfs_root *root = BTRFS_I(inode)->root;
1760 struct btrfs_trans_handle *trans;
1761 u64 root_flags;
1762 u64 flags;
1763 int ret = 0;
1764
David Sterbabd60ea02014-01-16 15:50:22 +01001765 if (!inode_owner_or_capable(inode))
1766 return -EPERM;
1767
Liu Bob9ca0662012-06-29 03:58:49 -06001768 ret = mnt_want_write_file(file);
1769 if (ret)
1770 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001771
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001772 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06001773 ret = -EINVAL;
1774 goto out_drop_write;
1775 }
Li Zefan0caa1022010-12-20 16:30:25 +08001776
Liu Bob9ca0662012-06-29 03:58:49 -06001777 if (copy_from_user(&flags, arg, sizeof(flags))) {
1778 ret = -EFAULT;
1779 goto out_drop_write;
1780 }
Li Zefan0caa1022010-12-20 16:30:25 +08001781
Liu Bob9ca0662012-06-29 03:58:49 -06001782 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1783 ret = -EINVAL;
1784 goto out_drop_write;
1785 }
Li Zefan0caa1022010-12-20 16:30:25 +08001786
Liu Bob9ca0662012-06-29 03:58:49 -06001787 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1788 ret = -EOPNOTSUPP;
1789 goto out_drop_write;
1790 }
Li Zefan0caa1022010-12-20 16:30:25 +08001791
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001792 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001793
1794 /* nothing to do */
1795 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001796 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001797
1798 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001799 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001800 btrfs_set_root_flags(&root->root_item,
1801 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001802 } else {
1803 /*
1804 * Block RO -> RW transition if this subvolume is involved in
1805 * send
1806 */
1807 spin_lock(&root->root_item_lock);
1808 if (root->send_in_progress == 0) {
1809 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001810 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001811 spin_unlock(&root->root_item_lock);
1812 } else {
1813 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001814 btrfs_warn(fs_info,
1815 "Attempt to set subvolume %llu read-write during send",
1816 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01001817 ret = -EPERM;
1818 goto out_drop_sem;
1819 }
1820 }
Li Zefan0caa1022010-12-20 16:30:25 +08001821
1822 trans = btrfs_start_transaction(root, 1);
1823 if (IS_ERR(trans)) {
1824 ret = PTR_ERR(trans);
1825 goto out_reset;
1826 }
1827
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001828 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001829 &root->root_key, &root->root_item);
1830
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001831 btrfs_commit_transaction(trans);
Li Zefan0caa1022010-12-20 16:30:25 +08001832out_reset:
1833 if (ret)
1834 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001835out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001836 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001837out_drop_write:
1838 mnt_drop_write_file(file);
1839out:
Li Zefan0caa1022010-12-20 16:30:25 +08001840 return ret;
1841}
1842
Yan, Zheng76dda932009-09-21 16:00:26 -04001843/*
1844 * helper to check if the subvolume references other subvolumes
1845 */
1846static noinline int may_destroy_subvol(struct btrfs_root *root)
1847{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001848 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04001849 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001850 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001851 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001852 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001853 int ret;
1854
1855 path = btrfs_alloc_path();
1856 if (!path)
1857 return -ENOMEM;
1858
Josef Bacik175a2b82013-08-12 15:36:44 -04001859 /* Make sure this root isn't set as the default subvol */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001860 dir_id = btrfs_super_root_dir(fs_info->super_copy);
1861 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
Josef Bacik175a2b82013-08-12 15:36:44 -04001862 dir_id, "default", 7, 0);
1863 if (di && !IS_ERR(di)) {
1864 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1865 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001866 ret = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001867 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001868 "deleting default subvolume %llu is not allowed",
1869 key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001870 goto out;
1871 }
1872 btrfs_release_path(path);
1873 }
1874
Yan, Zheng76dda932009-09-21 16:00:26 -04001875 key.objectid = root->root_key.objectid;
1876 key.type = BTRFS_ROOT_REF_KEY;
1877 key.offset = (u64)-1;
1878
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001879 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001880 if (ret < 0)
1881 goto out;
1882 BUG_ON(ret == 0);
1883
1884 ret = 0;
1885 if (path->slots[0] > 0) {
1886 path->slots[0]--;
1887 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1888 if (key.objectid == root->root_key.objectid &&
1889 key.type == BTRFS_ROOT_REF_KEY)
1890 ret = -ENOTEMPTY;
1891 }
1892out:
1893 btrfs_free_path(path);
1894 return ret;
1895}
1896
Chris Masonac8e9812010-02-28 15:39:26 -05001897static noinline int key_in_sk(struct btrfs_key *key,
1898 struct btrfs_ioctl_search_key *sk)
1899{
Chris Masonabc6e132010-03-18 12:10:08 -04001900 struct btrfs_key test;
1901 int ret;
1902
1903 test.objectid = sk->min_objectid;
1904 test.type = sk->min_type;
1905 test.offset = sk->min_offset;
1906
1907 ret = btrfs_comp_cpu_keys(key, &test);
1908 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001909 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001910
1911 test.objectid = sk->max_objectid;
1912 test.type = sk->max_type;
1913 test.offset = sk->max_offset;
1914
1915 ret = btrfs_comp_cpu_keys(key, &test);
1916 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001917 return 0;
1918 return 1;
1919}
1920
Jeff Mahoneydf397562016-06-21 20:18:21 -04001921static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05001922 struct btrfs_key *key,
1923 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001924 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001925 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001926 unsigned long *sk_offset,
1927 int *num_found)
1928{
1929 u64 found_transid;
1930 struct extent_buffer *leaf;
1931 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001932 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001933 unsigned long item_off;
1934 unsigned long item_len;
1935 int nritems;
1936 int i;
1937 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001938 int ret = 0;
1939
1940 leaf = path->nodes[0];
1941 slot = path->slots[0];
1942 nritems = btrfs_header_nritems(leaf);
1943
1944 if (btrfs_header_generation(leaf) > sk->max_transid) {
1945 i = nritems;
1946 goto advance_key;
1947 }
1948 found_transid = btrfs_header_generation(leaf);
1949
1950 for (i = slot; i < nritems; i++) {
1951 item_off = btrfs_item_ptr_offset(leaf, i);
1952 item_len = btrfs_item_size_nr(leaf, i);
1953
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001954 btrfs_item_key_to_cpu(leaf, key, i);
1955 if (!key_in_sk(key, sk))
1956 continue;
1957
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001958 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001959 if (*num_found) {
1960 ret = 1;
1961 goto out;
1962 }
Chris Masonac8e9812010-02-28 15:39:26 -05001963
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001964 /*
1965 * return one empty item back for v1, which does not
1966 * handle -EOVERFLOW
1967 */
1968
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001969 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001970 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001971 ret = -EOVERFLOW;
1972 }
Chris Masonac8e9812010-02-28 15:39:26 -05001973
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001974 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001975 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001976 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001977 }
1978
Chris Masonac8e9812010-02-28 15:39:26 -05001979 sh.objectid = key->objectid;
1980 sh.offset = key->offset;
1981 sh.type = key->type;
1982 sh.len = item_len;
1983 sh.transid = found_transid;
1984
1985 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001986 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1987 ret = -EFAULT;
1988 goto out;
1989 }
1990
Chris Masonac8e9812010-02-28 15:39:26 -05001991 *sk_offset += sizeof(sh);
1992
1993 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001994 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05001995 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001996 if (read_extent_buffer_to_user(leaf, up,
1997 item_off, item_len)) {
1998 ret = -EFAULT;
1999 goto out;
2000 }
2001
Chris Masonac8e9812010-02-28 15:39:26 -05002002 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002003 }
Hugo Millse2156862011-05-14 17:43:41 +00002004 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002005
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002006 if (ret) /* -EOVERFLOW from above */
2007 goto out;
2008
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002009 if (*num_found >= sk->nr_items) {
2010 ret = 1;
2011 goto out;
2012 }
Chris Masonac8e9812010-02-28 15:39:26 -05002013 }
2014advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002015 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002016 test.objectid = sk->max_objectid;
2017 test.type = sk->max_type;
2018 test.offset = sk->max_offset;
2019 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2020 ret = 1;
2021 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002022 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002023 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002024 key->offset = 0;
2025 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002026 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002027 key->offset = 0;
2028 key->type = 0;
2029 key->objectid++;
2030 } else
2031 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002032out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002033 /*
2034 * 0: all items from this leaf copied, continue with next
2035 * 1: * more items can be copied, but unused buffer is too small
2036 * * all items were found
2037 * Either way, it will stops the loop which iterates to the next
2038 * leaf
2039 * -EOVERFLOW: item was to large for buffer
2040 * -EFAULT: could not copy extent buffer back to userspace
2041 */
Chris Masonac8e9812010-02-28 15:39:26 -05002042 return ret;
2043}
2044
2045static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002046 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002047 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002048 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002049{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002050 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05002051 struct btrfs_root *root;
2052 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002053 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002054 int ret;
2055 int num_found = 0;
2056 unsigned long sk_offset = 0;
2057
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002058 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2059 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002060 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002061 }
Gerhard Heift12544442014-01-30 16:23:58 +01002062
Chris Masonac8e9812010-02-28 15:39:26 -05002063 path = btrfs_alloc_path();
2064 if (!path)
2065 return -ENOMEM;
2066
2067 if (sk->tree_id == 0) {
2068 /* search the root of the inode that was passed */
2069 root = BTRFS_I(inode)->root;
2070 } else {
2071 key.objectid = sk->tree_id;
2072 key.type = BTRFS_ROOT_ITEM_KEY;
2073 key.offset = (u64)-1;
2074 root = btrfs_read_fs_root_no_name(info, &key);
2075 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002076 btrfs_free_path(path);
2077 return -ENOENT;
2078 }
2079 }
2080
2081 key.objectid = sk->min_objectid;
2082 key.type = sk->min_type;
2083 key.offset = sk->min_offset;
2084
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302085 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002086 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002087 if (ret != 0) {
2088 if (ret > 0)
2089 ret = 0;
2090 goto err;
2091 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002092 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002093 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002094 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002095 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002096 break;
2097
2098 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002099 if (ret > 0)
2100 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002101err:
2102 sk->nr_items = num_found;
2103 btrfs_free_path(path);
2104 return ret;
2105}
2106
2107static noinline int btrfs_ioctl_tree_search(struct file *file,
2108 void __user *argp)
2109{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002110 struct btrfs_ioctl_search_args __user *uargs;
2111 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002112 struct inode *inode;
2113 int ret;
2114 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002115
2116 if (!capable(CAP_SYS_ADMIN))
2117 return -EPERM;
2118
Gerhard Heiftba346b32014-01-30 16:24:02 +01002119 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002120
Gerhard Heiftba346b32014-01-30 16:24:02 +01002121 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2122 return -EFAULT;
2123
2124 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002125
Al Viro496ad9a2013-01-23 17:07:38 -05002126 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002127 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002128
2129 /*
2130 * In the origin implementation an overflow is handled by returning a
2131 * search header with a len of zero, so reset ret.
2132 */
2133 if (ret == -EOVERFLOW)
2134 ret = 0;
2135
Gerhard Heiftba346b32014-01-30 16:24:02 +01002136 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002137 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002138 return ret;
2139}
2140
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002141static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2142 void __user *argp)
2143{
2144 struct btrfs_ioctl_search_args_v2 __user *uarg;
2145 struct btrfs_ioctl_search_args_v2 args;
2146 struct inode *inode;
2147 int ret;
2148 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002149 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002150
2151 if (!capable(CAP_SYS_ADMIN))
2152 return -EPERM;
2153
2154 /* copy search header and buffer size */
2155 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2156 if (copy_from_user(&args, uarg, sizeof(args)))
2157 return -EFAULT;
2158
2159 buf_size = args.buf_size;
2160
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002161 /* limit result size to 16MB */
2162 if (buf_size > buf_limit)
2163 buf_size = buf_limit;
2164
2165 inode = file_inode(file);
2166 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002167 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002168 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2169 ret = -EFAULT;
2170 else if (ret == -EOVERFLOW &&
2171 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2172 ret = -EFAULT;
2173
Yan, Zheng76dda932009-09-21 16:00:26 -04002174 return ret;
2175}
2176
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002177/*
Chris Masonac8e9812010-02-28 15:39:26 -05002178 * Search INODE_REFs to identify path name of 'dirid' directory
2179 * in a 'tree_id' tree. and sets path name to 'name'.
2180 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002181static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2182 u64 tree_id, u64 dirid, char *name)
2183{
2184 struct btrfs_root *root;
2185 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002186 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002187 int ret = -1;
2188 int slot;
2189 int len;
2190 int total_len = 0;
2191 struct btrfs_inode_ref *iref;
2192 struct extent_buffer *l;
2193 struct btrfs_path *path;
2194
2195 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2196 name[0]='\0';
2197 return 0;
2198 }
2199
2200 path = btrfs_alloc_path();
2201 if (!path)
2202 return -ENOMEM;
2203
Chris Masonac8e9812010-02-28 15:39:26 -05002204 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002205
2206 key.objectid = tree_id;
2207 key.type = BTRFS_ROOT_ITEM_KEY;
2208 key.offset = (u64)-1;
2209 root = btrfs_read_fs_root_no_name(info, &key);
2210 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002211 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002212 ret = -ENOENT;
2213 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002214 }
2215
2216 key.objectid = dirid;
2217 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002218 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002219
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302220 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002221 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2222 if (ret < 0)
2223 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002224 else if (ret > 0) {
2225 ret = btrfs_previous_item(root, path, dirid,
2226 BTRFS_INODE_REF_KEY);
2227 if (ret < 0)
2228 goto out;
2229 else if (ret > 0) {
2230 ret = -ENOENT;
2231 goto out;
2232 }
2233 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002234
2235 l = path->nodes[0];
2236 slot = path->slots[0];
2237 btrfs_item_key_to_cpu(l, &key, slot);
2238
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002239 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2240 len = btrfs_inode_ref_name_len(l, iref);
2241 ptr -= len + 1;
2242 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002243 if (ptr < name) {
2244 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002245 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002246 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002247
2248 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302249 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002250
2251 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2252 break;
2253
David Sterbab3b4aa72011-04-21 01:20:15 +02002254 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002255 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002256 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002257 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002258 }
Li Zefan77906a502011-07-14 03:16:00 +00002259 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302260 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002261 ret = 0;
2262out:
2263 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002264 return ret;
2265}
2266
2267static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2268 void __user *argp)
2269{
2270 struct btrfs_ioctl_ino_lookup_args *args;
2271 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002272 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002273
Julia Lawall2354d082010-10-29 15:14:18 -04002274 args = memdup_user(argp, sizeof(*args));
2275 if (IS_ERR(args))
2276 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002277
Al Viro496ad9a2013-01-23 17:07:38 -05002278 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002279
David Sterba01b810b2015-05-12 19:14:49 +02002280 /*
2281 * Unprivileged query to obtain the containing subvolume root id. The
2282 * path is reset so it's consistent with btrfs_search_path_in_tree.
2283 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002284 if (args->treeid == 0)
2285 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2286
David Sterba01b810b2015-05-12 19:14:49 +02002287 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2288 args->name[0] = 0;
2289 goto out;
2290 }
2291
2292 if (!capable(CAP_SYS_ADMIN)) {
2293 ret = -EPERM;
2294 goto out;
2295 }
2296
Chris Masonac8e9812010-02-28 15:39:26 -05002297 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2298 args->treeid, args->objectid,
2299 args->name);
2300
David Sterba01b810b2015-05-12 19:14:49 +02002301out:
Chris Masonac8e9812010-02-28 15:39:26 -05002302 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2303 ret = -EFAULT;
2304
2305 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002306 return ret;
2307}
2308
Yan, Zheng76dda932009-09-21 16:00:26 -04002309static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2310 void __user *arg)
2311{
Al Viro54563d42013-09-01 15:57:51 -04002312 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002313 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002314 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002315 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002316 struct inode *inode;
2317 struct btrfs_root *root = BTRFS_I(dir)->root;
2318 struct btrfs_root *dest = NULL;
2319 struct btrfs_ioctl_vol_args *vol_args;
2320 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002321 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002322 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002323 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002324 int namelen;
2325 int ret;
2326 int err = 0;
2327
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002328 if (!S_ISDIR(dir->i_mode))
2329 return -ENOTDIR;
2330
Yan, Zheng76dda932009-09-21 16:00:26 -04002331 vol_args = memdup_user(arg, sizeof(*vol_args));
2332 if (IS_ERR(vol_args))
2333 return PTR_ERR(vol_args);
2334
2335 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2336 namelen = strlen(vol_args->name);
2337 if (strchr(vol_args->name, '/') ||
2338 strncmp(vol_args->name, "..", namelen) == 0) {
2339 err = -EINVAL;
2340 goto out;
2341 }
2342
Al Viroa561be72011-11-23 11:57:51 -05002343 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002344 if (err)
2345 goto out;
2346
David Sterba521e0542014-04-15 16:41:44 +02002347
Al Viro00235412016-05-26 00:05:12 -04002348 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2349 if (err == -EINTR)
2350 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002351 dentry = lookup_one_len(vol_args->name, parent, namelen);
2352 if (IS_ERR(dentry)) {
2353 err = PTR_ERR(dentry);
2354 goto out_unlock_dir;
2355 }
2356
David Howells2b0143b2015-03-17 22:25:59 +00002357 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002358 err = -ENOENT;
2359 goto out_dput;
2360 }
2361
David Howells2b0143b2015-03-17 22:25:59 +00002362 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002363 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302364 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002365 /*
2366 * Regular user. Only allow this with a special mount
2367 * option, when the user has write+exec access to the
2368 * subvol root, and when rmdir(2) would have been
2369 * allowed.
2370 *
2371 * Note that this is _not_ check that the subvol is
2372 * empty or doesn't contain data that we wouldn't
2373 * otherwise be able to delete.
2374 *
2375 * Users who want to delete empty subvols should try
2376 * rmdir(2).
2377 */
2378 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002379 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002380 goto out_dput;
2381
2382 /*
2383 * Do not allow deletion if the parent dir is the same
2384 * as the dir to be deleted. That means the ioctl
2385 * must be called on the dentry referencing the root
2386 * of the subvol, not a random directory contained
2387 * within it.
2388 */
2389 err = -EINVAL;
2390 if (root == dest)
2391 goto out_dput;
2392
2393 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2394 if (err)
2395 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002396 }
2397
Miao Xie5c39da52012-10-22 11:39:53 +00002398 /* check if subvolume may be deleted by a user */
2399 err = btrfs_may_delete(dir, dentry, 1);
2400 if (err)
2401 goto out_dput;
2402
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002403 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002404 err = -EINVAL;
2405 goto out_dput;
2406 }
2407
Al Viro59551022016-01-22 15:40:57 -05002408 inode_lock(inode);
David Sterba521e0542014-04-15 16:41:44 +02002409
2410 /*
2411 * Don't allow to delete a subvolume with send in progress. This is
2412 * inside the i_mutex so the error handling that has to drop the bit
2413 * again is not run concurrently.
2414 */
2415 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002416 root_flags = btrfs_root_flags(&dest->root_item);
2417 if (dest->send_in_progress == 0) {
2418 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002419 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2420 spin_unlock(&dest->root_item_lock);
2421 } else {
2422 spin_unlock(&dest->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002423 btrfs_warn(fs_info,
2424 "Attempt to delete subvolume %llu during send",
2425 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002426 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002427 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002428 }
2429
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002430 down_write(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -04002431
2432 err = may_destroy_subvol(dest);
2433 if (err)
2434 goto out_up_write;
2435
Miao Xiec58aaad2013-02-28 10:05:36 +00002436 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2437 /*
2438 * One for dir inode, two for dir entries, two for root
2439 * ref/backref.
2440 */
2441 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002442 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002443 if (err)
2444 goto out_up_write;
2445
Yan, Zhenga22285a2010-05-16 10:48:46 -04002446 trans = btrfs_start_transaction(root, 0);
2447 if (IS_ERR(trans)) {
2448 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002449 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002450 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002451 trans->block_rsv = &block_rsv;
2452 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002453
Nikolay Borisov43663552017-01-18 00:31:29 +02002454 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
Filipe Manana2be63d52016-02-12 11:34:23 +00002455
Yan, Zheng76dda932009-09-21 16:00:26 -04002456 ret = btrfs_unlink_subvol(trans, root, dir,
2457 dest->root_key.objectid,
2458 dentry->d_name.name,
2459 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002460 if (ret) {
2461 err = ret;
Jeff Mahoney66642832016-06-10 18:19:25 -04002462 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002463 goto out_end_trans;
2464 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002465
2466 btrfs_record_root_in_trans(trans, dest);
2467
2468 memset(&dest->root_item.drop_progress, 0,
2469 sizeof(dest->root_item.drop_progress));
2470 dest->root_item.drop_level = 0;
2471 btrfs_set_root_refs(&dest->root_item, 0);
2472
Miao Xie27cdeb72014-04-02 19:51:05 +08002473 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002474 ret = btrfs_insert_orphan_item(trans,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002475 fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04002476 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002477 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002478 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002479 err = ret;
2480 goto out_end_trans;
2481 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002482 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002483
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002484 ret = btrfs_uuid_tree_rem(trans, fs_info, dest->root_item.uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002485 BTRFS_UUID_KEY_SUBVOL,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002486 dest->root_key.objectid);
2487 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002488 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002489 err = ret;
2490 goto out_end_trans;
2491 }
2492 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002493 ret = btrfs_uuid_tree_rem(trans, fs_info,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002494 dest->root_item.received_uuid,
2495 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2496 dest->root_key.objectid);
2497 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002498 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002499 err = ret;
2500 goto out_end_trans;
2501 }
2502 }
2503
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002504out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002505 trans->block_rsv = NULL;
2506 trans->bytes_reserved = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002507 ret = btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002508 if (ret && !err)
2509 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002510 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002511out_release:
David Sterba7775c812017-02-10 19:18:18 +01002512 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Yan, Zheng76dda932009-09-21 16:00:26 -04002513out_up_write:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002514 up_write(&fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002515 if (err) {
2516 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002517 root_flags = btrfs_root_flags(&dest->root_item);
2518 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002519 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2520 spin_unlock(&dest->root_item_lock);
2521 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002522out_unlock_inode:
Al Viro59551022016-01-22 15:40:57 -05002523 inode_unlock(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04002524 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002525 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002526 btrfs_invalidate_inodes(dest);
2527 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002528 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002529
2530 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002531 if (dest->ino_cache_inode) {
2532 iput(dest->ino_cache_inode);
2533 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002534 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002535 }
2536out_dput:
2537 dput(dentry);
2538out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002539 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002540out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002541 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002542out:
2543 kfree(vol_args);
2544 return err;
2545}
2546
Chris Mason1e701a32010-03-11 09:42:04 -05002547static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002548{
Al Viro496ad9a2013-01-23 17:07:38 -05002549 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002550 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002551 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002552 int ret;
2553
Ilya Dryomov25122d12013-01-20 15:57:57 +02002554 ret = mnt_want_write_file(file);
2555 if (ret)
2556 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002557
Ilya Dryomov25122d12013-01-20 15:57:57 +02002558 if (btrfs_root_readonly(root)) {
2559 ret = -EROFS;
2560 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002561 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002562
2563 switch (inode->i_mode & S_IFMT) {
2564 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002565 if (!capable(CAP_SYS_ADMIN)) {
2566 ret = -EPERM;
2567 goto out;
2568 }
Eric Sandeende78b512013-01-31 18:21:12 +00002569 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002570 break;
2571 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002572 if (!(file->f_mode & FMODE_WRITE)) {
2573 ret = -EINVAL;
2574 goto out;
2575 }
Chris Mason1e701a32010-03-11 09:42:04 -05002576
2577 range = kzalloc(sizeof(*range), GFP_KERNEL);
2578 if (!range) {
2579 ret = -ENOMEM;
2580 goto out;
2581 }
2582
2583 if (argp) {
2584 if (copy_from_user(range, argp,
2585 sizeof(*range))) {
2586 ret = -EFAULT;
2587 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002588 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002589 }
2590 /* compression requires us to start the IO */
2591 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2592 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2593 range->extent_thresh = (u32)-1;
2594 }
2595 } else {
2596 /* the rest are all set to zero by kzalloc */
2597 range->len = (u64)-1;
2598 }
Al Viro496ad9a2013-01-23 17:07:38 -05002599 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002600 range, 0, 0);
2601 if (ret > 0)
2602 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002603 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002604 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002605 default:
2606 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002607 }
Chris Masone441d542009-01-05 16:57:23 -05002608out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002609 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002610 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002611}
2612
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002613static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002614{
2615 struct btrfs_ioctl_vol_args *vol_args;
2616 int ret;
2617
Chris Masone441d542009-01-05 16:57:23 -05002618 if (!capable(CAP_SYS_ADMIN))
2619 return -EPERM;
2620
David Sterba171938e2017-03-28 14:44:21 +02002621 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
Anand Jaine57138b2013-08-21 11:44:48 +08002622 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002623
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002624 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002625 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002626 if (IS_ERR(vol_args)) {
2627 ret = PTR_ERR(vol_args);
2628 goto out;
2629 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002630
Mark Fasheh5516e592008-07-24 12:20:14 -04002631 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002632 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002633
Anand Jain43d20762014-07-01 00:58:56 +08002634 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002635 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08002636
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002637 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002638out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002639 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002640 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002641 return ret;
2642}
2643
Anand Jain6b526ed2016-02-13 10:01:39 +08002644static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002645{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002646 struct inode *inode = file_inode(file);
2647 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08002648 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002649 int ret;
2650
Chris Masone441d542009-01-05 16:57:23 -05002651 if (!capable(CAP_SYS_ADMIN))
2652 return -EPERM;
2653
Miao Xieda249272012-11-26 08:44:50 +00002654 ret = mnt_want_write_file(file);
2655 if (ret)
2656 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002657
Li Zefandae7b662009-04-08 15:06:54 +08002658 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002659 if (IS_ERR(vol_args)) {
2660 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002661 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002662 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002663
Anand Jain6b526ed2016-02-13 10:01:39 +08002664 /* Check for compatibility reject unknown flags */
David Sterba735654e2016-02-15 18:15:21 +01002665 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED)
2666 return -EOPNOTSUPP;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002667
David Sterba171938e2017-03-28 14:44:21 +02002668 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jain183860f2013-05-17 10:52:45 +00002669 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2670 goto out;
2671 }
2672
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002673 mutex_lock(&fs_info->volume_mutex);
David Sterba735654e2016-02-15 18:15:21 +01002674 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002675 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08002676 } else {
2677 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002678 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08002679 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002680 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002681 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain183860f2013-05-17 10:52:45 +00002682
Anand Jain6b526ed2016-02-13 10:01:39 +08002683 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01002684 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002685 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08002686 vol_args->devid);
2687 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002688 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08002689 vol_args->name);
2690 }
Anand Jain183860f2013-05-17 10:52:45 +00002691out:
2692 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002693err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002694 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002695 return ret;
2696}
2697
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002698static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2699{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002700 struct inode *inode = file_inode(file);
2701 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002702 struct btrfs_ioctl_vol_args *vol_args;
2703 int ret;
2704
2705 if (!capable(CAP_SYS_ADMIN))
2706 return -EPERM;
2707
2708 ret = mnt_want_write_file(file);
2709 if (ret)
2710 return ret;
2711
David Sterba171938e2017-03-28 14:44:21 +02002712 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002713 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02002714 goto out_drop_write;
2715 }
2716
2717 vol_args = memdup_user(arg, sizeof(*vol_args));
2718 if (IS_ERR(vol_args)) {
2719 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002720 goto out;
2721 }
2722
David Sterba58d7bbf2016-05-04 14:10:47 +02002723 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002724 mutex_lock(&fs_info->volume_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002725 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002726 mutex_unlock(&fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002727
2728 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002729 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002730 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02002731out:
David Sterba171938e2017-03-28 14:44:21 +02002732 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
David Sterba58d7bbf2016-05-04 14:10:47 +02002733out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002734 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02002735
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002736 return ret;
2737}
2738
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002739static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
2740 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002741{
Li Zefan027ed2f2011-06-08 08:27:56 +00002742 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002743 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002744 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002745 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002746
Li Zefan027ed2f2011-06-08 08:27:56 +00002747 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2748 if (!fi_args)
2749 return -ENOMEM;
2750
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002751 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002752 fi_args->num_devices = fs_devices->num_devices;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002753 memcpy(&fi_args->fsid, fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002754
Byongho Leed7641a42015-09-01 23:10:57 +09002755 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002756 if (device->devid > fi_args->max_id)
2757 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002758 }
2759 mutex_unlock(&fs_devices->device_list_mutex);
2760
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07002761 fi_args->nodesize = fs_info->nodesize;
2762 fi_args->sectorsize = fs_info->sectorsize;
2763 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02002764
Li Zefan027ed2f2011-06-08 08:27:56 +00002765 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2766 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002767
Li Zefan027ed2f2011-06-08 08:27:56 +00002768 kfree(fi_args);
2769 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002770}
2771
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002772static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
2773 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002774{
2775 struct btrfs_ioctl_dev_info_args *di_args;
2776 struct btrfs_device *dev;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002777 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01002778 int ret = 0;
2779 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002780
Jan Schmidt475f6382011-03-11 15:41:01 +01002781 di_args = memdup_user(arg, sizeof(*di_args));
2782 if (IS_ERR(di_args))
2783 return PTR_ERR(di_args);
2784
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002785 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002786 s_uuid = di_args->uuid;
2787
2788 mutex_lock(&fs_devices->device_list_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002789 dev = btrfs_find_device(fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002790
2791 if (!dev) {
2792 ret = -ENODEV;
2793 goto out;
2794 }
2795
2796 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002797 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2798 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002799 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002800 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002801 struct rcu_string *name;
2802
2803 rcu_read_lock();
2804 name = rcu_dereference(dev->name);
2805 strncpy(di_args->path, name->str, sizeof(di_args->path));
2806 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002807 di_args->path[sizeof(di_args->path) - 1] = 0;
2808 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002809 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002810 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002811
2812out:
David Sterba55793c02013-04-26 15:20:23 +00002813 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002814 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2815 ret = -EFAULT;
2816
2817 kfree(di_args);
2818 return ret;
2819}
2820
Mark Fashehf4414602015-06-30 14:42:05 -07002821static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002822{
2823 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002824
Mark Fasheh416161d2013-08-06 11:42:51 -07002825 page = grab_cache_page(inode->i_mapping, index);
2826 if (!page)
Filipe Manana31314002016-01-27 18:37:47 +00002827 return ERR_PTR(-ENOMEM);
Mark Fasheh416161d2013-08-06 11:42:51 -07002828
2829 if (!PageUptodate(page)) {
Filipe Manana31314002016-01-27 18:37:47 +00002830 int ret;
2831
2832 ret = btrfs_readpage(NULL, page);
2833 if (ret)
2834 return ERR_PTR(ret);
Mark Fasheh416161d2013-08-06 11:42:51 -07002835 lock_page(page);
2836 if (!PageUptodate(page)) {
2837 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002838 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002839 return ERR_PTR(-EIO);
2840 }
2841 if (page->mapping != inode->i_mapping) {
2842 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002843 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002844 return ERR_PTR(-EAGAIN);
Mark Fasheh416161d2013-08-06 11:42:51 -07002845 }
2846 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002847
2848 return page;
2849}
2850
Mark Fashehf4414602015-06-30 14:42:05 -07002851static int gather_extent_pages(struct inode *inode, struct page **pages,
2852 int num_pages, u64 off)
2853{
2854 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002855 pgoff_t index = off >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002856
2857 for (i = 0; i < num_pages; i++) {
Filipe Manana31314002016-01-27 18:37:47 +00002858again:
Mark Fashehf4414602015-06-30 14:42:05 -07002859 pages[i] = extent_same_get_page(inode, index + i);
Filipe Manana31314002016-01-27 18:37:47 +00002860 if (IS_ERR(pages[i])) {
2861 int err = PTR_ERR(pages[i]);
2862
2863 if (err == -EAGAIN)
2864 goto again;
2865 pages[i] = NULL;
2866 return err;
2867 }
Mark Fashehf4414602015-06-30 14:42:05 -07002868 }
2869 return 0;
2870}
2871
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002872static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2873 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002874{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002875 /*
2876 * Do any pending delalloc/csum calculations on inode, one way or
2877 * another, and lock file content.
2878 * The locking order is:
2879 *
2880 * 1) pages
2881 * 2) range in the inode's io tree
2882 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002883 while (1) {
2884 struct btrfs_ordered_extent *ordered;
2885 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2886 ordered = btrfs_lookup_first_ordered_extent(inode,
2887 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002888 if ((!ordered ||
2889 ordered->file_offset + ordered->len <= off ||
2890 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002891 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002892 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2893 if (ordered)
2894 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002895 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002896 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002897 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2898 if (ordered)
2899 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002900 if (!retry_range_locking)
2901 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002902 btrfs_wait_ordered_range(inode, off, len);
2903 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002904 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002905}
2906
Mark Fashehf4414602015-06-30 14:42:05 -07002907static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002908{
Al Viro59551022016-01-22 15:40:57 -05002909 inode_unlock(inode1);
2910 inode_unlock(inode2);
Mark Fasheh416161d2013-08-06 11:42:51 -07002911}
2912
Mark Fashehf4414602015-06-30 14:42:05 -07002913static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2914{
2915 if (inode1 < inode2)
2916 swap(inode1, inode2);
2917
Al Viro59551022016-01-22 15:40:57 -05002918 inode_lock_nested(inode1, I_MUTEX_PARENT);
2919 inode_lock_nested(inode2, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002920}
2921
2922static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2923 struct inode *inode2, u64 loff2, u64 len)
2924{
2925 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2926 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2927}
2928
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002929static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2930 struct inode *inode2, u64 loff2, u64 len,
2931 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002932{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002933 int ret;
2934
Mark Fasheh416161d2013-08-06 11:42:51 -07002935 if (inode1 < inode2) {
2936 swap(inode1, inode2);
2937 swap(loff1, loff2);
2938 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002939 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2940 if (ret)
2941 return ret;
2942 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2943 if (ret)
2944 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2945 loff1 + len - 1);
2946 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002947}
2948
2949struct cmp_pages {
2950 int num_pages;
2951 struct page **src_pages;
2952 struct page **dst_pages;
2953};
2954
2955static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2956{
2957 int i;
2958 struct page *pg;
2959
2960 for (i = 0; i < cmp->num_pages; i++) {
2961 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002962 if (pg) {
2963 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002964 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002965 }
Mark Fashehf4414602015-06-30 14:42:05 -07002966 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002967 if (pg) {
2968 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002969 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002970 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002971 }
Mark Fashehf4414602015-06-30 14:42:05 -07002972 kfree(cmp->src_pages);
2973 kfree(cmp->dst_pages);
2974}
2975
2976static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2977 struct inode *dst, u64 dst_loff,
2978 u64 len, struct cmp_pages *cmp)
2979{
2980 int ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002981 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002982 struct page **src_pgarr, **dst_pgarr;
2983
2984 /*
2985 * We must gather up all the pages before we initiate our
2986 * extent locking. We use an array for the page pointers. Size
2987 * of the array is bounded by len, which is in turn bounded by
2988 * BTRFS_MAX_DEDUPE_LEN.
2989 */
David Sterba66722f72016-02-11 15:01:38 +01002990 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
2991 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
Mark Fashehf4414602015-06-30 14:42:05 -07002992 if (!src_pgarr || !dst_pgarr) {
2993 kfree(src_pgarr);
2994 kfree(dst_pgarr);
2995 return -ENOMEM;
2996 }
2997 cmp->num_pages = num_pages;
2998 cmp->src_pages = src_pgarr;
2999 cmp->dst_pages = dst_pgarr;
3000
Filipe Mananab1517622017-02-21 17:14:52 +00003001 /*
3002 * If deduping ranges in the same inode, locking rules make it mandatory
3003 * to always lock pages in ascending order to avoid deadlocks with
3004 * concurrent tasks (such as starting writeback/delalloc).
3005 */
3006 if (src == dst && dst_loff < loff) {
3007 swap(src_pgarr, dst_pgarr);
3008 swap(loff, dst_loff);
3009 }
3010
3011 ret = gather_extent_pages(src, src_pgarr, cmp->num_pages, loff);
Mark Fashehf4414602015-06-30 14:42:05 -07003012 if (ret)
3013 goto out;
3014
Filipe Mananab1517622017-02-21 17:14:52 +00003015 ret = gather_extent_pages(dst, dst_pgarr, cmp->num_pages, dst_loff);
Mark Fashehf4414602015-06-30 14:42:05 -07003016
3017out:
3018 if (ret)
3019 btrfs_cmp_data_free(cmp);
Naohiro Aota78ad4ce2017-09-08 17:48:55 +09003020 return ret;
Mark Fasheh416161d2013-08-06 11:42:51 -07003021}
3022
David Sterba1a287cf2017-02-10 20:15:10 +01003023static int btrfs_cmp_data(u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003024{
3025 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07003026 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07003027 struct page *src_page, *dst_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003028 unsigned int cmp_len = PAGE_SIZE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003029 void *addr, *dst_addr;
3030
Mark Fashehf4414602015-06-30 14:42:05 -07003031 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003032 while (len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003033 if (len < PAGE_SIZE)
Mark Fasheh416161d2013-08-06 11:42:51 -07003034 cmp_len = len;
3035
Mark Fashehf4414602015-06-30 14:42:05 -07003036 BUG_ON(i >= cmp->num_pages);
3037
3038 src_page = cmp->src_pages[i];
3039 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003040 ASSERT(PageLocked(src_page));
3041 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07003042
Mark Fasheh416161d2013-08-06 11:42:51 -07003043 addr = kmap_atomic(src_page);
3044 dst_addr = kmap_atomic(dst_page);
3045
3046 flush_dcache_page(src_page);
3047 flush_dcache_page(dst_page);
3048
3049 if (memcmp(addr, dst_addr, cmp_len))
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003050 ret = -EBADE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003051
3052 kunmap_atomic(addr);
3053 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07003054
3055 if (ret)
3056 break;
3057
Mark Fasheh416161d2013-08-06 11:42:51 -07003058 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07003059 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07003060 }
3061
3062 return ret;
3063}
3064
Mark Fashehe1d227a2015-06-08 15:05:25 -07003065static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
3066 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07003067{
Mark Fashehe1d227a2015-06-08 15:05:25 -07003068 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003069 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
3070
Mark Fashehe1d227a2015-06-08 15:05:25 -07003071 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07003072 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003073
3074 /* if we extend to eof, continue to block boundary */
3075 if (off + len == inode->i_size)
3076 *plen = len = ALIGN(inode->i_size, bs) - off;
3077
Mark Fasheh416161d2013-08-06 11:42:51 -07003078 /* Check that we are block aligned - btrfs_clone() requires this */
3079 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
3080 return -EINVAL;
3081
3082 return 0;
3083}
3084
Mark Fashehe1d227a2015-06-08 15:05:25 -07003085static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07003086 struct inode *dst, u64 dst_loff)
3087{
3088 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003089 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07003090 struct cmp_pages cmp;
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003091 bool same_inode = (src == dst);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003092 u64 same_lock_start = 0;
3093 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003094
Filipe Manana113e8282015-03-30 18:26:47 +01003095 if (len == 0)
3096 return 0;
3097
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003098 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003099 inode_lock(src);
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003100 else
3101 btrfs_double_inode_lock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003102
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003103 ret = extent_same_check_offsets(src, loff, &len, olen);
3104 if (ret)
3105 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07003106
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003107 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3108 if (ret)
3109 goto out_unlock;
3110
3111 if (same_inode) {
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003112 /*
3113 * Single inode case wants the same checks, except we
3114 * don't want our length pushed out past i_size as
3115 * comparing that data range makes no sense.
3116 *
3117 * extent_same_check_offsets() will do this for an
3118 * unaligned length at i_size, so catch it here and
3119 * reject the request.
3120 *
3121 * This effectively means we require aligned extents
3122 * for the single-inode case, whereas the other cases
3123 * allow an unaligned length so long as it ends at
3124 * i_size.
3125 */
3126 if (len != olen) {
3127 ret = -EINVAL;
3128 goto out_unlock;
3129 }
3130
3131 /* Check for overlapping ranges */
3132 if (dst_loff + len > loff && dst_loff < loff + len) {
3133 ret = -EINVAL;
3134 goto out_unlock;
3135 }
3136
3137 same_lock_start = min_t(u64, loff, dst_loff);
3138 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003139 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003140
3141 /* don't make the dst file partly checksummed */
3142 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3143 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3144 ret = -EINVAL;
3145 goto out_unlock;
3146 }
3147
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003148again:
Mark Fashehf4414602015-06-30 14:42:05 -07003149 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3150 if (ret)
3151 goto out_unlock;
3152
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003153 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003154 ret = lock_extent_range(src, same_lock_start, same_lock_len,
3155 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003156 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003157 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
3158 false);
3159 /*
3160 * If one of the inodes has dirty pages in the respective range or
3161 * ordered extents, we need to flush dellaloc and wait for all ordered
3162 * extents in the range. We must unlock the pages and the ranges in the
3163 * io trees to avoid deadlocks when flushing delalloc (requires locking
3164 * pages) and when waiting for ordered extents to complete (they require
3165 * range locking).
3166 */
3167 if (ret == -EAGAIN) {
3168 /*
3169 * Ranges in the io trees already unlocked. Now unlock all
3170 * pages before waiting for all IO to complete.
3171 */
3172 btrfs_cmp_data_free(&cmp);
3173 if (same_inode) {
3174 btrfs_wait_ordered_range(src, same_lock_start,
3175 same_lock_len);
3176 } else {
3177 btrfs_wait_ordered_range(src, loff, len);
3178 btrfs_wait_ordered_range(dst, dst_loff, len);
3179 }
3180 goto again;
3181 }
3182 ASSERT(ret == 0);
3183 if (WARN_ON(ret)) {
3184 /* ranges in the io trees already unlocked */
3185 btrfs_cmp_data_free(&cmp);
3186 return ret;
3187 }
Mark Fashehf4414602015-06-30 14:42:05 -07003188
Mark Fasheh207910d2015-06-30 14:42:04 -07003189 /* pass original length for comparison so we stay within i_size */
David Sterba1a287cf2017-02-10 20:15:10 +01003190 ret = btrfs_cmp_data(olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003191 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003192 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003193
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003194 if (same_inode)
3195 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3196 same_lock_start + same_lock_len - 1);
3197 else
3198 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003199
3200 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003201out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003202 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003203 inode_unlock(src);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003204 else
3205 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003206
3207 return ret;
3208}
3209
Byongho Leeee221842015-12-15 01:42:10 +09003210#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003211
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003212ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3213 struct file *dst_file, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003214{
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003215 struct inode *src = file_inode(src_file);
3216 struct inode *dst = file_inode(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003217 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003218 ssize_t res;
Mark Fasheh416161d2013-08-06 11:42:51 -07003219
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003220 if (olen > BTRFS_MAX_DEDUPE_LEN)
3221 olen = BTRFS_MAX_DEDUPE_LEN;
Mark Fasheh416161d2013-08-06 11:42:51 -07003222
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003223 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003224 /*
3225 * Btrfs does not support blocksize < page_size. As a
3226 * result, btrfs_cmp_data() won't correctly handle
3227 * this situation without an update.
3228 */
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003229 return -EINVAL;
Mark Fasheh416161d2013-08-06 11:42:51 -07003230 }
3231
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003232 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3233 if (res)
3234 return res;
3235 return olen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003236}
3237
Filipe Mananaf82a9902014-06-01 01:50:28 +01003238static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3239 struct inode *inode,
3240 u64 endoff,
3241 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003242 const u64 olen,
3243 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003244{
3245 struct btrfs_root *root = BTRFS_I(inode)->root;
3246 int ret;
3247
3248 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003249 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003250 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003251 /*
3252 * We round up to the block size at eof when determining which
3253 * extents to clone above, but shouldn't round up the file size.
3254 */
3255 if (endoff > destoff + olen)
3256 endoff = destoff + olen;
3257 if (endoff > inode->i_size)
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003258 btrfs_i_size_write(BTRFS_I(inode), endoff);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003259
3260 ret = btrfs_update_inode(trans, root, inode);
3261 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003262 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003263 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003264 goto out;
3265 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003266 ret = btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003267out:
3268 return ret;
3269}
3270
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003271static void clone_update_extent_map(struct btrfs_inode *inode,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003272 const struct btrfs_trans_handle *trans,
3273 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003274 const u64 hole_offset,
3275 const u64 hole_len)
3276{
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003277 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01003278 struct extent_map *em;
3279 int ret;
3280
3281 em = alloc_extent_map();
3282 if (!em) {
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003283 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003284 return;
3285 }
3286
Filipe Manana14f59792014-06-29 21:45:40 +01003287 if (path) {
3288 struct btrfs_file_extent_item *fi;
3289
3290 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3291 struct btrfs_file_extent_item);
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003292 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003293 em->generation = -1;
3294 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3295 BTRFS_FILE_EXTENT_INLINE)
3296 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003297 &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003298 } else {
3299 em->start = hole_offset;
3300 em->len = hole_len;
3301 em->ram_bytes = em->len;
3302 em->orig_start = hole_offset;
3303 em->block_start = EXTENT_MAP_HOLE;
3304 em->block_len = 0;
3305 em->orig_block_len = 0;
3306 em->compress_type = BTRFS_COMPRESS_NONE;
3307 em->generation = trans->transid;
3308 }
3309
3310 while (1) {
3311 write_lock(&em_tree->lock);
3312 ret = add_extent_mapping(em_tree, em, 1);
3313 write_unlock(&em_tree->lock);
3314 if (ret != -EEXIST) {
3315 free_extent_map(em);
3316 break;
3317 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003318 btrfs_drop_extent_cache(inode, em->start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003319 em->start + em->len - 1, 0);
3320 }
3321
David Sterbaee39b432014-09-30 01:33:33 +02003322 if (ret)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003323 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003324}
3325
Filipe Manana8039d872015-10-13 15:15:00 +01003326/*
3327 * Make sure we do not end up inserting an inline extent into a file that has
3328 * already other (non-inline) extents. If a file has an inline extent it can
3329 * not have any other extents and the (single) inline extent must start at the
3330 * file offset 0. Failing to respect these rules will lead to file corruption,
3331 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3332 *
3333 * We can have extents that have been already written to disk or we can have
3334 * dirty ranges still in delalloc, in which case the extent maps and items are
3335 * created only when we run delalloc, and the delalloc ranges might fall outside
3336 * the range we are currently locking in the inode's io tree. So we check the
3337 * inode's i_size because of that (i_size updates are done while holding the
3338 * i_mutex, which we are holding here).
3339 * We also check to see if the inode has a size not greater than "datal" but has
3340 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3341 * protected against such concurrent fallocate calls by the i_mutex).
3342 *
3343 * If the file has no extents but a size greater than datal, do not allow the
3344 * copy because we would need turn the inline extent into a non-inline one (even
3345 * with NO_HOLES enabled). If we find our destination inode only has one inline
3346 * extent, just overwrite it with the source inline extent if its size is less
3347 * than the source extent's size, or we could copy the source inline extent's
3348 * data into the destination inode's inline extent if the later is greater then
3349 * the former.
3350 */
David Sterba4a0ab9d2017-02-10 20:18:49 +01003351static int clone_copy_inline_extent(struct inode *dst,
Filipe Manana8039d872015-10-13 15:15:00 +01003352 struct btrfs_trans_handle *trans,
3353 struct btrfs_path *path,
3354 struct btrfs_key *new_key,
3355 const u64 drop_start,
3356 const u64 datal,
3357 const u64 skip,
3358 const u64 size,
3359 char *inline_data)
3360{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003361 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
Filipe Manana8039d872015-10-13 15:15:00 +01003362 struct btrfs_root *root = BTRFS_I(dst)->root;
3363 const u64 aligned_end = ALIGN(new_key->offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003364 fs_info->sectorsize);
Filipe Manana8039d872015-10-13 15:15:00 +01003365 int ret;
3366 struct btrfs_key key;
3367
3368 if (new_key->offset > 0)
3369 return -EOPNOTSUPP;
3370
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003371 key.objectid = btrfs_ino(BTRFS_I(dst));
Filipe Manana8039d872015-10-13 15:15:00 +01003372 key.type = BTRFS_EXTENT_DATA_KEY;
3373 key.offset = 0;
3374 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3375 if (ret < 0) {
3376 return ret;
3377 } else if (ret > 0) {
3378 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3379 ret = btrfs_next_leaf(root, path);
3380 if (ret < 0)
3381 return ret;
3382 else if (ret > 0)
3383 goto copy_inline_extent;
3384 }
3385 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003386 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003387 key.type == BTRFS_EXTENT_DATA_KEY) {
3388 ASSERT(key.offset > 0);
3389 return -EOPNOTSUPP;
3390 }
3391 } else if (i_size_read(dst) <= datal) {
3392 struct btrfs_file_extent_item *ei;
3393 u64 ext_len;
3394
3395 /*
3396 * If the file size is <= datal, make sure there are no other
3397 * extents following (can happen do to an fallocate call with
3398 * the flag FALLOC_FL_KEEP_SIZE).
3399 */
3400 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3401 struct btrfs_file_extent_item);
3402 /*
3403 * If it's an inline extent, it can not have other extents
3404 * following it.
3405 */
3406 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3407 BTRFS_FILE_EXTENT_INLINE)
3408 goto copy_inline_extent;
3409
3410 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3411 if (ext_len > aligned_end)
3412 return -EOPNOTSUPP;
3413
3414 ret = btrfs_next_item(root, path);
3415 if (ret < 0) {
3416 return ret;
3417 } else if (ret == 0) {
3418 btrfs_item_key_to_cpu(path->nodes[0], &key,
3419 path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003420 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003421 key.type == BTRFS_EXTENT_DATA_KEY)
3422 return -EOPNOTSUPP;
3423 }
3424 }
3425
3426copy_inline_extent:
3427 /*
3428 * We have no extent items, or we have an extent at offset 0 which may
3429 * or may not be inlined. All these cases are dealt the same way.
3430 */
3431 if (i_size_read(dst) > datal) {
3432 /*
3433 * If the destination inode has an inline extent...
3434 * This would require copying the data from the source inline
3435 * extent into the beginning of the destination's inline extent.
3436 * But this is really complex, both extents can be compressed
3437 * or just one of them, which would require decompressing and
3438 * re-compressing data (which could increase the new compressed
3439 * size, not allowing the compressed data to fit anymore in an
3440 * inline extent).
3441 * So just don't support this case for now (it should be rare,
3442 * we are not really saving space when cloning inline extents).
3443 */
3444 return -EOPNOTSUPP;
3445 }
3446
3447 btrfs_release_path(path);
3448 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3449 if (ret)
3450 return ret;
3451 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3452 if (ret)
3453 return ret;
3454
3455 if (skip) {
3456 const u32 start = btrfs_file_extent_calc_inline_size(0);
3457
3458 memmove(inline_data + start, inline_data + start + skip, datal);
3459 }
3460
3461 write_extent_buffer(path->nodes[0], inline_data,
3462 btrfs_item_ptr_offset(path->nodes[0],
3463 path->slots[0]),
3464 size);
3465 inode_add_bytes(dst, datal);
3466
3467 return 0;
3468}
3469
Mark Fasheh32b7c682013-08-06 11:42:49 -07003470/**
3471 * btrfs_clone() - clone a range from inode file to another
3472 *
3473 * @src: Inode to clone from
3474 * @inode: Inode to clone to
3475 * @off: Offset within source to start clone from
3476 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003477 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003478 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003479 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003480 */
3481static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003482 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003483 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003484{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003485 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003486 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003487 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003488 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003489 struct btrfs_trans_handle *trans;
3490 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003491 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003492 u32 nritems;
3493 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003494 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003495 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003496 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003497
3498 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07003499 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3500 if (!buf)
3501 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003502
3503 path = btrfs_alloc_path();
3504 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003505 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003506 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003507 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003508
David Sterbae4058b52015-11-27 16:31:35 +01003509 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003510 /* clone data */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003511 key.objectid = btrfs_ino(BTRFS_I(src));
Yan Zhengae01a0a2008-08-04 23:23:47 -04003512 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003513 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003514
3515 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003516 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003517
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003518 /*
3519 * note the key will change type as we walk through the
3520 * tree.
3521 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003522 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003523 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3524 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003525 if (ret < 0)
3526 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003527 /*
3528 * First search, if no extent item that starts at offset off was
3529 * found but the previous item is an extent item, it's possible
3530 * it might overlap our target range, therefore process it.
3531 */
3532 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3533 btrfs_item_key_to_cpu(path->nodes[0], &key,
3534 path->slots[0] - 1);
3535 if (key.type == BTRFS_EXTENT_DATA_KEY)
3536 path->slots[0]--;
3537 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003538
Yan Zhengae01a0a2008-08-04 23:23:47 -04003539 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003540process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003541 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003542 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003543 if (ret < 0)
3544 goto out;
3545 if (ret > 0)
3546 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003547 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003548 }
3549 leaf = path->nodes[0];
3550 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003551
Yan Zhengae01a0a2008-08-04 23:23:47 -04003552 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003553 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003554 key.objectid != btrfs_ino(BTRFS_I(src)))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003555 break;
3556
David Sterba962a2982014-06-04 18:41:45 +02003557 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003558 struct btrfs_file_extent_item *extent;
3559 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003560 u32 size;
3561 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003562 u64 disko = 0, diskl = 0;
3563 u64 datao = 0, datal = 0;
3564 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003565 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003566
Sage Weilc5c9cd42008-11-12 14:32:25 -05003567 extent = btrfs_item_ptr(leaf, slot,
3568 struct btrfs_file_extent_item);
3569 comp = btrfs_file_extent_compression(leaf, extent);
3570 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003571 if (type == BTRFS_FILE_EXTENT_REG ||
3572 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003573 disko = btrfs_file_extent_disk_bytenr(leaf,
3574 extent);
3575 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3576 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003577 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003578 datal = btrfs_file_extent_num_bytes(leaf,
3579 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003580 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3581 /* take upper bound, may be compressed */
3582 datal = btrfs_file_extent_ram_bytes(leaf,
3583 extent);
3584 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003585
Filipe Manana2c463822014-05-31 02:31:05 +01003586 /*
3587 * The first search might have left us at an extent
3588 * item that ends before our target range's start, can
3589 * happen if we have holes and NO_HOLES feature enabled.
3590 */
3591 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003592 path->slots[0]++;
3593 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003594 } else if (key.offset >= off + len) {
3595 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003596 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003597 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003598 size = btrfs_item_size_nr(leaf, slot);
3599 read_extent_buffer(leaf, buf,
3600 btrfs_item_ptr_offset(leaf, slot),
3601 size);
3602
3603 btrfs_release_path(path);
3604 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003605
Zheng Yan31840ae2008-09-23 13:14:14 -04003606 memcpy(&new_key, &key, sizeof(new_key));
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003607 new_key.objectid = btrfs_ino(BTRFS_I(inode));
Li Zefan4d728ec2011-01-26 14:10:43 +08003608 if (off <= key.offset)
3609 new_key.offset = key.offset + destoff - off;
3610 else
3611 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003612
Sage Weilb6f34092011-09-20 14:48:51 -04003613 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003614 * Deal with a hole that doesn't have an extent item
3615 * that represents it (NO_HOLES feature enabled).
3616 * This hole is either in the middle of the cloning
3617 * range or at the beginning (fully overlaps it or
3618 * partially overlaps it).
3619 */
3620 if (new_key.offset != last_dest_end)
3621 drop_start = last_dest_end;
3622 else
3623 drop_start = new_key.offset;
3624
3625 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003626 * 1 - adjusting old extent (we may have to split it)
3627 * 1 - add new extent
3628 * 1 - inode update
3629 */
3630 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003631 if (IS_ERR(trans)) {
3632 ret = PTR_ERR(trans);
3633 goto out;
3634 }
3635
Chris Masonc8a894d2009-06-27 21:07:03 -04003636 if (type == BTRFS_FILE_EXTENT_REG ||
3637 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003638 /*
3639 * a | --- range to clone ---| b
3640 * | ------------- extent ------------- |
3641 */
3642
Antonio Ospite93915582014-06-04 14:03:48 +02003643 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003644 if (key.offset + datal > off + len)
3645 datal = off + len - key.offset;
3646
Antonio Ospite93915582014-06-04 14:03:48 +02003647 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003648 if (off > key.offset) {
3649 datao += off - key.offset;
3650 datal -= off - key.offset;
3651 }
3652
Josef Bacik5dc562c2012-08-17 13:14:17 -04003653 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003654 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003655 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003656 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003657 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003658 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003659 btrfs_abort_transaction(trans,
Jeff Mahoney66642832016-06-10 18:19:25 -04003660 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003661 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003662 goto out;
3663 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003664
Sage Weilc5c9cd42008-11-12 14:32:25 -05003665 ret = btrfs_insert_empty_item(trans, root, path,
3666 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003667 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003668 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003669 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003670 goto out;
3671 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003672
3673 leaf = path->nodes[0];
3674 slot = path->slots[0];
3675 write_extent_buffer(leaf, buf,
3676 btrfs_item_ptr_offset(leaf, slot),
3677 size);
3678
3679 extent = btrfs_item_ptr(leaf, slot,
3680 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003681
Sage Weilc5c9cd42008-11-12 14:32:25 -05003682 /* disko == 0 means it's a hole */
3683 if (!disko)
3684 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003685
3686 btrfs_set_file_extent_offset(leaf, extent,
3687 datao);
3688 btrfs_set_file_extent_num_bytes(leaf, extent,
3689 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003690
Sage Weilc5c9cd42008-11-12 14:32:25 -05003691 if (disko) {
3692 inode_add_bytes(inode, datal);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003693 ret = btrfs_inc_extent_ref(trans,
3694 fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003695 disko, diskl, 0,
3696 root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003697 btrfs_ino(BTRFS_I(inode)),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003698 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003699 if (ret) {
3700 btrfs_abort_transaction(trans,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003701 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003702 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003703 goto out;
3704
3705 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003706 }
3707 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3708 u64 skip = 0;
3709 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003710
Sage Weilc5c9cd42008-11-12 14:32:25 -05003711 if (off > key.offset) {
3712 skip = off - key.offset;
3713 new_key.offset += skip;
3714 }
Chris Masond3977122009-01-05 21:25:51 -05003715
Liu Boaa42ffd2012-09-18 03:52:23 -06003716 if (key.offset + datal > off + len)
3717 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003718
Sage Weilc5c9cd42008-11-12 14:32:25 -05003719 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003720 ret = -EINVAL;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003721 btrfs_end_transaction(trans);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003722 goto out;
3723 }
3724 size -= skip + trim;
3725 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003726
David Sterba4a0ab9d2017-02-10 20:18:49 +01003727 ret = clone_copy_inline_extent(inode,
Filipe Manana8039d872015-10-13 15:15:00 +01003728 trans, path,
3729 &new_key,
3730 drop_start,
3731 datal,
3732 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003733 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003734 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003735 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003736 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003737 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003738 goto out;
3739 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003740 leaf = path->nodes[0];
3741 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003742 }
3743
Filipe Manana7ffbb592014-06-09 03:48:05 +01003744 /* If we have an implicit hole (NO_HOLES feature). */
3745 if (drop_start < new_key.offset)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003746 clone_update_extent_map(BTRFS_I(inode), trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003747 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003748 new_key.offset - drop_start);
3749
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003750 clone_update_extent_map(BTRFS_I(inode), trans,
3751 path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003752
Sage Weilc5c9cd42008-11-12 14:32:25 -05003753 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003754 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003755
Filipe Manana62e23902014-08-08 02:47:06 +01003756 last_dest_end = ALIGN(new_key.offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003757 fs_info->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003758 ret = clone_finish_inode_update(trans, inode,
3759 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003760 destoff, olen,
3761 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003762 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003763 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003764 if (new_key.offset + datal >= destoff + len)
3765 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003766 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003767 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003768 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003769
3770 if (fatal_signal_pending(current)) {
3771 ret = -EINTR;
3772 goto out;
3773 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003774 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003775 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003776
Filipe Mananaf82a9902014-06-01 01:50:28 +01003777 if (last_dest_end < destoff + len) {
3778 /*
3779 * We have an implicit hole (NO_HOLES feature is enabled) that
3780 * fully or partially overlaps our cloning range at its end.
3781 */
3782 btrfs_release_path(path);
3783
3784 /*
3785 * 1 - remove extent(s)
3786 * 1 - inode update
3787 */
3788 trans = btrfs_start_transaction(root, 2);
3789 if (IS_ERR(trans)) {
3790 ret = PTR_ERR(trans);
3791 goto out;
3792 }
3793 ret = btrfs_drop_extents(trans, root, inode,
3794 last_dest_end, destoff + len, 1);
3795 if (ret) {
3796 if (ret != -EOPNOTSUPP)
Jeff Mahoney66642832016-06-10 18:19:25 -04003797 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003798 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003799 goto out;
3800 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003801 clone_update_extent_map(BTRFS_I(inode), trans, NULL,
3802 last_dest_end,
3803 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003804 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003805 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003806 }
3807
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003808out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003809 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003810 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003811 return ret;
3812}
3813
Zach Brown3db11b22015-11-10 16:53:32 -05003814static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3815 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003816{
Al Viro54563d42013-09-01 15:57:51 -04003817 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003818 struct inode *src = file_inode(file_src);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003819 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003820 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003821 int ret;
3822 u64 len = olen;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003823 u64 bs = fs_info->sb->s_blocksize;
Zach Brown3db11b22015-11-10 16:53:32 -05003824 int same_inode = src == inode;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003825
3826 /*
3827 * TODO:
3828 * - split compressed inline extents. annoying: we need to
3829 * decompress into destination's address_space (the file offset
3830 * may change, so source mapping won't do), then recompress (or
3831 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003832 *
3833 * - split destination inode's inline extents. The inline extents can
3834 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003835 */
3836
Mark Fasheh32b7c682013-08-06 11:42:49 -07003837 if (btrfs_root_readonly(root))
3838 return -EROFS;
3839
Zach Brown3db11b22015-11-10 16:53:32 -05003840 if (file_src->f_path.mnt != file->f_path.mnt ||
3841 src->i_sb != inode->i_sb)
3842 return -EXDEV;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003843
3844 /* don't make the dst file partly checksummed */
3845 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3846 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
Zach Brown3db11b22015-11-10 16:53:32 -05003847 return -EINVAL;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003848
Mark Fasheh32b7c682013-08-06 11:42:49 -07003849 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Zach Brown3db11b22015-11-10 16:53:32 -05003850 return -EISDIR;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003851
3852 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003853 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003854 } else {
Al Viro59551022016-01-22 15:40:57 -05003855 inode_lock(src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003856 }
3857
3858 /* determine range to clone */
3859 ret = -EINVAL;
3860 if (off + len > src->i_size || off + len < off)
3861 goto out_unlock;
3862 if (len == 0)
3863 olen = len = src->i_size - off;
3864 /* if we extend to eof, continue to block boundary */
3865 if (off + len == src->i_size)
3866 len = ALIGN(src->i_size, bs) - off;
3867
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003868 if (len == 0) {
3869 ret = 0;
3870 goto out_unlock;
3871 }
3872
Mark Fasheh32b7c682013-08-06 11:42:49 -07003873 /* verify the end result is block aligned */
3874 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3875 !IS_ALIGNED(destoff, bs))
3876 goto out_unlock;
3877
3878 /* verify if ranges are overlapped within the same file */
3879 if (same_inode) {
3880 if (destoff + len > off && destoff < off + len)
3881 goto out_unlock;
3882 }
3883
3884 if (destoff > inode->i_size) {
3885 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3886 if (ret)
3887 goto out_unlock;
3888 }
3889
Filipe Mananac125b8b2014-05-23 05:03:34 +01003890 /*
3891 * Lock the target range too. Right after we replace the file extent
3892 * items in the fs tree (which now point to the cloned data), we might
3893 * have a worker replace them with extent items relative to a write
3894 * operation that was issued before this clone operation (i.e. confront
3895 * with inode.c:btrfs_finish_ordered_io).
3896 */
3897 if (same_inode) {
3898 u64 lock_start = min_t(u64, off, destoff);
3899 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003900
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003901 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003902 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003903 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3904 true);
3905 }
3906 ASSERT(ret == 0);
3907 if (WARN_ON(ret)) {
3908 /* ranges in the io trees already unlocked */
3909 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003910 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003911
Mark Fasheh1c919a52015-06-30 14:42:08 -07003912 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003913
Filipe Mananac125b8b2014-05-23 05:03:34 +01003914 if (same_inode) {
3915 u64 lock_start = min_t(u64, off, destoff);
3916 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3917
3918 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3919 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003920 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003921 }
3922 /*
3923 * Truncate page cache pages so that future reads will see the cloned
3924 * data immediately and not the previous data.
3925 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303926 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003927 round_down(destoff, PAGE_SIZE),
3928 round_up(destoff + len, PAGE_SIZE) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003929out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003930 if (!same_inode)
3931 btrfs_double_inode_unlock(src, inode);
3932 else
Al Viro59551022016-01-22 15:40:57 -05003933 inode_unlock(src);
Zach Brown3db11b22015-11-10 16:53:32 -05003934 return ret;
3935}
3936
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003937int btrfs_clone_file_range(struct file *src_file, loff_t off,
3938 struct file *dst_file, loff_t destoff, u64 len)
Zach Brown3db11b22015-11-10 16:53:32 -05003939{
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003940 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003941}
3942
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003943/*
3944 * there are many ways the trans_start and trans_end ioctls can lead
3945 * to deadlocks. They should only be used by applications that
3946 * basically own the machine, and have a very in depth understanding
3947 * of all the possible deadlocks and enospc problems.
3948 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003949static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003950{
Al Viro496ad9a2013-01-23 17:07:38 -05003951 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003952 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003953 struct btrfs_root *root = BTRFS_I(inode)->root;
3954 struct btrfs_trans_handle *trans;
Josef Bacik23b5ec72017-07-24 15:14:25 -04003955 struct btrfs_file_private *private;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003956 int ret;
Nikolay Borisov3558d4f2017-07-26 11:26:28 +03003957 static bool warned = false;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003958
Sage Weil1ab86ae2009-09-29 18:38:44 -04003959 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003960 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003961 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003962
Nikolay Borisov3558d4f2017-07-26 11:26:28 +03003963 if (!warned) {
3964 btrfs_warn(fs_info,
3965 "Userspace transaction mechanism is considered "
3966 "deprecated and slated to be removed in 4.17. "
3967 "If you have a valid use case please "
3968 "speak up on the mailing list");
3969 WARN_ON(1);
3970 warned = true;
3971 }
3972
Sage Weil1ab86ae2009-09-29 18:38:44 -04003973 ret = -EINPROGRESS;
Josef Bacik23b5ec72017-07-24 15:14:25 -04003974 private = file->private_data;
3975 if (private && private->trans)
Sage Weil1ab86ae2009-09-29 18:38:44 -04003976 goto out;
Josef Bacik23b5ec72017-07-24 15:14:25 -04003977 if (!private) {
3978 private = kzalloc(sizeof(struct btrfs_file_private),
3979 GFP_KERNEL);
3980 if (!private)
3981 return -ENOMEM;
3982 file->private_data = private;
3983 }
Sage Weil9ca9ee02008-08-04 10:41:27 -04003984
Li Zefanb83cc962010-12-20 16:04:08 +08003985 ret = -EROFS;
3986 if (btrfs_root_readonly(root))
3987 goto out;
3988
Al Viroa561be72011-11-23 11:57:51 -05003989 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05003990 if (ret)
3991 goto out;
3992
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003993 atomic_inc(&fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003994
Sage Weil1ab86ae2009-09-29 18:38:44 -04003995 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003996 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00003997 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04003998 goto out_drop;
3999
Josef Bacik23b5ec72017-07-24 15:14:25 -04004000 private->trans = trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004001 return 0;
4002
4003out_drop:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004004 atomic_dec(&fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05004005 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004006out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004007 return ret;
4008}
4009
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004010static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
4011{
Al Viro496ad9a2013-01-23 17:07:38 -05004012 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004013 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004014 struct btrfs_root *root = BTRFS_I(inode)->root;
4015 struct btrfs_root *new_root;
4016 struct btrfs_dir_item *di;
4017 struct btrfs_trans_handle *trans;
4018 struct btrfs_path *path;
4019 struct btrfs_key location;
4020 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004021 u64 objectid = 0;
4022 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00004023 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004024
4025 if (!capable(CAP_SYS_ADMIN))
4026 return -EPERM;
4027
Miao Xie3c04ce02012-11-26 08:43:07 +00004028 ret = mnt_want_write_file(file);
4029 if (ret)
4030 return ret;
4031
4032 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
4033 ret = -EFAULT;
4034 goto out;
4035 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004036
4037 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05304038 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004039
4040 location.objectid = objectid;
4041 location.type = BTRFS_ROOT_ITEM_KEY;
4042 location.offset = (u64)-1;
4043
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004044 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00004045 if (IS_ERR(new_root)) {
4046 ret = PTR_ERR(new_root);
4047 goto out;
4048 }
satoru takeuchi6d6d2822017-09-12 22:42:52 +09004049 if (!is_fstree(new_root->objectid)) {
4050 ret = -ENOENT;
4051 goto out;
4052 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004053
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004054 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00004055 if (!path) {
4056 ret = -ENOMEM;
4057 goto out;
4058 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004059 path->leave_spinning = 1;
4060
4061 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004062 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004063 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00004064 ret = PTR_ERR(trans);
4065 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004066 }
4067
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004068 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4069 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004070 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00004071 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004072 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004073 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004074 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004075 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00004076 ret = -ENOENT;
4077 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004078 }
4079
4080 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4081 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4082 btrfs_mark_buffer_dirty(path->nodes[0]);
4083 btrfs_free_path(path);
4084
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004085 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004086 btrfs_end_transaction(trans);
Miao Xie3c04ce02012-11-26 08:43:07 +00004087out:
4088 mnt_drop_write_file(file);
4089 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004090}
4091
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004092void btrfs_get_block_group_info(struct list_head *groups_list,
4093 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004094{
4095 struct btrfs_block_group_cache *block_group;
4096
4097 space->total_bytes = 0;
4098 space->used_bytes = 0;
4099 space->flags = 0;
4100 list_for_each_entry(block_group, groups_list, list) {
4101 space->flags = block_group->flags;
4102 space->total_bytes += block_group->key.offset;
4103 space->used_bytes +=
4104 btrfs_block_group_used(&block_group->item);
4105 }
4106}
4107
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004108static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
4109 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004110{
4111 struct btrfs_ioctl_space_args space_args;
4112 struct btrfs_ioctl_space_info space;
4113 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004114 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004115 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004116 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004117 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
4118 BTRFS_BLOCK_GROUP_SYSTEM,
4119 BTRFS_BLOCK_GROUP_METADATA,
4120 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
4121 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004122 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004123 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004124 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004125 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004126
4127 if (copy_from_user(&space_args,
4128 (struct btrfs_ioctl_space_args __user *)arg,
4129 sizeof(space_args)))
4130 return -EFAULT;
4131
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004132 for (i = 0; i < num_types; i++) {
4133 struct btrfs_space_info *tmp;
4134
4135 info = NULL;
4136 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004137 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004138 list) {
4139 if (tmp->flags == types[i]) {
4140 info = tmp;
4141 break;
4142 }
4143 }
4144 rcu_read_unlock();
4145
4146 if (!info)
4147 continue;
4148
4149 down_read(&info->groups_sem);
4150 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4151 if (!list_empty(&info->block_groups[c]))
4152 slot_count++;
4153 }
4154 up_read(&info->groups_sem);
4155 }
Josef Bacik1406e432010-01-13 18:19:06 +00004156
David Sterba36523e952014-02-07 14:34:12 +01004157 /*
4158 * Global block reserve, exported as a space_info
4159 */
4160 slot_count++;
4161
Chris Mason7fde62b2010-03-16 15:40:10 -04004162 /* space_slots == 0 means they are asking for a count */
4163 if (space_args.space_slots == 0) {
4164 space_args.total_spaces = slot_count;
4165 goto out;
4166 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004167
Dan Rosenberg51788b12011-02-14 16:04:23 -05004168 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004169
Chris Mason7fde62b2010-03-16 15:40:10 -04004170 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004171
Chris Mason7fde62b2010-03-16 15:40:10 -04004172 /* we generally have at most 6 or so space infos, one for each raid
4173 * level. So, a whole page should be more than enough for everyone
4174 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004175 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04004176 return -ENOMEM;
4177
4178 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01004179 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04004180 if (!dest)
4181 return -ENOMEM;
4182 dest_orig = dest;
4183
4184 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004185 for (i = 0; i < num_types; i++) {
4186 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004187
Dan Rosenberg51788b12011-02-14 16:04:23 -05004188 if (!slot_count)
4189 break;
4190
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004191 info = NULL;
4192 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004193 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004194 list) {
4195 if (tmp->flags == types[i]) {
4196 info = tmp;
4197 break;
4198 }
4199 }
4200 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004201
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004202 if (!info)
4203 continue;
4204 down_read(&info->groups_sem);
4205 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4206 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004207 btrfs_get_block_group_info(
4208 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004209 memcpy(dest, &space, sizeof(space));
4210 dest++;
4211 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004212 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004213 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004214 if (!slot_count)
4215 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004216 }
4217 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004218 }
Josef Bacik1406e432010-01-13 18:19:06 +00004219
David Sterba36523e952014-02-07 14:34:12 +01004220 /*
4221 * Add global block reserve
4222 */
4223 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004224 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01004225
4226 spin_lock(&block_rsv->lock);
4227 space.total_bytes = block_rsv->size;
4228 space.used_bytes = block_rsv->size - block_rsv->reserved;
4229 spin_unlock(&block_rsv->lock);
4230 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4231 memcpy(dest, &space, sizeof(space));
4232 space_args.total_spaces++;
4233 }
4234
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004235 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004236 (arg + sizeof(struct btrfs_ioctl_space_args));
4237
4238 if (copy_to_user(user_dest, dest_orig, alloc_size))
4239 ret = -EFAULT;
4240
4241 kfree(dest_orig);
4242out:
4243 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004244 ret = -EFAULT;
4245
4246 return ret;
4247}
4248
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004249/*
4250 * there are many ways the trans_start and trans_end ioctls can lead
4251 * to deadlocks. They should only be used by applications that
4252 * basically own the machine, and have a very in depth understanding
4253 * of all the possible deadlocks and enospc problems.
4254 */
4255long btrfs_ioctl_trans_end(struct file *file)
4256{
Al Viro496ad9a2013-01-23 17:07:38 -05004257 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004258 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04004259 struct btrfs_file_private *private = file->private_data;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004260
Josef Bacik23b5ec72017-07-24 15:14:25 -04004261 if (!private || !private->trans)
Sage Weil1ab86ae2009-09-29 18:38:44 -04004262 return -EINVAL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004263
Josef Bacik23b5ec72017-07-24 15:14:25 -04004264 btrfs_end_transaction(private->trans);
4265 private->trans = NULL;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004266
Josef Bacika4abeea2011-04-11 17:25:13 -04004267 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004268
Al Viro2a79f172011-12-09 08:06:57 -05004269 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004270 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004271}
4272
Miao Xie9a8c28b2012-11-26 08:40:43 +00004273static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4274 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004275{
Sage Weil46204592010-10-29 15:41:32 -04004276 struct btrfs_trans_handle *trans;
4277 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004278 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004279
Miao Xied4edf392013-02-20 09:17:06 +00004280 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004281 if (IS_ERR(trans)) {
4282 if (PTR_ERR(trans) != -ENOENT)
4283 return PTR_ERR(trans);
4284
4285 /* No running transaction, don't bother */
4286 transid = root->fs_info->last_trans_committed;
4287 goto out;
4288 }
Sage Weil46204592010-10-29 15:41:32 -04004289 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004290 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004291 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004292 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004293 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004294 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004295out:
Sage Weil46204592010-10-29 15:41:32 -04004296 if (argp)
4297 if (copy_to_user(argp, &transid, sizeof(transid)))
4298 return -EFAULT;
4299 return 0;
4300}
4301
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004302static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00004303 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004304{
Sage Weil46204592010-10-29 15:41:32 -04004305 u64 transid;
4306
4307 if (argp) {
4308 if (copy_from_user(&transid, argp, sizeof(transid)))
4309 return -EFAULT;
4310 } else {
4311 transid = 0; /* current trans */
4312 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004313 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04004314}
4315
Miao Xieb8e95482012-11-26 08:48:01 +00004316static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004317{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004318 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01004319 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004320 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004321
4322 if (!capable(CAP_SYS_ADMIN))
4323 return -EPERM;
4324
4325 sa = memdup_user(arg, sizeof(*sa));
4326 if (IS_ERR(sa))
4327 return PTR_ERR(sa);
4328
Miao Xieb8e95482012-11-26 08:48:01 +00004329 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4330 ret = mnt_want_write_file(file);
4331 if (ret)
4332 goto out;
4333 }
4334
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004335 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004336 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4337 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004338
4339 if (copy_to_user(arg, sa, sizeof(*sa)))
4340 ret = -EFAULT;
4341
Miao Xieb8e95482012-11-26 08:48:01 +00004342 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4343 mnt_drop_write_file(file);
4344out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004345 kfree(sa);
4346 return ret;
4347}
4348
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004349static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01004350{
4351 if (!capable(CAP_SYS_ADMIN))
4352 return -EPERM;
4353
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004354 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004355}
4356
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004357static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01004358 void __user *arg)
4359{
4360 struct btrfs_ioctl_scrub_args *sa;
4361 int ret;
4362
4363 if (!capable(CAP_SYS_ADMIN))
4364 return -EPERM;
4365
4366 sa = memdup_user(arg, sizeof(*sa));
4367 if (IS_ERR(sa))
4368 return PTR_ERR(sa);
4369
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004370 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01004371
4372 if (copy_to_user(arg, sa, sizeof(*sa)))
4373 ret = -EFAULT;
4374
4375 kfree(sa);
4376 return ret;
4377}
4378
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004379static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06004380 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004381{
4382 struct btrfs_ioctl_get_dev_stats *sa;
4383 int ret;
4384
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004385 sa = memdup_user(arg, sizeof(*sa));
4386 if (IS_ERR(sa))
4387 return PTR_ERR(sa);
4388
David Sterbab27f7c02012-06-22 06:30:39 -06004389 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4390 kfree(sa);
4391 return -EPERM;
4392 }
4393
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004394 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004395
4396 if (copy_to_user(arg, sa, sizeof(*sa)))
4397 ret = -EFAULT;
4398
4399 kfree(sa);
4400 return ret;
4401}
4402
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004403static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4404 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004405{
4406 struct btrfs_ioctl_dev_replace_args *p;
4407 int ret;
4408
4409 if (!capable(CAP_SYS_ADMIN))
4410 return -EPERM;
4411
4412 p = memdup_user(arg, sizeof(*p));
4413 if (IS_ERR(p))
4414 return PTR_ERR(p);
4415
4416 switch (p->cmd) {
4417 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01004418 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004419 ret = -EROFS;
4420 goto out;
4421 }
David Sterba171938e2017-03-28 14:44:21 +02004422 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004423 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004424 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004425 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
David Sterba171938e2017-03-28 14:44:21 +02004426 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004427 }
4428 break;
4429 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004430 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004431 ret = 0;
4432 break;
4433 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004434 ret = btrfs_dev_replace_cancel(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004435 break;
4436 default:
4437 ret = -EINVAL;
4438 break;
4439 }
4440
4441 if (copy_to_user(arg, p, sizeof(*p)))
4442 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004443out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004444 kfree(p);
4445 return ret;
4446}
4447
Jan Schmidtd7728c92011-07-07 16:48:38 +02004448static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4449{
4450 int ret = 0;
4451 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004452 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004453 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004454 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004455 struct inode_fs_paths *ipath = NULL;
4456 struct btrfs_path *path;
4457
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004458 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004459 return -EPERM;
4460
4461 path = btrfs_alloc_path();
4462 if (!path) {
4463 ret = -ENOMEM;
4464 goto out;
4465 }
4466
4467 ipa = memdup_user(arg, sizeof(*ipa));
4468 if (IS_ERR(ipa)) {
4469 ret = PTR_ERR(ipa);
4470 ipa = NULL;
4471 goto out;
4472 }
4473
4474 size = min_t(u32, ipa->size, 4096);
4475 ipath = init_ipath(size, root, path);
4476 if (IS_ERR(ipath)) {
4477 ret = PTR_ERR(ipath);
4478 ipath = NULL;
4479 goto out;
4480 }
4481
4482 ret = paths_from_inode(ipa->inum, ipath);
4483 if (ret < 0)
4484 goto out;
4485
4486 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004487 rel_ptr = ipath->fspath->val[i] -
4488 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004489 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004490 }
4491
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004492 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
4493 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004494 if (ret) {
4495 ret = -EFAULT;
4496 goto out;
4497 }
4498
4499out:
4500 btrfs_free_path(path);
4501 free_ipath(ipath);
4502 kfree(ipa);
4503
4504 return ret;
4505}
4506
4507static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4508{
4509 struct btrfs_data_container *inodes = ctx;
4510 const size_t c = 3 * sizeof(u64);
4511
4512 if (inodes->bytes_left >= c) {
4513 inodes->bytes_left -= c;
4514 inodes->val[inodes->elem_cnt] = inum;
4515 inodes->val[inodes->elem_cnt + 1] = offset;
4516 inodes->val[inodes->elem_cnt + 2] = root;
4517 inodes->elem_cnt += 3;
4518 } else {
4519 inodes->bytes_missing += c - inodes->bytes_left;
4520 inodes->bytes_left = 0;
4521 inodes->elem_missed += 3;
4522 }
4523
4524 return 0;
4525}
4526
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004527static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Jan Schmidtd7728c92011-07-07 16:48:38 +02004528 void __user *arg)
4529{
4530 int ret = 0;
4531 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004532 struct btrfs_ioctl_logical_ino_args *loi;
4533 struct btrfs_data_container *inodes = NULL;
4534 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004535
4536 if (!capable(CAP_SYS_ADMIN))
4537 return -EPERM;
4538
4539 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304540 if (IS_ERR(loi))
4541 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004542
4543 path = btrfs_alloc_path();
4544 if (!path) {
4545 ret = -ENOMEM;
4546 goto out;
4547 }
4548
Byongho Leeee221842015-12-15 01:42:10 +09004549 size = min_t(u32, loi->size, SZ_64K);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004550 inodes = init_data_container(size);
4551 if (IS_ERR(inodes)) {
4552 ret = PTR_ERR(inodes);
4553 inodes = NULL;
4554 goto out;
4555 }
4556
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004557 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Liu Bodf031f02012-09-07 20:01:29 -06004558 build_ino_list, inodes);
4559 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004560 ret = -ENOENT;
4561 if (ret < 0)
4562 goto out;
4563
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004564 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4565 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004566 if (ret)
4567 ret = -EFAULT;
4568
4569out:
4570 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004571 kvfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004572 kfree(loi);
4573
4574 return ret;
4575}
4576
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004577void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004578 struct btrfs_ioctl_balance_args *bargs)
4579{
4580 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4581
4582 bargs->flags = bctl->flags;
4583
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004584 if (atomic_read(&fs_info->balance_running))
4585 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4586 if (atomic_read(&fs_info->balance_pause_req))
4587 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004588 if (atomic_read(&fs_info->balance_cancel_req))
4589 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004590
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004591 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4592 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4593 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004594
4595 if (lock) {
4596 spin_lock(&fs_info->balance_lock);
4597 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4598 spin_unlock(&fs_info->balance_lock);
4599 } else {
4600 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4601 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004602}
4603
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004604static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004605{
Al Viro496ad9a2013-01-23 17:07:38 -05004606 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004607 struct btrfs_fs_info *fs_info = root->fs_info;
4608 struct btrfs_ioctl_balance_args *bargs;
4609 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004610 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004611 int ret;
4612
4613 if (!capable(CAP_SYS_ADMIN))
4614 return -EPERM;
4615
Liu Boe54bfa312012-06-29 03:58:48 -06004616 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004617 if (ret)
4618 return ret;
4619
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004620again:
David Sterba171938e2017-03-28 14:44:21 +02004621 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004622 mutex_lock(&fs_info->volume_mutex);
4623 mutex_lock(&fs_info->balance_mutex);
4624 need_unlock = true;
4625 goto locked;
4626 }
4627
4628 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004629 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004630 * (1) some other op is running
4631 * (2) balance is running
4632 * (3) balance is paused -- special case (think resume)
4633 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004634 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004635 if (fs_info->balance_ctl) {
4636 /* this is either (2) or (3) */
4637 if (!atomic_read(&fs_info->balance_running)) {
4638 mutex_unlock(&fs_info->balance_mutex);
4639 if (!mutex_trylock(&fs_info->volume_mutex))
4640 goto again;
4641 mutex_lock(&fs_info->balance_mutex);
4642
4643 if (fs_info->balance_ctl &&
4644 !atomic_read(&fs_info->balance_running)) {
4645 /* this is (3) */
4646 need_unlock = false;
4647 goto locked;
4648 }
4649
4650 mutex_unlock(&fs_info->balance_mutex);
4651 mutex_unlock(&fs_info->volume_mutex);
4652 goto again;
4653 } else {
4654 /* this is (2) */
4655 mutex_unlock(&fs_info->balance_mutex);
4656 ret = -EINPROGRESS;
4657 goto out;
4658 }
4659 } else {
4660 /* this is (1) */
4661 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004662 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004663 goto out;
4664 }
4665
4666locked:
David Sterba171938e2017-03-28 14:44:21 +02004667 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004668
4669 if (arg) {
4670 bargs = memdup_user(arg, sizeof(*bargs));
4671 if (IS_ERR(bargs)) {
4672 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004673 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004674 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004675
4676 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4677 if (!fs_info->balance_ctl) {
4678 ret = -ENOTCONN;
4679 goto out_bargs;
4680 }
4681
4682 bctl = fs_info->balance_ctl;
4683 spin_lock(&fs_info->balance_lock);
4684 bctl->flags |= BTRFS_BALANCE_RESUME;
4685 spin_unlock(&fs_info->balance_lock);
4686
4687 goto do_balance;
4688 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004689 } else {
4690 bargs = NULL;
4691 }
4692
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004693 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004694 ret = -EINPROGRESS;
4695 goto out_bargs;
4696 }
4697
David Sterba8d2db782015-11-04 15:38:29 +01004698 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004699 if (!bctl) {
4700 ret = -ENOMEM;
4701 goto out_bargs;
4702 }
4703
4704 bctl->fs_info = fs_info;
4705 if (arg) {
4706 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4707 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4708 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4709
4710 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004711 } else {
4712 /* balance everything - no filters */
4713 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004714 }
4715
David Sterba8eb93452015-10-12 16:55:54 +02004716 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4717 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004718 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004719 }
4720
Ilya Dryomovde322262012-01-16 22:04:49 +02004721do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004722 /*
David Sterba171938e2017-03-28 14:44:21 +02004723 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004724 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4725 * or, if restriper was paused all the way until unmount, in
David Sterba171938e2017-03-28 14:44:21 +02004726 * free_fs_info. The flag is cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004727 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004728 need_unlock = false;
4729
4730 ret = btrfs_balance(bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004731 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004732
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004733 if (arg) {
4734 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4735 ret = -EFAULT;
4736 }
4737
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004738out_bctl:
4739 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004740out_bargs:
4741 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004742out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004743 mutex_unlock(&fs_info->balance_mutex);
4744 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004745 if (need_unlock)
David Sterba171938e2017-03-28 14:44:21 +02004746 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004747out:
Liu Boe54bfa312012-06-29 03:58:48 -06004748 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004749 return ret;
4750}
4751
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004752static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004753{
4754 if (!capable(CAP_SYS_ADMIN))
4755 return -EPERM;
4756
4757 switch (cmd) {
4758 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004759 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004760 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004761 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004762 }
4763
4764 return -EINVAL;
4765}
4766
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004767static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004768 void __user *arg)
4769{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004770 struct btrfs_ioctl_balance_args *bargs;
4771 int ret = 0;
4772
4773 if (!capable(CAP_SYS_ADMIN))
4774 return -EPERM;
4775
4776 mutex_lock(&fs_info->balance_mutex);
4777 if (!fs_info->balance_ctl) {
4778 ret = -ENOTCONN;
4779 goto out;
4780 }
4781
David Sterba8d2db782015-11-04 15:38:29 +01004782 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004783 if (!bargs) {
4784 ret = -ENOMEM;
4785 goto out;
4786 }
4787
4788 update_ioctl_balance_args(fs_info, 1, bargs);
4789
4790 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4791 ret = -EFAULT;
4792
4793 kfree(bargs);
4794out:
4795 mutex_unlock(&fs_info->balance_mutex);
4796 return ret;
4797}
4798
Miao Xie905b0dd2012-11-26 08:50:11 +00004799static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004800{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004801 struct inode *inode = file_inode(file);
4802 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004803 struct btrfs_ioctl_quota_ctl_args *sa;
4804 struct btrfs_trans_handle *trans = NULL;
4805 int ret;
4806 int err;
4807
4808 if (!capable(CAP_SYS_ADMIN))
4809 return -EPERM;
4810
Miao Xie905b0dd2012-11-26 08:50:11 +00004811 ret = mnt_want_write_file(file);
4812 if (ret)
4813 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004814
4815 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004816 if (IS_ERR(sa)) {
4817 ret = PTR_ERR(sa);
4818 goto drop_write;
4819 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004820
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004821 down_write(&fs_info->subvol_sem);
4822 trans = btrfs_start_transaction(fs_info->tree_root, 2);
Jan Schmidt2f232032013-04-25 16:04:51 +00004823 if (IS_ERR(trans)) {
4824 ret = PTR_ERR(trans);
4825 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004826 }
4827
4828 switch (sa->cmd) {
4829 case BTRFS_QUOTA_CTL_ENABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004830 ret = btrfs_quota_enable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004831 break;
4832 case BTRFS_QUOTA_CTL_DISABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004833 ret = btrfs_quota_disable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004834 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004835 default:
4836 ret = -EINVAL;
4837 break;
4838 }
4839
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004840 err = btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00004841 if (err && !ret)
4842 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004843out:
4844 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004845 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004846drop_write:
4847 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004848 return ret;
4849}
4850
Miao Xie905b0dd2012-11-26 08:50:11 +00004851static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004852{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004853 struct inode *inode = file_inode(file);
4854 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4855 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004856 struct btrfs_ioctl_qgroup_assign_args *sa;
4857 struct btrfs_trans_handle *trans;
4858 int ret;
4859 int err;
4860
4861 if (!capable(CAP_SYS_ADMIN))
4862 return -EPERM;
4863
Miao Xie905b0dd2012-11-26 08:50:11 +00004864 ret = mnt_want_write_file(file);
4865 if (ret)
4866 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004867
4868 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004869 if (IS_ERR(sa)) {
4870 ret = PTR_ERR(sa);
4871 goto drop_write;
4872 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004873
4874 trans = btrfs_join_transaction(root);
4875 if (IS_ERR(trans)) {
4876 ret = PTR_ERR(trans);
4877 goto out;
4878 }
4879
Arne Jansen5d13a372011-09-14 15:53:51 +02004880 if (sa->assign) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004881 ret = btrfs_add_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004882 sa->src, sa->dst);
4883 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004884 ret = btrfs_del_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004885 sa->src, sa->dst);
4886 }
4887
Qu Wenruoe082f562015-02-27 16:24:28 +08004888 /* update qgroup status and info */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004889 err = btrfs_run_qgroups(trans, fs_info);
Qu Wenruoe082f562015-02-27 16:24:28 +08004890 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004891 btrfs_handle_fs_error(fs_info, err,
4892 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004893 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004894 if (err && !ret)
4895 ret = err;
4896
4897out:
4898 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004899drop_write:
4900 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004901 return ret;
4902}
4903
Miao Xie905b0dd2012-11-26 08:50:11 +00004904static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004905{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004906 struct inode *inode = file_inode(file);
4907 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4908 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004909 struct btrfs_ioctl_qgroup_create_args *sa;
4910 struct btrfs_trans_handle *trans;
4911 int ret;
4912 int err;
4913
4914 if (!capable(CAP_SYS_ADMIN))
4915 return -EPERM;
4916
Miao Xie905b0dd2012-11-26 08:50:11 +00004917 ret = mnt_want_write_file(file);
4918 if (ret)
4919 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004920
4921 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004922 if (IS_ERR(sa)) {
4923 ret = PTR_ERR(sa);
4924 goto drop_write;
4925 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004926
Miao Xied86e56c2012-11-15 11:35:41 +00004927 if (!sa->qgroupid) {
4928 ret = -EINVAL;
4929 goto out;
4930 }
4931
Arne Jansen5d13a372011-09-14 15:53:51 +02004932 trans = btrfs_join_transaction(root);
4933 if (IS_ERR(trans)) {
4934 ret = PTR_ERR(trans);
4935 goto out;
4936 }
4937
Arne Jansen5d13a372011-09-14 15:53:51 +02004938 if (sa->create) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004939 ret = btrfs_create_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004940 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004941 ret = btrfs_remove_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004942 }
4943
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004944 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004945 if (err && !ret)
4946 ret = err;
4947
4948out:
4949 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004950drop_write:
4951 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004952 return ret;
4953}
4954
Miao Xie905b0dd2012-11-26 08:50:11 +00004955static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004956{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004957 struct inode *inode = file_inode(file);
4958 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4959 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004960 struct btrfs_ioctl_qgroup_limit_args *sa;
4961 struct btrfs_trans_handle *trans;
4962 int ret;
4963 int err;
4964 u64 qgroupid;
4965
4966 if (!capable(CAP_SYS_ADMIN))
4967 return -EPERM;
4968
Miao Xie905b0dd2012-11-26 08:50:11 +00004969 ret = mnt_want_write_file(file);
4970 if (ret)
4971 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004972
4973 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004974 if (IS_ERR(sa)) {
4975 ret = PTR_ERR(sa);
4976 goto drop_write;
4977 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004978
4979 trans = btrfs_join_transaction(root);
4980 if (IS_ERR(trans)) {
4981 ret = PTR_ERR(trans);
4982 goto out;
4983 }
4984
4985 qgroupid = sa->qgroupid;
4986 if (!qgroupid) {
4987 /* take the current subvol as qgroup */
4988 qgroupid = root->root_key.objectid;
4989 }
4990
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004991 ret = btrfs_limit_qgroup(trans, fs_info, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004992
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004993 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004994 if (err && !ret)
4995 ret = err;
4996
4997out:
4998 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004999drop_write:
5000 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02005001 return ret;
5002}
5003
Jan Schmidt2f232032013-04-25 16:04:51 +00005004static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
5005{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005006 struct inode *inode = file_inode(file);
5007 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00005008 struct btrfs_ioctl_quota_rescan_args *qsa;
5009 int ret;
5010
5011 if (!capable(CAP_SYS_ADMIN))
5012 return -EPERM;
5013
5014 ret = mnt_want_write_file(file);
5015 if (ret)
5016 return ret;
5017
5018 qsa = memdup_user(arg, sizeof(*qsa));
5019 if (IS_ERR(qsa)) {
5020 ret = PTR_ERR(qsa);
5021 goto drop_write;
5022 }
5023
5024 if (qsa->flags) {
5025 ret = -EINVAL;
5026 goto out;
5027 }
5028
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005029 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00005030
5031out:
5032 kfree(qsa);
5033drop_write:
5034 mnt_drop_write_file(file);
5035 return ret;
5036}
5037
5038static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
5039{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005040 struct inode *inode = file_inode(file);
5041 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00005042 struct btrfs_ioctl_quota_rescan_args *qsa;
5043 int ret = 0;
5044
5045 if (!capable(CAP_SYS_ADMIN))
5046 return -EPERM;
5047
David Sterba8d2db782015-11-04 15:38:29 +01005048 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00005049 if (!qsa)
5050 return -ENOMEM;
5051
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005052 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00005053 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005054 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00005055 }
5056
5057 if (copy_to_user(arg, qsa, sizeof(*qsa)))
5058 ret = -EFAULT;
5059
5060 kfree(qsa);
5061 return ret;
5062}
5063
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005064static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
5065{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005066 struct inode *inode = file_inode(file);
5067 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005068
5069 if (!capable(CAP_SYS_ADMIN))
5070 return -EPERM;
5071
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005072 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005073}
5074
Hugo Millsabccd002014-01-30 20:17:00 +00005075static long _btrfs_ioctl_set_received_subvol(struct file *file,
5076 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02005077{
Al Viro496ad9a2013-01-23 17:07:38 -05005078 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005079 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02005080 struct btrfs_root *root = BTRFS_I(inode)->root;
5081 struct btrfs_root_item *root_item = &root->root_item;
5082 struct btrfs_trans_handle *trans;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005083 struct timespec ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02005084 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005085 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005086
David Sterbabd60ea02014-01-16 15:50:22 +01005087 if (!inode_owner_or_capable(inode))
5088 return -EPERM;
5089
Alexander Block8ea05e32012-07-25 17:35:53 +02005090 ret = mnt_want_write_file(file);
5091 if (ret < 0)
5092 return ret;
5093
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005094 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02005095
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005096 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02005097 ret = -EINVAL;
5098 goto out;
5099 }
5100
5101 if (btrfs_root_readonly(root)) {
5102 ret = -EROFS;
5103 goto out;
5104 }
5105
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005106 /*
5107 * 1 - root item
5108 * 2 - uuid items (received uuid + subvol uuid)
5109 */
5110 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005111 if (IS_ERR(trans)) {
5112 ret = PTR_ERR(trans);
5113 trans = NULL;
5114 goto out;
5115 }
5116
5117 sa->rtransid = trans->transid;
5118 sa->rtime.sec = ct.tv_sec;
5119 sa->rtime.nsec = ct.tv_nsec;
5120
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005121 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5122 BTRFS_UUID_SIZE);
5123 if (received_uuid_changed &&
5124 !btrfs_is_empty_uuid(root_item->received_uuid))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005125 btrfs_uuid_tree_rem(trans, fs_info, root_item->received_uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005126 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5127 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02005128 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5129 btrfs_set_root_stransid(root_item, sa->stransid);
5130 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005131 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5132 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5133 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5134 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005135
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005136 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02005137 &root->root_key, &root->root_item);
5138 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005139 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005140 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005141 }
5142 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005143 ret = btrfs_uuid_tree_add(trans, fs_info, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005144 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5145 root->root_key.objectid);
5146 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005147 btrfs_abort_transaction(trans, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02005148 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005149 }
5150 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005151 ret = btrfs_commit_transaction(trans);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005152 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005153 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005154 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02005155 }
5156
Hugo Millsabccd002014-01-30 20:17:00 +00005157out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005158 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00005159 mnt_drop_write_file(file);
5160 return ret;
5161}
5162
5163#ifdef CONFIG_64BIT
5164static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5165 void __user *arg)
5166{
5167 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5168 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5169 int ret = 0;
5170
5171 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305172 if (IS_ERR(args32))
5173 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00005174
David Sterba8d2db782015-11-04 15:38:29 +01005175 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005176 if (!args64) {
5177 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005178 goto out;
5179 }
5180
5181 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5182 args64->stransid = args32->stransid;
5183 args64->rtransid = args32->rtransid;
5184 args64->stime.sec = args32->stime.sec;
5185 args64->stime.nsec = args32->stime.nsec;
5186 args64->rtime.sec = args32->rtime.sec;
5187 args64->rtime.nsec = args32->rtime.nsec;
5188 args64->flags = args32->flags;
5189
5190 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5191 if (ret)
5192 goto out;
5193
5194 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5195 args32->stransid = args64->stransid;
5196 args32->rtransid = args64->rtransid;
5197 args32->stime.sec = args64->stime.sec;
5198 args32->stime.nsec = args64->stime.nsec;
5199 args32->rtime.sec = args64->rtime.sec;
5200 args32->rtime.nsec = args64->rtime.nsec;
5201 args32->flags = args64->flags;
5202
5203 ret = copy_to_user(arg, args32, sizeof(*args32));
5204 if (ret)
5205 ret = -EFAULT;
5206
5207out:
5208 kfree(args32);
5209 kfree(args64);
5210 return ret;
5211}
5212#endif
5213
5214static long btrfs_ioctl_set_received_subvol(struct file *file,
5215 void __user *arg)
5216{
5217 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5218 int ret = 0;
5219
5220 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305221 if (IS_ERR(sa))
5222 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00005223
5224 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5225
5226 if (ret)
5227 goto out;
5228
Alexander Block8ea05e32012-07-25 17:35:53 +02005229 ret = copy_to_user(arg, sa, sizeof(*sa));
5230 if (ret)
5231 ret = -EFAULT;
5232
5233out:
5234 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005235 return ret;
5236}
5237
jeff.liu867ab662013-01-05 02:48:01 +00005238static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5239{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005240 struct inode *inode = file_inode(file);
5241 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005242 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005243 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005244 char label[BTRFS_LABEL_SIZE];
5245
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005246 spin_lock(&fs_info->super_lock);
5247 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5248 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005249
5250 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005251
5252 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005253 btrfs_warn(fs_info,
5254 "label is too long, return the first %zu bytes",
5255 --len);
jeff.liu867ab662013-01-05 02:48:01 +00005256 }
5257
jeff.liu867ab662013-01-05 02:48:01 +00005258 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005259
5260 return ret ? -EFAULT : 0;
5261}
5262
jeff.liua8bfd4a2013-01-05 02:48:08 +00005263static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5264{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005265 struct inode *inode = file_inode(file);
5266 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5267 struct btrfs_root *root = BTRFS_I(inode)->root;
5268 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005269 struct btrfs_trans_handle *trans;
5270 char label[BTRFS_LABEL_SIZE];
5271 int ret;
5272
5273 if (!capable(CAP_SYS_ADMIN))
5274 return -EPERM;
5275
5276 if (copy_from_user(label, arg, sizeof(label)))
5277 return -EFAULT;
5278
5279 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005280 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005281 "unable to set label with more than %d bytes",
5282 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005283 return -EINVAL;
5284 }
5285
5286 ret = mnt_want_write_file(file);
5287 if (ret)
5288 return ret;
5289
jeff.liua8bfd4a2013-01-05 02:48:08 +00005290 trans = btrfs_start_transaction(root, 0);
5291 if (IS_ERR(trans)) {
5292 ret = PTR_ERR(trans);
5293 goto out_unlock;
5294 }
5295
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005296 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005297 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005298 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005299 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005300
5301out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005302 mnt_drop_write_file(file);
5303 return ret;
5304}
5305
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005306#define INIT_FEATURE_FLAGS(suffix) \
5307 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5308 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5309 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5310
David Sterbad5131b62016-02-17 15:26:27 +01005311int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005312{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005313 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005314 INIT_FEATURE_FLAGS(SUPP),
5315 INIT_FEATURE_FLAGS(SAFE_SET),
5316 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5317 };
5318
5319 if (copy_to_user(arg, &features, sizeof(features)))
5320 return -EFAULT;
5321
5322 return 0;
5323}
5324
5325static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5326{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005327 struct inode *inode = file_inode(file);
5328 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5329 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005330 struct btrfs_ioctl_feature_flags features;
5331
5332 features.compat_flags = btrfs_super_compat_flags(super_block);
5333 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5334 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5335
5336 if (copy_to_user(arg, &features, sizeof(features)))
5337 return -EFAULT;
5338
5339 return 0;
5340}
5341
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005342static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005343 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005344 u64 change_mask, u64 flags, u64 supported_flags,
5345 u64 safe_set, u64 safe_clear)
5346{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005347 const char *type = btrfs_feature_set_names[set];
5348 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005349 u64 disallowed, unsupported;
5350 u64 set_mask = flags & change_mask;
5351 u64 clear_mask = ~flags & change_mask;
5352
5353 unsupported = set_mask & ~supported_flags;
5354 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005355 names = btrfs_printable_features(set, unsupported);
5356 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005357 btrfs_warn(fs_info,
5358 "this kernel does not support the %s feature bit%s",
5359 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005360 kfree(names);
5361 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005362 btrfs_warn(fs_info,
5363 "this kernel does not support %s bits 0x%llx",
5364 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005365 return -EOPNOTSUPP;
5366 }
5367
5368 disallowed = set_mask & ~safe_set;
5369 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005370 names = btrfs_printable_features(set, disallowed);
5371 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005372 btrfs_warn(fs_info,
5373 "can't set the %s feature bit%s while mounted",
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 "can't set %s bits 0x%llx while mounted",
5379 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005380 return -EPERM;
5381 }
5382
5383 disallowed = clear_mask & ~safe_clear;
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 clear 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 clear %s bits 0x%llx while mounted",
5394 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005395 return -EPERM;
5396 }
5397
5398 return 0;
5399}
5400
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005401#define check_feature(fs_info, change_mask, flags, mask_base) \
5402check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005403 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5404 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5405 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5406
5407static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5408{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005409 struct inode *inode = file_inode(file);
5410 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5411 struct btrfs_root *root = BTRFS_I(inode)->root;
5412 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005413 struct btrfs_ioctl_feature_flags flags[2];
5414 struct btrfs_trans_handle *trans;
5415 u64 newflags;
5416 int ret;
5417
5418 if (!capable(CAP_SYS_ADMIN))
5419 return -EPERM;
5420
5421 if (copy_from_user(flags, arg, sizeof(flags)))
5422 return -EFAULT;
5423
5424 /* Nothing to do */
5425 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5426 !flags[0].incompat_flags)
5427 return 0;
5428
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005429 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005430 flags[1].compat_flags, COMPAT);
5431 if (ret)
5432 return ret;
5433
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005434 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005435 flags[1].compat_ro_flags, COMPAT_RO);
5436 if (ret)
5437 return ret;
5438
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005439 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005440 flags[1].incompat_flags, INCOMPAT);
5441 if (ret)
5442 return ret;
5443
David Sterba7ab19622016-05-04 11:32:00 +02005444 ret = mnt_want_write_file(file);
5445 if (ret)
5446 return ret;
5447
David Sterba8051aa12014-02-07 14:34:04 +01005448 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005449 if (IS_ERR(trans)) {
5450 ret = PTR_ERR(trans);
5451 goto out_drop_write;
5452 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005453
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005454 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005455 newflags = btrfs_super_compat_flags(super_block);
5456 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5457 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5458 btrfs_set_super_compat_flags(super_block, newflags);
5459
5460 newflags = btrfs_super_compat_ro_flags(super_block);
5461 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5462 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5463 btrfs_set_super_compat_ro_flags(super_block, newflags);
5464
5465 newflags = btrfs_super_incompat_flags(super_block);
5466 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5467 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5468 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005469 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005470
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005471 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02005472out_drop_write:
5473 mnt_drop_write_file(file);
5474
5475 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005476}
5477
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005478long btrfs_ioctl(struct file *file, unsigned int
5479 cmd, unsigned long arg)
5480{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005481 struct inode *inode = file_inode(file);
5482 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5483 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005484 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005485
5486 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005487 case FS_IOC_GETFLAGS:
5488 return btrfs_ioctl_getflags(file, argp);
5489 case FS_IOC_SETFLAGS:
5490 return btrfs_ioctl_setflags(file, argp);
5491 case FS_IOC_GETVERSION:
5492 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005493 case FITRIM:
5494 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005495 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005496 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005497 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005498 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005499 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005500 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005501 case BTRFS_IOC_SUBVOL_CREATE_V2:
5502 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005503 case BTRFS_IOC_SNAP_DESTROY:
5504 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005505 case BTRFS_IOC_SUBVOL_GETFLAGS:
5506 return btrfs_ioctl_subvol_getflags(file, argp);
5507 case BTRFS_IOC_SUBVOL_SETFLAGS:
5508 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005509 case BTRFS_IOC_DEFAULT_SUBVOL:
5510 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005511 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005512 return btrfs_ioctl_defrag(file, NULL);
5513 case BTRFS_IOC_DEFRAG_RANGE:
5514 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005515 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005516 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005517 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005518 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005519 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005520 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005521 case BTRFS_IOC_RM_DEV_V2:
5522 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005523 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005524 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005525 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005526 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005527 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005528 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005529 case BTRFS_IOC_TRANS_START:
5530 return btrfs_ioctl_trans_start(file);
5531 case BTRFS_IOC_TRANS_END:
5532 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005533 case BTRFS_IOC_TREE_SEARCH:
5534 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005535 case BTRFS_IOC_TREE_SEARCH_V2:
5536 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005537 case BTRFS_IOC_INO_LOOKUP:
5538 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005539 case BTRFS_IOC_INO_PATHS:
5540 return btrfs_ioctl_ino_to_path(root, argp);
5541 case BTRFS_IOC_LOGICAL_INO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005542 return btrfs_ioctl_logical_to_ino(fs_info, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005543 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005544 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005545 case BTRFS_IOC_SYNC: {
5546 int ret;
5547
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005548 ret = btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005549 if (ret)
5550 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005551 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005552 /*
5553 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005554 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005555 * processing uncleaned subvols.
5556 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005557 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005558 return ret;
5559 }
Sage Weil46204592010-10-29 15:41:32 -04005560 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005561 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005562 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005563 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005564 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005565 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005566 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005567 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005568 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005569 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005570 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005571 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005572 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005573 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005574 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005575 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005576 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5577 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005578#ifdef CONFIG_64BIT
5579 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5580 return btrfs_ioctl_set_received_subvol_32(file, argp);
5581#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005582 case BTRFS_IOC_SEND:
5583 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005584 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005585 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005586 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005587 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005588 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005589 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005590 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005591 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005592 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005593 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005594 case BTRFS_IOC_QUOTA_RESCAN:
5595 return btrfs_ioctl_quota_rescan(file, argp);
5596 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5597 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005598 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5599 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005600 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005601 return btrfs_ioctl_dev_replace(fs_info, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005602 case BTRFS_IOC_GET_FSLABEL:
5603 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005604 case BTRFS_IOC_SET_FSLABEL:
5605 return btrfs_ioctl_set_fslabel(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005606 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005607 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005608 case BTRFS_IOC_GET_FEATURES:
5609 return btrfs_ioctl_get_features(file, argp);
5610 case BTRFS_IOC_SET_FEATURES:
5611 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005612 }
5613
5614 return -ENOTTY;
5615}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005616
5617#ifdef CONFIG_COMPAT
5618long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5619{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005620 /*
5621 * These all access 32-bit values anyway so no further
5622 * handling is necessary.
5623 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005624 switch (cmd) {
5625 case FS_IOC32_GETFLAGS:
5626 cmd = FS_IOC_GETFLAGS;
5627 break;
5628 case FS_IOC32_SETFLAGS:
5629 cmd = FS_IOC_SETFLAGS;
5630 break;
5631 case FS_IOC32_GETVERSION:
5632 cmd = FS_IOC_GETVERSION;
5633 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005634 }
5635
5636 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5637}
5638#endif