blob: ac85e07f567b5b3cb0bd7c0516e4ec8155f6ccf8 [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>
Jeff Laytonae5e1652018-01-29 06:41:30 -050046#include <linux/iversion.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040047#include "ctree.h"
48#include "disk-io.h"
49#include "transaction.h"
50#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040051#include "print-tree.h"
52#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040053#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080054#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020055#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040056#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020057#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010058#include "dev-replace.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000059#include "props.h"
Jeff Mahoney3b02a682013-11-01 13:07:02 -040060#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070061#include "qgroup.h"
Filipe Manana1ec9a1a2016-02-10 10:42:25 +000062#include "tree-log.h"
Anand Jainebb87652016-03-10 17:26:59 +080063#include "compression.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040064
Hugo Millsabccd002014-01-30 20:17:00 +000065#ifdef CONFIG_64BIT
66/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
67 * structures are incorrect, as the timespec structure from userspace
68 * is 4 bytes too small. We define these alternatives here to teach
69 * the kernel about the 32-bit struct packing.
70 */
71struct btrfs_ioctl_timespec_32 {
72 __u64 sec;
73 __u32 nsec;
74} __attribute__ ((__packed__));
75
76struct btrfs_ioctl_received_subvol_args_32 {
77 char uuid[BTRFS_UUID_SIZE]; /* in */
78 __u64 stransid; /* in */
79 __u64 rtransid; /* out */
80 struct btrfs_ioctl_timespec_32 stime; /* in */
81 struct btrfs_ioctl_timespec_32 rtime; /* out */
82 __u64 flags; /* in */
83 __u64 reserved[16]; /* in */
84} __attribute__ ((__packed__));
85
86#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
87 struct btrfs_ioctl_received_subvol_args_32)
88#endif
89
Josef Bacik2351f432017-09-27 10:43:13 -040090#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
91struct btrfs_ioctl_send_args_32 {
92 __s64 send_fd; /* in */
93 __u64 clone_sources_count; /* in */
94 compat_uptr_t clone_sources; /* in */
95 __u64 parent_root; /* in */
96 __u64 flags; /* in */
97 __u64 reserved[4]; /* in */
98} __attribute__ ((__packed__));
99
100#define BTRFS_IOC_SEND_32 _IOW(BTRFS_IOCTL_MAGIC, 38, \
101 struct btrfs_ioctl_send_args_32)
102#endif
Hugo Millsabccd002014-01-30 20:17:00 +0000103
Mark Fasheh416161d2013-08-06 11:42:51 -0700104static int btrfs_clone(struct inode *src, struct inode *inode,
Mark Fasheh1c919a52015-06-30 14:42:08 -0700105 u64 off, u64 olen, u64 olen_aligned, u64 destoff,
106 int no_time_update);
Mark Fasheh416161d2013-08-06 11:42:51 -0700107
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200108/* Mask out flags that are inappropriate for the given type of inode. */
David Sterba38e82de2018-03-26 18:29:41 +0200109static unsigned int btrfs_mask_flags(umode_t mode, unsigned int flags)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200110{
111 if (S_ISDIR(mode))
112 return flags;
113 else if (S_ISREG(mode))
114 return flags & ~FS_DIRSYNC_FL;
115 else
116 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
117}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400118
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200119/*
120 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
121 */
122static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
123{
124 unsigned int iflags = 0;
125
126 if (flags & BTRFS_INODE_SYNC)
127 iflags |= FS_SYNC_FL;
128 if (flags & BTRFS_INODE_IMMUTABLE)
129 iflags |= FS_IMMUTABLE_FL;
130 if (flags & BTRFS_INODE_APPEND)
131 iflags |= FS_APPEND_FL;
132 if (flags & BTRFS_INODE_NODUMP)
133 iflags |= FS_NODUMP_FL;
134 if (flags & BTRFS_INODE_NOATIME)
135 iflags |= FS_NOATIME_FL;
136 if (flags & BTRFS_INODE_DIRSYNC)
137 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000138 if (flags & BTRFS_INODE_NODATACOW)
139 iflags |= FS_NOCOW_FL;
140
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900141 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000142 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900143 else if (flags & BTRFS_INODE_COMPRESS)
144 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200145
146 return iflags;
147}
148
149/*
150 * Update inode->i_flags based on the btrfs internal flags.
151 */
152void btrfs_update_iflags(struct inode *inode)
153{
154 struct btrfs_inode *ip = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100155 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200156
157 if (ip->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100158 new_fl |= S_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200159 if (ip->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100160 new_fl |= S_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200161 if (ip->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100162 new_fl |= S_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200163 if (ip->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100164 new_fl |= S_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200165 if (ip->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100166 new_fl |= S_DIRSYNC;
167
168 set_mask_bits(&inode->i_flags,
169 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
170 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200171}
172
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200173static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
174{
Al Viro496ad9a2013-01-23 17:07:38 -0500175 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200176 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
177
178 if (copy_to_user(arg, &flags, sizeof(flags)))
179 return -EFAULT;
180 return 0;
181}
182
Liu Bo75e7cb72011-03-22 10:12:20 +0000183static int check_flags(unsigned int flags)
184{
185 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
186 FS_NOATIME_FL | FS_NODUMP_FL | \
187 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000188 FS_NOCOMP_FL | FS_COMPR_FL |
189 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000190 return -EOPNOTSUPP;
191
192 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
193 return -EINVAL;
194
Liu Bo75e7cb72011-03-22 10:12:20 +0000195 return 0;
196}
197
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200198static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
199{
Al Viro496ad9a2013-01-23 17:07:38 -0500200 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400201 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200202 struct btrfs_inode *ip = BTRFS_I(inode);
203 struct btrfs_root *root = ip->root;
204 struct btrfs_trans_handle *trans;
205 unsigned int flags, oldflags;
206 int ret;
Li Zefanf062abf02011-12-29 13:36:45 +0800207 u64 ip_oldflags;
208 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600209 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200210
David Sterbabd60ea02014-01-16 15:50:22 +0100211 if (!inode_owner_or_capable(inode))
212 return -EPERM;
213
Li Zefanb83cc962010-12-20 16:04:08 +0800214 if (btrfs_root_readonly(root))
215 return -EROFS;
216
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200217 if (copy_from_user(&flags, arg, sizeof(flags)))
218 return -EFAULT;
219
Liu Bo75e7cb72011-03-22 10:12:20 +0000220 ret = check_flags(flags);
221 if (ret)
222 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200223
Jan Karae7848682012-06-12 16:20:32 +0200224 ret = mnt_want_write_file(file);
225 if (ret)
226 return ret;
227
Al Viro59551022016-01-22 15:40:57 -0500228 inode_lock(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200229
Li Zefanf062abf02011-12-29 13:36:45 +0800230 ip_oldflags = ip->flags;
231 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600232 mode = inode->i_mode;
Li Zefanf062abf02011-12-29 13:36:45 +0800233
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200234 flags = btrfs_mask_flags(inode->i_mode, flags);
235 oldflags = btrfs_flags_to_ioctl(ip->flags);
236 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
237 if (!capable(CAP_LINUX_IMMUTABLE)) {
238 ret = -EPERM;
239 goto out_unlock;
240 }
241 }
242
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200243 if (flags & FS_SYNC_FL)
244 ip->flags |= BTRFS_INODE_SYNC;
245 else
246 ip->flags &= ~BTRFS_INODE_SYNC;
247 if (flags & FS_IMMUTABLE_FL)
248 ip->flags |= BTRFS_INODE_IMMUTABLE;
249 else
250 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
251 if (flags & FS_APPEND_FL)
252 ip->flags |= BTRFS_INODE_APPEND;
253 else
254 ip->flags &= ~BTRFS_INODE_APPEND;
255 if (flags & FS_NODUMP_FL)
256 ip->flags |= BTRFS_INODE_NODUMP;
257 else
258 ip->flags &= ~BTRFS_INODE_NODUMP;
259 if (flags & FS_NOATIME_FL)
260 ip->flags |= BTRFS_INODE_NOATIME;
261 else
262 ip->flags &= ~BTRFS_INODE_NOATIME;
263 if (flags & FS_DIRSYNC_FL)
264 ip->flags |= BTRFS_INODE_DIRSYNC;
265 else
266 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600267 if (flags & FS_NOCOW_FL) {
268 if (S_ISREG(mode)) {
269 /*
270 * It's safe to turn csums off here, no extents exist.
271 * Otherwise we want the flag to reflect the real COW
272 * status of the file and will not set it.
273 */
274 if (inode->i_size == 0)
275 ip->flags |= BTRFS_INODE_NODATACOW
276 | BTRFS_INODE_NODATASUM;
277 } else {
278 ip->flags |= BTRFS_INODE_NODATACOW;
279 }
280 } else {
281 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400282 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600283 */
284 if (S_ISREG(mode)) {
285 if (inode->i_size == 0)
286 ip->flags &= ~(BTRFS_INODE_NODATACOW
287 | BTRFS_INODE_NODATASUM);
288 } else {
289 ip->flags &= ~BTRFS_INODE_NODATACOW;
290 }
291 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200292
Liu Bo75e7cb72011-03-22 10:12:20 +0000293 /*
294 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
295 * flag may be changed automatically if compression code won't make
296 * things smaller.
297 */
298 if (flags & FS_NOCOMP_FL) {
299 ip->flags &= ~BTRFS_INODE_COMPRESS;
300 ip->flags |= BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000301
302 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
303 if (ret && ret != -ENODATA)
304 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000305 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000306 const char *comp;
307
Liu Bo75e7cb72011-03-22 10:12:20 +0000308 ip->flags |= BTRFS_INODE_COMPRESS;
309 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000310
David Sterba93370502017-10-31 17:32:41 +0100311 comp = btrfs_compress_type2str(fs_info->compress_type);
312 if (!comp || comp[0] == 0)
313 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
314
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000315 ret = btrfs_set_prop(inode, "btrfs.compression",
316 comp, strlen(comp), 0);
317 if (ret)
318 goto out_drop;
319
Li Zefanebcb9042011-04-15 03:03:17 +0000320 } else {
Filipe Manana78a017a2014-09-11 11:44:49 +0100321 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
322 if (ret && ret != -ENODATA)
323 goto out_drop;
Li Zefanebcb9042011-04-15 03:03:17 +0000324 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000325 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200326
Li Zefan4da6f1a2011-12-29 13:39:50 +0800327 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf02011-12-29 13:36:45 +0800328 if (IS_ERR(trans)) {
329 ret = PTR_ERR(trans);
330 goto out_drop;
331 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200332
Li Zefan306424cc2011-12-14 20:12:02 -0500333 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400334 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700335 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200336 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200337
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400338 btrfs_end_transaction(trans);
Li Zefanf062abf02011-12-29 13:36:45 +0800339 out_drop:
340 if (ret) {
341 ip->flags = ip_oldflags;
342 inode->i_flags = i_oldflags;
343 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200344
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200345 out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500346 inode_unlock(inode);
Jan Karae7848682012-06-12 16:20:32 +0200347 mnt_drop_write_file(file);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000348 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200349}
350
351static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
352{
Al Viro496ad9a2013-01-23 17:07:38 -0500353 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200354
355 return put_user(inode->i_generation, arg);
356}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400357
Li Dongyangf7039b12011-03-24 10:24:28 +0000358static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
359{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400360 struct inode *inode = file_inode(file);
361 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000362 struct btrfs_device *device;
363 struct request_queue *q;
364 struct fstrim_range range;
365 u64 minlen = ULLONG_MAX;
366 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500367 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000368 int ret;
369
370 if (!capable(CAP_SYS_ADMIN))
371 return -EPERM;
372
Xiao Guangrong1f781602011-04-20 10:09:16 +0000373 rcu_read_lock();
374 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
375 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000376 if (!device->bdev)
377 continue;
378 q = bdev_get_queue(device->bdev);
379 if (blk_queue_discard(q)) {
380 num_devices++;
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100381 minlen = min_t(u64, q->limits.discard_granularity,
Li Dongyangf7039b12011-03-24 10:24:28 +0000382 minlen);
383 }
384 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000385 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200386
Li Dongyangf7039b12011-03-24 10:24:28 +0000387 if (!num_devices)
388 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000389 if (copy_from_user(&range, arg, sizeof(range)))
390 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000391 if (range.start > total_bytes ||
392 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200393 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000394
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200395 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000396 range.minlen = max(range.minlen, minlen);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400397 ret = btrfs_trim_fs(fs_info, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000398 if (ret < 0)
399 return ret;
400
401 if (copy_to_user(arg, &range, sizeof(range)))
402 return -EFAULT;
403
404 return 0;
405}
406
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200407int btrfs_is_empty_uuid(u8 *uuid)
408{
Chris Mason46e0f662013-11-15 12:14:55 +0100409 int i;
410
411 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
412 if (uuid[i])
413 return 0;
414 }
415 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200416}
417
Miao Xied5c12072013-02-28 10:04:33 +0000418static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400419 struct dentry *dentry,
David Sterba52f75f42017-02-14 18:33:53 +0100420 const char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200421 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000422 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400423{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400424 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400425 struct btrfs_trans_handle *trans;
426 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100427 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400428 struct btrfs_inode_item *inode_item;
429 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000430 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400431 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000432 struct btrfs_block_rsv block_rsv;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700433 struct timespec cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900434 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400435 int ret;
436 int err;
437 u64 objectid;
438 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500439 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000440 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200441 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400442
David Sterba49a3c4d2016-03-24 17:49:22 +0100443 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
444 if (!root_item)
445 return -ENOMEM;
446
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400447 ret = btrfs_find_free_objectid(fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400448 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100449 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000450
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800451 /*
452 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400453 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800454 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100455 if (btrfs_qgroup_level(objectid)) {
456 ret = -ENOSPC;
457 goto fail_free;
458 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800459
Miao Xied5c12072013-02-28 10:04:33 +0000460 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400461 /*
Miao Xied5c12072013-02-28 10:04:33 +0000462 * The same as the snapshot creation, please see the comment
463 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400464 */
Miao Xied5c12072013-02-28 10:04:33 +0000465 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200466 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000467 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100468 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400469
Miao Xied5c12072013-02-28 10:04:33 +0000470 trans = btrfs_start_transaction(root, 0);
471 if (IS_ERR(trans)) {
472 ret = PTR_ERR(trans);
David Sterba7775c812017-02-10 19:18:18 +0100473 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
David Sterba49a3c4d2016-03-24 17:49:22 +0100474 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000475 }
476 trans->block_rsv = &block_rsv;
477 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400478
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400479 ret = btrfs_qgroup_inherit(trans, fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200480 if (ret)
481 goto fail;
482
David Sterba4d75f8a2014-06-15 01:54:12 +0200483 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400484 if (IS_ERR(leaf)) {
485 ret = PTR_ERR(leaf);
486 goto fail;
487 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400488
David Sterbab159fa22016-11-08 18:09:03 +0100489 memzero_extent_buffer(leaf, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400490 btrfs_set_header_bytenr(leaf, leaf->start);
491 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400492 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400493 btrfs_set_header_owner(leaf, objectid);
494
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400495 write_extent_buffer_fsid(leaf, fs_info->fsid);
496 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400497 btrfs_mark_buffer_dirty(leaf);
498
David Sterba49a3c4d2016-03-24 17:49:22 +0100499 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800500 btrfs_set_stack_inode_generation(inode_item, 1);
501 btrfs_set_stack_inode_size(inode_item, 3);
502 btrfs_set_stack_inode_nlink(inode_item, 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400503 btrfs_set_stack_inode_nbytes(inode_item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400504 fs_info->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800505 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400506
David Sterba49a3c4d2016-03-24 17:49:22 +0100507 btrfs_set_root_flags(root_item, 0);
508 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800509 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000510
David Sterba49a3c4d2016-03-24 17:49:22 +0100511 btrfs_set_root_bytenr(root_item, leaf->start);
512 btrfs_set_root_generation(root_item, trans->transid);
513 btrfs_set_root_level(root_item, 0);
514 btrfs_set_root_refs(root_item, 1);
515 btrfs_set_root_used(root_item, leaf->len);
516 btrfs_set_root_last_snapshot(root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400517
David Sterba49a3c4d2016-03-24 17:49:22 +0100518 btrfs_set_root_generation_v2(root_item,
519 btrfs_root_generation(root_item));
Alexander Block8ea05e32012-07-25 17:35:53 +0200520 uuid_le_gen(&new_uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100521 memcpy(root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
522 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
523 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
524 root_item->ctime = root_item->otime;
525 btrfs_set_root_ctransid(root_item, trans->transid);
526 btrfs_set_root_otransid(root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400527
Chris Mason925baed2008-06-25 16:01:30 -0400528 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400529 free_extent_buffer(leaf);
530 leaf = NULL;
531
David Sterba49a3c4d2016-03-24 17:49:22 +0100532 btrfs_set_root_dirid(root_item, new_dirid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400533
534 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400535 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200536 key.type = BTRFS_ROOT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400537 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100538 root_item);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400539 if (ret)
540 goto fail;
541
Yan, Zheng76dda932009-09-21 16:00:26 -0400542 key.offset = (u64)-1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400543 new_root = btrfs_read_fs_root_no_name(fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100544 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100545 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400546 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100547 goto fail;
548 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400549
550 btrfs_record_root_in_trans(trans, new_root);
551
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000552 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700553 if (ret) {
554 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400555 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700556 goto fail;
557 }
558
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530559 mutex_lock(&new_root->objectid_mutex);
560 new_root->highest_objectid = new_dirid;
561 mutex_unlock(&new_root->objectid_mutex);
562
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400563 /*
564 * insert the directory item
565 */
Nikolay Borisov877574e2017-02-20 13:50:33 +0200566 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100567 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400568 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100569 goto fail;
570 }
Chris Mason3de45862008-11-17 21:02:50 -0500571
572 ret = btrfs_insert_dir_item(trans, root,
Nikolay Borisov8e7611c2017-02-20 13:50:31 +0200573 name, namelen, BTRFS_I(dir), &key,
Chris Mason3de45862008-11-17 21:02:50 -0500574 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100575 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400576 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400577 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100578 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500579
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200580 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
Yan Zheng52c26172009-01-05 15:43:43 -0500581 ret = btrfs_update_inode(trans, root, dir);
582 BUG_ON(ret);
583
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400584 ret = btrfs_add_root_ref(trans, fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400585 objectid, root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200586 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500587 BUG_ON(ret);
588
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400589 ret = btrfs_uuid_tree_add(trans, fs_info, root_item->uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400590 BTRFS_UUID_KEY_SUBVOL, objectid);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200591 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400592 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200593
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400594fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100595 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000596 trans->block_rsv = NULL;
597 trans->bytes_reserved = 0;
David Sterba7775c812017-02-10 19:18:18 +0100598 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Liu Bode6e8202014-01-09 14:57:06 +0800599
Sage Weil72fd0322010-10-29 15:41:32 -0400600 if (async_transid) {
601 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400602 err = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000603 if (err)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400604 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400605 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400606 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400607 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400608 if (err && !ret)
609 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500610
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900611 if (!ret) {
612 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800613 if (IS_ERR(inode))
614 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900615 d_instantiate(dentry, inode);
616 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400617 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100618
619fail_free:
620 kfree(root_item);
621 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400622}
623
Miao Xiee9662f72013-02-28 10:01:15 +0000624static int create_snapshot(struct btrfs_root *root, struct inode *dir,
David Sterba61d7e4c2017-02-10 19:54:06 +0100625 struct dentry *dentry,
Miao Xiee9662f72013-02-28 10:01:15 +0000626 u64 *async_transid, bool readonly,
627 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400628{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400629 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000630 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400631 struct btrfs_pending_snapshot *pending_snapshot;
632 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000633 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400634
Miao Xie27cdeb72014-04-02 19:51:05 +0800635 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400636 return -EINVAL;
637
David Sterba23269bf2017-02-13 11:03:44 +0100638 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100639 if (!pending_snapshot)
640 return -ENOMEM;
641
David Sterbab0c0ea62015-11-10 18:54:00 +0100642 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100643 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100644 pending_snapshot->path = btrfs_alloc_path();
645 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100646 ret = -ENOMEM;
647 goto free_pending;
648 }
649
David Sterbaea14b57f2017-06-22 02:19:11 +0200650 atomic_inc(&root->will_be_snapshotted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100651 smp_mb__after_atomic();
Liu Bo45bac0f2017-09-01 16:14:29 -0600652 /* wait for no snapshot writes */
653 wait_event(root->subv_writers->wait,
654 percpu_counter_sum(&root->subv_writers->counter) == 0);
Miao Xie8257b2d2014-03-06 13:38:19 +0800655
Miao Xie6a038432013-05-15 07:48:24 +0000656 ret = btrfs_start_delalloc_inodes(root, 0);
657 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100658 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000659
Chris Mason6374e57a2017-06-23 09:48:21 -0700660 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
Miao Xie6a038432013-05-15 07:48:24 +0000661
Miao Xie66d8f3d2012-09-06 04:02:28 -0600662 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
663 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000664 /*
665 * 1 - parent dir inode
666 * 2 - dir entries
667 * 1 - root item
668 * 2 - root ref/backref
669 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200670 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000671 */
672 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200673 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400674 &pending_snapshot->qgroup_reserved,
675 false);
Miao Xied5c12072013-02-28 10:04:33 +0000676 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100677 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000678
Yan, Zhenga22285a2010-05-16 10:48:46 -0400679 pending_snapshot->dentry = dentry;
680 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800681 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000682 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000683 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400684
Miao Xied5c12072013-02-28 10:04:33 +0000685 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400686 if (IS_ERR(trans)) {
687 ret = PTR_ERR(trans);
688 goto fail;
689 }
690
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400691 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400692 list_add(&pending_snapshot->list,
693 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400694 spin_unlock(&fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400695 if (async_transid) {
696 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400697 ret = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000698 if (ret)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400699 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400700 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400701 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400702 }
Miao Xieaec80302013-03-04 09:44:29 +0000703 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400704 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400705
706 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400707 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000708 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400709
Chris Masond3797302014-10-15 13:50:56 -0700710 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
711 if (ret)
712 goto fail;
713
David Howells2b0143b2015-03-17 22:25:59 +0000714 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000715 if (IS_ERR(inode)) {
716 ret = PTR_ERR(inode);
717 goto fail;
718 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900719
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000720 d_instantiate(dentry, inode);
721 ret = 0;
722fail:
David Sterba7775c812017-02-10 19:18:18 +0100723 btrfs_subvolume_release_metadata(fs_info, &pending_snapshot->block_rsv);
David Sterbaa1ee7362015-11-10 18:53:56 +0100724dec_and_free:
David Sterbaea14b57f2017-06-22 02:19:11 +0200725 if (atomic_dec_and_test(&root->will_be_snapshotted))
726 wake_up_atomic_t(&root->will_be_snapshotted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100727free_pending:
728 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100729 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100730 kfree(pending_snapshot);
731
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400732 return ret;
733}
734
Sage Weil4260f7c2010-10-29 15:46:43 -0400735/* copy of may_delete in fs/namei.c()
736 * Check whether we can remove a link victim from directory dir, check
737 * whether the type of victim is right.
738 * 1. We can't do it if dir is read-only (done in permission())
739 * 2. We should have write and exec permissions on dir
740 * 3. We can't remove anything from append-only dir
741 * 4. We can't do anything with immutable dir (done in permission())
742 * 5. If the sticky bit on dir is set we should either
743 * a. be owner of dir, or
744 * b. be owner of victim, or
745 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400746 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400747 * links pointing to it.
748 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
749 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
750 * 9. We can't remove a root or mountpoint.
751 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
752 * nfs_async_unlink().
753 */
754
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530755static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400756{
757 int error;
758
David Howells2b0143b2015-03-17 22:25:59 +0000759 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400760 return -ENOENT;
761
David Howells2b0143b2015-03-17 22:25:59 +0000762 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400763 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400764
765 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
766 if (error)
767 return error;
768 if (IS_APPEND(dir))
769 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000770 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
771 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400772 return -EPERM;
773 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000774 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400775 return -ENOTDIR;
776 if (IS_ROOT(victim))
777 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000778 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400779 return -EISDIR;
780 if (IS_DEADDIR(dir))
781 return -ENOENT;
782 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
783 return -EBUSY;
784 return 0;
785}
786
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400787/* copy of may_create in fs/namei.c() */
788static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
789{
David Howells2b0143b2015-03-17 22:25:59 +0000790 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400791 return -EEXIST;
792 if (IS_DEADDIR(dir))
793 return -ENOENT;
794 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
795}
796
797/*
798 * Create a new subvolume below @parent. This is largely modeled after
799 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
800 * inside this filesystem so it's quite a bit simpler.
801 */
Al Viro92872092016-11-20 19:34:31 -0500802static noinline int btrfs_mksubvol(const struct path *parent,
David Sterba52f75f42017-02-14 18:33:53 +0100803 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400804 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200805 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000806 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400807{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400808 struct inode *dir = d_inode(parent->dentry);
809 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400810 struct dentry *dentry;
811 int error;
812
Al Viro00235412016-05-26 00:05:12 -0400813 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
814 if (error == -EINTR)
815 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400816
817 dentry = lookup_one_len(name, parent->dentry, namelen);
818 error = PTR_ERR(dentry);
819 if (IS_ERR(dentry))
820 goto out_unlock;
821
Yan, Zheng76dda932009-09-21 16:00:26 -0400822 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400823 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600824 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400825
Chris Mason9c520572012-12-17 14:26:57 -0500826 /*
827 * even if this name doesn't exist, we may get hash collisions.
828 * check for them now when we can safely fail
829 */
830 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
831 dir->i_ino, name,
832 namelen);
833 if (error)
834 goto out_dput;
835
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400836 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400837
838 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
839 goto out_up_read;
840
Chris Mason3de45862008-11-17 21:02:50 -0500841 if (snap_src) {
David Sterba61d7e4c2017-02-10 19:54:06 +0100842 error = create_snapshot(snap_src, dir, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200843 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500844 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000845 error = create_subvol(dir, dentry, name, namelen,
846 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500847 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400848 if (!error)
849 fsnotify_mkdir(dir, dentry);
850out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400851 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400852out_dput:
853 dput(dentry);
854out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500855 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400856 return error;
857}
858
Chris Mason4cb53002011-05-24 15:35:30 -0400859/*
860 * When we're defragging a range, we don't want to kick it off again
861 * if it is really just waiting for delalloc to send it down.
862 * If we find a nice big extent or delalloc range for the bytes in the
863 * file you want to defrag, we return 0 to let you know to skip this
864 * part of the file
865 */
David Sterbaaab110a2014-07-29 17:32:10 +0200866static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400867{
868 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
869 struct extent_map *em = NULL;
870 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
871 u64 end;
872
873 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300874 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -0400875 read_unlock(&em_tree->lock);
876
877 if (em) {
878 end = extent_map_end(em);
879 free_extent_map(em);
880 if (end - offset > thresh)
881 return 0;
882 }
883 /* if we already have a nice delalloc here, just stop */
884 thresh /= 2;
885 end = count_range_bits(io_tree, &offset, offset + thresh,
886 thresh, EXTENT_DELALLOC, 1);
887 if (end >= thresh)
888 return 0;
889 return 1;
890}
891
892/*
893 * helper function to walk through a file and find extents
894 * newer than a specific transid, and smaller than thresh.
895 *
896 * This is used by the defragging code to find new and small
897 * extents
898 */
899static int find_new_extents(struct btrfs_root *root,
900 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200901 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400902{
903 struct btrfs_path *path;
904 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400905 struct extent_buffer *leaf;
906 struct btrfs_file_extent_item *extent;
907 int type;
908 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200909 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -0400910
911 path = btrfs_alloc_path();
912 if (!path)
913 return -ENOMEM;
914
David Sterbaa4689d22011-05-31 17:08:14 +0000915 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400916 min_key.type = BTRFS_EXTENT_DATA_KEY;
917 min_key.offset = *off;
918
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530919 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100920 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400921 if (ret != 0)
922 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000923process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000924 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400925 goto none;
926 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
927 goto none;
928
929 leaf = path->nodes[0];
930 extent = btrfs_item_ptr(leaf, path->slots[0],
931 struct btrfs_file_extent_item);
932
933 type = btrfs_file_extent_type(leaf, extent);
934 if (type == BTRFS_FILE_EXTENT_REG &&
935 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
936 check_defrag_in_cache(inode, min_key.offset, thresh)) {
937 *off = min_key.offset;
938 btrfs_free_path(path);
939 return 0;
940 }
941
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000942 path->slots[0]++;
943 if (path->slots[0] < btrfs_header_nritems(leaf)) {
944 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
945 goto process_slot;
946 }
947
Chris Mason4cb53002011-05-24 15:35:30 -0400948 if (min_key.offset == (u64)-1)
949 goto none;
950
951 min_key.offset++;
952 btrfs_release_path(path);
953 }
954none:
955 btrfs_free_path(path);
956 return -ENOENT;
957}
958
Li Zefan6c282eb2012-06-11 16:03:35 +0800959static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400960{
961 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500962 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800963 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300964 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500965
966 /*
967 * hopefully we have this extent in the tree already, try without
968 * the full extent lock
969 */
970 read_lock(&em_tree->lock);
971 em = lookup_extent_mapping(em_tree, start, len);
972 read_unlock(&em_tree->lock);
973
974 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000975 struct extent_state *cached = NULL;
976 u64 end = start + len - 1;
977
Chris Mason940100a2010-03-10 10:52:59 -0500978 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +0100979 lock_extent_bits(io_tree, start, end, &cached);
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +0200980 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
David Sterbae43bbe52017-12-12 21:43:52 +0100981 unlock_extent_cached(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -0500982
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000983 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800984 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500985 }
986
Li Zefan6c282eb2012-06-11 16:03:35 +0800987 return em;
988}
989
990static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
991{
992 struct extent_map *next;
993 bool ret = true;
994
995 /* this is the last extent */
996 if (em->start + em->len >= i_size_read(inode))
997 return false;
998
999 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001000 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1001 ret = false;
1002 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001003 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001004 ret = false;
1005
1006 free_extent_map(next);
1007 return ret;
1008}
1009
David Sterbaaab110a2014-07-29 17:32:10 +02001010static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001011 u64 *last_len, u64 *skip, u64 *defrag_end,
1012 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001013{
1014 struct extent_map *em;
1015 int ret = 1;
1016 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001017 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001018
1019 /*
1020 * make sure that once we start defragging an extent, we keep on
1021 * defragging it
1022 */
1023 if (start < *defrag_end)
1024 return 1;
1025
1026 *skip = 0;
1027
1028 em = defrag_lookup_extent(inode, start);
1029 if (!em)
1030 return 0;
1031
Chris Mason940100a2010-03-10 10:52:59 -05001032 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001033 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001034 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001035 goto out;
1036 }
1037
Liu Bo4a3560c2015-08-07 16:48:41 +08001038 if (!*defrag_end)
1039 prev_mergeable = false;
1040
Li Zefan6c282eb2012-06-11 16:03:35 +08001041 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001042 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001043 * we hit a real extent, if it is big or the next extent is not a
1044 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001045 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001046 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001047 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001048 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001049out:
Chris Mason940100a2010-03-10 10:52:59 -05001050 /*
1051 * last_len ends up being a counter of how many bytes we've defragged.
1052 * every time we choose not to defrag an extent, we reset *last_len
1053 * so that the next tiny extent will force a defrag.
1054 *
1055 * The end result of this is that tiny extents before a single big
1056 * extent will force at least part of that big extent to be defragged.
1057 */
1058 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001059 *defrag_end = extent_map_end(em);
1060 } else {
1061 *last_len = 0;
1062 *skip = extent_map_end(em);
1063 *defrag_end = 0;
1064 }
1065
1066 free_extent_map(em);
1067 return ret;
1068}
1069
Chris Mason4cb53002011-05-24 15:35:30 -04001070/*
1071 * it doesn't do much good to defrag one or two pages
1072 * at a time. This pulls in a nice chunk of pages
1073 * to COW and defrag.
1074 *
1075 * It also makes sure the delalloc code has enough
1076 * dirty data to avoid making new small extents as part
1077 * of the defrag
1078 *
1079 * It's a good idea to start RA on this range
1080 * before calling this.
1081 */
1082static int cluster_pages_for_defrag(struct inode *inode,
1083 struct page **pages,
1084 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001085 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001086{
Chris Mason4cb53002011-05-24 15:35:30 -04001087 unsigned long file_end;
1088 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001089 u64 page_start;
1090 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001091 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001092 int ret;
1093 int i;
1094 int i_done;
1095 struct btrfs_ordered_extent *ordered;
1096 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001097 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001098 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001099 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001100
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001101 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001102 if (!isize || start_index > file_end)
1103 return 0;
1104
1105 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001106
Qu Wenruo364ecf32017-02-27 15:10:38 +08001107 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001108 start_index << PAGE_SHIFT,
1109 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001110 if (ret)
1111 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001112 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001113 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001114
1115 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001116 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001117 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001118again:
Josef Bacika94733d2011-07-11 10:47:06 -04001119 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001120 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001121 if (!page)
1122 break;
1123
Miao Xie600a45e2012-02-16 15:01:24 +08001124 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001125 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001126 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001127 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001128 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001129 ordered = btrfs_lookup_ordered_extent(inode,
1130 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001131 unlock_extent_cached(tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001132 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001133 if (!ordered)
1134 break;
1135
1136 unlock_page(page);
1137 btrfs_start_ordered_extent(inode, ordered, 1);
1138 btrfs_put_ordered_extent(ordered);
1139 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001140 /*
1141 * we unlocked the page above, so we need check if
1142 * it was released or not.
1143 */
1144 if (page->mapping != inode->i_mapping) {
1145 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001146 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001147 goto again;
1148 }
Miao Xie600a45e2012-02-16 15:01:24 +08001149 }
1150
Chris Mason4cb53002011-05-24 15:35:30 -04001151 if (!PageUptodate(page)) {
1152 btrfs_readpage(NULL, page);
1153 lock_page(page);
1154 if (!PageUptodate(page)) {
1155 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001156 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001157 ret = -EIO;
1158 break;
1159 }
1160 }
Miao Xie600a45e2012-02-16 15:01:24 +08001161
Miao Xie600a45e2012-02-16 15:01:24 +08001162 if (page->mapping != inode->i_mapping) {
1163 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001164 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001165 goto again;
1166 }
1167
Chris Mason4cb53002011-05-24 15:35:30 -04001168 pages[i] = page;
1169 i_done++;
1170 }
1171 if (!i_done || ret)
1172 goto out;
1173
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001174 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001175 goto out;
1176
1177 /*
1178 * so now we have a nice long stream of locked
1179 * and up to date pages, lets wait on them
1180 */
1181 for (i = 0; i < i_done; i++)
1182 wait_on_page_writeback(pages[i]);
1183
1184 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001185 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001186
1187 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001188 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001189 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1190 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001191 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001192 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001193
Liu Bo1f12bd02012-03-29 09:57:44 -04001194 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001195 spin_lock(&BTRFS_I(inode)->lock);
1196 BTRFS_I(inode)->outstanding_extents++;
1197 spin_unlock(&BTRFS_I(inode)->lock);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001198 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001199 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001200 (page_cnt - i_done) << PAGE_SHIFT, true);
Chris Mason4cb53002011-05-24 15:35:30 -04001201 }
1202
1203
Liu Bo9e8a4a82012-09-05 19:10:51 -06001204 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001205 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001206
1207 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001208 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001209
1210 for (i = 0; i < i_done; i++) {
1211 clear_page_dirty_for_io(pages[i]);
1212 ClearPageChecked(pages[i]);
1213 set_page_extent_mapped(pages[i]);
1214 set_page_dirty(pages[i]);
1215 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001216 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001217 }
Qu Wenruo43b18592017-12-12 15:34:32 +08001218 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT,
1219 false);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001220 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001221 return i_done;
1222out:
1223 for (i = 0; i < i_done; i++) {
1224 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001225 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001226 }
Qu Wenruobc42bda2017-02-27 15:10:39 +08001227 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001228 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001229 page_cnt << PAGE_SHIFT, true);
1230 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT,
1231 true);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001232 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001233 return ret;
1234
1235}
1236
1237int btrfs_defrag_file(struct inode *inode, struct file *file,
1238 struct btrfs_ioctl_defrag_range_args *range,
1239 u64 newer_than, unsigned long max_to_defrag)
1240{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001241 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001242 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001243 struct file_ra_state *ra = NULL;
1244 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001245 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001246 u64 last_len = 0;
1247 u64 skip = 0;
1248 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001249 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001250 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001251 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001252 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001253 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001254 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001255 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001256 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001257 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001258 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001259 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001260 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001261
Liu Bo0abd5b12013-04-16 09:20:28 +00001262 if (isize == 0)
1263 return 0;
1264
1265 if (range->start >= isize)
1266 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001267
David Sterba1e2ef462017-07-17 20:01:59 +02001268 if (do_compress) {
Li Zefan1a419d82010-10-25 15:12:50 +08001269 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1270 return -EINVAL;
1271 if (range->compress_type)
1272 compress_type = range->compress_type;
1273 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001274
Liu Bo0abd5b12013-04-16 09:20:28 +00001275 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001276 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001277
Chris Mason4cb53002011-05-24 15:35:30 -04001278 /*
David Sterba0a52d102017-06-22 03:22:58 +02001279 * If we were not given a file, allocate a readahead context. As
1280 * readahead is just an optimization, defrag will work without it so
1281 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001282 */
1283 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001284 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001285 if (ra)
1286 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001287 } else {
1288 ra = &file->f_ra;
1289 }
1290
David Sterba63e727e2017-06-22 03:13:02 +02001291 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001292 if (!pages) {
1293 ret = -ENOMEM;
1294 goto out_ra;
1295 }
1296
1297 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001298 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001299 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001300 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001301 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001302 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001303 }
1304
Chris Mason4cb53002011-05-24 15:35:30 -04001305 if (newer_than) {
1306 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001307 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001308 if (!ret) {
1309 range->start = newer_off;
1310 /*
1311 * we always align our defrag to help keep
1312 * the extents in the file evenly spaced
1313 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001314 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001315 } else
1316 goto out_ra;
1317 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001318 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001319 }
1320 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301321 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001322
Li Zefan2a0f7f52011-10-10 15:43:34 -04001323 /*
1324 * make writeback starts from i, so the defrag range can be
1325 * written sequentially.
1326 */
1327 if (i < inode->i_mapping->writeback_index)
1328 inode->i_mapping->writeback_index = i;
1329
Chris Masonf7f43cc2011-10-11 11:41:40 -04001330 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001331 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001332 /*
1333 * make sure we stop running if someone unmounts
1334 * the FS
1335 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001336 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001337 break;
1338
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001339 if (btrfs_defrag_cancelled(fs_info)) {
1340 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001341 ret = -EAGAIN;
1342 break;
1343 }
1344
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001345 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001346 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001347 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001348 unsigned long next;
1349 /*
1350 * the should_defrag function tells us how much to skip
1351 * bump our counter by the suggested amount
1352 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001353 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001354 i = max(i + 1, next);
1355 continue;
1356 }
Li Zefan008873e2011-09-02 15:57:07 +08001357
1358 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001359 cluster = (PAGE_ALIGN(defrag_end) >>
1360 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001361 cluster = min(cluster, max_cluster);
1362 } else {
1363 cluster = max_cluster;
1364 }
1365
Li Zefan008873e2011-09-02 15:57:07 +08001366 if (i + cluster > ra_index) {
1367 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001368 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001369 page_cache_sync_readahead(inode->i_mapping, ra,
1370 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301371 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001372 }
Chris Mason940100a2010-03-10 10:52:59 -05001373
Al Viro59551022016-01-22 15:40:57 -05001374 inode_lock(inode);
David Sterba1e2ef462017-07-17 20:01:59 +02001375 if (do_compress)
David Sterbaeec63c62017-07-17 19:41:31 +02001376 BTRFS_I(inode)->defrag_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001377 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001378 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001379 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001380 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001381 }
Chris Mason940100a2010-03-10 10:52:59 -05001382
Chris Mason4cb53002011-05-24 15:35:30 -04001383 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001384 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001385 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001386
1387 if (newer_than) {
1388 if (newer_off == (u64)-1)
1389 break;
1390
Liu Boe1f041e2012-03-29 09:57:45 -04001391 if (ret > 0)
1392 i += ret;
1393
Chris Mason4cb53002011-05-24 15:35:30 -04001394 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001395 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001396
Byongho Leeee221842015-12-15 01:42:10 +09001397 ret = find_new_extents(root, inode, newer_than,
1398 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001399 if (!ret) {
1400 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001401 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001402 } else {
1403 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001404 }
Chris Mason4cb53002011-05-24 15:35:30 -04001405 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001406 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001407 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001408 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001409 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001410 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001411 last_len = 0;
1412 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001413 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001414 }
1415
Filipe Mananadec8ef92014-03-01 10:55:54 +00001416 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001417 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001418 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1419 &BTRFS_I(inode)->runtime_flags))
1420 filemap_flush(inode->i_mapping);
1421 }
Chris Mason1e701a32010-03-11 09:42:04 -05001422
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
Anand Jainebbede42017-12-04 12:54:52 +08001506 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
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
Anand Jain401e29c2017-12-04 12:54:55 +08001531 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
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);
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001830 if (ret < 0) {
1831 btrfs_end_transaction(trans);
1832 goto out_reset;
1833 }
Li Zefan0caa1022010-12-20 16:30:25 +08001834
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001835 ret = btrfs_commit_transaction(trans);
1836
Li Zefan0caa1022010-12-20 16:30:25 +08001837out_reset:
1838 if (ret)
1839 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001840out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001841 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001842out_drop_write:
1843 mnt_drop_write_file(file);
1844out:
Li Zefan0caa1022010-12-20 16:30:25 +08001845 return ret;
1846}
1847
Yan, Zheng76dda932009-09-21 16:00:26 -04001848/*
1849 * helper to check if the subvolume references other subvolumes
1850 */
1851static noinline int may_destroy_subvol(struct btrfs_root *root)
1852{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001853 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04001854 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001855 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001856 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001857 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001858 int ret;
1859
1860 path = btrfs_alloc_path();
1861 if (!path)
1862 return -ENOMEM;
1863
Josef Bacik175a2b82013-08-12 15:36:44 -04001864 /* Make sure this root isn't set as the default subvol */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001865 dir_id = btrfs_super_root_dir(fs_info->super_copy);
1866 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
Josef Bacik175a2b82013-08-12 15:36:44 -04001867 dir_id, "default", 7, 0);
1868 if (di && !IS_ERR(di)) {
1869 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1870 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001871 ret = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001872 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001873 "deleting default subvolume %llu is not allowed",
1874 key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001875 goto out;
1876 }
1877 btrfs_release_path(path);
1878 }
1879
Yan, Zheng76dda932009-09-21 16:00:26 -04001880 key.objectid = root->root_key.objectid;
1881 key.type = BTRFS_ROOT_REF_KEY;
1882 key.offset = (u64)-1;
1883
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001884 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001885 if (ret < 0)
1886 goto out;
1887 BUG_ON(ret == 0);
1888
1889 ret = 0;
1890 if (path->slots[0] > 0) {
1891 path->slots[0]--;
1892 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1893 if (key.objectid == root->root_key.objectid &&
1894 key.type == BTRFS_ROOT_REF_KEY)
1895 ret = -ENOTEMPTY;
1896 }
1897out:
1898 btrfs_free_path(path);
1899 return ret;
1900}
1901
Chris Masonac8e9812010-02-28 15:39:26 -05001902static noinline int key_in_sk(struct btrfs_key *key,
1903 struct btrfs_ioctl_search_key *sk)
1904{
Chris Masonabc6e132010-03-18 12:10:08 -04001905 struct btrfs_key test;
1906 int ret;
1907
1908 test.objectid = sk->min_objectid;
1909 test.type = sk->min_type;
1910 test.offset = sk->min_offset;
1911
1912 ret = btrfs_comp_cpu_keys(key, &test);
1913 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001914 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001915
1916 test.objectid = sk->max_objectid;
1917 test.type = sk->max_type;
1918 test.offset = sk->max_offset;
1919
1920 ret = btrfs_comp_cpu_keys(key, &test);
1921 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001922 return 0;
1923 return 1;
1924}
1925
Jeff Mahoneydf397562016-06-21 20:18:21 -04001926static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05001927 struct btrfs_key *key,
1928 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001929 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001930 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001931 unsigned long *sk_offset,
1932 int *num_found)
1933{
1934 u64 found_transid;
1935 struct extent_buffer *leaf;
1936 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001937 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001938 unsigned long item_off;
1939 unsigned long item_len;
1940 int nritems;
1941 int i;
1942 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001943 int ret = 0;
1944
1945 leaf = path->nodes[0];
1946 slot = path->slots[0];
1947 nritems = btrfs_header_nritems(leaf);
1948
1949 if (btrfs_header_generation(leaf) > sk->max_transid) {
1950 i = nritems;
1951 goto advance_key;
1952 }
1953 found_transid = btrfs_header_generation(leaf);
1954
1955 for (i = slot; i < nritems; i++) {
1956 item_off = btrfs_item_ptr_offset(leaf, i);
1957 item_len = btrfs_item_size_nr(leaf, i);
1958
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001959 btrfs_item_key_to_cpu(leaf, key, i);
1960 if (!key_in_sk(key, sk))
1961 continue;
1962
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001963 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001964 if (*num_found) {
1965 ret = 1;
1966 goto out;
1967 }
Chris Masonac8e9812010-02-28 15:39:26 -05001968
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001969 /*
1970 * return one empty item back for v1, which does not
1971 * handle -EOVERFLOW
1972 */
1973
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001974 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001975 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001976 ret = -EOVERFLOW;
1977 }
Chris Masonac8e9812010-02-28 15:39:26 -05001978
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001979 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001980 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001981 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001982 }
1983
Chris Masonac8e9812010-02-28 15:39:26 -05001984 sh.objectid = key->objectid;
1985 sh.offset = key->offset;
1986 sh.type = key->type;
1987 sh.len = item_len;
1988 sh.transid = found_transid;
1989
1990 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001991 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1992 ret = -EFAULT;
1993 goto out;
1994 }
1995
Chris Masonac8e9812010-02-28 15:39:26 -05001996 *sk_offset += sizeof(sh);
1997
1998 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001999 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002000 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002001 if (read_extent_buffer_to_user(leaf, up,
2002 item_off, item_len)) {
2003 ret = -EFAULT;
2004 goto out;
2005 }
2006
Chris Masonac8e9812010-02-28 15:39:26 -05002007 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002008 }
Hugo Millse2156862011-05-14 17:43:41 +00002009 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002010
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002011 if (ret) /* -EOVERFLOW from above */
2012 goto out;
2013
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002014 if (*num_found >= sk->nr_items) {
2015 ret = 1;
2016 goto out;
2017 }
Chris Masonac8e9812010-02-28 15:39:26 -05002018 }
2019advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002020 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002021 test.objectid = sk->max_objectid;
2022 test.type = sk->max_type;
2023 test.offset = sk->max_offset;
2024 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2025 ret = 1;
2026 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002027 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002028 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002029 key->offset = 0;
2030 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002031 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002032 key->offset = 0;
2033 key->type = 0;
2034 key->objectid++;
2035 } else
2036 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002037out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002038 /*
2039 * 0: all items from this leaf copied, continue with next
2040 * 1: * more items can be copied, but unused buffer is too small
2041 * * all items were found
2042 * Either way, it will stops the loop which iterates to the next
2043 * leaf
2044 * -EOVERFLOW: item was to large for buffer
2045 * -EFAULT: could not copy extent buffer back to userspace
2046 */
Chris Masonac8e9812010-02-28 15:39:26 -05002047 return ret;
2048}
2049
2050static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002051 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002052 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002053 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002054{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002055 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05002056 struct btrfs_root *root;
2057 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002058 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002059 int ret;
2060 int num_found = 0;
2061 unsigned long sk_offset = 0;
2062
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002063 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2064 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002065 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002066 }
Gerhard Heift12544442014-01-30 16:23:58 +01002067
Chris Masonac8e9812010-02-28 15:39:26 -05002068 path = btrfs_alloc_path();
2069 if (!path)
2070 return -ENOMEM;
2071
2072 if (sk->tree_id == 0) {
2073 /* search the root of the inode that was passed */
2074 root = BTRFS_I(inode)->root;
2075 } else {
2076 key.objectid = sk->tree_id;
2077 key.type = BTRFS_ROOT_ITEM_KEY;
2078 key.offset = (u64)-1;
2079 root = btrfs_read_fs_root_no_name(info, &key);
2080 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002081 btrfs_free_path(path);
2082 return -ENOENT;
2083 }
2084 }
2085
2086 key.objectid = sk->min_objectid;
2087 key.type = sk->min_type;
2088 key.offset = sk->min_offset;
2089
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302090 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002091 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002092 if (ret != 0) {
2093 if (ret > 0)
2094 ret = 0;
2095 goto err;
2096 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002097 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002098 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002099 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002100 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002101 break;
2102
2103 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002104 if (ret > 0)
2105 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002106err:
2107 sk->nr_items = num_found;
2108 btrfs_free_path(path);
2109 return ret;
2110}
2111
2112static noinline int btrfs_ioctl_tree_search(struct file *file,
2113 void __user *argp)
2114{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002115 struct btrfs_ioctl_search_args __user *uargs;
2116 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002117 struct inode *inode;
2118 int ret;
2119 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002120
2121 if (!capable(CAP_SYS_ADMIN))
2122 return -EPERM;
2123
Gerhard Heiftba346b32014-01-30 16:24:02 +01002124 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002125
Gerhard Heiftba346b32014-01-30 16:24:02 +01002126 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2127 return -EFAULT;
2128
2129 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002130
Al Viro496ad9a2013-01-23 17:07:38 -05002131 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002132 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002133
2134 /*
2135 * In the origin implementation an overflow is handled by returning a
2136 * search header with a len of zero, so reset ret.
2137 */
2138 if (ret == -EOVERFLOW)
2139 ret = 0;
2140
Gerhard Heiftba346b32014-01-30 16:24:02 +01002141 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002142 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002143 return ret;
2144}
2145
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002146static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2147 void __user *argp)
2148{
2149 struct btrfs_ioctl_search_args_v2 __user *uarg;
2150 struct btrfs_ioctl_search_args_v2 args;
2151 struct inode *inode;
2152 int ret;
2153 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002154 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002155
2156 if (!capable(CAP_SYS_ADMIN))
2157 return -EPERM;
2158
2159 /* copy search header and buffer size */
2160 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2161 if (copy_from_user(&args, uarg, sizeof(args)))
2162 return -EFAULT;
2163
2164 buf_size = args.buf_size;
2165
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002166 /* limit result size to 16MB */
2167 if (buf_size > buf_limit)
2168 buf_size = buf_limit;
2169
2170 inode = file_inode(file);
2171 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002172 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002173 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2174 ret = -EFAULT;
2175 else if (ret == -EOVERFLOW &&
2176 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2177 ret = -EFAULT;
2178
Yan, Zheng76dda932009-09-21 16:00:26 -04002179 return ret;
2180}
2181
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002182/*
Chris Masonac8e9812010-02-28 15:39:26 -05002183 * Search INODE_REFs to identify path name of 'dirid' directory
2184 * in a 'tree_id' tree. and sets path name to 'name'.
2185 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002186static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2187 u64 tree_id, u64 dirid, char *name)
2188{
2189 struct btrfs_root *root;
2190 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002191 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002192 int ret = -1;
2193 int slot;
2194 int len;
2195 int total_len = 0;
2196 struct btrfs_inode_ref *iref;
2197 struct extent_buffer *l;
2198 struct btrfs_path *path;
2199
2200 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2201 name[0]='\0';
2202 return 0;
2203 }
2204
2205 path = btrfs_alloc_path();
2206 if (!path)
2207 return -ENOMEM;
2208
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002209 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002210
2211 key.objectid = tree_id;
2212 key.type = BTRFS_ROOT_ITEM_KEY;
2213 key.offset = (u64)-1;
2214 root = btrfs_read_fs_root_no_name(info, &key);
2215 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002216 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002217 ret = -ENOENT;
2218 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002219 }
2220
2221 key.objectid = dirid;
2222 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002223 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002224
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302225 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002226 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2227 if (ret < 0)
2228 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002229 else if (ret > 0) {
2230 ret = btrfs_previous_item(root, path, dirid,
2231 BTRFS_INODE_REF_KEY);
2232 if (ret < 0)
2233 goto out;
2234 else if (ret > 0) {
2235 ret = -ENOENT;
2236 goto out;
2237 }
2238 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002239
2240 l = path->nodes[0];
2241 slot = path->slots[0];
2242 btrfs_item_key_to_cpu(l, &key, slot);
2243
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002244 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2245 len = btrfs_inode_ref_name_len(l, iref);
2246 ptr -= len + 1;
2247 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002248 if (ptr < name) {
2249 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002250 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002251 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002252
2253 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302254 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002255
2256 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2257 break;
2258
David Sterbab3b4aa72011-04-21 01:20:15 +02002259 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002260 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002261 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002262 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002263 }
Li Zefan77906a502011-07-14 03:16:00 +00002264 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302265 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002266 ret = 0;
2267out:
2268 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002269 return ret;
2270}
2271
2272static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2273 void __user *argp)
2274{
2275 struct btrfs_ioctl_ino_lookup_args *args;
2276 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002277 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002278
Julia Lawall2354d082010-10-29 15:14:18 -04002279 args = memdup_user(argp, sizeof(*args));
2280 if (IS_ERR(args))
2281 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002282
Al Viro496ad9a2013-01-23 17:07:38 -05002283 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002284
David Sterba01b810b2015-05-12 19:14:49 +02002285 /*
2286 * Unprivileged query to obtain the containing subvolume root id. The
2287 * path is reset so it's consistent with btrfs_search_path_in_tree.
2288 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002289 if (args->treeid == 0)
2290 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2291
David Sterba01b810b2015-05-12 19:14:49 +02002292 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2293 args->name[0] = 0;
2294 goto out;
2295 }
2296
2297 if (!capable(CAP_SYS_ADMIN)) {
2298 ret = -EPERM;
2299 goto out;
2300 }
2301
Chris Masonac8e9812010-02-28 15:39:26 -05002302 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2303 args->treeid, args->objectid,
2304 args->name);
2305
David Sterba01b810b2015-05-12 19:14:49 +02002306out:
Chris Masonac8e9812010-02-28 15:39:26 -05002307 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2308 ret = -EFAULT;
2309
2310 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002311 return ret;
2312}
2313
Yan, Zheng76dda932009-09-21 16:00:26 -04002314static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2315 void __user *arg)
2316{
Al Viro54563d42013-09-01 15:57:51 -04002317 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002318 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002319 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002320 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002321 struct inode *inode;
2322 struct btrfs_root *root = BTRFS_I(dir)->root;
2323 struct btrfs_root *dest = NULL;
2324 struct btrfs_ioctl_vol_args *vol_args;
2325 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002326 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002327 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002328 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002329 int namelen;
2330 int ret;
2331 int err = 0;
2332
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002333 if (!S_ISDIR(dir->i_mode))
2334 return -ENOTDIR;
2335
Yan, Zheng76dda932009-09-21 16:00:26 -04002336 vol_args = memdup_user(arg, sizeof(*vol_args));
2337 if (IS_ERR(vol_args))
2338 return PTR_ERR(vol_args);
2339
2340 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2341 namelen = strlen(vol_args->name);
2342 if (strchr(vol_args->name, '/') ||
2343 strncmp(vol_args->name, "..", namelen) == 0) {
2344 err = -EINVAL;
2345 goto out;
2346 }
2347
Al Viroa561be72011-11-23 11:57:51 -05002348 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002349 if (err)
2350 goto out;
2351
David Sterba521e0542014-04-15 16:41:44 +02002352
Al Viro00235412016-05-26 00:05:12 -04002353 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2354 if (err == -EINTR)
2355 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002356 dentry = lookup_one_len(vol_args->name, parent, namelen);
2357 if (IS_ERR(dentry)) {
2358 err = PTR_ERR(dentry);
2359 goto out_unlock_dir;
2360 }
2361
David Howells2b0143b2015-03-17 22:25:59 +00002362 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002363 err = -ENOENT;
2364 goto out_dput;
2365 }
2366
David Howells2b0143b2015-03-17 22:25:59 +00002367 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002368 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302369 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002370 /*
2371 * Regular user. Only allow this with a special mount
2372 * option, when the user has write+exec access to the
2373 * subvol root, and when rmdir(2) would have been
2374 * allowed.
2375 *
2376 * Note that this is _not_ check that the subvol is
2377 * empty or doesn't contain data that we wouldn't
2378 * otherwise be able to delete.
2379 *
2380 * Users who want to delete empty subvols should try
2381 * rmdir(2).
2382 */
2383 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002384 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002385 goto out_dput;
2386
2387 /*
2388 * Do not allow deletion if the parent dir is the same
2389 * as the dir to be deleted. That means the ioctl
2390 * must be called on the dentry referencing the root
2391 * of the subvol, not a random directory contained
2392 * within it.
2393 */
2394 err = -EINVAL;
2395 if (root == dest)
2396 goto out_dput;
2397
2398 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2399 if (err)
2400 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002401 }
2402
Miao Xie5c39da52012-10-22 11:39:53 +00002403 /* check if subvolume may be deleted by a user */
2404 err = btrfs_may_delete(dir, dentry, 1);
2405 if (err)
2406 goto out_dput;
2407
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002408 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002409 err = -EINVAL;
2410 goto out_dput;
2411 }
2412
Al Viro59551022016-01-22 15:40:57 -05002413 inode_lock(inode);
David Sterba521e0542014-04-15 16:41:44 +02002414
2415 /*
2416 * Don't allow to delete a subvolume with send in progress. This is
2417 * inside the i_mutex so the error handling that has to drop the bit
2418 * again is not run concurrently.
2419 */
2420 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002421 root_flags = btrfs_root_flags(&dest->root_item);
2422 if (dest->send_in_progress == 0) {
2423 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002424 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2425 spin_unlock(&dest->root_item_lock);
2426 } else {
2427 spin_unlock(&dest->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002428 btrfs_warn(fs_info,
2429 "Attempt to delete subvolume %llu during send",
2430 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002431 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002432 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002433 }
2434
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002435 down_write(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -04002436
2437 err = may_destroy_subvol(dest);
2438 if (err)
2439 goto out_up_write;
2440
Miao Xiec58aaad2013-02-28 10:05:36 +00002441 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2442 /*
2443 * One for dir inode, two for dir entries, two for root
2444 * ref/backref.
2445 */
2446 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002447 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002448 if (err)
2449 goto out_up_write;
2450
Yan, Zhenga22285a2010-05-16 10:48:46 -04002451 trans = btrfs_start_transaction(root, 0);
2452 if (IS_ERR(trans)) {
2453 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002454 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002455 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002456 trans->block_rsv = &block_rsv;
2457 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002458
Nikolay Borisov43663552017-01-18 00:31:29 +02002459 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
Filipe Manana2be63d52016-02-12 11:34:23 +00002460
Yan, Zheng76dda932009-09-21 16:00:26 -04002461 ret = btrfs_unlink_subvol(trans, root, dir,
2462 dest->root_key.objectid,
2463 dentry->d_name.name,
2464 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002465 if (ret) {
2466 err = ret;
Jeff Mahoney66642832016-06-10 18:19:25 -04002467 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002468 goto out_end_trans;
2469 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002470
2471 btrfs_record_root_in_trans(trans, dest);
2472
2473 memset(&dest->root_item.drop_progress, 0,
2474 sizeof(dest->root_item.drop_progress));
2475 dest->root_item.drop_level = 0;
2476 btrfs_set_root_refs(&dest->root_item, 0);
2477
Miao Xie27cdeb72014-04-02 19:51:05 +08002478 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002479 ret = btrfs_insert_orphan_item(trans,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002480 fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04002481 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002482 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002483 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002484 err = ret;
2485 goto out_end_trans;
2486 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002487 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002488
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002489 ret = btrfs_uuid_tree_rem(trans, fs_info, dest->root_item.uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002490 BTRFS_UUID_KEY_SUBVOL,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002491 dest->root_key.objectid);
2492 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002493 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002494 err = ret;
2495 goto out_end_trans;
2496 }
2497 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002498 ret = btrfs_uuid_tree_rem(trans, fs_info,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002499 dest->root_item.received_uuid,
2500 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2501 dest->root_key.objectid);
2502 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002503 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002504 err = ret;
2505 goto out_end_trans;
2506 }
2507 }
2508
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002509out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002510 trans->block_rsv = NULL;
2511 trans->bytes_reserved = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002512 ret = btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002513 if (ret && !err)
2514 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002515 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002516out_release:
David Sterba7775c812017-02-10 19:18:18 +01002517 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Yan, Zheng76dda932009-09-21 16:00:26 -04002518out_up_write:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002519 up_write(&fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002520 if (err) {
2521 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002522 root_flags = btrfs_root_flags(&dest->root_item);
2523 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002524 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2525 spin_unlock(&dest->root_item_lock);
2526 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002527out_unlock_inode:
Al Viro59551022016-01-22 15:40:57 -05002528 inode_unlock(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04002529 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002530 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002531 btrfs_invalidate_inodes(dest);
2532 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002533 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002534
2535 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002536 if (dest->ino_cache_inode) {
2537 iput(dest->ino_cache_inode);
2538 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002539 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002540 }
2541out_dput:
2542 dput(dentry);
2543out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002544 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002545out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002546 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002547out:
2548 kfree(vol_args);
2549 return err;
2550}
2551
Chris Mason1e701a32010-03-11 09:42:04 -05002552static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002553{
Al Viro496ad9a2013-01-23 17:07:38 -05002554 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002555 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002556 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002557 int ret;
2558
Ilya Dryomov25122d12013-01-20 15:57:57 +02002559 ret = mnt_want_write_file(file);
2560 if (ret)
2561 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002562
Ilya Dryomov25122d12013-01-20 15:57:57 +02002563 if (btrfs_root_readonly(root)) {
2564 ret = -EROFS;
2565 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002566 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002567
2568 switch (inode->i_mode & S_IFMT) {
2569 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002570 if (!capable(CAP_SYS_ADMIN)) {
2571 ret = -EPERM;
2572 goto out;
2573 }
Eric Sandeende78b512013-01-31 18:21:12 +00002574 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002575 break;
2576 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002577 if (!(file->f_mode & FMODE_WRITE)) {
2578 ret = -EINVAL;
2579 goto out;
2580 }
Chris Mason1e701a32010-03-11 09:42:04 -05002581
2582 range = kzalloc(sizeof(*range), GFP_KERNEL);
2583 if (!range) {
2584 ret = -ENOMEM;
2585 goto out;
2586 }
2587
2588 if (argp) {
2589 if (copy_from_user(range, argp,
2590 sizeof(*range))) {
2591 ret = -EFAULT;
2592 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002593 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002594 }
2595 /* compression requires us to start the IO */
2596 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2597 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2598 range->extent_thresh = (u32)-1;
2599 }
2600 } else {
2601 /* the rest are all set to zero by kzalloc */
2602 range->len = (u64)-1;
2603 }
Al Viro496ad9a2013-01-23 17:07:38 -05002604 ret = btrfs_defrag_file(file_inode(file), file,
Anand Jain7c829b72018-03-07 17:29:18 +08002605 range, BTRFS_OLDEST_GENERATION, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04002606 if (ret > 0)
2607 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002608 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002609 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002610 default:
2611 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002612 }
Chris Masone441d542009-01-05 16:57:23 -05002613out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002614 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002615 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002616}
2617
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002618static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002619{
2620 struct btrfs_ioctl_vol_args *vol_args;
2621 int ret;
2622
Chris Masone441d542009-01-05 16:57:23 -05002623 if (!capable(CAP_SYS_ADMIN))
2624 return -EPERM;
2625
David Sterba171938e2017-03-28 14:44:21 +02002626 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
Anand Jaine57138b2013-08-21 11:44:48 +08002627 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002628
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002629 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002630 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002631 if (IS_ERR(vol_args)) {
2632 ret = PTR_ERR(vol_args);
2633 goto out;
2634 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002635
Mark Fasheh5516e592008-07-24 12:20:14 -04002636 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002637 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002638
Anand Jain43d20762014-07-01 00:58:56 +08002639 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002640 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08002641
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002642 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002643out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002644 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002645 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002646 return ret;
2647}
2648
Anand Jain6b526ed2016-02-13 10:01:39 +08002649static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002650{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002651 struct inode *inode = file_inode(file);
2652 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08002653 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002654 int ret;
2655
Chris Masone441d542009-01-05 16:57:23 -05002656 if (!capable(CAP_SYS_ADMIN))
2657 return -EPERM;
2658
Miao Xieda249272012-11-26 08:44:50 +00002659 ret = mnt_want_write_file(file);
2660 if (ret)
2661 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002662
Li Zefandae7b662009-04-08 15:06:54 +08002663 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002664 if (IS_ERR(vol_args)) {
2665 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002666 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002667 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002668
Anand Jain6b526ed2016-02-13 10:01:39 +08002669 /* Check for compatibility reject unknown flags */
David Sterba735654e2016-02-15 18:15:21 +01002670 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED)
2671 return -EOPNOTSUPP;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002672
David Sterba171938e2017-03-28 14:44:21 +02002673 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jain183860f2013-05-17 10:52:45 +00002674 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2675 goto out;
2676 }
2677
David Sterba735654e2016-02-15 18:15:21 +01002678 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002679 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08002680 } else {
2681 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002682 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08002683 }
David Sterba171938e2017-03-28 14:44:21 +02002684 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain183860f2013-05-17 10:52:45 +00002685
Anand Jain6b526ed2016-02-13 10:01:39 +08002686 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01002687 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002688 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08002689 vol_args->devid);
2690 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002691 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08002692 vol_args->name);
2693 }
Anand Jain183860f2013-05-17 10:52:45 +00002694out:
2695 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002696err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002697 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002698 return ret;
2699}
2700
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002701static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2702{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002703 struct inode *inode = file_inode(file);
2704 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002705 struct btrfs_ioctl_vol_args *vol_args;
2706 int ret;
2707
2708 if (!capable(CAP_SYS_ADMIN))
2709 return -EPERM;
2710
2711 ret = mnt_want_write_file(file);
2712 if (ret)
2713 return ret;
2714
David Sterba171938e2017-03-28 14:44:21 +02002715 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002716 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02002717 goto out_drop_write;
2718 }
2719
2720 vol_args = memdup_user(arg, sizeof(*vol_args));
2721 if (IS_ERR(vol_args)) {
2722 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002723 goto out;
2724 }
2725
David Sterba58d7bbf2016-05-04 14:10:47 +02002726 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002727 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002728
2729 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002730 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002731 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02002732out:
David Sterba171938e2017-03-28 14:44:21 +02002733 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
David Sterba58d7bbf2016-05-04 14:10:47 +02002734out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002735 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02002736
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002737 return ret;
2738}
2739
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002740static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
2741 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002742{
Li Zefan027ed2f2011-06-08 08:27:56 +00002743 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002744 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002745 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002746 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002747
Li Zefan027ed2f2011-06-08 08:27:56 +00002748 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2749 if (!fi_args)
2750 return -ENOMEM;
2751
David Sterbad03262c2017-06-16 00:09:21 +02002752 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00002753 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01002754
David Sterbad03262c2017-06-16 00:09:21 +02002755 list_for_each_entry_rcu(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 }
David Sterbad03262c2017-06-16 00:09:21 +02002759 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002760
David Sterbad03262c2017-06-16 00:09:21 +02002761 memcpy(&fi_args->fsid, fs_info->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07002762 fi_args->nodesize = fs_info->nodesize;
2763 fi_args->sectorsize = fs_info->sectorsize;
2764 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02002765
Li Zefan027ed2f2011-06-08 08:27:56 +00002766 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2767 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002768
Li Zefan027ed2f2011-06-08 08:27:56 +00002769 kfree(fi_args);
2770 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002771}
2772
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002773static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
2774 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002775{
2776 struct btrfs_ioctl_dev_info_args *di_args;
2777 struct btrfs_device *dev;
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
David Sterbac5593ca2017-06-16 00:09:21 +02002788 rcu_read_lock();
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
Josef Bacik606686e2012-06-04 14:03:51 -04002803 name = rcu_dereference(dev->name);
Xiongfeng Wang6670d4c2018-01-08 19:51:22 +08002804 strncpy(di_args->path, name->str, sizeof(di_args->path) - 1);
Jim Meyeringa27202f2012-04-26 18:36:56 +02002805 di_args->path[sizeof(di_args->path) - 1] = 0;
2806 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002807 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002808 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002809
2810out:
David Sterbac5593ca2017-06-16 00:09:21 +02002811 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002812 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2813 ret = -EFAULT;
2814
2815 kfree(di_args);
2816 return ret;
2817}
2818
Mark Fashehf4414602015-06-30 14:42:05 -07002819static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002820{
2821 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002822
Mark Fasheh416161d2013-08-06 11:42:51 -07002823 page = grab_cache_page(inode->i_mapping, index);
2824 if (!page)
Filipe Manana31314002016-01-27 18:37:47 +00002825 return ERR_PTR(-ENOMEM);
Mark Fasheh416161d2013-08-06 11:42:51 -07002826
2827 if (!PageUptodate(page)) {
Filipe Manana31314002016-01-27 18:37:47 +00002828 int ret;
2829
2830 ret = btrfs_readpage(NULL, page);
2831 if (ret)
2832 return ERR_PTR(ret);
Mark Fasheh416161d2013-08-06 11:42:51 -07002833 lock_page(page);
2834 if (!PageUptodate(page)) {
2835 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002836 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002837 return ERR_PTR(-EIO);
2838 }
2839 if (page->mapping != inode->i_mapping) {
2840 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002841 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002842 return ERR_PTR(-EAGAIN);
Mark Fasheh416161d2013-08-06 11:42:51 -07002843 }
2844 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002845
2846 return page;
2847}
2848
Mark Fashehf4414602015-06-30 14:42:05 -07002849static int gather_extent_pages(struct inode *inode, struct page **pages,
2850 int num_pages, u64 off)
2851{
2852 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002853 pgoff_t index = off >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002854
2855 for (i = 0; i < num_pages; i++) {
Filipe Manana31314002016-01-27 18:37:47 +00002856again:
Mark Fashehf4414602015-06-30 14:42:05 -07002857 pages[i] = extent_same_get_page(inode, index + i);
Filipe Manana31314002016-01-27 18:37:47 +00002858 if (IS_ERR(pages[i])) {
2859 int err = PTR_ERR(pages[i]);
2860
2861 if (err == -EAGAIN)
2862 goto again;
2863 pages[i] = NULL;
2864 return err;
2865 }
Mark Fashehf4414602015-06-30 14:42:05 -07002866 }
2867 return 0;
2868}
2869
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002870static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2871 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002872{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002873 /*
2874 * Do any pending delalloc/csum calculations on inode, one way or
2875 * another, and lock file content.
2876 * The locking order is:
2877 *
2878 * 1) pages
2879 * 2) range in the inode's io tree
2880 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002881 while (1) {
2882 struct btrfs_ordered_extent *ordered;
2883 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2884 ordered = btrfs_lookup_first_ordered_extent(inode,
2885 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002886 if ((!ordered ||
2887 ordered->file_offset + ordered->len <= off ||
2888 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002889 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002890 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2891 if (ordered)
2892 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002893 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002894 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002895 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2896 if (ordered)
2897 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002898 if (!retry_range_locking)
2899 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002900 btrfs_wait_ordered_range(inode, off, len);
2901 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002902 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002903}
2904
Mark Fashehf4414602015-06-30 14:42:05 -07002905static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002906{
Al Viro59551022016-01-22 15:40:57 -05002907 inode_unlock(inode1);
2908 inode_unlock(inode2);
Mark Fasheh416161d2013-08-06 11:42:51 -07002909}
2910
Mark Fashehf4414602015-06-30 14:42:05 -07002911static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2912{
2913 if (inode1 < inode2)
2914 swap(inode1, inode2);
2915
Al Viro59551022016-01-22 15:40:57 -05002916 inode_lock_nested(inode1, I_MUTEX_PARENT);
2917 inode_lock_nested(inode2, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002918}
2919
2920static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2921 struct inode *inode2, u64 loff2, u64 len)
2922{
2923 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2924 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2925}
2926
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002927static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2928 struct inode *inode2, u64 loff2, u64 len,
2929 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002930{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002931 int ret;
2932
Mark Fasheh416161d2013-08-06 11:42:51 -07002933 if (inode1 < inode2) {
2934 swap(inode1, inode2);
2935 swap(loff1, loff2);
2936 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002937 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2938 if (ret)
2939 return ret;
2940 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2941 if (ret)
2942 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2943 loff1 + len - 1);
2944 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002945}
2946
2947struct cmp_pages {
2948 int num_pages;
2949 struct page **src_pages;
2950 struct page **dst_pages;
2951};
2952
2953static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2954{
2955 int i;
2956 struct page *pg;
2957
2958 for (i = 0; i < cmp->num_pages; i++) {
2959 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002960 if (pg) {
2961 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002962 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002963 }
Mark Fashehf4414602015-06-30 14:42:05 -07002964 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002965 if (pg) {
2966 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002967 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002968 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002969 }
Mark Fashehf4414602015-06-30 14:42:05 -07002970 kfree(cmp->src_pages);
2971 kfree(cmp->dst_pages);
2972}
2973
2974static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2975 struct inode *dst, u64 dst_loff,
2976 u64 len, struct cmp_pages *cmp)
2977{
2978 int ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002979 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002980 struct page **src_pgarr, **dst_pgarr;
2981
2982 /*
2983 * We must gather up all the pages before we initiate our
2984 * extent locking. We use an array for the page pointers. Size
2985 * of the array is bounded by len, which is in turn bounded by
2986 * BTRFS_MAX_DEDUPE_LEN.
2987 */
David Sterba66722f72016-02-11 15:01:38 +01002988 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
2989 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
Mark Fashehf4414602015-06-30 14:42:05 -07002990 if (!src_pgarr || !dst_pgarr) {
2991 kfree(src_pgarr);
2992 kfree(dst_pgarr);
2993 return -ENOMEM;
2994 }
2995 cmp->num_pages = num_pages;
2996 cmp->src_pages = src_pgarr;
2997 cmp->dst_pages = dst_pgarr;
2998
Filipe Mananab1517622017-02-21 17:14:52 +00002999 /*
3000 * If deduping ranges in the same inode, locking rules make it mandatory
3001 * to always lock pages in ascending order to avoid deadlocks with
3002 * concurrent tasks (such as starting writeback/delalloc).
3003 */
3004 if (src == dst && dst_loff < loff) {
3005 swap(src_pgarr, dst_pgarr);
3006 swap(loff, dst_loff);
3007 }
3008
3009 ret = gather_extent_pages(src, src_pgarr, cmp->num_pages, loff);
Mark Fashehf4414602015-06-30 14:42:05 -07003010 if (ret)
3011 goto out;
3012
Filipe Mananab1517622017-02-21 17:14:52 +00003013 ret = gather_extent_pages(dst, dst_pgarr, cmp->num_pages, dst_loff);
Mark Fashehf4414602015-06-30 14:42:05 -07003014
3015out:
3016 if (ret)
3017 btrfs_cmp_data_free(cmp);
Naohiro Aota78ad4ce2017-09-08 17:48:55 +09003018 return ret;
Mark Fasheh416161d2013-08-06 11:42:51 -07003019}
3020
David Sterba1a287cf2017-02-10 20:15:10 +01003021static int btrfs_cmp_data(u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003022{
3023 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07003024 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07003025 struct page *src_page, *dst_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003026 unsigned int cmp_len = PAGE_SIZE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003027 void *addr, *dst_addr;
3028
Mark Fashehf4414602015-06-30 14:42:05 -07003029 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003030 while (len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003031 if (len < PAGE_SIZE)
Mark Fasheh416161d2013-08-06 11:42:51 -07003032 cmp_len = len;
3033
Mark Fashehf4414602015-06-30 14:42:05 -07003034 BUG_ON(i >= cmp->num_pages);
3035
3036 src_page = cmp->src_pages[i];
3037 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003038 ASSERT(PageLocked(src_page));
3039 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07003040
Mark Fasheh416161d2013-08-06 11:42:51 -07003041 addr = kmap_atomic(src_page);
3042 dst_addr = kmap_atomic(dst_page);
3043
3044 flush_dcache_page(src_page);
3045 flush_dcache_page(dst_page);
3046
3047 if (memcmp(addr, dst_addr, cmp_len))
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003048 ret = -EBADE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003049
3050 kunmap_atomic(addr);
3051 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07003052
3053 if (ret)
3054 break;
3055
Mark Fasheh416161d2013-08-06 11:42:51 -07003056 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07003057 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07003058 }
3059
3060 return ret;
3061}
3062
Mark Fashehe1d227a2015-06-08 15:05:25 -07003063static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
3064 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07003065{
Mark Fashehe1d227a2015-06-08 15:05:25 -07003066 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003067 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
3068
Mark Fashehe1d227a2015-06-08 15:05:25 -07003069 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07003070 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003071
3072 /* if we extend to eof, continue to block boundary */
3073 if (off + len == inode->i_size)
3074 *plen = len = ALIGN(inode->i_size, bs) - off;
3075
Mark Fasheh416161d2013-08-06 11:42:51 -07003076 /* Check that we are block aligned - btrfs_clone() requires this */
3077 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
3078 return -EINVAL;
3079
3080 return 0;
3081}
3082
Mark Fashehe1d227a2015-06-08 15:05:25 -07003083static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07003084 struct inode *dst, u64 dst_loff)
3085{
3086 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003087 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07003088 struct cmp_pages cmp;
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003089 bool same_inode = (src == dst);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003090 u64 same_lock_start = 0;
3091 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003092
Filipe Manana113e8282015-03-30 18:26:47 +01003093 if (len == 0)
3094 return 0;
3095
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003096 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003097 inode_lock(src);
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003098 else
3099 btrfs_double_inode_lock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003100
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003101 ret = extent_same_check_offsets(src, loff, &len, olen);
3102 if (ret)
3103 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07003104
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003105 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3106 if (ret)
3107 goto out_unlock;
3108
3109 if (same_inode) {
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003110 /*
3111 * Single inode case wants the same checks, except we
3112 * don't want our length pushed out past i_size as
3113 * comparing that data range makes no sense.
3114 *
3115 * extent_same_check_offsets() will do this for an
3116 * unaligned length at i_size, so catch it here and
3117 * reject the request.
3118 *
3119 * This effectively means we require aligned extents
3120 * for the single-inode case, whereas the other cases
3121 * allow an unaligned length so long as it ends at
3122 * i_size.
3123 */
3124 if (len != olen) {
3125 ret = -EINVAL;
3126 goto out_unlock;
3127 }
3128
3129 /* Check for overlapping ranges */
3130 if (dst_loff + len > loff && dst_loff < loff + len) {
3131 ret = -EINVAL;
3132 goto out_unlock;
3133 }
3134
3135 same_lock_start = min_t(u64, loff, dst_loff);
3136 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003137 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003138
3139 /* don't make the dst file partly checksummed */
3140 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3141 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3142 ret = -EINVAL;
3143 goto out_unlock;
3144 }
3145
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003146again:
Mark Fashehf4414602015-06-30 14:42:05 -07003147 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3148 if (ret)
3149 goto out_unlock;
3150
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003151 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003152 ret = lock_extent_range(src, same_lock_start, same_lock_len,
3153 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003154 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003155 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
3156 false);
3157 /*
3158 * If one of the inodes has dirty pages in the respective range or
3159 * ordered extents, we need to flush dellaloc and wait for all ordered
3160 * extents in the range. We must unlock the pages and the ranges in the
3161 * io trees to avoid deadlocks when flushing delalloc (requires locking
3162 * pages) and when waiting for ordered extents to complete (they require
3163 * range locking).
3164 */
3165 if (ret == -EAGAIN) {
3166 /*
3167 * Ranges in the io trees already unlocked. Now unlock all
3168 * pages before waiting for all IO to complete.
3169 */
3170 btrfs_cmp_data_free(&cmp);
3171 if (same_inode) {
3172 btrfs_wait_ordered_range(src, same_lock_start,
3173 same_lock_len);
3174 } else {
3175 btrfs_wait_ordered_range(src, loff, len);
3176 btrfs_wait_ordered_range(dst, dst_loff, len);
3177 }
3178 goto again;
3179 }
3180 ASSERT(ret == 0);
3181 if (WARN_ON(ret)) {
3182 /* ranges in the io trees already unlocked */
3183 btrfs_cmp_data_free(&cmp);
3184 return ret;
3185 }
Mark Fashehf4414602015-06-30 14:42:05 -07003186
Mark Fasheh207910d2015-06-30 14:42:04 -07003187 /* pass original length for comparison so we stay within i_size */
David Sterba1a287cf2017-02-10 20:15:10 +01003188 ret = btrfs_cmp_data(olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003189 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003190 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003191
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003192 if (same_inode)
3193 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3194 same_lock_start + same_lock_len - 1);
3195 else
3196 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003197
3198 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003199out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003200 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003201 inode_unlock(src);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003202 else
3203 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003204
3205 return ret;
3206}
3207
Byongho Leeee221842015-12-15 01:42:10 +09003208#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003209
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003210ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3211 struct file *dst_file, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003212{
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003213 struct inode *src = file_inode(src_file);
3214 struct inode *dst = file_inode(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003215 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003216 ssize_t res;
Mark Fasheh416161d2013-08-06 11:42:51 -07003217
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003218 if (olen > BTRFS_MAX_DEDUPE_LEN)
3219 olen = BTRFS_MAX_DEDUPE_LEN;
Mark Fasheh416161d2013-08-06 11:42:51 -07003220
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003221 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003222 /*
3223 * Btrfs does not support blocksize < page_size. As a
3224 * result, btrfs_cmp_data() won't correctly handle
3225 * this situation without an update.
3226 */
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003227 return -EINVAL;
Mark Fasheh416161d2013-08-06 11:42:51 -07003228 }
3229
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003230 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3231 if (res)
3232 return res;
3233 return olen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003234}
3235
Filipe Mananaf82a9902014-06-01 01:50:28 +01003236static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3237 struct inode *inode,
3238 u64 endoff,
3239 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003240 const u64 olen,
3241 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003242{
3243 struct btrfs_root *root = BTRFS_I(inode)->root;
3244 int ret;
3245
3246 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003247 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003248 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003249 /*
3250 * We round up to the block size at eof when determining which
3251 * extents to clone above, but shouldn't round up the file size.
3252 */
3253 if (endoff > destoff + olen)
3254 endoff = destoff + olen;
3255 if (endoff > inode->i_size)
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003256 btrfs_i_size_write(BTRFS_I(inode), endoff);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003257
3258 ret = btrfs_update_inode(trans, root, inode);
3259 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003260 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003261 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003262 goto out;
3263 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003264 ret = btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003265out:
3266 return ret;
3267}
3268
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003269static void clone_update_extent_map(struct btrfs_inode *inode,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003270 const struct btrfs_trans_handle *trans,
3271 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003272 const u64 hole_offset,
3273 const u64 hole_len)
3274{
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003275 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01003276 struct extent_map *em;
3277 int ret;
3278
3279 em = alloc_extent_map();
3280 if (!em) {
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003281 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003282 return;
3283 }
3284
Filipe Manana14f59792014-06-29 21:45:40 +01003285 if (path) {
3286 struct btrfs_file_extent_item *fi;
3287
3288 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3289 struct btrfs_file_extent_item);
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003290 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003291 em->generation = -1;
3292 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3293 BTRFS_FILE_EXTENT_INLINE)
3294 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003295 &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003296 } else {
3297 em->start = hole_offset;
3298 em->len = hole_len;
3299 em->ram_bytes = em->len;
3300 em->orig_start = hole_offset;
3301 em->block_start = EXTENT_MAP_HOLE;
3302 em->block_len = 0;
3303 em->orig_block_len = 0;
3304 em->compress_type = BTRFS_COMPRESS_NONE;
3305 em->generation = trans->transid;
3306 }
3307
3308 while (1) {
3309 write_lock(&em_tree->lock);
3310 ret = add_extent_mapping(em_tree, em, 1);
3311 write_unlock(&em_tree->lock);
3312 if (ret != -EEXIST) {
3313 free_extent_map(em);
3314 break;
3315 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003316 btrfs_drop_extent_cache(inode, em->start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003317 em->start + em->len - 1, 0);
3318 }
3319
David Sterbaee39b432014-09-30 01:33:33 +02003320 if (ret)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003321 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003322}
3323
Filipe Manana8039d872015-10-13 15:15:00 +01003324/*
3325 * Make sure we do not end up inserting an inline extent into a file that has
3326 * already other (non-inline) extents. If a file has an inline extent it can
3327 * not have any other extents and the (single) inline extent must start at the
3328 * file offset 0. Failing to respect these rules will lead to file corruption,
3329 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3330 *
3331 * We can have extents that have been already written to disk or we can have
3332 * dirty ranges still in delalloc, in which case the extent maps and items are
3333 * created only when we run delalloc, and the delalloc ranges might fall outside
3334 * the range we are currently locking in the inode's io tree. So we check the
3335 * inode's i_size because of that (i_size updates are done while holding the
3336 * i_mutex, which we are holding here).
3337 * We also check to see if the inode has a size not greater than "datal" but has
3338 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3339 * protected against such concurrent fallocate calls by the i_mutex).
3340 *
3341 * If the file has no extents but a size greater than datal, do not allow the
3342 * copy because we would need turn the inline extent into a non-inline one (even
3343 * with NO_HOLES enabled). If we find our destination inode only has one inline
3344 * extent, just overwrite it with the source inline extent if its size is less
3345 * than the source extent's size, or we could copy the source inline extent's
3346 * data into the destination inode's inline extent if the later is greater then
3347 * the former.
3348 */
David Sterba4a0ab9d2017-02-10 20:18:49 +01003349static int clone_copy_inline_extent(struct inode *dst,
Filipe Manana8039d872015-10-13 15:15:00 +01003350 struct btrfs_trans_handle *trans,
3351 struct btrfs_path *path,
3352 struct btrfs_key *new_key,
3353 const u64 drop_start,
3354 const u64 datal,
3355 const u64 skip,
3356 const u64 size,
3357 char *inline_data)
3358{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003359 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
Filipe Manana8039d872015-10-13 15:15:00 +01003360 struct btrfs_root *root = BTRFS_I(dst)->root;
3361 const u64 aligned_end = ALIGN(new_key->offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003362 fs_info->sectorsize);
Filipe Manana8039d872015-10-13 15:15:00 +01003363 int ret;
3364 struct btrfs_key key;
3365
3366 if (new_key->offset > 0)
3367 return -EOPNOTSUPP;
3368
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003369 key.objectid = btrfs_ino(BTRFS_I(dst));
Filipe Manana8039d872015-10-13 15:15:00 +01003370 key.type = BTRFS_EXTENT_DATA_KEY;
3371 key.offset = 0;
3372 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3373 if (ret < 0) {
3374 return ret;
3375 } else if (ret > 0) {
3376 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3377 ret = btrfs_next_leaf(root, path);
3378 if (ret < 0)
3379 return ret;
3380 else if (ret > 0)
3381 goto copy_inline_extent;
3382 }
3383 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003384 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003385 key.type == BTRFS_EXTENT_DATA_KEY) {
3386 ASSERT(key.offset > 0);
3387 return -EOPNOTSUPP;
3388 }
3389 } else if (i_size_read(dst) <= datal) {
3390 struct btrfs_file_extent_item *ei;
3391 u64 ext_len;
3392
3393 /*
3394 * If the file size is <= datal, make sure there are no other
3395 * extents following (can happen do to an fallocate call with
3396 * the flag FALLOC_FL_KEEP_SIZE).
3397 */
3398 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3399 struct btrfs_file_extent_item);
3400 /*
3401 * If it's an inline extent, it can not have other extents
3402 * following it.
3403 */
3404 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3405 BTRFS_FILE_EXTENT_INLINE)
3406 goto copy_inline_extent;
3407
3408 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3409 if (ext_len > aligned_end)
3410 return -EOPNOTSUPP;
3411
3412 ret = btrfs_next_item(root, path);
3413 if (ret < 0) {
3414 return ret;
3415 } else if (ret == 0) {
3416 btrfs_item_key_to_cpu(path->nodes[0], &key,
3417 path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003418 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003419 key.type == BTRFS_EXTENT_DATA_KEY)
3420 return -EOPNOTSUPP;
3421 }
3422 }
3423
3424copy_inline_extent:
3425 /*
3426 * We have no extent items, or we have an extent at offset 0 which may
3427 * or may not be inlined. All these cases are dealt the same way.
3428 */
3429 if (i_size_read(dst) > datal) {
3430 /*
3431 * If the destination inode has an inline extent...
3432 * This would require copying the data from the source inline
3433 * extent into the beginning of the destination's inline extent.
3434 * But this is really complex, both extents can be compressed
3435 * or just one of them, which would require decompressing and
3436 * re-compressing data (which could increase the new compressed
3437 * size, not allowing the compressed data to fit anymore in an
3438 * inline extent).
3439 * So just don't support this case for now (it should be rare,
3440 * we are not really saving space when cloning inline extents).
3441 */
3442 return -EOPNOTSUPP;
3443 }
3444
3445 btrfs_release_path(path);
3446 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3447 if (ret)
3448 return ret;
3449 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3450 if (ret)
3451 return ret;
3452
3453 if (skip) {
3454 const u32 start = btrfs_file_extent_calc_inline_size(0);
3455
3456 memmove(inline_data + start, inline_data + start + skip, datal);
3457 }
3458
3459 write_extent_buffer(path->nodes[0], inline_data,
3460 btrfs_item_ptr_offset(path->nodes[0],
3461 path->slots[0]),
3462 size);
3463 inode_add_bytes(dst, datal);
3464
3465 return 0;
3466}
3467
Mark Fasheh32b7c682013-08-06 11:42:49 -07003468/**
3469 * btrfs_clone() - clone a range from inode file to another
3470 *
3471 * @src: Inode to clone from
3472 * @inode: Inode to clone to
3473 * @off: Offset within source to start clone from
3474 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003475 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003476 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003477 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003478 */
3479static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003480 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003481 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003482{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003483 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003484 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003485 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003486 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003487 struct btrfs_trans_handle *trans;
3488 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003489 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003490 u32 nritems;
3491 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003492 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003493 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003494 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003495
3496 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07003497 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3498 if (!buf)
3499 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003500
3501 path = btrfs_alloc_path();
3502 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003503 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003504 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003505 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003506
David Sterbae4058b52015-11-27 16:31:35 +01003507 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003508 /* clone data */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003509 key.objectid = btrfs_ino(BTRFS_I(src));
Yan Zhengae01a0a2008-08-04 23:23:47 -04003510 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003511 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003512
3513 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003514 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003515
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003516 /*
3517 * note the key will change type as we walk through the
3518 * tree.
3519 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003520 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003521 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3522 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003523 if (ret < 0)
3524 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003525 /*
3526 * First search, if no extent item that starts at offset off was
3527 * found but the previous item is an extent item, it's possible
3528 * it might overlap our target range, therefore process it.
3529 */
3530 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3531 btrfs_item_key_to_cpu(path->nodes[0], &key,
3532 path->slots[0] - 1);
3533 if (key.type == BTRFS_EXTENT_DATA_KEY)
3534 path->slots[0]--;
3535 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003536
Yan Zhengae01a0a2008-08-04 23:23:47 -04003537 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003538process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003539 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003540 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003541 if (ret < 0)
3542 goto out;
3543 if (ret > 0)
3544 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003545 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003546 }
3547 leaf = path->nodes[0];
3548 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003549
Yan Zhengae01a0a2008-08-04 23:23:47 -04003550 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003551 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003552 key.objectid != btrfs_ino(BTRFS_I(src)))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003553 break;
3554
David Sterba962a2982014-06-04 18:41:45 +02003555 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003556 struct btrfs_file_extent_item *extent;
3557 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003558 u32 size;
3559 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003560 u64 disko = 0, diskl = 0;
3561 u64 datao = 0, datal = 0;
3562 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003563 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003564
Sage Weilc5c9cd42008-11-12 14:32:25 -05003565 extent = btrfs_item_ptr(leaf, slot,
3566 struct btrfs_file_extent_item);
3567 comp = btrfs_file_extent_compression(leaf, extent);
3568 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003569 if (type == BTRFS_FILE_EXTENT_REG ||
3570 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003571 disko = btrfs_file_extent_disk_bytenr(leaf,
3572 extent);
3573 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3574 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003575 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003576 datal = btrfs_file_extent_num_bytes(leaf,
3577 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003578 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3579 /* take upper bound, may be compressed */
3580 datal = btrfs_file_extent_ram_bytes(leaf,
3581 extent);
3582 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003583
Filipe Manana2c463822014-05-31 02:31:05 +01003584 /*
3585 * The first search might have left us at an extent
3586 * item that ends before our target range's start, can
3587 * happen if we have holes and NO_HOLES feature enabled.
3588 */
3589 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003590 path->slots[0]++;
3591 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003592 } else if (key.offset >= off + len) {
3593 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003594 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003595 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003596 size = btrfs_item_size_nr(leaf, slot);
3597 read_extent_buffer(leaf, buf,
3598 btrfs_item_ptr_offset(leaf, slot),
3599 size);
3600
3601 btrfs_release_path(path);
3602 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003603
Zheng Yan31840ae2008-09-23 13:14:14 -04003604 memcpy(&new_key, &key, sizeof(new_key));
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003605 new_key.objectid = btrfs_ino(BTRFS_I(inode));
Li Zefan4d728ec2011-01-26 14:10:43 +08003606 if (off <= key.offset)
3607 new_key.offset = key.offset + destoff - off;
3608 else
3609 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003610
Sage Weilb6f34092011-09-20 14:48:51 -04003611 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003612 * Deal with a hole that doesn't have an extent item
3613 * that represents it (NO_HOLES feature enabled).
3614 * This hole is either in the middle of the cloning
3615 * range or at the beginning (fully overlaps it or
3616 * partially overlaps it).
3617 */
3618 if (new_key.offset != last_dest_end)
3619 drop_start = last_dest_end;
3620 else
3621 drop_start = new_key.offset;
3622
3623 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003624 * 1 - adjusting old extent (we may have to split it)
3625 * 1 - add new extent
3626 * 1 - inode update
3627 */
3628 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003629 if (IS_ERR(trans)) {
3630 ret = PTR_ERR(trans);
3631 goto out;
3632 }
3633
Chris Masonc8a894d2009-06-27 21:07:03 -04003634 if (type == BTRFS_FILE_EXTENT_REG ||
3635 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003636 /*
3637 * a | --- range to clone ---| b
3638 * | ------------- extent ------------- |
3639 */
3640
Antonio Ospite93915582014-06-04 14:03:48 +02003641 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003642 if (key.offset + datal > off + len)
3643 datal = off + len - key.offset;
3644
Antonio Ospite93915582014-06-04 14:03:48 +02003645 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003646 if (off > key.offset) {
3647 datao += off - key.offset;
3648 datal -= off - key.offset;
3649 }
3650
Josef Bacik5dc562c2012-08-17 13:14:17 -04003651 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003652 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003653 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003654 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003655 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003656 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003657 btrfs_abort_transaction(trans,
Jeff Mahoney66642832016-06-10 18:19:25 -04003658 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003659 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003660 goto out;
3661 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003662
Sage Weilc5c9cd42008-11-12 14:32:25 -05003663 ret = btrfs_insert_empty_item(trans, root, path,
3664 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003665 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003666 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003667 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003668 goto out;
3669 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003670
3671 leaf = path->nodes[0];
3672 slot = path->slots[0];
3673 write_extent_buffer(leaf, buf,
3674 btrfs_item_ptr_offset(leaf, slot),
3675 size);
3676
3677 extent = btrfs_item_ptr(leaf, slot,
3678 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003679
Sage Weilc5c9cd42008-11-12 14:32:25 -05003680 /* disko == 0 means it's a hole */
3681 if (!disko)
3682 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003683
3684 btrfs_set_file_extent_offset(leaf, extent,
3685 datao);
3686 btrfs_set_file_extent_num_bytes(leaf, extent,
3687 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003688
Sage Weilc5c9cd42008-11-12 14:32:25 -05003689 if (disko) {
3690 inode_add_bytes(inode, datal);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003691 ret = btrfs_inc_extent_ref(trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003692 root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003693 disko, diskl, 0,
3694 root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003695 btrfs_ino(BTRFS_I(inode)),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003696 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003697 if (ret) {
3698 btrfs_abort_transaction(trans,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003699 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003700 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003701 goto out;
3702
3703 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003704 }
3705 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3706 u64 skip = 0;
3707 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003708
Sage Weilc5c9cd42008-11-12 14:32:25 -05003709 if (off > key.offset) {
3710 skip = off - key.offset;
3711 new_key.offset += skip;
3712 }
Chris Masond3977122009-01-05 21:25:51 -05003713
Liu Boaa42ffd2012-09-18 03:52:23 -06003714 if (key.offset + datal > off + len)
3715 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003716
Sage Weilc5c9cd42008-11-12 14:32:25 -05003717 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003718 ret = -EINVAL;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003719 btrfs_end_transaction(trans);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003720 goto out;
3721 }
3722 size -= skip + trim;
3723 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003724
David Sterba4a0ab9d2017-02-10 20:18:49 +01003725 ret = clone_copy_inline_extent(inode,
Filipe Manana8039d872015-10-13 15:15:00 +01003726 trans, path,
3727 &new_key,
3728 drop_start,
3729 datal,
3730 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003731 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003732 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003733 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003734 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003735 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003736 goto out;
3737 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003738 leaf = path->nodes[0];
3739 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003740 }
3741
Filipe Manana7ffbb592014-06-09 03:48:05 +01003742 /* If we have an implicit hole (NO_HOLES feature). */
3743 if (drop_start < new_key.offset)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003744 clone_update_extent_map(BTRFS_I(inode), trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003745 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003746 new_key.offset - drop_start);
3747
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003748 clone_update_extent_map(BTRFS_I(inode), trans,
3749 path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003750
Sage Weilc5c9cd42008-11-12 14:32:25 -05003751 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003752 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003753
Filipe Manana62e23902014-08-08 02:47:06 +01003754 last_dest_end = ALIGN(new_key.offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003755 fs_info->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003756 ret = clone_finish_inode_update(trans, inode,
3757 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003758 destoff, olen,
3759 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003760 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003761 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003762 if (new_key.offset + datal >= destoff + len)
3763 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003764 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003765 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003766 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003767
3768 if (fatal_signal_pending(current)) {
3769 ret = -EINTR;
3770 goto out;
3771 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003772 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003773 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003774
Filipe Mananaf82a9902014-06-01 01:50:28 +01003775 if (last_dest_end < destoff + len) {
3776 /*
3777 * We have an implicit hole (NO_HOLES feature is enabled) that
3778 * fully or partially overlaps our cloning range at its end.
3779 */
3780 btrfs_release_path(path);
3781
3782 /*
3783 * 1 - remove extent(s)
3784 * 1 - inode update
3785 */
3786 trans = btrfs_start_transaction(root, 2);
3787 if (IS_ERR(trans)) {
3788 ret = PTR_ERR(trans);
3789 goto out;
3790 }
3791 ret = btrfs_drop_extents(trans, root, inode,
3792 last_dest_end, destoff + len, 1);
3793 if (ret) {
3794 if (ret != -EOPNOTSUPP)
Jeff Mahoney66642832016-06-10 18:19:25 -04003795 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003796 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003797 goto out;
3798 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003799 clone_update_extent_map(BTRFS_I(inode), trans, NULL,
3800 last_dest_end,
3801 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003802 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003803 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003804 }
3805
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003806out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003807 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003808 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003809 return ret;
3810}
3811
Zach Brown3db11b22015-11-10 16:53:32 -05003812static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3813 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003814{
Al Viro54563d42013-09-01 15:57:51 -04003815 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003816 struct inode *src = file_inode(file_src);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003817 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003818 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003819 int ret;
3820 u64 len = olen;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003821 u64 bs = fs_info->sb->s_blocksize;
Zach Brown3db11b22015-11-10 16:53:32 -05003822 int same_inode = src == inode;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003823
3824 /*
3825 * TODO:
3826 * - split compressed inline extents. annoying: we need to
3827 * decompress into destination's address_space (the file offset
3828 * may change, so source mapping won't do), then recompress (or
3829 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003830 *
3831 * - split destination inode's inline extents. The inline extents can
3832 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003833 */
3834
Mark Fasheh32b7c682013-08-06 11:42:49 -07003835 if (btrfs_root_readonly(root))
3836 return -EROFS;
3837
Zach Brown3db11b22015-11-10 16:53:32 -05003838 if (file_src->f_path.mnt != file->f_path.mnt ||
3839 src->i_sb != inode->i_sb)
3840 return -EXDEV;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003841
3842 /* don't make the dst file partly checksummed */
3843 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3844 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
Zach Brown3db11b22015-11-10 16:53:32 -05003845 return -EINVAL;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003846
Mark Fasheh32b7c682013-08-06 11:42:49 -07003847 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Zach Brown3db11b22015-11-10 16:53:32 -05003848 return -EISDIR;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003849
3850 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003851 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003852 } else {
Al Viro59551022016-01-22 15:40:57 -05003853 inode_lock(src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003854 }
3855
3856 /* determine range to clone */
3857 ret = -EINVAL;
3858 if (off + len > src->i_size || off + len < off)
3859 goto out_unlock;
3860 if (len == 0)
3861 olen = len = src->i_size - off;
3862 /* if we extend to eof, continue to block boundary */
3863 if (off + len == src->i_size)
3864 len = ALIGN(src->i_size, bs) - off;
3865
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003866 if (len == 0) {
3867 ret = 0;
3868 goto out_unlock;
3869 }
3870
Mark Fasheh32b7c682013-08-06 11:42:49 -07003871 /* verify the end result is block aligned */
3872 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3873 !IS_ALIGNED(destoff, bs))
3874 goto out_unlock;
3875
3876 /* verify if ranges are overlapped within the same file */
3877 if (same_inode) {
3878 if (destoff + len > off && destoff < off + len)
3879 goto out_unlock;
3880 }
3881
3882 if (destoff > inode->i_size) {
3883 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3884 if (ret)
3885 goto out_unlock;
3886 }
3887
Filipe Mananac125b8b2014-05-23 05:03:34 +01003888 /*
3889 * Lock the target range too. Right after we replace the file extent
3890 * items in the fs tree (which now point to the cloned data), we might
3891 * have a worker replace them with extent items relative to a write
3892 * operation that was issued before this clone operation (i.e. confront
3893 * with inode.c:btrfs_finish_ordered_io).
3894 */
3895 if (same_inode) {
3896 u64 lock_start = min_t(u64, off, destoff);
3897 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003898
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003899 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003900 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003901 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3902 true);
3903 }
3904 ASSERT(ret == 0);
3905 if (WARN_ON(ret)) {
3906 /* ranges in the io trees already unlocked */
3907 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003908 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003909
Mark Fasheh1c919a52015-06-30 14:42:08 -07003910 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003911
Filipe Mananac125b8b2014-05-23 05:03:34 +01003912 if (same_inode) {
3913 u64 lock_start = min_t(u64, off, destoff);
3914 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3915
3916 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3917 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003918 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003919 }
3920 /*
3921 * Truncate page cache pages so that future reads will see the cloned
3922 * data immediately and not the previous data.
3923 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303924 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003925 round_down(destoff, PAGE_SIZE),
3926 round_up(destoff + len, PAGE_SIZE) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003927out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003928 if (!same_inode)
3929 btrfs_double_inode_unlock(src, inode);
3930 else
Al Viro59551022016-01-22 15:40:57 -05003931 inode_unlock(src);
Zach Brown3db11b22015-11-10 16:53:32 -05003932 return ret;
3933}
3934
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003935int btrfs_clone_file_range(struct file *src_file, loff_t off,
3936 struct file *dst_file, loff_t destoff, u64 len)
Zach Brown3db11b22015-11-10 16:53:32 -05003937{
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003938 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003939}
3940
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003941static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3942{
Al Viro496ad9a2013-01-23 17:07:38 -05003943 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003944 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003945 struct btrfs_root *root = BTRFS_I(inode)->root;
3946 struct btrfs_root *new_root;
3947 struct btrfs_dir_item *di;
3948 struct btrfs_trans_handle *trans;
3949 struct btrfs_path *path;
3950 struct btrfs_key location;
3951 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003952 u64 objectid = 0;
3953 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003954 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003955
3956 if (!capable(CAP_SYS_ADMIN))
3957 return -EPERM;
3958
Miao Xie3c04ce02012-11-26 08:43:07 +00003959 ret = mnt_want_write_file(file);
3960 if (ret)
3961 return ret;
3962
3963 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3964 ret = -EFAULT;
3965 goto out;
3966 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003967
3968 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303969 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003970
3971 location.objectid = objectid;
3972 location.type = BTRFS_ROOT_ITEM_KEY;
3973 location.offset = (u64)-1;
3974
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003975 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003976 if (IS_ERR(new_root)) {
3977 ret = PTR_ERR(new_root);
3978 goto out;
3979 }
satoru takeuchi6d6d2822017-09-12 22:42:52 +09003980 if (!is_fstree(new_root->objectid)) {
3981 ret = -ENOENT;
3982 goto out;
3983 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003984
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003985 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003986 if (!path) {
3987 ret = -ENOMEM;
3988 goto out;
3989 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003990 path->leave_spinning = 1;
3991
3992 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003993 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003994 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003995 ret = PTR_ERR(trans);
3996 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003997 }
3998
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003999 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4000 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004001 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00004002 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004003 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004004 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004005 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004006 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00004007 ret = -ENOENT;
4008 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004009 }
4010
4011 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4012 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4013 btrfs_mark_buffer_dirty(path->nodes[0]);
4014 btrfs_free_path(path);
4015
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004016 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004017 btrfs_end_transaction(trans);
Miao Xie3c04ce02012-11-26 08:43:07 +00004018out:
4019 mnt_drop_write_file(file);
4020 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004021}
4022
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004023void btrfs_get_block_group_info(struct list_head *groups_list,
4024 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004025{
4026 struct btrfs_block_group_cache *block_group;
4027
4028 space->total_bytes = 0;
4029 space->used_bytes = 0;
4030 space->flags = 0;
4031 list_for_each_entry(block_group, groups_list, list) {
4032 space->flags = block_group->flags;
4033 space->total_bytes += block_group->key.offset;
4034 space->used_bytes +=
4035 btrfs_block_group_used(&block_group->item);
4036 }
4037}
4038
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004039static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
4040 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004041{
4042 struct btrfs_ioctl_space_args space_args;
4043 struct btrfs_ioctl_space_info space;
4044 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004045 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004046 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004047 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01004048 static const u64 types[] = {
4049 BTRFS_BLOCK_GROUP_DATA,
4050 BTRFS_BLOCK_GROUP_SYSTEM,
4051 BTRFS_BLOCK_GROUP_METADATA,
4052 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
4053 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004054 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004055 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004056 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004057 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004058 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004059
4060 if (copy_from_user(&space_args,
4061 (struct btrfs_ioctl_space_args __user *)arg,
4062 sizeof(space_args)))
4063 return -EFAULT;
4064
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004065 for (i = 0; i < num_types; i++) {
4066 struct btrfs_space_info *tmp;
4067
4068 info = NULL;
4069 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004070 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004071 list) {
4072 if (tmp->flags == types[i]) {
4073 info = tmp;
4074 break;
4075 }
4076 }
4077 rcu_read_unlock();
4078
4079 if (!info)
4080 continue;
4081
4082 down_read(&info->groups_sem);
4083 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4084 if (!list_empty(&info->block_groups[c]))
4085 slot_count++;
4086 }
4087 up_read(&info->groups_sem);
4088 }
Josef Bacik1406e432010-01-13 18:19:06 +00004089
David Sterba36523e952014-02-07 14:34:12 +01004090 /*
4091 * Global block reserve, exported as a space_info
4092 */
4093 slot_count++;
4094
Chris Mason7fde62b2010-03-16 15:40:10 -04004095 /* space_slots == 0 means they are asking for a count */
4096 if (space_args.space_slots == 0) {
4097 space_args.total_spaces = slot_count;
4098 goto out;
4099 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004100
Dan Rosenberg51788b12011-02-14 16:04:23 -05004101 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004102
Chris Mason7fde62b2010-03-16 15:40:10 -04004103 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004104
Chris Mason7fde62b2010-03-16 15:40:10 -04004105 /* we generally have at most 6 or so space infos, one for each raid
4106 * level. So, a whole page should be more than enough for everyone
4107 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004108 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04004109 return -ENOMEM;
4110
4111 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01004112 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04004113 if (!dest)
4114 return -ENOMEM;
4115 dest_orig = dest;
4116
4117 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004118 for (i = 0; i < num_types; i++) {
4119 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004120
Dan Rosenberg51788b12011-02-14 16:04:23 -05004121 if (!slot_count)
4122 break;
4123
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004124 info = NULL;
4125 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004126 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004127 list) {
4128 if (tmp->flags == types[i]) {
4129 info = tmp;
4130 break;
4131 }
4132 }
4133 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004134
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004135 if (!info)
4136 continue;
4137 down_read(&info->groups_sem);
4138 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4139 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004140 btrfs_get_block_group_info(
4141 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004142 memcpy(dest, &space, sizeof(space));
4143 dest++;
4144 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004145 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004146 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004147 if (!slot_count)
4148 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004149 }
4150 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004151 }
Josef Bacik1406e432010-01-13 18:19:06 +00004152
David Sterba36523e952014-02-07 14:34:12 +01004153 /*
4154 * Add global block reserve
4155 */
4156 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004157 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01004158
4159 spin_lock(&block_rsv->lock);
4160 space.total_bytes = block_rsv->size;
4161 space.used_bytes = block_rsv->size - block_rsv->reserved;
4162 spin_unlock(&block_rsv->lock);
4163 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4164 memcpy(dest, &space, sizeof(space));
4165 space_args.total_spaces++;
4166 }
4167
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004168 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004169 (arg + sizeof(struct btrfs_ioctl_space_args));
4170
4171 if (copy_to_user(user_dest, dest_orig, alloc_size))
4172 ret = -EFAULT;
4173
4174 kfree(dest_orig);
4175out:
4176 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004177 ret = -EFAULT;
4178
4179 return ret;
4180}
4181
Miao Xie9a8c28b2012-11-26 08:40:43 +00004182static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4183 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004184{
Sage Weil46204592010-10-29 15:41:32 -04004185 struct btrfs_trans_handle *trans;
4186 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004187 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004188
Miao Xied4edf392013-02-20 09:17:06 +00004189 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004190 if (IS_ERR(trans)) {
4191 if (PTR_ERR(trans) != -ENOENT)
4192 return PTR_ERR(trans);
4193
4194 /* No running transaction, don't bother */
4195 transid = root->fs_info->last_trans_committed;
4196 goto out;
4197 }
Sage Weil46204592010-10-29 15:41:32 -04004198 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004199 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004200 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004201 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004202 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004203 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004204out:
Sage Weil46204592010-10-29 15:41:32 -04004205 if (argp)
4206 if (copy_to_user(argp, &transid, sizeof(transid)))
4207 return -EFAULT;
4208 return 0;
4209}
4210
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004211static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00004212 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004213{
Sage Weil46204592010-10-29 15:41:32 -04004214 u64 transid;
4215
4216 if (argp) {
4217 if (copy_from_user(&transid, argp, sizeof(transid)))
4218 return -EFAULT;
4219 } else {
4220 transid = 0; /* current trans */
4221 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004222 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04004223}
4224
Miao Xieb8e95482012-11-26 08:48:01 +00004225static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004226{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004227 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01004228 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004229 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004230
4231 if (!capable(CAP_SYS_ADMIN))
4232 return -EPERM;
4233
4234 sa = memdup_user(arg, sizeof(*sa));
4235 if (IS_ERR(sa))
4236 return PTR_ERR(sa);
4237
Miao Xieb8e95482012-11-26 08:48:01 +00004238 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4239 ret = mnt_want_write_file(file);
4240 if (ret)
4241 goto out;
4242 }
4243
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004244 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004245 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4246 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004247
4248 if (copy_to_user(arg, sa, sizeof(*sa)))
4249 ret = -EFAULT;
4250
Miao Xieb8e95482012-11-26 08:48:01 +00004251 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4252 mnt_drop_write_file(file);
4253out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004254 kfree(sa);
4255 return ret;
4256}
4257
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004258static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01004259{
4260 if (!capable(CAP_SYS_ADMIN))
4261 return -EPERM;
4262
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004263 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004264}
4265
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004266static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01004267 void __user *arg)
4268{
4269 struct btrfs_ioctl_scrub_args *sa;
4270 int ret;
4271
4272 if (!capable(CAP_SYS_ADMIN))
4273 return -EPERM;
4274
4275 sa = memdup_user(arg, sizeof(*sa));
4276 if (IS_ERR(sa))
4277 return PTR_ERR(sa);
4278
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004279 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01004280
4281 if (copy_to_user(arg, sa, sizeof(*sa)))
4282 ret = -EFAULT;
4283
4284 kfree(sa);
4285 return ret;
4286}
4287
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004288static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06004289 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004290{
4291 struct btrfs_ioctl_get_dev_stats *sa;
4292 int ret;
4293
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004294 sa = memdup_user(arg, sizeof(*sa));
4295 if (IS_ERR(sa))
4296 return PTR_ERR(sa);
4297
David Sterbab27f7c02012-06-22 06:30:39 -06004298 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4299 kfree(sa);
4300 return -EPERM;
4301 }
4302
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004303 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004304
4305 if (copy_to_user(arg, sa, sizeof(*sa)))
4306 ret = -EFAULT;
4307
4308 kfree(sa);
4309 return ret;
4310}
4311
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004312static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4313 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004314{
4315 struct btrfs_ioctl_dev_replace_args *p;
4316 int ret;
4317
4318 if (!capable(CAP_SYS_ADMIN))
4319 return -EPERM;
4320
4321 p = memdup_user(arg, sizeof(*p));
4322 if (IS_ERR(p))
4323 return PTR_ERR(p);
4324
4325 switch (p->cmd) {
4326 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01004327 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004328 ret = -EROFS;
4329 goto out;
4330 }
David Sterba171938e2017-03-28 14:44:21 +02004331 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004332 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004333 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004334 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
David Sterba171938e2017-03-28 14:44:21 +02004335 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004336 }
4337 break;
4338 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004339 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004340 ret = 0;
4341 break;
4342 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Anand Jain17d202b2018-02-12 23:33:30 +08004343 p->result = btrfs_dev_replace_cancel(fs_info);
Anand Jain97282032018-02-12 23:33:29 +08004344 ret = 0;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004345 break;
4346 default:
4347 ret = -EINVAL;
4348 break;
4349 }
4350
4351 if (copy_to_user(arg, p, sizeof(*p)))
4352 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004353out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004354 kfree(p);
4355 return ret;
4356}
4357
Jan Schmidtd7728c92011-07-07 16:48:38 +02004358static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4359{
4360 int ret = 0;
4361 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004362 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004363 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004364 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004365 struct inode_fs_paths *ipath = NULL;
4366 struct btrfs_path *path;
4367
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004368 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004369 return -EPERM;
4370
4371 path = btrfs_alloc_path();
4372 if (!path) {
4373 ret = -ENOMEM;
4374 goto out;
4375 }
4376
4377 ipa = memdup_user(arg, sizeof(*ipa));
4378 if (IS_ERR(ipa)) {
4379 ret = PTR_ERR(ipa);
4380 ipa = NULL;
4381 goto out;
4382 }
4383
4384 size = min_t(u32, ipa->size, 4096);
4385 ipath = init_ipath(size, root, path);
4386 if (IS_ERR(ipath)) {
4387 ret = PTR_ERR(ipath);
4388 ipath = NULL;
4389 goto out;
4390 }
4391
4392 ret = paths_from_inode(ipa->inum, ipath);
4393 if (ret < 0)
4394 goto out;
4395
4396 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004397 rel_ptr = ipath->fspath->val[i] -
4398 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004399 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004400 }
4401
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004402 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
4403 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004404 if (ret) {
4405 ret = -EFAULT;
4406 goto out;
4407 }
4408
4409out:
4410 btrfs_free_path(path);
4411 free_ipath(ipath);
4412 kfree(ipa);
4413
4414 return ret;
4415}
4416
4417static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4418{
4419 struct btrfs_data_container *inodes = ctx;
4420 const size_t c = 3 * sizeof(u64);
4421
4422 if (inodes->bytes_left >= c) {
4423 inodes->bytes_left -= c;
4424 inodes->val[inodes->elem_cnt] = inum;
4425 inodes->val[inodes->elem_cnt + 1] = offset;
4426 inodes->val[inodes->elem_cnt + 2] = root;
4427 inodes->elem_cnt += 3;
4428 } else {
4429 inodes->bytes_missing += c - inodes->bytes_left;
4430 inodes->bytes_left = 0;
4431 inodes->elem_missed += 3;
4432 }
4433
4434 return 0;
4435}
4436
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004437static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004438 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004439{
4440 int ret = 0;
4441 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004442 struct btrfs_ioctl_logical_ino_args *loi;
4443 struct btrfs_data_container *inodes = NULL;
4444 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004445 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004446
4447 if (!capable(CAP_SYS_ADMIN))
4448 return -EPERM;
4449
4450 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304451 if (IS_ERR(loi))
4452 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004453
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004454 if (version == 1) {
4455 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004456 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004457 } else {
4458 /* All reserved bits must be 0 for now */
4459 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
4460 ret = -EINVAL;
4461 goto out_loi;
4462 }
4463 /* Only accept flags we have defined so far */
4464 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
4465 ret = -EINVAL;
4466 goto out_loi;
4467 }
4468 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004469 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004470 }
4471
Jan Schmidtd7728c92011-07-07 16:48:38 +02004472 path = btrfs_alloc_path();
4473 if (!path) {
4474 ret = -ENOMEM;
4475 goto out;
4476 }
4477
Jan Schmidtd7728c92011-07-07 16:48:38 +02004478 inodes = init_data_container(size);
4479 if (IS_ERR(inodes)) {
4480 ret = PTR_ERR(inodes);
4481 inodes = NULL;
4482 goto out;
4483 }
4484
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004485 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004486 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06004487 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004488 ret = -ENOENT;
4489 if (ret < 0)
4490 goto out;
4491
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004492 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4493 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004494 if (ret)
4495 ret = -EFAULT;
4496
4497out:
4498 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004499 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004500out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02004501 kfree(loi);
4502
4503 return ret;
4504}
4505
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004506void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004507 struct btrfs_ioctl_balance_args *bargs)
4508{
4509 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4510
4511 bargs->flags = bctl->flags;
4512
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004513 if (atomic_read(&fs_info->balance_running))
4514 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4515 if (atomic_read(&fs_info->balance_pause_req))
4516 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004517 if (atomic_read(&fs_info->balance_cancel_req))
4518 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004519
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004520 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4521 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4522 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004523
4524 if (lock) {
4525 spin_lock(&fs_info->balance_lock);
4526 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4527 spin_unlock(&fs_info->balance_lock);
4528 } else {
4529 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4530 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004531}
4532
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004533static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004534{
Al Viro496ad9a2013-01-23 17:07:38 -05004535 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004536 struct btrfs_fs_info *fs_info = root->fs_info;
4537 struct btrfs_ioctl_balance_args *bargs;
4538 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004539 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004540 int ret;
4541
4542 if (!capable(CAP_SYS_ADMIN))
4543 return -EPERM;
4544
Liu Boe54bfa312012-06-29 03:58:48 -06004545 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004546 if (ret)
4547 return ret;
4548
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004549again:
David Sterba171938e2017-03-28 14:44:21 +02004550 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004551 mutex_lock(&fs_info->volume_mutex);
4552 mutex_lock(&fs_info->balance_mutex);
4553 need_unlock = true;
4554 goto locked;
4555 }
4556
4557 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004558 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004559 * (1) some other op is running
4560 * (2) balance is running
4561 * (3) balance is paused -- special case (think resume)
4562 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004563 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004564 if (fs_info->balance_ctl) {
4565 /* this is either (2) or (3) */
4566 if (!atomic_read(&fs_info->balance_running)) {
4567 mutex_unlock(&fs_info->balance_mutex);
4568 if (!mutex_trylock(&fs_info->volume_mutex))
4569 goto again;
4570 mutex_lock(&fs_info->balance_mutex);
4571
4572 if (fs_info->balance_ctl &&
4573 !atomic_read(&fs_info->balance_running)) {
4574 /* this is (3) */
4575 need_unlock = false;
4576 goto locked;
4577 }
4578
4579 mutex_unlock(&fs_info->balance_mutex);
4580 mutex_unlock(&fs_info->volume_mutex);
4581 goto again;
4582 } else {
4583 /* this is (2) */
4584 mutex_unlock(&fs_info->balance_mutex);
4585 ret = -EINPROGRESS;
4586 goto out;
4587 }
4588 } else {
4589 /* this is (1) */
4590 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004591 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004592 goto out;
4593 }
4594
4595locked:
David Sterba171938e2017-03-28 14:44:21 +02004596 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004597
4598 if (arg) {
4599 bargs = memdup_user(arg, sizeof(*bargs));
4600 if (IS_ERR(bargs)) {
4601 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004602 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004603 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004604
4605 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4606 if (!fs_info->balance_ctl) {
4607 ret = -ENOTCONN;
4608 goto out_bargs;
4609 }
4610
4611 bctl = fs_info->balance_ctl;
4612 spin_lock(&fs_info->balance_lock);
4613 bctl->flags |= BTRFS_BALANCE_RESUME;
4614 spin_unlock(&fs_info->balance_lock);
4615
4616 goto do_balance;
4617 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004618 } else {
4619 bargs = NULL;
4620 }
4621
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004622 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004623 ret = -EINPROGRESS;
4624 goto out_bargs;
4625 }
4626
David Sterba8d2db782015-11-04 15:38:29 +01004627 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004628 if (!bctl) {
4629 ret = -ENOMEM;
4630 goto out_bargs;
4631 }
4632
4633 bctl->fs_info = fs_info;
4634 if (arg) {
4635 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4636 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4637 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4638
4639 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004640 } else {
4641 /* balance everything - no filters */
4642 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004643 }
4644
David Sterba8eb93452015-10-12 16:55:54 +02004645 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4646 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004647 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004648 }
4649
Ilya Dryomovde322262012-01-16 22:04:49 +02004650do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004651 /*
David Sterba171938e2017-03-28 14:44:21 +02004652 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004653 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4654 * or, if restriper was paused all the way until unmount, in
David Sterba171938e2017-03-28 14:44:21 +02004655 * free_fs_info. The flag is cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004656 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004657 need_unlock = false;
4658
4659 ret = btrfs_balance(bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004660 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004661
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004662 if (arg) {
4663 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4664 ret = -EFAULT;
4665 }
4666
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004667out_bctl:
4668 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004669out_bargs:
4670 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004671out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004672 mutex_unlock(&fs_info->balance_mutex);
4673 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004674 if (need_unlock)
David Sterba171938e2017-03-28 14:44:21 +02004675 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004676out:
Liu Boe54bfa312012-06-29 03:58:48 -06004677 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004678 return ret;
4679}
4680
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004681static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004682{
4683 if (!capable(CAP_SYS_ADMIN))
4684 return -EPERM;
4685
4686 switch (cmd) {
4687 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004688 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004689 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004690 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004691 }
4692
4693 return -EINVAL;
4694}
4695
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004696static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004697 void __user *arg)
4698{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004699 struct btrfs_ioctl_balance_args *bargs;
4700 int ret = 0;
4701
4702 if (!capable(CAP_SYS_ADMIN))
4703 return -EPERM;
4704
4705 mutex_lock(&fs_info->balance_mutex);
4706 if (!fs_info->balance_ctl) {
4707 ret = -ENOTCONN;
4708 goto out;
4709 }
4710
David Sterba8d2db782015-11-04 15:38:29 +01004711 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004712 if (!bargs) {
4713 ret = -ENOMEM;
4714 goto out;
4715 }
4716
4717 update_ioctl_balance_args(fs_info, 1, bargs);
4718
4719 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4720 ret = -EFAULT;
4721
4722 kfree(bargs);
4723out:
4724 mutex_unlock(&fs_info->balance_mutex);
4725 return ret;
4726}
4727
Miao Xie905b0dd2012-11-26 08:50:11 +00004728static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004729{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004730 struct inode *inode = file_inode(file);
4731 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004732 struct btrfs_ioctl_quota_ctl_args *sa;
4733 struct btrfs_trans_handle *trans = NULL;
4734 int ret;
4735 int err;
4736
4737 if (!capable(CAP_SYS_ADMIN))
4738 return -EPERM;
4739
Miao Xie905b0dd2012-11-26 08:50:11 +00004740 ret = mnt_want_write_file(file);
4741 if (ret)
4742 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004743
4744 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004745 if (IS_ERR(sa)) {
4746 ret = PTR_ERR(sa);
4747 goto drop_write;
4748 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004749
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004750 down_write(&fs_info->subvol_sem);
4751 trans = btrfs_start_transaction(fs_info->tree_root, 2);
Jan Schmidt2f232032013-04-25 16:04:51 +00004752 if (IS_ERR(trans)) {
4753 ret = PTR_ERR(trans);
4754 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004755 }
4756
4757 switch (sa->cmd) {
4758 case BTRFS_QUOTA_CTL_ENABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004759 ret = btrfs_quota_enable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004760 break;
4761 case BTRFS_QUOTA_CTL_DISABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004762 ret = btrfs_quota_disable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004763 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004764 default:
4765 ret = -EINVAL;
4766 break;
4767 }
4768
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004769 err = btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00004770 if (err && !ret)
4771 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004772out:
4773 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004774 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004775drop_write:
4776 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004777 return ret;
4778}
4779
Miao Xie905b0dd2012-11-26 08:50:11 +00004780static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004781{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004782 struct inode *inode = file_inode(file);
4783 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4784 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004785 struct btrfs_ioctl_qgroup_assign_args *sa;
4786 struct btrfs_trans_handle *trans;
4787 int ret;
4788 int err;
4789
4790 if (!capable(CAP_SYS_ADMIN))
4791 return -EPERM;
4792
Miao Xie905b0dd2012-11-26 08:50:11 +00004793 ret = mnt_want_write_file(file);
4794 if (ret)
4795 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004796
4797 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004798 if (IS_ERR(sa)) {
4799 ret = PTR_ERR(sa);
4800 goto drop_write;
4801 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004802
4803 trans = btrfs_join_transaction(root);
4804 if (IS_ERR(trans)) {
4805 ret = PTR_ERR(trans);
4806 goto out;
4807 }
4808
Arne Jansen5d13a372011-09-14 15:53:51 +02004809 if (sa->assign) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004810 ret = btrfs_add_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004811 sa->src, sa->dst);
4812 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004813 ret = btrfs_del_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004814 sa->src, sa->dst);
4815 }
4816
Qu Wenruoe082f562015-02-27 16:24:28 +08004817 /* update qgroup status and info */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004818 err = btrfs_run_qgroups(trans, fs_info);
Qu Wenruoe082f562015-02-27 16:24:28 +08004819 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004820 btrfs_handle_fs_error(fs_info, err,
4821 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004822 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004823 if (err && !ret)
4824 ret = err;
4825
4826out:
4827 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004828drop_write:
4829 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004830 return ret;
4831}
4832
Miao Xie905b0dd2012-11-26 08:50:11 +00004833static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004834{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004835 struct inode *inode = file_inode(file);
4836 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4837 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004838 struct btrfs_ioctl_qgroup_create_args *sa;
4839 struct btrfs_trans_handle *trans;
4840 int ret;
4841 int err;
4842
4843 if (!capable(CAP_SYS_ADMIN))
4844 return -EPERM;
4845
Miao Xie905b0dd2012-11-26 08:50:11 +00004846 ret = mnt_want_write_file(file);
4847 if (ret)
4848 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004849
4850 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004851 if (IS_ERR(sa)) {
4852 ret = PTR_ERR(sa);
4853 goto drop_write;
4854 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004855
Miao Xied86e56c2012-11-15 11:35:41 +00004856 if (!sa->qgroupid) {
4857 ret = -EINVAL;
4858 goto out;
4859 }
4860
Arne Jansen5d13a372011-09-14 15:53:51 +02004861 trans = btrfs_join_transaction(root);
4862 if (IS_ERR(trans)) {
4863 ret = PTR_ERR(trans);
4864 goto out;
4865 }
4866
Arne Jansen5d13a372011-09-14 15:53:51 +02004867 if (sa->create) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004868 ret = btrfs_create_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004869 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004870 ret = btrfs_remove_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004871 }
4872
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004873 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004874 if (err && !ret)
4875 ret = err;
4876
4877out:
4878 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004879drop_write:
4880 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004881 return ret;
4882}
4883
Miao Xie905b0dd2012-11-26 08:50:11 +00004884static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004885{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004886 struct inode *inode = file_inode(file);
4887 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4888 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004889 struct btrfs_ioctl_qgroup_limit_args *sa;
4890 struct btrfs_trans_handle *trans;
4891 int ret;
4892 int err;
4893 u64 qgroupid;
4894
4895 if (!capable(CAP_SYS_ADMIN))
4896 return -EPERM;
4897
Miao Xie905b0dd2012-11-26 08:50:11 +00004898 ret = mnt_want_write_file(file);
4899 if (ret)
4900 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004901
4902 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004903 if (IS_ERR(sa)) {
4904 ret = PTR_ERR(sa);
4905 goto drop_write;
4906 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004907
4908 trans = btrfs_join_transaction(root);
4909 if (IS_ERR(trans)) {
4910 ret = PTR_ERR(trans);
4911 goto out;
4912 }
4913
4914 qgroupid = sa->qgroupid;
4915 if (!qgroupid) {
4916 /* take the current subvol as qgroup */
4917 qgroupid = root->root_key.objectid;
4918 }
4919
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004920 ret = btrfs_limit_qgroup(trans, fs_info, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004921
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004922 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004923 if (err && !ret)
4924 ret = err;
4925
4926out:
4927 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004928drop_write:
4929 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004930 return ret;
4931}
4932
Jan Schmidt2f232032013-04-25 16:04:51 +00004933static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4934{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004935 struct inode *inode = file_inode(file);
4936 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004937 struct btrfs_ioctl_quota_rescan_args *qsa;
4938 int ret;
4939
4940 if (!capable(CAP_SYS_ADMIN))
4941 return -EPERM;
4942
4943 ret = mnt_want_write_file(file);
4944 if (ret)
4945 return ret;
4946
4947 qsa = memdup_user(arg, sizeof(*qsa));
4948 if (IS_ERR(qsa)) {
4949 ret = PTR_ERR(qsa);
4950 goto drop_write;
4951 }
4952
4953 if (qsa->flags) {
4954 ret = -EINVAL;
4955 goto out;
4956 }
4957
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004958 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00004959
4960out:
4961 kfree(qsa);
4962drop_write:
4963 mnt_drop_write_file(file);
4964 return ret;
4965}
4966
4967static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4968{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004969 struct inode *inode = file_inode(file);
4970 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004971 struct btrfs_ioctl_quota_rescan_args *qsa;
4972 int ret = 0;
4973
4974 if (!capable(CAP_SYS_ADMIN))
4975 return -EPERM;
4976
David Sterba8d2db782015-11-04 15:38:29 +01004977 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00004978 if (!qsa)
4979 return -ENOMEM;
4980
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004981 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00004982 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004983 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00004984 }
4985
4986 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4987 ret = -EFAULT;
4988
4989 kfree(qsa);
4990 return ret;
4991}
4992
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004993static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4994{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004995 struct inode *inode = file_inode(file);
4996 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004997
4998 if (!capable(CAP_SYS_ADMIN))
4999 return -EPERM;
5000
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005001 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005002}
5003
Hugo Millsabccd002014-01-30 20:17:00 +00005004static long _btrfs_ioctl_set_received_subvol(struct file *file,
5005 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02005006{
Al Viro496ad9a2013-01-23 17:07:38 -05005007 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005008 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02005009 struct btrfs_root *root = BTRFS_I(inode)->root;
5010 struct btrfs_root_item *root_item = &root->root_item;
5011 struct btrfs_trans_handle *trans;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005012 struct timespec ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02005013 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005014 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005015
David Sterbabd60ea02014-01-16 15:50:22 +01005016 if (!inode_owner_or_capable(inode))
5017 return -EPERM;
5018
Alexander Block8ea05e32012-07-25 17:35:53 +02005019 ret = mnt_want_write_file(file);
5020 if (ret < 0)
5021 return ret;
5022
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005023 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02005024
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005025 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02005026 ret = -EINVAL;
5027 goto out;
5028 }
5029
5030 if (btrfs_root_readonly(root)) {
5031 ret = -EROFS;
5032 goto out;
5033 }
5034
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005035 /*
5036 * 1 - root item
5037 * 2 - uuid items (received uuid + subvol uuid)
5038 */
5039 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005040 if (IS_ERR(trans)) {
5041 ret = PTR_ERR(trans);
5042 trans = NULL;
5043 goto out;
5044 }
5045
5046 sa->rtransid = trans->transid;
5047 sa->rtime.sec = ct.tv_sec;
5048 sa->rtime.nsec = ct.tv_nsec;
5049
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005050 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5051 BTRFS_UUID_SIZE);
5052 if (received_uuid_changed &&
Nikolay Borisovd87ff752018-03-12 14:48:09 +02005053 !btrfs_is_empty_uuid(root_item->received_uuid)) {
5054 ret = btrfs_uuid_tree_rem(trans, fs_info,
5055 root_item->received_uuid,
5056 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5057 root->root_key.objectid);
5058 if (ret && ret != -ENOENT) {
5059 btrfs_abort_transaction(trans, ret);
5060 btrfs_end_transaction(trans);
5061 goto out;
5062 }
5063 }
Alexander Block8ea05e32012-07-25 17:35:53 +02005064 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5065 btrfs_set_root_stransid(root_item, sa->stransid);
5066 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005067 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5068 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5069 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5070 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005071
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005072 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02005073 &root->root_key, &root->root_item);
5074 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005075 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005076 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005077 }
5078 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005079 ret = btrfs_uuid_tree_add(trans, fs_info, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005080 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5081 root->root_key.objectid);
5082 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005083 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03005084 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005085 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005086 }
5087 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005088 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00005089out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005090 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00005091 mnt_drop_write_file(file);
5092 return ret;
5093}
5094
5095#ifdef CONFIG_64BIT
5096static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5097 void __user *arg)
5098{
5099 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5100 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5101 int ret = 0;
5102
5103 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305104 if (IS_ERR(args32))
5105 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00005106
David Sterba8d2db782015-11-04 15:38:29 +01005107 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005108 if (!args64) {
5109 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005110 goto out;
5111 }
5112
5113 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5114 args64->stransid = args32->stransid;
5115 args64->rtransid = args32->rtransid;
5116 args64->stime.sec = args32->stime.sec;
5117 args64->stime.nsec = args32->stime.nsec;
5118 args64->rtime.sec = args32->rtime.sec;
5119 args64->rtime.nsec = args32->rtime.nsec;
5120 args64->flags = args32->flags;
5121
5122 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5123 if (ret)
5124 goto out;
5125
5126 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5127 args32->stransid = args64->stransid;
5128 args32->rtransid = args64->rtransid;
5129 args32->stime.sec = args64->stime.sec;
5130 args32->stime.nsec = args64->stime.nsec;
5131 args32->rtime.sec = args64->rtime.sec;
5132 args32->rtime.nsec = args64->rtime.nsec;
5133 args32->flags = args64->flags;
5134
5135 ret = copy_to_user(arg, args32, sizeof(*args32));
5136 if (ret)
5137 ret = -EFAULT;
5138
5139out:
5140 kfree(args32);
5141 kfree(args64);
5142 return ret;
5143}
5144#endif
5145
5146static long btrfs_ioctl_set_received_subvol(struct file *file,
5147 void __user *arg)
5148{
5149 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5150 int ret = 0;
5151
5152 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305153 if (IS_ERR(sa))
5154 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00005155
5156 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5157
5158 if (ret)
5159 goto out;
5160
Alexander Block8ea05e32012-07-25 17:35:53 +02005161 ret = copy_to_user(arg, sa, sizeof(*sa));
5162 if (ret)
5163 ret = -EFAULT;
5164
5165out:
5166 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005167 return ret;
5168}
5169
jeff.liu867ab662013-01-05 02:48:01 +00005170static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5171{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005172 struct inode *inode = file_inode(file);
5173 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005174 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005175 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005176 char label[BTRFS_LABEL_SIZE];
5177
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005178 spin_lock(&fs_info->super_lock);
5179 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5180 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005181
5182 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005183
5184 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005185 btrfs_warn(fs_info,
5186 "label is too long, return the first %zu bytes",
5187 --len);
jeff.liu867ab662013-01-05 02:48:01 +00005188 }
5189
jeff.liu867ab662013-01-05 02:48:01 +00005190 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005191
5192 return ret ? -EFAULT : 0;
5193}
5194
jeff.liua8bfd4a2013-01-05 02:48:08 +00005195static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5196{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005197 struct inode *inode = file_inode(file);
5198 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5199 struct btrfs_root *root = BTRFS_I(inode)->root;
5200 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005201 struct btrfs_trans_handle *trans;
5202 char label[BTRFS_LABEL_SIZE];
5203 int ret;
5204
5205 if (!capable(CAP_SYS_ADMIN))
5206 return -EPERM;
5207
5208 if (copy_from_user(label, arg, sizeof(label)))
5209 return -EFAULT;
5210
5211 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005212 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005213 "unable to set label with more than %d bytes",
5214 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005215 return -EINVAL;
5216 }
5217
5218 ret = mnt_want_write_file(file);
5219 if (ret)
5220 return ret;
5221
jeff.liua8bfd4a2013-01-05 02:48:08 +00005222 trans = btrfs_start_transaction(root, 0);
5223 if (IS_ERR(trans)) {
5224 ret = PTR_ERR(trans);
5225 goto out_unlock;
5226 }
5227
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005228 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005229 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005230 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005231 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005232
5233out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005234 mnt_drop_write_file(file);
5235 return ret;
5236}
5237
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005238#define INIT_FEATURE_FLAGS(suffix) \
5239 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5240 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5241 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5242
David Sterbad5131b62016-02-17 15:26:27 +01005243int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005244{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005245 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005246 INIT_FEATURE_FLAGS(SUPP),
5247 INIT_FEATURE_FLAGS(SAFE_SET),
5248 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5249 };
5250
5251 if (copy_to_user(arg, &features, sizeof(features)))
5252 return -EFAULT;
5253
5254 return 0;
5255}
5256
5257static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5258{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005259 struct inode *inode = file_inode(file);
5260 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5261 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005262 struct btrfs_ioctl_feature_flags features;
5263
5264 features.compat_flags = btrfs_super_compat_flags(super_block);
5265 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5266 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5267
5268 if (copy_to_user(arg, &features, sizeof(features)))
5269 return -EFAULT;
5270
5271 return 0;
5272}
5273
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005274static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005275 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005276 u64 change_mask, u64 flags, u64 supported_flags,
5277 u64 safe_set, u64 safe_clear)
5278{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005279 const char *type = btrfs_feature_set_names[set];
5280 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005281 u64 disallowed, unsupported;
5282 u64 set_mask = flags & change_mask;
5283 u64 clear_mask = ~flags & change_mask;
5284
5285 unsupported = set_mask & ~supported_flags;
5286 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005287 names = btrfs_printable_features(set, unsupported);
5288 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005289 btrfs_warn(fs_info,
5290 "this kernel does not support the %s feature bit%s",
5291 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005292 kfree(names);
5293 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005294 btrfs_warn(fs_info,
5295 "this kernel does not support %s bits 0x%llx",
5296 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005297 return -EOPNOTSUPP;
5298 }
5299
5300 disallowed = set_mask & ~safe_set;
5301 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005302 names = btrfs_printable_features(set, disallowed);
5303 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005304 btrfs_warn(fs_info,
5305 "can't set the %s feature bit%s while mounted",
5306 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005307 kfree(names);
5308 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005309 btrfs_warn(fs_info,
5310 "can't set %s bits 0x%llx while mounted",
5311 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005312 return -EPERM;
5313 }
5314
5315 disallowed = clear_mask & ~safe_clear;
5316 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005317 names = btrfs_printable_features(set, disallowed);
5318 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005319 btrfs_warn(fs_info,
5320 "can't clear the %s feature bit%s while mounted",
5321 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005322 kfree(names);
5323 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005324 btrfs_warn(fs_info,
5325 "can't clear %s bits 0x%llx while mounted",
5326 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005327 return -EPERM;
5328 }
5329
5330 return 0;
5331}
5332
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005333#define check_feature(fs_info, change_mask, flags, mask_base) \
5334check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005335 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5336 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5337 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5338
5339static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5340{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005341 struct inode *inode = file_inode(file);
5342 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5343 struct btrfs_root *root = BTRFS_I(inode)->root;
5344 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005345 struct btrfs_ioctl_feature_flags flags[2];
5346 struct btrfs_trans_handle *trans;
5347 u64 newflags;
5348 int ret;
5349
5350 if (!capable(CAP_SYS_ADMIN))
5351 return -EPERM;
5352
5353 if (copy_from_user(flags, arg, sizeof(flags)))
5354 return -EFAULT;
5355
5356 /* Nothing to do */
5357 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5358 !flags[0].incompat_flags)
5359 return 0;
5360
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005361 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005362 flags[1].compat_flags, COMPAT);
5363 if (ret)
5364 return ret;
5365
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005366 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005367 flags[1].compat_ro_flags, COMPAT_RO);
5368 if (ret)
5369 return ret;
5370
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005371 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005372 flags[1].incompat_flags, INCOMPAT);
5373 if (ret)
5374 return ret;
5375
David Sterba7ab19622016-05-04 11:32:00 +02005376 ret = mnt_want_write_file(file);
5377 if (ret)
5378 return ret;
5379
David Sterba8051aa12014-02-07 14:34:04 +01005380 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005381 if (IS_ERR(trans)) {
5382 ret = PTR_ERR(trans);
5383 goto out_drop_write;
5384 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005385
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005386 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005387 newflags = btrfs_super_compat_flags(super_block);
5388 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5389 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5390 btrfs_set_super_compat_flags(super_block, newflags);
5391
5392 newflags = btrfs_super_compat_ro_flags(super_block);
5393 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5394 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5395 btrfs_set_super_compat_ro_flags(super_block, newflags);
5396
5397 newflags = btrfs_super_incompat_flags(super_block);
5398 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5399 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5400 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005401 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005402
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005403 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02005404out_drop_write:
5405 mnt_drop_write_file(file);
5406
5407 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005408}
5409
Josef Bacik2351f432017-09-27 10:43:13 -04005410static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
5411{
5412 struct btrfs_ioctl_send_args *arg;
5413 int ret;
5414
5415 if (compat) {
5416#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5417 struct btrfs_ioctl_send_args_32 args32;
5418
5419 ret = copy_from_user(&args32, argp, sizeof(args32));
5420 if (ret)
5421 return -EFAULT;
5422 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
5423 if (!arg)
5424 return -ENOMEM;
5425 arg->send_fd = args32.send_fd;
5426 arg->clone_sources_count = args32.clone_sources_count;
5427 arg->clone_sources = compat_ptr(args32.clone_sources);
5428 arg->parent_root = args32.parent_root;
5429 arg->flags = args32.flags;
5430 memcpy(arg->reserved, args32.reserved,
5431 sizeof(args32.reserved));
5432#else
5433 return -ENOTTY;
5434#endif
5435 } else {
5436 arg = memdup_user(argp, sizeof(*arg));
5437 if (IS_ERR(arg))
5438 return PTR_ERR(arg);
5439 }
5440 ret = btrfs_ioctl_send(file, arg);
5441 kfree(arg);
5442 return ret;
5443}
5444
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005445long btrfs_ioctl(struct file *file, unsigned int
5446 cmd, unsigned long arg)
5447{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005448 struct inode *inode = file_inode(file);
5449 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5450 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005451 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005452
5453 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005454 case FS_IOC_GETFLAGS:
5455 return btrfs_ioctl_getflags(file, argp);
5456 case FS_IOC_SETFLAGS:
5457 return btrfs_ioctl_setflags(file, argp);
5458 case FS_IOC_GETVERSION:
5459 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005460 case FITRIM:
5461 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005462 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005463 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005464 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005465 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005466 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005467 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005468 case BTRFS_IOC_SUBVOL_CREATE_V2:
5469 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005470 case BTRFS_IOC_SNAP_DESTROY:
5471 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005472 case BTRFS_IOC_SUBVOL_GETFLAGS:
5473 return btrfs_ioctl_subvol_getflags(file, argp);
5474 case BTRFS_IOC_SUBVOL_SETFLAGS:
5475 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005476 case BTRFS_IOC_DEFAULT_SUBVOL:
5477 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005478 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005479 return btrfs_ioctl_defrag(file, NULL);
5480 case BTRFS_IOC_DEFRAG_RANGE:
5481 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005482 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005483 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005484 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005485 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005486 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005487 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005488 case BTRFS_IOC_RM_DEV_V2:
5489 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005490 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005491 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005492 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005493 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005494 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005495 return btrfs_ioctl_balance(file, NULL);
Chris Masonac8e9812010-02-28 15:39:26 -05005496 case BTRFS_IOC_TREE_SEARCH:
5497 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005498 case BTRFS_IOC_TREE_SEARCH_V2:
5499 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005500 case BTRFS_IOC_INO_LOOKUP:
5501 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005502 case BTRFS_IOC_INO_PATHS:
5503 return btrfs_ioctl_ino_to_path(root, argp);
5504 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04005505 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
5506 case BTRFS_IOC_LOGICAL_INO_V2:
5507 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00005508 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005509 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005510 case BTRFS_IOC_SYNC: {
5511 int ret;
5512
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005513 ret = btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005514 if (ret)
5515 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005516 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005517 /*
5518 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005519 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005520 * processing uncleaned subvols.
5521 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005522 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005523 return ret;
5524 }
Sage Weil46204592010-10-29 15:41:32 -04005525 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005526 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005527 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005528 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005529 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005530 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005531 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005532 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005533 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005534 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005535 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005536 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005537 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005538 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005539 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005540 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005541 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5542 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005543#ifdef CONFIG_64BIT
5544 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5545 return btrfs_ioctl_set_received_subvol_32(file, argp);
5546#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005547 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04005548 return _btrfs_ioctl_send(file, argp, false);
5549#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5550 case BTRFS_IOC_SEND_32:
5551 return _btrfs_ioctl_send(file, argp, true);
5552#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005553 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005554 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005555 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005556 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005557 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005558 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005559 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005560 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005561 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005562 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005563 case BTRFS_IOC_QUOTA_RESCAN:
5564 return btrfs_ioctl_quota_rescan(file, argp);
5565 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5566 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005567 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5568 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005569 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005570 return btrfs_ioctl_dev_replace(fs_info, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005571 case BTRFS_IOC_GET_FSLABEL:
5572 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005573 case BTRFS_IOC_SET_FSLABEL:
5574 return btrfs_ioctl_set_fslabel(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005575 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005576 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005577 case BTRFS_IOC_GET_FEATURES:
5578 return btrfs_ioctl_get_features(file, argp);
5579 case BTRFS_IOC_SET_FEATURES:
5580 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005581 }
5582
5583 return -ENOTTY;
5584}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005585
5586#ifdef CONFIG_COMPAT
5587long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5588{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005589 /*
5590 * These all access 32-bit values anyway so no further
5591 * handling is necessary.
5592 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005593 switch (cmd) {
5594 case FS_IOC32_GETFLAGS:
5595 cmd = FS_IOC_GETFLAGS;
5596 break;
5597 case FS_IOC32_SETFLAGS:
5598 cmd = FS_IOC_SETFLAGS;
5599 break;
5600 case FS_IOC32_GETVERSION:
5601 cmd = FS_IOC_GETVERSION;
5602 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005603 }
5604
5605 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5606}
5607#endif