blob: be5bd81b3669c9bda5bc5b38ba0c9dafb71bc883 [file] [log] [blame]
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/kernel.h>
20#include <linux/bio.h>
21#include <linux/buffer_head.h>
22#include <linux/file.h>
23#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040024#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040025#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040030#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040031#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040032#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040033#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include <linux/swap.h>
35#include <linux/writeback.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040036#include <linux/compat.h>
37#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040038#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040039#include <linux/xattr.h>
David Sterbaf54de062017-05-31 19:32:09 +020040#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000042#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020043#include <linux/uuid.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000044#include <linux/btrfs.h>
Mark Fasheh416161d2013-08-06 11:42:51 -070045#include <linux/uaccess.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040046#include "ctree.h"
47#include "disk-io.h"
48#include "transaction.h"
49#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040050#include "print-tree.h"
51#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040052#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080053#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020054#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040055#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020056#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010057#include "dev-replace.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000058#include "props.h"
Jeff Mahoney3b02a682013-11-01 13:07:02 -040059#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070060#include "qgroup.h"
Filipe Manana1ec9a1a2016-02-10 10:42:25 +000061#include "tree-log.h"
Anand Jainebb87652016-03-10 17:26:59 +080062#include "compression.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040063
Hugo Millsabccd002014-01-30 20:17:00 +000064#ifdef CONFIG_64BIT
65/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
66 * structures are incorrect, as the timespec structure from userspace
67 * is 4 bytes too small. We define these alternatives here to teach
68 * the kernel about the 32-bit struct packing.
69 */
70struct btrfs_ioctl_timespec_32 {
71 __u64 sec;
72 __u32 nsec;
73} __attribute__ ((__packed__));
74
75struct btrfs_ioctl_received_subvol_args_32 {
76 char uuid[BTRFS_UUID_SIZE]; /* in */
77 __u64 stransid; /* in */
78 __u64 rtransid; /* out */
79 struct btrfs_ioctl_timespec_32 stime; /* in */
80 struct btrfs_ioctl_timespec_32 rtime; /* out */
81 __u64 flags; /* in */
82 __u64 reserved[16]; /* in */
83} __attribute__ ((__packed__));
84
85#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
86 struct btrfs_ioctl_received_subvol_args_32)
87#endif
88
Josef Bacik2351f432017-09-27 10:43:13 -040089#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
90struct btrfs_ioctl_send_args_32 {
91 __s64 send_fd; /* in */
92 __u64 clone_sources_count; /* in */
93 compat_uptr_t clone_sources; /* in */
94 __u64 parent_root; /* in */
95 __u64 flags; /* in */
96 __u64 reserved[4]; /* in */
97} __attribute__ ((__packed__));
98
99#define BTRFS_IOC_SEND_32 _IOW(BTRFS_IOCTL_MAGIC, 38, \
100 struct btrfs_ioctl_send_args_32)
101#endif
Hugo Millsabccd002014-01-30 20:17:00 +0000102
Mark Fasheh416161d2013-08-06 11:42:51 -0700103static int btrfs_clone(struct inode *src, struct inode *inode,
Mark Fasheh1c919a52015-06-30 14:42:08 -0700104 u64 off, u64 olen, u64 olen_aligned, u64 destoff,
105 int no_time_update);
Mark Fasheh416161d2013-08-06 11:42:51 -0700106
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200107/* Mask out flags that are inappropriate for the given type of inode. */
108static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
109{
110 if (S_ISDIR(mode))
111 return flags;
112 else if (S_ISREG(mode))
113 return flags & ~FS_DIRSYNC_FL;
114 else
115 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
116}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400117
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200118/*
119 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
120 */
121static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
122{
123 unsigned int iflags = 0;
124
125 if (flags & BTRFS_INODE_SYNC)
126 iflags |= FS_SYNC_FL;
127 if (flags & BTRFS_INODE_IMMUTABLE)
128 iflags |= FS_IMMUTABLE_FL;
129 if (flags & BTRFS_INODE_APPEND)
130 iflags |= FS_APPEND_FL;
131 if (flags & BTRFS_INODE_NODUMP)
132 iflags |= FS_NODUMP_FL;
133 if (flags & BTRFS_INODE_NOATIME)
134 iflags |= FS_NOATIME_FL;
135 if (flags & BTRFS_INODE_DIRSYNC)
136 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000137 if (flags & BTRFS_INODE_NODATACOW)
138 iflags |= FS_NOCOW_FL;
139
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900140 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000141 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900142 else if (flags & BTRFS_INODE_COMPRESS)
143 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200144
145 return iflags;
146}
147
148/*
149 * Update inode->i_flags based on the btrfs internal flags.
150 */
151void btrfs_update_iflags(struct inode *inode)
152{
153 struct btrfs_inode *ip = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100154 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200155
156 if (ip->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100157 new_fl |= S_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200158 if (ip->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100159 new_fl |= S_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200160 if (ip->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100161 new_fl |= S_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200162 if (ip->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100163 new_fl |= S_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200164 if (ip->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100165 new_fl |= S_DIRSYNC;
166
167 set_mask_bits(&inode->i_flags,
168 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
169 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200170}
171
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200172static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
173{
Al Viro496ad9a2013-01-23 17:07:38 -0500174 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200175 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
176
177 if (copy_to_user(arg, &flags, sizeof(flags)))
178 return -EFAULT;
179 return 0;
180}
181
Liu Bo75e7cb72011-03-22 10:12:20 +0000182static int check_flags(unsigned int flags)
183{
184 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
185 FS_NOATIME_FL | FS_NODUMP_FL | \
186 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000187 FS_NOCOMP_FL | FS_COMPR_FL |
188 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000189 return -EOPNOTSUPP;
190
191 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
192 return -EINVAL;
193
Liu Bo75e7cb72011-03-22 10:12:20 +0000194 return 0;
195}
196
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200197static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
198{
Al Viro496ad9a2013-01-23 17:07:38 -0500199 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400200 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200201 struct btrfs_inode *ip = BTRFS_I(inode);
202 struct btrfs_root *root = ip->root;
203 struct btrfs_trans_handle *trans;
204 unsigned int flags, oldflags;
205 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800206 u64 ip_oldflags;
207 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600208 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200209
David Sterbabd60ea02014-01-16 15:50:22 +0100210 if (!inode_owner_or_capable(inode))
211 return -EPERM;
212
Li Zefanb83cc962010-12-20 16:04:08 +0800213 if (btrfs_root_readonly(root))
214 return -EROFS;
215
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200216 if (copy_from_user(&flags, arg, sizeof(flags)))
217 return -EFAULT;
218
Liu Bo75e7cb72011-03-22 10:12:20 +0000219 ret = check_flags(flags);
220 if (ret)
221 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200222
Jan Karae7848682012-06-12 16:20:32 +0200223 ret = mnt_want_write_file(file);
224 if (ret)
225 return ret;
226
Al Viro59551022016-01-22 15:40:57 -0500227 inode_lock(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200228
Li Zefanf062abf2011-12-29 13:36:45 +0800229 ip_oldflags = ip->flags;
230 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600231 mode = inode->i_mode;
Li Zefanf062abf2011-12-29 13:36:45 +0800232
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200233 flags = btrfs_mask_flags(inode->i_mode, flags);
234 oldflags = btrfs_flags_to_ioctl(ip->flags);
235 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
236 if (!capable(CAP_LINUX_IMMUTABLE)) {
237 ret = -EPERM;
238 goto out_unlock;
239 }
240 }
241
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200242 if (flags & FS_SYNC_FL)
243 ip->flags |= BTRFS_INODE_SYNC;
244 else
245 ip->flags &= ~BTRFS_INODE_SYNC;
246 if (flags & FS_IMMUTABLE_FL)
247 ip->flags |= BTRFS_INODE_IMMUTABLE;
248 else
249 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
250 if (flags & FS_APPEND_FL)
251 ip->flags |= BTRFS_INODE_APPEND;
252 else
253 ip->flags &= ~BTRFS_INODE_APPEND;
254 if (flags & FS_NODUMP_FL)
255 ip->flags |= BTRFS_INODE_NODUMP;
256 else
257 ip->flags &= ~BTRFS_INODE_NODUMP;
258 if (flags & FS_NOATIME_FL)
259 ip->flags |= BTRFS_INODE_NOATIME;
260 else
261 ip->flags &= ~BTRFS_INODE_NOATIME;
262 if (flags & FS_DIRSYNC_FL)
263 ip->flags |= BTRFS_INODE_DIRSYNC;
264 else
265 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600266 if (flags & FS_NOCOW_FL) {
267 if (S_ISREG(mode)) {
268 /*
269 * It's safe to turn csums off here, no extents exist.
270 * Otherwise we want the flag to reflect the real COW
271 * status of the file and will not set it.
272 */
273 if (inode->i_size == 0)
274 ip->flags |= BTRFS_INODE_NODATACOW
275 | BTRFS_INODE_NODATASUM;
276 } else {
277 ip->flags |= BTRFS_INODE_NODATACOW;
278 }
279 } else {
280 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400281 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600282 */
283 if (S_ISREG(mode)) {
284 if (inode->i_size == 0)
285 ip->flags &= ~(BTRFS_INODE_NODATACOW
286 | BTRFS_INODE_NODATASUM);
287 } else {
288 ip->flags &= ~BTRFS_INODE_NODATACOW;
289 }
290 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200291
Liu Bo75e7cb72011-03-22 10:12:20 +0000292 /*
293 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
294 * flag may be changed automatically if compression code won't make
295 * things smaller.
296 */
297 if (flags & FS_NOCOMP_FL) {
298 ip->flags &= ~BTRFS_INODE_COMPRESS;
299 ip->flags |= BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000300
301 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
302 if (ret && ret != -ENODATA)
303 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000304 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000305 const char *comp;
306
Liu Bo75e7cb72011-03-22 10:12:20 +0000307 ip->flags |= BTRFS_INODE_COMPRESS;
308 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000309
David Sterba93370502017-10-31 17:32:41 +0100310 comp = btrfs_compress_type2str(fs_info->compress_type);
311 if (!comp || comp[0] == 0)
312 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
313
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000314 ret = btrfs_set_prop(inode, "btrfs.compression",
315 comp, strlen(comp), 0);
316 if (ret)
317 goto out_drop;
318
Li Zefanebcb9042011-04-15 03:03:17 +0000319 } else {
Filipe Manana78a017a2014-09-11 11:44:49 +0100320 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
321 if (ret && ret != -ENODATA)
322 goto out_drop;
Li Zefanebcb9042011-04-15 03:03:17 +0000323 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000324 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200325
Li Zefan4da6f1a2011-12-29 13:39:50 +0800326 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800327 if (IS_ERR(trans)) {
328 ret = PTR_ERR(trans);
329 goto out_drop;
330 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200331
Li Zefan306424cc2011-12-14 20:12:02 -0500332 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400333 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700334 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200335 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200336
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400337 btrfs_end_transaction(trans);
Li Zefanf062abf2011-12-29 13:36:45 +0800338 out_drop:
339 if (ret) {
340 ip->flags = ip_oldflags;
341 inode->i_flags = i_oldflags;
342 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200343
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200344 out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500345 inode_unlock(inode);
Jan Karae7848682012-06-12 16:20:32 +0200346 mnt_drop_write_file(file);
liubo2d4e6f62011-02-24 09:38:16 +0000347 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200348}
349
350static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
351{
Al Viro496ad9a2013-01-23 17:07:38 -0500352 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200353
354 return put_user(inode->i_generation, arg);
355}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400356
Li Dongyangf7039b12011-03-24 10:24:28 +0000357static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
358{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400359 struct inode *inode = file_inode(file);
360 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000361 struct btrfs_device *device;
362 struct request_queue *q;
363 struct fstrim_range range;
364 u64 minlen = ULLONG_MAX;
365 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500366 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000367 int ret;
368
369 if (!capable(CAP_SYS_ADMIN))
370 return -EPERM;
371
Xiao Guangrong1f781602011-04-20 10:09:16 +0000372 rcu_read_lock();
373 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
374 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000375 if (!device->bdev)
376 continue;
377 q = bdev_get_queue(device->bdev);
378 if (blk_queue_discard(q)) {
379 num_devices++;
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100380 minlen = min_t(u64, q->limits.discard_granularity,
Li Dongyangf7039b12011-03-24 10:24:28 +0000381 minlen);
382 }
383 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000384 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200385
Li Dongyangf7039b12011-03-24 10:24:28 +0000386 if (!num_devices)
387 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000388 if (copy_from_user(&range, arg, sizeof(range)))
389 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000390 if (range.start > total_bytes ||
391 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200392 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000393
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200394 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000395 range.minlen = max(range.minlen, minlen);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400396 ret = btrfs_trim_fs(fs_info, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000397 if (ret < 0)
398 return ret;
399
400 if (copy_to_user(arg, &range, sizeof(range)))
401 return -EFAULT;
402
403 return 0;
404}
405
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200406int btrfs_is_empty_uuid(u8 *uuid)
407{
Chris Mason46e0f662013-11-15 12:14:55 +0100408 int i;
409
410 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
411 if (uuid[i])
412 return 0;
413 }
414 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200415}
416
Miao Xied5c12072013-02-28 10:04:33 +0000417static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400418 struct dentry *dentry,
David Sterba52f75f42017-02-14 18:33:53 +0100419 const char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200420 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000421 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400422{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400423 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400424 struct btrfs_trans_handle *trans;
425 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100426 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400427 struct btrfs_inode_item *inode_item;
428 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000429 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400430 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000431 struct btrfs_block_rsv block_rsv;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700432 struct timespec cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900433 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400434 int ret;
435 int err;
436 u64 objectid;
437 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500438 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000439 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200440 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400441
David Sterba49a3c4d2016-03-24 17:49:22 +0100442 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
443 if (!root_item)
444 return -ENOMEM;
445
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400446 ret = btrfs_find_free_objectid(fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400447 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100448 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000449
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800450 /*
451 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400452 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800453 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100454 if (btrfs_qgroup_level(objectid)) {
455 ret = -ENOSPC;
456 goto fail_free;
457 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800458
Miao Xied5c12072013-02-28 10:04:33 +0000459 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400460 /*
Miao Xied5c12072013-02-28 10:04:33 +0000461 * The same as the snapshot creation, please see the comment
462 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400463 */
Miao Xied5c12072013-02-28 10:04:33 +0000464 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200465 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000466 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100467 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400468
Miao Xied5c12072013-02-28 10:04:33 +0000469 trans = btrfs_start_transaction(root, 0);
470 if (IS_ERR(trans)) {
471 ret = PTR_ERR(trans);
David Sterba7775c812017-02-10 19:18:18 +0100472 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
David Sterba49a3c4d2016-03-24 17:49:22 +0100473 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000474 }
475 trans->block_rsv = &block_rsv;
476 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400477
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400478 ret = btrfs_qgroup_inherit(trans, fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200479 if (ret)
480 goto fail;
481
David Sterba4d75f8a2014-06-15 01:54:12 +0200482 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400483 if (IS_ERR(leaf)) {
484 ret = PTR_ERR(leaf);
485 goto fail;
486 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400487
David Sterbab159fa22016-11-08 18:09:03 +0100488 memzero_extent_buffer(leaf, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400489 btrfs_set_header_bytenr(leaf, leaf->start);
490 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400491 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400492 btrfs_set_header_owner(leaf, objectid);
493
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400494 write_extent_buffer_fsid(leaf, fs_info->fsid);
495 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400496 btrfs_mark_buffer_dirty(leaf);
497
David Sterba49a3c4d2016-03-24 17:49:22 +0100498 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800499 btrfs_set_stack_inode_generation(inode_item, 1);
500 btrfs_set_stack_inode_size(inode_item, 3);
501 btrfs_set_stack_inode_nlink(inode_item, 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400502 btrfs_set_stack_inode_nbytes(inode_item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400503 fs_info->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800504 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400505
David Sterba49a3c4d2016-03-24 17:49:22 +0100506 btrfs_set_root_flags(root_item, 0);
507 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800508 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000509
David Sterba49a3c4d2016-03-24 17:49:22 +0100510 btrfs_set_root_bytenr(root_item, leaf->start);
511 btrfs_set_root_generation(root_item, trans->transid);
512 btrfs_set_root_level(root_item, 0);
513 btrfs_set_root_refs(root_item, 1);
514 btrfs_set_root_used(root_item, leaf->len);
515 btrfs_set_root_last_snapshot(root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400516
David Sterba49a3c4d2016-03-24 17:49:22 +0100517 btrfs_set_root_generation_v2(root_item,
518 btrfs_root_generation(root_item));
Alexander Block8ea05e32012-07-25 17:35:53 +0200519 uuid_le_gen(&new_uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100520 memcpy(root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
521 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
522 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
523 root_item->ctime = root_item->otime;
524 btrfs_set_root_ctransid(root_item, trans->transid);
525 btrfs_set_root_otransid(root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400526
Chris Mason925baed2008-06-25 16:01:30 -0400527 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400528 free_extent_buffer(leaf);
529 leaf = NULL;
530
David Sterba49a3c4d2016-03-24 17:49:22 +0100531 btrfs_set_root_dirid(root_item, new_dirid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400532
533 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400534 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200535 key.type = BTRFS_ROOT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400536 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100537 root_item);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400538 if (ret)
539 goto fail;
540
Yan, Zheng76dda932009-09-21 16:00:26 -0400541 key.offset = (u64)-1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400542 new_root = btrfs_read_fs_root_no_name(fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100543 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100544 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400545 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100546 goto fail;
547 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400548
549 btrfs_record_root_in_trans(trans, new_root);
550
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000551 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700552 if (ret) {
553 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400554 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700555 goto fail;
556 }
557
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530558 mutex_lock(&new_root->objectid_mutex);
559 new_root->highest_objectid = new_dirid;
560 mutex_unlock(&new_root->objectid_mutex);
561
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400562 /*
563 * insert the directory item
564 */
Nikolay Borisov877574e2017-02-20 13:50:33 +0200565 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100566 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400567 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100568 goto fail;
569 }
Chris Mason3de45862008-11-17 21:02:50 -0500570
571 ret = btrfs_insert_dir_item(trans, root,
Nikolay Borisov8e7611c2017-02-20 13:50:31 +0200572 name, namelen, BTRFS_I(dir), &key,
Chris Mason3de45862008-11-17 21:02:50 -0500573 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100574 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400575 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400576 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100577 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500578
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200579 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
Yan Zheng52c26172009-01-05 15:43:43 -0500580 ret = btrfs_update_inode(trans, root, dir);
581 BUG_ON(ret);
582
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400583 ret = btrfs_add_root_ref(trans, fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400584 objectid, root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200585 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500586 BUG_ON(ret);
587
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400588 ret = btrfs_uuid_tree_add(trans, fs_info, root_item->uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400589 BTRFS_UUID_KEY_SUBVOL, objectid);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200590 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400591 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200592
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400593fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100594 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000595 trans->block_rsv = NULL;
596 trans->bytes_reserved = 0;
David Sterba7775c812017-02-10 19:18:18 +0100597 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Liu Bode6e8202014-01-09 14:57:06 +0800598
Sage Weil72fd0322010-10-29 15:41:32 -0400599 if (async_transid) {
600 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400601 err = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000602 if (err)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400603 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400604 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400605 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400606 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400607 if (err && !ret)
608 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500609
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900610 if (!ret) {
611 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800612 if (IS_ERR(inode))
613 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900614 d_instantiate(dentry, inode);
615 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400616 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100617
618fail_free:
619 kfree(root_item);
620 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400621}
622
Miao Xiee9662f72013-02-28 10:01:15 +0000623static int create_snapshot(struct btrfs_root *root, struct inode *dir,
David Sterba61d7e4c2017-02-10 19:54:06 +0100624 struct dentry *dentry,
Miao Xiee9662f72013-02-28 10:01:15 +0000625 u64 *async_transid, bool readonly,
626 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400627{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400628 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000629 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400630 struct btrfs_pending_snapshot *pending_snapshot;
631 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000632 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400633
Miao Xie27cdeb72014-04-02 19:51:05 +0800634 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400635 return -EINVAL;
636
David Sterba23269bf2017-02-13 11:03:44 +0100637 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100638 if (!pending_snapshot)
639 return -ENOMEM;
640
David Sterbab0c0ea62015-11-10 18:54:00 +0100641 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100642 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100643 pending_snapshot->path = btrfs_alloc_path();
644 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100645 ret = -ENOMEM;
646 goto free_pending;
647 }
648
David Sterbaea14b57f2017-06-22 02:19:11 +0200649 atomic_inc(&root->will_be_snapshotted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100650 smp_mb__after_atomic();
Liu Bo45bac0f2017-09-01 16:14:29 -0600651 /* wait for no snapshot writes */
652 wait_event(root->subv_writers->wait,
653 percpu_counter_sum(&root->subv_writers->counter) == 0);
Miao Xie8257b2d2014-03-06 13:38:19 +0800654
Miao Xie6a038432013-05-15 07:48:24 +0000655 ret = btrfs_start_delalloc_inodes(root, 0);
656 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100657 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000658
Chris Mason6374e57a2017-06-23 09:48:21 -0700659 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
Miao Xie6a038432013-05-15 07:48:24 +0000660
Miao Xie66d8f3d2012-09-06 04:02:28 -0600661 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
662 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000663 /*
664 * 1 - parent dir inode
665 * 2 - dir entries
666 * 1 - root item
667 * 2 - root ref/backref
668 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200669 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000670 */
671 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200672 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400673 &pending_snapshot->qgroup_reserved,
674 false);
Miao Xied5c12072013-02-28 10:04:33 +0000675 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100676 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000677
Yan, Zhenga22285a2010-05-16 10:48:46 -0400678 pending_snapshot->dentry = dentry;
679 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800680 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000681 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000682 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400683
Miao Xied5c12072013-02-28 10:04:33 +0000684 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400685 if (IS_ERR(trans)) {
686 ret = PTR_ERR(trans);
687 goto fail;
688 }
689
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400690 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400691 list_add(&pending_snapshot->list,
692 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400693 spin_unlock(&fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400694 if (async_transid) {
695 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400696 ret = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000697 if (ret)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400698 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400699 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400700 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400701 }
Miao Xieaec80302013-03-04 09:44:29 +0000702 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400703 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400704
705 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400706 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000707 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400708
Chris Masond3797302014-10-15 13:50:56 -0700709 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
710 if (ret)
711 goto fail;
712
David Howells2b0143b2015-03-17 22:25:59 +0000713 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000714 if (IS_ERR(inode)) {
715 ret = PTR_ERR(inode);
716 goto fail;
717 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900718
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000719 d_instantiate(dentry, inode);
720 ret = 0;
721fail:
David Sterba7775c812017-02-10 19:18:18 +0100722 btrfs_subvolume_release_metadata(fs_info, &pending_snapshot->block_rsv);
David Sterbaa1ee7362015-11-10 18:53:56 +0100723dec_and_free:
David Sterbaea14b57f2017-06-22 02:19:11 +0200724 if (atomic_dec_and_test(&root->will_be_snapshotted))
725 wake_up_atomic_t(&root->will_be_snapshotted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100726free_pending:
727 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100728 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100729 kfree(pending_snapshot);
730
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400731 return ret;
732}
733
Sage Weil4260f7c2010-10-29 15:46:43 -0400734/* copy of may_delete in fs/namei.c()
735 * Check whether we can remove a link victim from directory dir, check
736 * whether the type of victim is right.
737 * 1. We can't do it if dir is read-only (done in permission())
738 * 2. We should have write and exec permissions on dir
739 * 3. We can't remove anything from append-only dir
740 * 4. We can't do anything with immutable dir (done in permission())
741 * 5. If the sticky bit on dir is set we should either
742 * a. be owner of dir, or
743 * b. be owner of victim, or
744 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400745 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400746 * links pointing to it.
747 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
748 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
749 * 9. We can't remove a root or mountpoint.
750 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
751 * nfs_async_unlink().
752 */
753
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530754static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400755{
756 int error;
757
David Howells2b0143b2015-03-17 22:25:59 +0000758 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400759 return -ENOENT;
760
David Howells2b0143b2015-03-17 22:25:59 +0000761 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400762 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400763
764 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
765 if (error)
766 return error;
767 if (IS_APPEND(dir))
768 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000769 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
770 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400771 return -EPERM;
772 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000773 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400774 return -ENOTDIR;
775 if (IS_ROOT(victim))
776 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000777 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400778 return -EISDIR;
779 if (IS_DEADDIR(dir))
780 return -ENOENT;
781 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
782 return -EBUSY;
783 return 0;
784}
785
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400786/* copy of may_create in fs/namei.c() */
787static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
788{
David Howells2b0143b2015-03-17 22:25:59 +0000789 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400790 return -EEXIST;
791 if (IS_DEADDIR(dir))
792 return -ENOENT;
793 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
794}
795
796/*
797 * Create a new subvolume below @parent. This is largely modeled after
798 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
799 * inside this filesystem so it's quite a bit simpler.
800 */
Al Viro92872092016-11-20 19:34:31 -0500801static noinline int btrfs_mksubvol(const struct path *parent,
David Sterba52f75f42017-02-14 18:33:53 +0100802 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400803 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200804 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000805 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400806{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400807 struct inode *dir = d_inode(parent->dentry);
808 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400809 struct dentry *dentry;
810 int error;
811
Al Viro00235412016-05-26 00:05:12 -0400812 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
813 if (error == -EINTR)
814 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400815
816 dentry = lookup_one_len(name, parent->dentry, namelen);
817 error = PTR_ERR(dentry);
818 if (IS_ERR(dentry))
819 goto out_unlock;
820
Yan, Zheng76dda932009-09-21 16:00:26 -0400821 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400822 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600823 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400824
Chris Mason9c520572012-12-17 14:26:57 -0500825 /*
826 * even if this name doesn't exist, we may get hash collisions.
827 * check for them now when we can safely fail
828 */
829 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
830 dir->i_ino, name,
831 namelen);
832 if (error)
833 goto out_dput;
834
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400835 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400836
837 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
838 goto out_up_read;
839
Chris Mason3de45862008-11-17 21:02:50 -0500840 if (snap_src) {
David Sterba61d7e4c2017-02-10 19:54:06 +0100841 error = create_snapshot(snap_src, dir, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200842 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500843 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000844 error = create_subvol(dir, dentry, name, namelen,
845 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500846 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400847 if (!error)
848 fsnotify_mkdir(dir, dentry);
849out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400850 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400851out_dput:
852 dput(dentry);
853out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500854 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400855 return error;
856}
857
Chris Mason4cb53002011-05-24 15:35:30 -0400858/*
859 * When we're defragging a range, we don't want to kick it off again
860 * if it is really just waiting for delalloc to send it down.
861 * If we find a nice big extent or delalloc range for the bytes in the
862 * file you want to defrag, we return 0 to let you know to skip this
863 * part of the file
864 */
David Sterbaaab110a2014-07-29 17:32:10 +0200865static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400866{
867 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
868 struct extent_map *em = NULL;
869 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
870 u64 end;
871
872 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300873 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -0400874 read_unlock(&em_tree->lock);
875
876 if (em) {
877 end = extent_map_end(em);
878 free_extent_map(em);
879 if (end - offset > thresh)
880 return 0;
881 }
882 /* if we already have a nice delalloc here, just stop */
883 thresh /= 2;
884 end = count_range_bits(io_tree, &offset, offset + thresh,
885 thresh, EXTENT_DELALLOC, 1);
886 if (end >= thresh)
887 return 0;
888 return 1;
889}
890
891/*
892 * helper function to walk through a file and find extents
893 * newer than a specific transid, and smaller than thresh.
894 *
895 * This is used by the defragging code to find new and small
896 * extents
897 */
898static int find_new_extents(struct btrfs_root *root,
899 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200900 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400901{
902 struct btrfs_path *path;
903 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400904 struct extent_buffer *leaf;
905 struct btrfs_file_extent_item *extent;
906 int type;
907 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200908 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -0400909
910 path = btrfs_alloc_path();
911 if (!path)
912 return -ENOMEM;
913
David Sterbaa4689d22011-05-31 17:08:14 +0000914 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400915 min_key.type = BTRFS_EXTENT_DATA_KEY;
916 min_key.offset = *off;
917
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530918 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100919 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400920 if (ret != 0)
921 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000922process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000923 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400924 goto none;
925 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
926 goto none;
927
928 leaf = path->nodes[0];
929 extent = btrfs_item_ptr(leaf, path->slots[0],
930 struct btrfs_file_extent_item);
931
932 type = btrfs_file_extent_type(leaf, extent);
933 if (type == BTRFS_FILE_EXTENT_REG &&
934 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
935 check_defrag_in_cache(inode, min_key.offset, thresh)) {
936 *off = min_key.offset;
937 btrfs_free_path(path);
938 return 0;
939 }
940
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000941 path->slots[0]++;
942 if (path->slots[0] < btrfs_header_nritems(leaf)) {
943 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
944 goto process_slot;
945 }
946
Chris Mason4cb53002011-05-24 15:35:30 -0400947 if (min_key.offset == (u64)-1)
948 goto none;
949
950 min_key.offset++;
951 btrfs_release_path(path);
952 }
953none:
954 btrfs_free_path(path);
955 return -ENOENT;
956}
957
Li Zefan6c282eb2012-06-11 16:03:35 +0800958static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400959{
960 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500961 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800962 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300963 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500964
965 /*
966 * hopefully we have this extent in the tree already, try without
967 * the full extent lock
968 */
969 read_lock(&em_tree->lock);
970 em = lookup_extent_mapping(em_tree, start, len);
971 read_unlock(&em_tree->lock);
972
973 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000974 struct extent_state *cached = NULL;
975 u64 end = start + len - 1;
976
Chris Mason940100a2010-03-10 10:52:59 -0500977 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +0100978 lock_extent_bits(io_tree, start, end, &cached);
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +0200979 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +0000980 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -0500981
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000982 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800983 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500984 }
985
Li Zefan6c282eb2012-06-11 16:03:35 +0800986 return em;
987}
988
989static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
990{
991 struct extent_map *next;
992 bool ret = true;
993
994 /* this is the last extent */
995 if (em->start + em->len >= i_size_read(inode))
996 return false;
997
998 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -0700999 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1000 ret = false;
1001 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001002 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001003 ret = false;
1004
1005 free_extent_map(next);
1006 return ret;
1007}
1008
David Sterbaaab110a2014-07-29 17:32:10 +02001009static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001010 u64 *last_len, u64 *skip, u64 *defrag_end,
1011 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001012{
1013 struct extent_map *em;
1014 int ret = 1;
1015 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001016 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001017
1018 /*
1019 * make sure that once we start defragging an extent, we keep on
1020 * defragging it
1021 */
1022 if (start < *defrag_end)
1023 return 1;
1024
1025 *skip = 0;
1026
1027 em = defrag_lookup_extent(inode, start);
1028 if (!em)
1029 return 0;
1030
Chris Mason940100a2010-03-10 10:52:59 -05001031 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001032 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001033 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001034 goto out;
1035 }
1036
Liu Bo4a3560c2015-08-07 16:48:41 +08001037 if (!*defrag_end)
1038 prev_mergeable = false;
1039
Li Zefan6c282eb2012-06-11 16:03:35 +08001040 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001041 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001042 * we hit a real extent, if it is big or the next extent is not a
1043 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001044 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001045 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001046 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001047 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001048out:
Chris Mason940100a2010-03-10 10:52:59 -05001049 /*
1050 * last_len ends up being a counter of how many bytes we've defragged.
1051 * every time we choose not to defrag an extent, we reset *last_len
1052 * so that the next tiny extent will force a defrag.
1053 *
1054 * The end result of this is that tiny extents before a single big
1055 * extent will force at least part of that big extent to be defragged.
1056 */
1057 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001058 *defrag_end = extent_map_end(em);
1059 } else {
1060 *last_len = 0;
1061 *skip = extent_map_end(em);
1062 *defrag_end = 0;
1063 }
1064
1065 free_extent_map(em);
1066 return ret;
1067}
1068
Chris Mason4cb53002011-05-24 15:35:30 -04001069/*
1070 * it doesn't do much good to defrag one or two pages
1071 * at a time. This pulls in a nice chunk of pages
1072 * to COW and defrag.
1073 *
1074 * It also makes sure the delalloc code has enough
1075 * dirty data to avoid making new small extents as part
1076 * of the defrag
1077 *
1078 * It's a good idea to start RA on this range
1079 * before calling this.
1080 */
1081static int cluster_pages_for_defrag(struct inode *inode,
1082 struct page **pages,
1083 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001084 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001085{
Chris Mason4cb53002011-05-24 15:35:30 -04001086 unsigned long file_end;
1087 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001088 u64 page_start;
1089 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001090 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001091 int ret;
1092 int i;
1093 int i_done;
1094 struct btrfs_ordered_extent *ordered;
1095 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001096 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001097 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001098 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001099
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001100 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001101 if (!isize || start_index > file_end)
1102 return 0;
1103
1104 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001105
Qu Wenruo364ecf32017-02-27 15:10:38 +08001106 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001107 start_index << PAGE_SHIFT,
1108 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001109 if (ret)
1110 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001111 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001112 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001113
1114 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001115 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001116 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001117again:
Josef Bacika94733d2011-07-11 10:47:06 -04001118 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001119 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001120 if (!page)
1121 break;
1122
Miao Xie600a45e2012-02-16 15:01:24 +08001123 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001124 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001125 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001126 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001127 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001128 ordered = btrfs_lookup_ordered_extent(inode,
1129 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001130 unlock_extent_cached(tree, page_start, page_end,
1131 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001132 if (!ordered)
1133 break;
1134
1135 unlock_page(page);
1136 btrfs_start_ordered_extent(inode, ordered, 1);
1137 btrfs_put_ordered_extent(ordered);
1138 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001139 /*
1140 * we unlocked the page above, so we need check if
1141 * it was released or not.
1142 */
1143 if (page->mapping != inode->i_mapping) {
1144 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001145 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001146 goto again;
1147 }
Miao Xie600a45e2012-02-16 15:01:24 +08001148 }
1149
Chris Mason4cb53002011-05-24 15:35:30 -04001150 if (!PageUptodate(page)) {
1151 btrfs_readpage(NULL, page);
1152 lock_page(page);
1153 if (!PageUptodate(page)) {
1154 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001155 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001156 ret = -EIO;
1157 break;
1158 }
1159 }
Miao Xie600a45e2012-02-16 15:01:24 +08001160
Miao Xie600a45e2012-02-16 15:01:24 +08001161 if (page->mapping != inode->i_mapping) {
1162 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001163 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001164 goto again;
1165 }
1166
Chris Mason4cb53002011-05-24 15:35:30 -04001167 pages[i] = page;
1168 i_done++;
1169 }
1170 if (!i_done || ret)
1171 goto out;
1172
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001173 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001174 goto out;
1175
1176 /*
1177 * so now we have a nice long stream of locked
1178 * and up to date pages, lets wait on them
1179 */
1180 for (i = 0; i < i_done; i++)
1181 wait_on_page_writeback(pages[i]);
1182
1183 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001184 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001185
1186 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001187 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001188 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1189 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001190 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001191 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001192
Liu Bo1f12bd02012-03-29 09:57:44 -04001193 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001194 spin_lock(&BTRFS_I(inode)->lock);
1195 BTRFS_I(inode)->outstanding_extents++;
1196 spin_unlock(&BTRFS_I(inode)->lock);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001197 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001198 start_index << PAGE_SHIFT,
1199 (page_cnt - i_done) << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001200 }
1201
1202
Liu Bo9e8a4a82012-09-05 19:10:51 -06001203 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001204 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001205
1206 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1207 page_start, page_end - 1, &cached_state,
1208 GFP_NOFS);
1209
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 }
Josef Bacik8b62f872017-10-19 14:15:55 -04001218 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001219 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001220 return i_done;
1221out:
1222 for (i = 0; i < i_done; i++) {
1223 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001224 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001225 }
Qu Wenruobc42bda2017-02-27 15:10:39 +08001226 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001227 start_index << PAGE_SHIFT,
1228 page_cnt << PAGE_SHIFT);
Josef Bacik8b62f872017-10-19 14:15:55 -04001229 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001230 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001231 return ret;
1232
1233}
1234
1235int btrfs_defrag_file(struct inode *inode, struct file *file,
1236 struct btrfs_ioctl_defrag_range_args *range,
1237 u64 newer_than, unsigned long max_to_defrag)
1238{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001239 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001240 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001241 struct file_ra_state *ra = NULL;
1242 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001243 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001244 u64 last_len = 0;
1245 u64 skip = 0;
1246 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001247 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001248 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001249 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001250 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001251 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001252 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001253 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001254 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001255 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001256 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001257 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001258 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001259
Liu Bo0abd5b12013-04-16 09:20:28 +00001260 if (isize == 0)
1261 return 0;
1262
1263 if (range->start >= isize)
1264 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001265
David Sterba1e2ef462017-07-17 20:01:59 +02001266 if (do_compress) {
Li Zefan1a419d82010-10-25 15:12:50 +08001267 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1268 return -EINVAL;
1269 if (range->compress_type)
1270 compress_type = range->compress_type;
1271 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001272
Liu Bo0abd5b12013-04-16 09:20:28 +00001273 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001274 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001275
Chris Mason4cb53002011-05-24 15:35:30 -04001276 /*
David Sterba0a52d102017-06-22 03:22:58 +02001277 * If we were not given a file, allocate a readahead context. As
1278 * readahead is just an optimization, defrag will work without it so
1279 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001280 */
1281 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001282 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001283 if (ra)
1284 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001285 } else {
1286 ra = &file->f_ra;
1287 }
1288
David Sterba63e727e2017-06-22 03:13:02 +02001289 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001290 if (!pages) {
1291 ret = -ENOMEM;
1292 goto out_ra;
1293 }
1294
1295 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001296 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001297 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001298 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001299 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001300 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001301 }
1302
Chris Mason4cb53002011-05-24 15:35:30 -04001303 if (newer_than) {
1304 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001305 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001306 if (!ret) {
1307 range->start = newer_off;
1308 /*
1309 * we always align our defrag to help keep
1310 * the extents in the file evenly spaced
1311 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001312 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001313 } else
1314 goto out_ra;
1315 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001316 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001317 }
1318 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301319 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001320
Li Zefan2a0f7f52011-10-10 15:43:34 -04001321 /*
1322 * make writeback starts from i, so the defrag range can be
1323 * written sequentially.
1324 */
1325 if (i < inode->i_mapping->writeback_index)
1326 inode->i_mapping->writeback_index = i;
1327
Chris Masonf7f43cc2011-10-11 11:41:40 -04001328 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001329 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001330 /*
1331 * make sure we stop running if someone unmounts
1332 * the FS
1333 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001334 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001335 break;
1336
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001337 if (btrfs_defrag_cancelled(fs_info)) {
1338 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001339 ret = -EAGAIN;
1340 break;
1341 }
1342
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001343 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001344 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001345 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001346 unsigned long next;
1347 /*
1348 * the should_defrag function tells us how much to skip
1349 * bump our counter by the suggested amount
1350 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001351 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001352 i = max(i + 1, next);
1353 continue;
1354 }
Li Zefan008873e2011-09-02 15:57:07 +08001355
1356 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001357 cluster = (PAGE_ALIGN(defrag_end) >>
1358 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001359 cluster = min(cluster, max_cluster);
1360 } else {
1361 cluster = max_cluster;
1362 }
1363
Li Zefan008873e2011-09-02 15:57:07 +08001364 if (i + cluster > ra_index) {
1365 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001366 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001367 page_cache_sync_readahead(inode->i_mapping, ra,
1368 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301369 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001370 }
Chris Mason940100a2010-03-10 10:52:59 -05001371
Al Viro59551022016-01-22 15:40:57 -05001372 inode_lock(inode);
David Sterba1e2ef462017-07-17 20:01:59 +02001373 if (do_compress)
David Sterbaeec63c62017-07-17 19:41:31 +02001374 BTRFS_I(inode)->defrag_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001375 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001376 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001377 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001378 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001379 }
Chris Mason940100a2010-03-10 10:52:59 -05001380
Chris Mason4cb53002011-05-24 15:35:30 -04001381 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001382 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001383 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001384
1385 if (newer_than) {
1386 if (newer_off == (u64)-1)
1387 break;
1388
Liu Boe1f041e12012-03-29 09:57:45 -04001389 if (ret > 0)
1390 i += ret;
1391
Chris Mason4cb53002011-05-24 15:35:30 -04001392 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001393 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001394
Byongho Leeee221842015-12-15 01:42:10 +09001395 ret = find_new_extents(root, inode, newer_than,
1396 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001397 if (!ret) {
1398 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001399 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001400 } else {
1401 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001402 }
Chris Mason4cb53002011-05-24 15:35:30 -04001403 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001404 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001405 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001406 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001407 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001408 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001409 last_len = 0;
1410 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001411 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001412 }
1413
Filipe Mananadec8ef92014-03-01 10:55:54 +00001414 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001415 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001416 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1417 &BTRFS_I(inode)->runtime_flags))
1418 filemap_flush(inode->i_mapping);
1419 }
Chris Mason1e701a32010-03-11 09:42:04 -05001420
Li Zefan1a419d82010-10-25 15:12:50 +08001421 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001422 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
Nick Terrell5c1aab12017-08-09 19:39:02 -07001423 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1424 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
Li Zefan1a419d82010-10-25 15:12:50 +08001425 }
1426
Diego Calleja60ccf822011-09-01 16:33:57 +02001427 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001428
Chris Mason4cb53002011-05-24 15:35:30 -04001429out_ra:
David Sterba1e2ef462017-07-17 20:01:59 +02001430 if (do_compress) {
Al Viro59551022016-01-22 15:40:57 -05001431 inode_lock(inode);
David Sterbaeec63c62017-07-17 19:41:31 +02001432 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
Al Viro59551022016-01-22 15:40:57 -05001433 inode_unlock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001434 }
Chris Mason4cb53002011-05-24 15:35:30 -04001435 if (!file)
1436 kfree(ra);
1437 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001438 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001439}
1440
Miao Xie198605a2012-11-26 08:43:45 +00001441static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001442 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001443{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001444 struct inode *inode = file_inode(file);
1445 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001446 u64 new_size;
1447 u64 old_size;
1448 u64 devid = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001449 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001450 struct btrfs_ioctl_vol_args *vol_args;
1451 struct btrfs_trans_handle *trans;
1452 struct btrfs_device *device = NULL;
1453 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001454 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001455 char *devstr = NULL;
1456 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001457 int mod = 0;
1458
Chris Masone441d542009-01-05 16:57:23 -05001459 if (!capable(CAP_SYS_ADMIN))
1460 return -EPERM;
1461
Miao Xie198605a2012-11-26 08:43:45 +00001462 ret = mnt_want_write_file(file);
1463 if (ret)
1464 return ret;
1465
David Sterba171938e2017-03-28 14:44:21 +02001466 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Miao Xie97547672012-12-21 10:38:50 +00001467 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001468 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001469 }
1470
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001471 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001472 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001473 if (IS_ERR(vol_args)) {
1474 ret = PTR_ERR(vol_args);
1475 goto out;
1476 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001477
1478 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001479
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001480 sizestr = vol_args->name;
1481 devstr = strchr(sizestr, ':');
1482 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001483 sizestr = devstr + 1;
1484 *devstr = '\0';
1485 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001486 ret = kstrtoull(devstr, 10, &devid);
1487 if (ret)
1488 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001489 if (!devid) {
1490 ret = -EINVAL;
1491 goto out_free;
1492 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001493 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001494 }
Miao Xiedba60f32012-12-21 09:19:51 +00001495
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001496 device = btrfs_find_device(fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001497 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001498 btrfs_info(fs_info, "resizer unable to find device %llu",
1499 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001500 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001501 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001502 }
Miao Xiedba60f32012-12-21 09:19:51 +00001503
Anand Jainebbede42017-12-04 12:54:52 +08001504 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001505 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001506 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001507 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001508 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001509 goto out_free;
1510 }
1511
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001512 if (!strcmp(sizestr, "max"))
1513 new_size = device->bdev->bd_inode->i_size;
1514 else {
1515 if (sizestr[0] == '-') {
1516 mod = -1;
1517 sizestr++;
1518 } else if (sizestr[0] == '+') {
1519 mod = 1;
1520 sizestr++;
1521 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001522 new_size = memparse(sizestr, &retptr);
1523 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001524 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001525 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001526 }
1527 }
1528
Anand Jain401e29c2017-12-04 12:54:55 +08001529 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xiedfd79822012-12-21 09:21:30 +00001530 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001531 goto out_free;
1532 }
1533
Miao Xie7cc8e582014-09-03 21:35:38 +08001534 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001535
1536 if (mod < 0) {
1537 if (new_size > old_size) {
1538 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001539 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001540 }
1541 new_size = old_size - new_size;
1542 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001543 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001544 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001545 goto out_free;
1546 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001547 new_size = old_size + new_size;
1548 }
1549
Byongho Leeee221842015-12-15 01:42:10 +09001550 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001551 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001552 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001553 }
1554 if (new_size > device->bdev->bd_inode->i_size) {
1555 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001556 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001557 }
1558
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001559 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001560
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001561 btrfs_info_in_rcu(fs_info, "new size for %s is %llu",
1562 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001563
1564 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001565 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001566 if (IS_ERR(trans)) {
1567 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001568 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001569 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001570 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001571 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001572 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001573 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001574 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001575
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001576out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001577 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001578out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001579 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02001580 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001581 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001582 return ret;
1583}
1584
Sage Weil72fd0322010-10-29 15:41:32 -04001585static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
David Sterba52f75f42017-02-14 18:33:53 +01001586 const char *name, unsigned long fd, int subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001587 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001588 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001589{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001590 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001591 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001592
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001593 if (!S_ISDIR(file_inode(file)->i_mode))
1594 return -ENOTDIR;
1595
Liu Boa874a632012-06-29 03:58:46 -06001596 ret = mnt_want_write_file(file);
1597 if (ret)
1598 goto out;
1599
Sage Weil72fd0322010-10-29 15:41:32 -04001600 namelen = strlen(name);
1601 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001602 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001603 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001604 }
1605
Chris Mason16780ca2012-02-20 22:14:55 -05001606 if (name[0] == '.' &&
1607 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1608 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001609 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001610 }
1611
Chris Mason3de45862008-11-17 21:02:50 -05001612 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001613 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001614 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001615 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001616 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001617 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001618 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001619 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001620 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001621 }
1622
Al Viro496ad9a2013-01-23 17:07:38 -05001623 src_inode = file_inode(src.file);
1624 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001625 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001626 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001627 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001628 } else if (!inode_owner_or_capable(src_inode)) {
1629 /*
1630 * Subvolume creation is not restricted, but snapshots
1631 * are limited to own subvolumes only
1632 */
1633 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001634 } else {
1635 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1636 BTRFS_I(src_inode)->root,
1637 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001638 }
Al Viro2903ff02012-08-28 12:52:22 -04001639 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001640 }
Liu Boa874a632012-06-29 03:58:46 -06001641out_drop_write:
1642 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001643out:
Sage Weil72fd0322010-10-29 15:41:32 -04001644 return ret;
1645}
1646
1647static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001648 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001649{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001650 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001651 int ret;
1652
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001653 if (!S_ISDIR(file_inode(file)->i_mode))
1654 return -ENOTDIR;
1655
Li Zefanfa0d2b92010-12-20 15:53:28 +08001656 vol_args = memdup_user(arg, sizeof(*vol_args));
1657 if (IS_ERR(vol_args))
1658 return PTR_ERR(vol_args);
1659 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001660
Li Zefanfa0d2b92010-12-20 15:53:28 +08001661 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001662 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001663 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001664
Li Zefanfa0d2b92010-12-20 15:53:28 +08001665 kfree(vol_args);
1666 return ret;
1667}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001668
Li Zefanfa0d2b92010-12-20 15:53:28 +08001669static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1670 void __user *arg, int subvol)
1671{
1672 struct btrfs_ioctl_vol_args_v2 *vol_args;
1673 int ret;
1674 u64 transid = 0;
1675 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001676 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001677 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001678
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001679 if (!S_ISDIR(file_inode(file)->i_mode))
1680 return -ENOTDIR;
1681
Li Zefanfa0d2b92010-12-20 15:53:28 +08001682 vol_args = memdup_user(arg, sizeof(*vol_args));
1683 if (IS_ERR(vol_args))
1684 return PTR_ERR(vol_args);
1685 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001686
Li Zefanb83cc962010-12-20 16:04:08 +08001687 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001688 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1689 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001690 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001691 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001692 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001693
1694 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1695 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001696 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1697 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001698 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001699 if (vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001700 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001701 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001702 }
1703 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1704 if (IS_ERR(inherit)) {
1705 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001706 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001707 }
1708 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001709
1710 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001711 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001712 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001713 if (ret)
1714 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001715
Dan Carpenterc47ca322014-09-04 14:09:15 +03001716 if (ptr && copy_to_user(arg +
1717 offsetof(struct btrfs_ioctl_vol_args_v2,
1718 transid),
1719 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001720 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001721
1722free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001723 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001724free_args:
1725 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001726 return ret;
1727}
1728
Li Zefan0caa1022010-12-20 16:30:25 +08001729static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1730 void __user *arg)
1731{
Al Viro496ad9a2013-01-23 17:07:38 -05001732 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001733 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001734 struct btrfs_root *root = BTRFS_I(inode)->root;
1735 int ret = 0;
1736 u64 flags = 0;
1737
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001738 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001739 return -EINVAL;
1740
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001741 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001742 if (btrfs_root_readonly(root))
1743 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001744 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001745
1746 if (copy_to_user(arg, &flags, sizeof(flags)))
1747 ret = -EFAULT;
1748
1749 return ret;
1750}
1751
1752static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1753 void __user *arg)
1754{
Al Viro496ad9a2013-01-23 17:07:38 -05001755 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001756 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001757 struct btrfs_root *root = BTRFS_I(inode)->root;
1758 struct btrfs_trans_handle *trans;
1759 u64 root_flags;
1760 u64 flags;
1761 int ret = 0;
1762
David Sterbabd60ea02014-01-16 15:50:22 +01001763 if (!inode_owner_or_capable(inode))
1764 return -EPERM;
1765
Liu Bob9ca0662012-06-29 03:58:49 -06001766 ret = mnt_want_write_file(file);
1767 if (ret)
1768 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001769
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001770 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06001771 ret = -EINVAL;
1772 goto out_drop_write;
1773 }
Li Zefan0caa1022010-12-20 16:30:25 +08001774
Liu Bob9ca0662012-06-29 03:58:49 -06001775 if (copy_from_user(&flags, arg, sizeof(flags))) {
1776 ret = -EFAULT;
1777 goto out_drop_write;
1778 }
Li Zefan0caa1022010-12-20 16:30:25 +08001779
Liu Bob9ca0662012-06-29 03:58:49 -06001780 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1781 ret = -EINVAL;
1782 goto out_drop_write;
1783 }
Li Zefan0caa1022010-12-20 16:30:25 +08001784
Liu Bob9ca0662012-06-29 03:58:49 -06001785 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1786 ret = -EOPNOTSUPP;
1787 goto out_drop_write;
1788 }
Li Zefan0caa1022010-12-20 16:30:25 +08001789
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001790 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001791
1792 /* nothing to do */
1793 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001794 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001795
1796 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001797 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001798 btrfs_set_root_flags(&root->root_item,
1799 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001800 } else {
1801 /*
1802 * Block RO -> RW transition if this subvolume is involved in
1803 * send
1804 */
1805 spin_lock(&root->root_item_lock);
1806 if (root->send_in_progress == 0) {
1807 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001808 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001809 spin_unlock(&root->root_item_lock);
1810 } else {
1811 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001812 btrfs_warn(fs_info,
1813 "Attempt to set subvolume %llu read-write during send",
1814 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01001815 ret = -EPERM;
1816 goto out_drop_sem;
1817 }
1818 }
Li Zefan0caa1022010-12-20 16:30:25 +08001819
1820 trans = btrfs_start_transaction(root, 1);
1821 if (IS_ERR(trans)) {
1822 ret = PTR_ERR(trans);
1823 goto out_reset;
1824 }
1825
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001826 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001827 &root->root_key, &root->root_item);
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001828 if (ret < 0) {
1829 btrfs_end_transaction(trans);
1830 goto out_reset;
1831 }
Li Zefan0caa1022010-12-20 16:30:25 +08001832
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001833 ret = btrfs_commit_transaction(trans);
1834
Li Zefan0caa1022010-12-20 16:30:25 +08001835out_reset:
1836 if (ret)
1837 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001838out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001839 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001840out_drop_write:
1841 mnt_drop_write_file(file);
1842out:
Li Zefan0caa1022010-12-20 16:30:25 +08001843 return ret;
1844}
1845
Yan, Zheng76dda932009-09-21 16:00:26 -04001846/*
1847 * helper to check if the subvolume references other subvolumes
1848 */
1849static noinline int may_destroy_subvol(struct btrfs_root *root)
1850{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001851 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04001852 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001853 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001854 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001855 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001856 int ret;
1857
1858 path = btrfs_alloc_path();
1859 if (!path)
1860 return -ENOMEM;
1861
Josef Bacik175a2b82013-08-12 15:36:44 -04001862 /* Make sure this root isn't set as the default subvol */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001863 dir_id = btrfs_super_root_dir(fs_info->super_copy);
1864 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
Josef Bacik175a2b82013-08-12 15:36:44 -04001865 dir_id, "default", 7, 0);
1866 if (di && !IS_ERR(di)) {
1867 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1868 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001869 ret = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001870 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001871 "deleting default subvolume %llu is not allowed",
1872 key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001873 goto out;
1874 }
1875 btrfs_release_path(path);
1876 }
1877
Yan, Zheng76dda932009-09-21 16:00:26 -04001878 key.objectid = root->root_key.objectid;
1879 key.type = BTRFS_ROOT_REF_KEY;
1880 key.offset = (u64)-1;
1881
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001882 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001883 if (ret < 0)
1884 goto out;
1885 BUG_ON(ret == 0);
1886
1887 ret = 0;
1888 if (path->slots[0] > 0) {
1889 path->slots[0]--;
1890 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1891 if (key.objectid == root->root_key.objectid &&
1892 key.type == BTRFS_ROOT_REF_KEY)
1893 ret = -ENOTEMPTY;
1894 }
1895out:
1896 btrfs_free_path(path);
1897 return ret;
1898}
1899
Chris Masonac8e9812010-02-28 15:39:26 -05001900static noinline int key_in_sk(struct btrfs_key *key,
1901 struct btrfs_ioctl_search_key *sk)
1902{
Chris Masonabc6e132010-03-18 12:10:08 -04001903 struct btrfs_key test;
1904 int ret;
1905
1906 test.objectid = sk->min_objectid;
1907 test.type = sk->min_type;
1908 test.offset = sk->min_offset;
1909
1910 ret = btrfs_comp_cpu_keys(key, &test);
1911 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001912 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001913
1914 test.objectid = sk->max_objectid;
1915 test.type = sk->max_type;
1916 test.offset = sk->max_offset;
1917
1918 ret = btrfs_comp_cpu_keys(key, &test);
1919 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001920 return 0;
1921 return 1;
1922}
1923
Jeff Mahoneydf397562016-06-21 20:18:21 -04001924static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05001925 struct btrfs_key *key,
1926 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001927 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001928 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001929 unsigned long *sk_offset,
1930 int *num_found)
1931{
1932 u64 found_transid;
1933 struct extent_buffer *leaf;
1934 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001935 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001936 unsigned long item_off;
1937 unsigned long item_len;
1938 int nritems;
1939 int i;
1940 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001941 int ret = 0;
1942
1943 leaf = path->nodes[0];
1944 slot = path->slots[0];
1945 nritems = btrfs_header_nritems(leaf);
1946
1947 if (btrfs_header_generation(leaf) > sk->max_transid) {
1948 i = nritems;
1949 goto advance_key;
1950 }
1951 found_transid = btrfs_header_generation(leaf);
1952
1953 for (i = slot; i < nritems; i++) {
1954 item_off = btrfs_item_ptr_offset(leaf, i);
1955 item_len = btrfs_item_size_nr(leaf, i);
1956
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001957 btrfs_item_key_to_cpu(leaf, key, i);
1958 if (!key_in_sk(key, sk))
1959 continue;
1960
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001961 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001962 if (*num_found) {
1963 ret = 1;
1964 goto out;
1965 }
Chris Masonac8e9812010-02-28 15:39:26 -05001966
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001967 /*
1968 * return one empty item back for v1, which does not
1969 * handle -EOVERFLOW
1970 */
1971
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001972 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001973 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001974 ret = -EOVERFLOW;
1975 }
Chris Masonac8e9812010-02-28 15:39:26 -05001976
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001977 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001978 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001979 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001980 }
1981
Chris Masonac8e9812010-02-28 15:39:26 -05001982 sh.objectid = key->objectid;
1983 sh.offset = key->offset;
1984 sh.type = key->type;
1985 sh.len = item_len;
1986 sh.transid = found_transid;
1987
1988 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001989 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1990 ret = -EFAULT;
1991 goto out;
1992 }
1993
Chris Masonac8e9812010-02-28 15:39:26 -05001994 *sk_offset += sizeof(sh);
1995
1996 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001997 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05001998 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001999 if (read_extent_buffer_to_user(leaf, up,
2000 item_off, item_len)) {
2001 ret = -EFAULT;
2002 goto out;
2003 }
2004
Chris Masonac8e9812010-02-28 15:39:26 -05002005 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002006 }
Hugo Millse2156862011-05-14 17:43:41 +00002007 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002008
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002009 if (ret) /* -EOVERFLOW from above */
2010 goto out;
2011
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002012 if (*num_found >= sk->nr_items) {
2013 ret = 1;
2014 goto out;
2015 }
Chris Masonac8e9812010-02-28 15:39:26 -05002016 }
2017advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002018 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002019 test.objectid = sk->max_objectid;
2020 test.type = sk->max_type;
2021 test.offset = sk->max_offset;
2022 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2023 ret = 1;
2024 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002025 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002026 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002027 key->offset = 0;
2028 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002029 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002030 key->offset = 0;
2031 key->type = 0;
2032 key->objectid++;
2033 } else
2034 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002035out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002036 /*
2037 * 0: all items from this leaf copied, continue with next
2038 * 1: * more items can be copied, but unused buffer is too small
2039 * * all items were found
2040 * Either way, it will stops the loop which iterates to the next
2041 * leaf
2042 * -EOVERFLOW: item was to large for buffer
2043 * -EFAULT: could not copy extent buffer back to userspace
2044 */
Chris Masonac8e9812010-02-28 15:39:26 -05002045 return ret;
2046}
2047
2048static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002049 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002050 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002051 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002052{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002053 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05002054 struct btrfs_root *root;
2055 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002056 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002057 int ret;
2058 int num_found = 0;
2059 unsigned long sk_offset = 0;
2060
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002061 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2062 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002063 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002064 }
Gerhard Heift12544442014-01-30 16:23:58 +01002065
Chris Masonac8e9812010-02-28 15:39:26 -05002066 path = btrfs_alloc_path();
2067 if (!path)
2068 return -ENOMEM;
2069
2070 if (sk->tree_id == 0) {
2071 /* search the root of the inode that was passed */
2072 root = BTRFS_I(inode)->root;
2073 } else {
2074 key.objectid = sk->tree_id;
2075 key.type = BTRFS_ROOT_ITEM_KEY;
2076 key.offset = (u64)-1;
2077 root = btrfs_read_fs_root_no_name(info, &key);
2078 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002079 btrfs_free_path(path);
2080 return -ENOENT;
2081 }
2082 }
2083
2084 key.objectid = sk->min_objectid;
2085 key.type = sk->min_type;
2086 key.offset = sk->min_offset;
2087
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302088 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002089 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002090 if (ret != 0) {
2091 if (ret > 0)
2092 ret = 0;
2093 goto err;
2094 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002095 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002096 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002097 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002098 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002099 break;
2100
2101 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002102 if (ret > 0)
2103 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002104err:
2105 sk->nr_items = num_found;
2106 btrfs_free_path(path);
2107 return ret;
2108}
2109
2110static noinline int btrfs_ioctl_tree_search(struct file *file,
2111 void __user *argp)
2112{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002113 struct btrfs_ioctl_search_args __user *uargs;
2114 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002115 struct inode *inode;
2116 int ret;
2117 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002118
2119 if (!capable(CAP_SYS_ADMIN))
2120 return -EPERM;
2121
Gerhard Heiftba346b32014-01-30 16:24:02 +01002122 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002123
Gerhard Heiftba346b32014-01-30 16:24:02 +01002124 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2125 return -EFAULT;
2126
2127 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002128
Al Viro496ad9a2013-01-23 17:07:38 -05002129 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002130 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002131
2132 /*
2133 * In the origin implementation an overflow is handled by returning a
2134 * search header with a len of zero, so reset ret.
2135 */
2136 if (ret == -EOVERFLOW)
2137 ret = 0;
2138
Gerhard Heiftba346b32014-01-30 16:24:02 +01002139 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002140 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002141 return ret;
2142}
2143
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002144static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2145 void __user *argp)
2146{
2147 struct btrfs_ioctl_search_args_v2 __user *uarg;
2148 struct btrfs_ioctl_search_args_v2 args;
2149 struct inode *inode;
2150 int ret;
2151 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002152 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002153
2154 if (!capable(CAP_SYS_ADMIN))
2155 return -EPERM;
2156
2157 /* copy search header and buffer size */
2158 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2159 if (copy_from_user(&args, uarg, sizeof(args)))
2160 return -EFAULT;
2161
2162 buf_size = args.buf_size;
2163
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002164 /* limit result size to 16MB */
2165 if (buf_size > buf_limit)
2166 buf_size = buf_limit;
2167
2168 inode = file_inode(file);
2169 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002170 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002171 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2172 ret = -EFAULT;
2173 else if (ret == -EOVERFLOW &&
2174 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2175 ret = -EFAULT;
2176
Yan, Zheng76dda932009-09-21 16:00:26 -04002177 return ret;
2178}
2179
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002180/*
Chris Masonac8e9812010-02-28 15:39:26 -05002181 * Search INODE_REFs to identify path name of 'dirid' directory
2182 * in a 'tree_id' tree. and sets path name to 'name'.
2183 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002184static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2185 u64 tree_id, u64 dirid, char *name)
2186{
2187 struct btrfs_root *root;
2188 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002189 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002190 int ret = -1;
2191 int slot;
2192 int len;
2193 int total_len = 0;
2194 struct btrfs_inode_ref *iref;
2195 struct extent_buffer *l;
2196 struct btrfs_path *path;
2197
2198 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2199 name[0]='\0';
2200 return 0;
2201 }
2202
2203 path = btrfs_alloc_path();
2204 if (!path)
2205 return -ENOMEM;
2206
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002207 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002208
2209 key.objectid = tree_id;
2210 key.type = BTRFS_ROOT_ITEM_KEY;
2211 key.offset = (u64)-1;
2212 root = btrfs_read_fs_root_no_name(info, &key);
2213 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002214 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002215 ret = -ENOENT;
2216 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002217 }
2218
2219 key.objectid = dirid;
2220 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002221 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002222
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302223 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002224 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2225 if (ret < 0)
2226 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002227 else if (ret > 0) {
2228 ret = btrfs_previous_item(root, path, dirid,
2229 BTRFS_INODE_REF_KEY);
2230 if (ret < 0)
2231 goto out;
2232 else if (ret > 0) {
2233 ret = -ENOENT;
2234 goto out;
2235 }
2236 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002237
2238 l = path->nodes[0];
2239 slot = path->slots[0];
2240 btrfs_item_key_to_cpu(l, &key, slot);
2241
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002242 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2243 len = btrfs_inode_ref_name_len(l, iref);
2244 ptr -= len + 1;
2245 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002246 if (ptr < name) {
2247 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002248 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002249 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002250
2251 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302252 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002253
2254 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2255 break;
2256
David Sterbab3b4aa72011-04-21 01:20:15 +02002257 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002258 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002259 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002260 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002261 }
Li Zefan77906a502011-07-14 03:16:00 +00002262 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302263 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002264 ret = 0;
2265out:
2266 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002267 return ret;
2268}
2269
2270static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2271 void __user *argp)
2272{
2273 struct btrfs_ioctl_ino_lookup_args *args;
2274 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002275 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002276
Julia Lawall2354d082010-10-29 15:14:18 -04002277 args = memdup_user(argp, sizeof(*args));
2278 if (IS_ERR(args))
2279 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002280
Al Viro496ad9a2013-01-23 17:07:38 -05002281 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002282
David Sterba01b810b2015-05-12 19:14:49 +02002283 /*
2284 * Unprivileged query to obtain the containing subvolume root id. The
2285 * path is reset so it's consistent with btrfs_search_path_in_tree.
2286 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002287 if (args->treeid == 0)
2288 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2289
David Sterba01b810b2015-05-12 19:14:49 +02002290 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2291 args->name[0] = 0;
2292 goto out;
2293 }
2294
2295 if (!capable(CAP_SYS_ADMIN)) {
2296 ret = -EPERM;
2297 goto out;
2298 }
2299
Chris Masonac8e9812010-02-28 15:39:26 -05002300 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2301 args->treeid, args->objectid,
2302 args->name);
2303
David Sterba01b810b2015-05-12 19:14:49 +02002304out:
Chris Masonac8e9812010-02-28 15:39:26 -05002305 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2306 ret = -EFAULT;
2307
2308 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002309 return ret;
2310}
2311
Yan, Zheng76dda932009-09-21 16:00:26 -04002312static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2313 void __user *arg)
2314{
Al Viro54563d42013-09-01 15:57:51 -04002315 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002316 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002317 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002318 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002319 struct inode *inode;
2320 struct btrfs_root *root = BTRFS_I(dir)->root;
2321 struct btrfs_root *dest = NULL;
2322 struct btrfs_ioctl_vol_args *vol_args;
2323 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002324 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002325 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002326 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002327 int namelen;
2328 int ret;
2329 int err = 0;
2330
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002331 if (!S_ISDIR(dir->i_mode))
2332 return -ENOTDIR;
2333
Yan, Zheng76dda932009-09-21 16:00:26 -04002334 vol_args = memdup_user(arg, sizeof(*vol_args));
2335 if (IS_ERR(vol_args))
2336 return PTR_ERR(vol_args);
2337
2338 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2339 namelen = strlen(vol_args->name);
2340 if (strchr(vol_args->name, '/') ||
2341 strncmp(vol_args->name, "..", namelen) == 0) {
2342 err = -EINVAL;
2343 goto out;
2344 }
2345
Al Viroa561be72011-11-23 11:57:51 -05002346 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002347 if (err)
2348 goto out;
2349
David Sterba521e0542014-04-15 16:41:44 +02002350
Al Viro00235412016-05-26 00:05:12 -04002351 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2352 if (err == -EINTR)
2353 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002354 dentry = lookup_one_len(vol_args->name, parent, namelen);
2355 if (IS_ERR(dentry)) {
2356 err = PTR_ERR(dentry);
2357 goto out_unlock_dir;
2358 }
2359
David Howells2b0143b2015-03-17 22:25:59 +00002360 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002361 err = -ENOENT;
2362 goto out_dput;
2363 }
2364
David Howells2b0143b2015-03-17 22:25:59 +00002365 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002366 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302367 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002368 /*
2369 * Regular user. Only allow this with a special mount
2370 * option, when the user has write+exec access to the
2371 * subvol root, and when rmdir(2) would have been
2372 * allowed.
2373 *
2374 * Note that this is _not_ check that the subvol is
2375 * empty or doesn't contain data that we wouldn't
2376 * otherwise be able to delete.
2377 *
2378 * Users who want to delete empty subvols should try
2379 * rmdir(2).
2380 */
2381 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002382 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002383 goto out_dput;
2384
2385 /*
2386 * Do not allow deletion if the parent dir is the same
2387 * as the dir to be deleted. That means the ioctl
2388 * must be called on the dentry referencing the root
2389 * of the subvol, not a random directory contained
2390 * within it.
2391 */
2392 err = -EINVAL;
2393 if (root == dest)
2394 goto out_dput;
2395
2396 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2397 if (err)
2398 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002399 }
2400
Miao Xie5c39da52012-10-22 11:39:53 +00002401 /* check if subvolume may be deleted by a user */
2402 err = btrfs_may_delete(dir, dentry, 1);
2403 if (err)
2404 goto out_dput;
2405
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002406 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002407 err = -EINVAL;
2408 goto out_dput;
2409 }
2410
Al Viro59551022016-01-22 15:40:57 -05002411 inode_lock(inode);
David Sterba521e0542014-04-15 16:41:44 +02002412
2413 /*
2414 * Don't allow to delete a subvolume with send in progress. This is
2415 * inside the i_mutex so the error handling that has to drop the bit
2416 * again is not run concurrently.
2417 */
2418 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002419 root_flags = btrfs_root_flags(&dest->root_item);
2420 if (dest->send_in_progress == 0) {
2421 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002422 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2423 spin_unlock(&dest->root_item_lock);
2424 } else {
2425 spin_unlock(&dest->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002426 btrfs_warn(fs_info,
2427 "Attempt to delete subvolume %llu during send",
2428 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002429 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002430 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002431 }
2432
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002433 down_write(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -04002434
2435 err = may_destroy_subvol(dest);
2436 if (err)
2437 goto out_up_write;
2438
Miao Xiec58aaad2013-02-28 10:05:36 +00002439 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2440 /*
2441 * One for dir inode, two for dir entries, two for root
2442 * ref/backref.
2443 */
2444 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002445 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002446 if (err)
2447 goto out_up_write;
2448
Yan, Zhenga22285a2010-05-16 10:48:46 -04002449 trans = btrfs_start_transaction(root, 0);
2450 if (IS_ERR(trans)) {
2451 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002452 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002453 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002454 trans->block_rsv = &block_rsv;
2455 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002456
Nikolay Borisov43663552017-01-18 00:31:29 +02002457 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
Filipe Manana2be63d52016-02-12 11:34:23 +00002458
Yan, Zheng76dda932009-09-21 16:00:26 -04002459 ret = btrfs_unlink_subvol(trans, root, dir,
2460 dest->root_key.objectid,
2461 dentry->d_name.name,
2462 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002463 if (ret) {
2464 err = ret;
Jeff Mahoney66642832016-06-10 18:19:25 -04002465 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002466 goto out_end_trans;
2467 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002468
2469 btrfs_record_root_in_trans(trans, dest);
2470
2471 memset(&dest->root_item.drop_progress, 0,
2472 sizeof(dest->root_item.drop_progress));
2473 dest->root_item.drop_level = 0;
2474 btrfs_set_root_refs(&dest->root_item, 0);
2475
Miao Xie27cdeb72014-04-02 19:51:05 +08002476 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002477 ret = btrfs_insert_orphan_item(trans,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002478 fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04002479 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002480 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002481 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002482 err = ret;
2483 goto out_end_trans;
2484 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002485 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002486
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002487 ret = btrfs_uuid_tree_rem(trans, fs_info, dest->root_item.uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002488 BTRFS_UUID_KEY_SUBVOL,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002489 dest->root_key.objectid);
2490 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002491 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002492 err = ret;
2493 goto out_end_trans;
2494 }
2495 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002496 ret = btrfs_uuid_tree_rem(trans, fs_info,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002497 dest->root_item.received_uuid,
2498 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2499 dest->root_key.objectid);
2500 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002501 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002502 err = ret;
2503 goto out_end_trans;
2504 }
2505 }
2506
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002507out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002508 trans->block_rsv = NULL;
2509 trans->bytes_reserved = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002510 ret = btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002511 if (ret && !err)
2512 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002513 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002514out_release:
David Sterba7775c812017-02-10 19:18:18 +01002515 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Yan, Zheng76dda932009-09-21 16:00:26 -04002516out_up_write:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002517 up_write(&fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002518 if (err) {
2519 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002520 root_flags = btrfs_root_flags(&dest->root_item);
2521 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002522 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2523 spin_unlock(&dest->root_item_lock);
2524 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002525out_unlock_inode:
Al Viro59551022016-01-22 15:40:57 -05002526 inode_unlock(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04002527 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002528 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002529 btrfs_invalidate_inodes(dest);
2530 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002531 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002532
2533 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002534 if (dest->ino_cache_inode) {
2535 iput(dest->ino_cache_inode);
2536 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002537 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002538 }
2539out_dput:
2540 dput(dentry);
2541out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002542 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002543out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002544 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002545out:
2546 kfree(vol_args);
2547 return err;
2548}
2549
Chris Mason1e701a32010-03-11 09:42:04 -05002550static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002551{
Al Viro496ad9a2013-01-23 17:07:38 -05002552 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002553 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002554 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002555 int ret;
2556
Ilya Dryomov25122d12013-01-20 15:57:57 +02002557 ret = mnt_want_write_file(file);
2558 if (ret)
2559 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002560
Ilya Dryomov25122d12013-01-20 15:57:57 +02002561 if (btrfs_root_readonly(root)) {
2562 ret = -EROFS;
2563 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002564 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002565
2566 switch (inode->i_mode & S_IFMT) {
2567 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002568 if (!capable(CAP_SYS_ADMIN)) {
2569 ret = -EPERM;
2570 goto out;
2571 }
Eric Sandeende78b512013-01-31 18:21:12 +00002572 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002573 break;
2574 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002575 if (!(file->f_mode & FMODE_WRITE)) {
2576 ret = -EINVAL;
2577 goto out;
2578 }
Chris Mason1e701a32010-03-11 09:42:04 -05002579
2580 range = kzalloc(sizeof(*range), GFP_KERNEL);
2581 if (!range) {
2582 ret = -ENOMEM;
2583 goto out;
2584 }
2585
2586 if (argp) {
2587 if (copy_from_user(range, argp,
2588 sizeof(*range))) {
2589 ret = -EFAULT;
2590 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002591 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002592 }
2593 /* compression requires us to start the IO */
2594 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2595 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2596 range->extent_thresh = (u32)-1;
2597 }
2598 } else {
2599 /* the rest are all set to zero by kzalloc */
2600 range->len = (u64)-1;
2601 }
Al Viro496ad9a2013-01-23 17:07:38 -05002602 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002603 range, 0, 0);
2604 if (ret > 0)
2605 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002606 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002607 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002608 default:
2609 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002610 }
Chris Masone441d542009-01-05 16:57:23 -05002611out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002612 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002613 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002614}
2615
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002616static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002617{
2618 struct btrfs_ioctl_vol_args *vol_args;
2619 int ret;
2620
Chris Masone441d542009-01-05 16:57:23 -05002621 if (!capable(CAP_SYS_ADMIN))
2622 return -EPERM;
2623
David Sterba171938e2017-03-28 14:44:21 +02002624 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
Anand Jaine57138b2013-08-21 11:44:48 +08002625 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002626
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002627 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002628 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002629 if (IS_ERR(vol_args)) {
2630 ret = PTR_ERR(vol_args);
2631 goto out;
2632 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002633
Mark Fasheh5516e592008-07-24 12:20:14 -04002634 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002635 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002636
Anand Jain43d20762014-07-01 00:58:56 +08002637 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002638 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08002639
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002640 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002641out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002642 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002643 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002644 return ret;
2645}
2646
Anand Jain6b526ed2016-02-13 10:01:39 +08002647static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002648{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002649 struct inode *inode = file_inode(file);
2650 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08002651 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002652 int ret;
2653
Chris Masone441d542009-01-05 16:57:23 -05002654 if (!capable(CAP_SYS_ADMIN))
2655 return -EPERM;
2656
Miao Xieda249272012-11-26 08:44:50 +00002657 ret = mnt_want_write_file(file);
2658 if (ret)
2659 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002660
Li Zefandae7b662009-04-08 15:06:54 +08002661 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002662 if (IS_ERR(vol_args)) {
2663 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002664 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002665 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002666
Anand Jain6b526ed2016-02-13 10:01:39 +08002667 /* Check for compatibility reject unknown flags */
David Sterba735654e2016-02-15 18:15:21 +01002668 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED)
2669 return -EOPNOTSUPP;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002670
David Sterba171938e2017-03-28 14:44:21 +02002671 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jain183860f2013-05-17 10:52:45 +00002672 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2673 goto out;
2674 }
2675
David Sterba735654e2016-02-15 18:15:21 +01002676 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002677 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08002678 } else {
2679 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002680 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08002681 }
David Sterba171938e2017-03-28 14:44:21 +02002682 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain183860f2013-05-17 10:52:45 +00002683
Anand Jain6b526ed2016-02-13 10:01:39 +08002684 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01002685 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002686 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08002687 vol_args->devid);
2688 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002689 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08002690 vol_args->name);
2691 }
Anand Jain183860f2013-05-17 10:52:45 +00002692out:
2693 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002694err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002695 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002696 return ret;
2697}
2698
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002699static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2700{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002701 struct inode *inode = file_inode(file);
2702 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002703 struct btrfs_ioctl_vol_args *vol_args;
2704 int ret;
2705
2706 if (!capable(CAP_SYS_ADMIN))
2707 return -EPERM;
2708
2709 ret = mnt_want_write_file(file);
2710 if (ret)
2711 return ret;
2712
David Sterba171938e2017-03-28 14:44:21 +02002713 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002714 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02002715 goto out_drop_write;
2716 }
2717
2718 vol_args = memdup_user(arg, sizeof(*vol_args));
2719 if (IS_ERR(vol_args)) {
2720 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002721 goto out;
2722 }
2723
David Sterba58d7bbf2016-05-04 14:10:47 +02002724 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002725 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002726
2727 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002728 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002729 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02002730out:
David Sterba171938e2017-03-28 14:44:21 +02002731 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
David Sterba58d7bbf2016-05-04 14:10:47 +02002732out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002733 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02002734
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002735 return ret;
2736}
2737
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002738static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
2739 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002740{
Li Zefan027ed2f2011-06-08 08:27:56 +00002741 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002742 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002743 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002744 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002745
Li Zefan027ed2f2011-06-08 08:27:56 +00002746 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2747 if (!fi_args)
2748 return -ENOMEM;
2749
David Sterbad03262c2017-06-16 00:09:21 +02002750 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00002751 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01002752
David Sterbad03262c2017-06-16 00:09:21 +02002753 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002754 if (device->devid > fi_args->max_id)
2755 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002756 }
David Sterbad03262c2017-06-16 00:09:21 +02002757 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002758
David Sterbad03262c2017-06-16 00:09:21 +02002759 memcpy(&fi_args->fsid, fs_info->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07002760 fi_args->nodesize = fs_info->nodesize;
2761 fi_args->sectorsize = fs_info->sectorsize;
2762 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02002763
Li Zefan027ed2f2011-06-08 08:27:56 +00002764 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2765 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002766
Li Zefan027ed2f2011-06-08 08:27:56 +00002767 kfree(fi_args);
2768 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002769}
2770
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002771static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
2772 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002773{
2774 struct btrfs_ioctl_dev_info_args *di_args;
2775 struct btrfs_device *dev;
Jan Schmidt475f6382011-03-11 15:41:01 +01002776 int ret = 0;
2777 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002778
Jan Schmidt475f6382011-03-11 15:41:01 +01002779 di_args = memdup_user(arg, sizeof(*di_args));
2780 if (IS_ERR(di_args))
2781 return PTR_ERR(di_args);
2782
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002783 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002784 s_uuid = di_args->uuid;
2785
David Sterbac5593ca2017-06-16 00:09:21 +02002786 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002787 dev = btrfs_find_device(fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002788
2789 if (!dev) {
2790 ret = -ENODEV;
2791 goto out;
2792 }
2793
2794 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002795 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2796 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002797 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002798 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002799 struct rcu_string *name;
2800
Josef Bacik606686e2012-06-04 14:03:51 -04002801 name = rcu_dereference(dev->name);
2802 strncpy(di_args->path, name->str, sizeof(di_args->path));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002803 di_args->path[sizeof(di_args->path) - 1] = 0;
2804 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002805 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002806 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002807
2808out:
David Sterbac5593ca2017-06-16 00:09:21 +02002809 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002810 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2811 ret = -EFAULT;
2812
2813 kfree(di_args);
2814 return ret;
2815}
2816
Mark Fashehf4414602015-06-30 14:42:05 -07002817static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002818{
2819 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002820
Mark Fasheh416161d2013-08-06 11:42:51 -07002821 page = grab_cache_page(inode->i_mapping, index);
2822 if (!page)
Filipe Manana31314002016-01-27 18:37:47 +00002823 return ERR_PTR(-ENOMEM);
Mark Fasheh416161d2013-08-06 11:42:51 -07002824
2825 if (!PageUptodate(page)) {
Filipe Manana31314002016-01-27 18:37:47 +00002826 int ret;
2827
2828 ret = btrfs_readpage(NULL, page);
2829 if (ret)
2830 return ERR_PTR(ret);
Mark Fasheh416161d2013-08-06 11:42:51 -07002831 lock_page(page);
2832 if (!PageUptodate(page)) {
2833 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002834 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002835 return ERR_PTR(-EIO);
2836 }
2837 if (page->mapping != inode->i_mapping) {
2838 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002839 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002840 return ERR_PTR(-EAGAIN);
Mark Fasheh416161d2013-08-06 11:42:51 -07002841 }
2842 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002843
2844 return page;
2845}
2846
Mark Fashehf4414602015-06-30 14:42:05 -07002847static int gather_extent_pages(struct inode *inode, struct page **pages,
2848 int num_pages, u64 off)
2849{
2850 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002851 pgoff_t index = off >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002852
2853 for (i = 0; i < num_pages; i++) {
Filipe Manana31314002016-01-27 18:37:47 +00002854again:
Mark Fashehf4414602015-06-30 14:42:05 -07002855 pages[i] = extent_same_get_page(inode, index + i);
Filipe Manana31314002016-01-27 18:37:47 +00002856 if (IS_ERR(pages[i])) {
2857 int err = PTR_ERR(pages[i]);
2858
2859 if (err == -EAGAIN)
2860 goto again;
2861 pages[i] = NULL;
2862 return err;
2863 }
Mark Fashehf4414602015-06-30 14:42:05 -07002864 }
2865 return 0;
2866}
2867
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002868static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2869 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002870{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002871 /*
2872 * Do any pending delalloc/csum calculations on inode, one way or
2873 * another, and lock file content.
2874 * The locking order is:
2875 *
2876 * 1) pages
2877 * 2) range in the inode's io tree
2878 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002879 while (1) {
2880 struct btrfs_ordered_extent *ordered;
2881 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2882 ordered = btrfs_lookup_first_ordered_extent(inode,
2883 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002884 if ((!ordered ||
2885 ordered->file_offset + ordered->len <= off ||
2886 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002887 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002888 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2889 if (ordered)
2890 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002891 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002892 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002893 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2894 if (ordered)
2895 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002896 if (!retry_range_locking)
2897 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002898 btrfs_wait_ordered_range(inode, off, len);
2899 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002900 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002901}
2902
Mark Fashehf4414602015-06-30 14:42:05 -07002903static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002904{
Al Viro59551022016-01-22 15:40:57 -05002905 inode_unlock(inode1);
2906 inode_unlock(inode2);
Mark Fasheh416161d2013-08-06 11:42:51 -07002907}
2908
Mark Fashehf4414602015-06-30 14:42:05 -07002909static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2910{
2911 if (inode1 < inode2)
2912 swap(inode1, inode2);
2913
Al Viro59551022016-01-22 15:40:57 -05002914 inode_lock_nested(inode1, I_MUTEX_PARENT);
2915 inode_lock_nested(inode2, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002916}
2917
2918static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2919 struct inode *inode2, u64 loff2, u64 len)
2920{
2921 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2922 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2923}
2924
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002925static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2926 struct inode *inode2, u64 loff2, u64 len,
2927 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002928{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002929 int ret;
2930
Mark Fasheh416161d2013-08-06 11:42:51 -07002931 if (inode1 < inode2) {
2932 swap(inode1, inode2);
2933 swap(loff1, loff2);
2934 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002935 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2936 if (ret)
2937 return ret;
2938 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2939 if (ret)
2940 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2941 loff1 + len - 1);
2942 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002943}
2944
2945struct cmp_pages {
2946 int num_pages;
2947 struct page **src_pages;
2948 struct page **dst_pages;
2949};
2950
2951static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2952{
2953 int i;
2954 struct page *pg;
2955
2956 for (i = 0; i < cmp->num_pages; i++) {
2957 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002958 if (pg) {
2959 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002960 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002961 }
Mark Fashehf4414602015-06-30 14:42:05 -07002962 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002963 if (pg) {
2964 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002965 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002966 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002967 }
Mark Fashehf4414602015-06-30 14:42:05 -07002968 kfree(cmp->src_pages);
2969 kfree(cmp->dst_pages);
2970}
2971
2972static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2973 struct inode *dst, u64 dst_loff,
2974 u64 len, struct cmp_pages *cmp)
2975{
2976 int ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002977 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002978 struct page **src_pgarr, **dst_pgarr;
2979
2980 /*
2981 * We must gather up all the pages before we initiate our
2982 * extent locking. We use an array for the page pointers. Size
2983 * of the array is bounded by len, which is in turn bounded by
2984 * BTRFS_MAX_DEDUPE_LEN.
2985 */
David Sterba66722f72016-02-11 15:01:38 +01002986 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
2987 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
Mark Fashehf4414602015-06-30 14:42:05 -07002988 if (!src_pgarr || !dst_pgarr) {
2989 kfree(src_pgarr);
2990 kfree(dst_pgarr);
2991 return -ENOMEM;
2992 }
2993 cmp->num_pages = num_pages;
2994 cmp->src_pages = src_pgarr;
2995 cmp->dst_pages = dst_pgarr;
2996
Filipe Mananab1517622017-02-21 17:14:52 +00002997 /*
2998 * If deduping ranges in the same inode, locking rules make it mandatory
2999 * to always lock pages in ascending order to avoid deadlocks with
3000 * concurrent tasks (such as starting writeback/delalloc).
3001 */
3002 if (src == dst && dst_loff < loff) {
3003 swap(src_pgarr, dst_pgarr);
3004 swap(loff, dst_loff);
3005 }
3006
3007 ret = gather_extent_pages(src, src_pgarr, cmp->num_pages, loff);
Mark Fashehf4414602015-06-30 14:42:05 -07003008 if (ret)
3009 goto out;
3010
Filipe Mananab1517622017-02-21 17:14:52 +00003011 ret = gather_extent_pages(dst, dst_pgarr, cmp->num_pages, dst_loff);
Mark Fashehf4414602015-06-30 14:42:05 -07003012
3013out:
3014 if (ret)
3015 btrfs_cmp_data_free(cmp);
Naohiro Aota78ad4ce2017-09-08 17:48:55 +09003016 return ret;
Mark Fasheh416161d2013-08-06 11:42:51 -07003017}
3018
David Sterba1a287cf2017-02-10 20:15:10 +01003019static int btrfs_cmp_data(u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003020{
3021 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07003022 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07003023 struct page *src_page, *dst_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003024 unsigned int cmp_len = PAGE_SIZE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003025 void *addr, *dst_addr;
3026
Mark Fashehf4414602015-06-30 14:42:05 -07003027 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003028 while (len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003029 if (len < PAGE_SIZE)
Mark Fasheh416161d2013-08-06 11:42:51 -07003030 cmp_len = len;
3031
Mark Fashehf4414602015-06-30 14:42:05 -07003032 BUG_ON(i >= cmp->num_pages);
3033
3034 src_page = cmp->src_pages[i];
3035 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003036 ASSERT(PageLocked(src_page));
3037 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07003038
Mark Fasheh416161d2013-08-06 11:42:51 -07003039 addr = kmap_atomic(src_page);
3040 dst_addr = kmap_atomic(dst_page);
3041
3042 flush_dcache_page(src_page);
3043 flush_dcache_page(dst_page);
3044
3045 if (memcmp(addr, dst_addr, cmp_len))
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003046 ret = -EBADE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003047
3048 kunmap_atomic(addr);
3049 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07003050
3051 if (ret)
3052 break;
3053
Mark Fasheh416161d2013-08-06 11:42:51 -07003054 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07003055 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07003056 }
3057
3058 return ret;
3059}
3060
Mark Fashehe1d227a2015-06-08 15:05:25 -07003061static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
3062 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07003063{
Mark Fashehe1d227a2015-06-08 15:05:25 -07003064 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003065 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
3066
Mark Fashehe1d227a2015-06-08 15:05:25 -07003067 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07003068 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003069
3070 /* if we extend to eof, continue to block boundary */
3071 if (off + len == inode->i_size)
3072 *plen = len = ALIGN(inode->i_size, bs) - off;
3073
Mark Fasheh416161d2013-08-06 11:42:51 -07003074 /* Check that we are block aligned - btrfs_clone() requires this */
3075 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
3076 return -EINVAL;
3077
3078 return 0;
3079}
3080
Mark Fashehe1d227a2015-06-08 15:05:25 -07003081static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07003082 struct inode *dst, u64 dst_loff)
3083{
3084 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003085 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07003086 struct cmp_pages cmp;
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003087 bool same_inode = (src == dst);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003088 u64 same_lock_start = 0;
3089 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003090
Filipe Manana113e8282015-03-30 18:26:47 +01003091 if (len == 0)
3092 return 0;
3093
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003094 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003095 inode_lock(src);
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003096 else
3097 btrfs_double_inode_lock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003098
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003099 ret = extent_same_check_offsets(src, loff, &len, olen);
3100 if (ret)
3101 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07003102
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003103 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3104 if (ret)
3105 goto out_unlock;
3106
3107 if (same_inode) {
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003108 /*
3109 * Single inode case wants the same checks, except we
3110 * don't want our length pushed out past i_size as
3111 * comparing that data range makes no sense.
3112 *
3113 * extent_same_check_offsets() will do this for an
3114 * unaligned length at i_size, so catch it here and
3115 * reject the request.
3116 *
3117 * This effectively means we require aligned extents
3118 * for the single-inode case, whereas the other cases
3119 * allow an unaligned length so long as it ends at
3120 * i_size.
3121 */
3122 if (len != olen) {
3123 ret = -EINVAL;
3124 goto out_unlock;
3125 }
3126
3127 /* Check for overlapping ranges */
3128 if (dst_loff + len > loff && dst_loff < loff + len) {
3129 ret = -EINVAL;
3130 goto out_unlock;
3131 }
3132
3133 same_lock_start = min_t(u64, loff, dst_loff);
3134 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003135 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003136
3137 /* don't make the dst file partly checksummed */
3138 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3139 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3140 ret = -EINVAL;
3141 goto out_unlock;
3142 }
3143
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003144again:
Mark Fashehf4414602015-06-30 14:42:05 -07003145 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3146 if (ret)
3147 goto out_unlock;
3148
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003149 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003150 ret = lock_extent_range(src, same_lock_start, same_lock_len,
3151 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003152 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003153 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
3154 false);
3155 /*
3156 * If one of the inodes has dirty pages in the respective range or
3157 * ordered extents, we need to flush dellaloc and wait for all ordered
3158 * extents in the range. We must unlock the pages and the ranges in the
3159 * io trees to avoid deadlocks when flushing delalloc (requires locking
3160 * pages) and when waiting for ordered extents to complete (they require
3161 * range locking).
3162 */
3163 if (ret == -EAGAIN) {
3164 /*
3165 * Ranges in the io trees already unlocked. Now unlock all
3166 * pages before waiting for all IO to complete.
3167 */
3168 btrfs_cmp_data_free(&cmp);
3169 if (same_inode) {
3170 btrfs_wait_ordered_range(src, same_lock_start,
3171 same_lock_len);
3172 } else {
3173 btrfs_wait_ordered_range(src, loff, len);
3174 btrfs_wait_ordered_range(dst, dst_loff, len);
3175 }
3176 goto again;
3177 }
3178 ASSERT(ret == 0);
3179 if (WARN_ON(ret)) {
3180 /* ranges in the io trees already unlocked */
3181 btrfs_cmp_data_free(&cmp);
3182 return ret;
3183 }
Mark Fashehf4414602015-06-30 14:42:05 -07003184
Mark Fasheh207910d2015-06-30 14:42:04 -07003185 /* pass original length for comparison so we stay within i_size */
David Sterba1a287cf2017-02-10 20:15:10 +01003186 ret = btrfs_cmp_data(olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003187 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003188 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003189
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003190 if (same_inode)
3191 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3192 same_lock_start + same_lock_len - 1);
3193 else
3194 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003195
3196 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003197out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003198 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003199 inode_unlock(src);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003200 else
3201 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003202
3203 return ret;
3204}
3205
Byongho Leeee221842015-12-15 01:42:10 +09003206#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003207
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003208ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3209 struct file *dst_file, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003210{
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003211 struct inode *src = file_inode(src_file);
3212 struct inode *dst = file_inode(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003213 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003214 ssize_t res;
Mark Fasheh416161d2013-08-06 11:42:51 -07003215
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003216 if (olen > BTRFS_MAX_DEDUPE_LEN)
3217 olen = BTRFS_MAX_DEDUPE_LEN;
Mark Fasheh416161d2013-08-06 11:42:51 -07003218
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003219 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003220 /*
3221 * Btrfs does not support blocksize < page_size. As a
3222 * result, btrfs_cmp_data() won't correctly handle
3223 * this situation without an update.
3224 */
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003225 return -EINVAL;
Mark Fasheh416161d2013-08-06 11:42:51 -07003226 }
3227
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003228 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3229 if (res)
3230 return res;
3231 return olen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003232}
3233
Filipe Mananaf82a9902014-06-01 01:50:28 +01003234static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3235 struct inode *inode,
3236 u64 endoff,
3237 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003238 const u64 olen,
3239 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003240{
3241 struct btrfs_root *root = BTRFS_I(inode)->root;
3242 int ret;
3243
3244 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003245 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003246 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003247 /*
3248 * We round up to the block size at eof when determining which
3249 * extents to clone above, but shouldn't round up the file size.
3250 */
3251 if (endoff > destoff + olen)
3252 endoff = destoff + olen;
3253 if (endoff > inode->i_size)
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003254 btrfs_i_size_write(BTRFS_I(inode), endoff);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003255
3256 ret = btrfs_update_inode(trans, root, inode);
3257 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003258 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003259 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003260 goto out;
3261 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003262 ret = btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003263out:
3264 return ret;
3265}
3266
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003267static void clone_update_extent_map(struct btrfs_inode *inode,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003268 const struct btrfs_trans_handle *trans,
3269 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003270 const u64 hole_offset,
3271 const u64 hole_len)
3272{
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003273 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01003274 struct extent_map *em;
3275 int ret;
3276
3277 em = alloc_extent_map();
3278 if (!em) {
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003279 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003280 return;
3281 }
3282
Filipe Manana14f59792014-06-29 21:45:40 +01003283 if (path) {
3284 struct btrfs_file_extent_item *fi;
3285
3286 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3287 struct btrfs_file_extent_item);
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003288 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003289 em->generation = -1;
3290 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3291 BTRFS_FILE_EXTENT_INLINE)
3292 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003293 &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003294 } else {
3295 em->start = hole_offset;
3296 em->len = hole_len;
3297 em->ram_bytes = em->len;
3298 em->orig_start = hole_offset;
3299 em->block_start = EXTENT_MAP_HOLE;
3300 em->block_len = 0;
3301 em->orig_block_len = 0;
3302 em->compress_type = BTRFS_COMPRESS_NONE;
3303 em->generation = trans->transid;
3304 }
3305
3306 while (1) {
3307 write_lock(&em_tree->lock);
3308 ret = add_extent_mapping(em_tree, em, 1);
3309 write_unlock(&em_tree->lock);
3310 if (ret != -EEXIST) {
3311 free_extent_map(em);
3312 break;
3313 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003314 btrfs_drop_extent_cache(inode, em->start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003315 em->start + em->len - 1, 0);
3316 }
3317
David Sterbaee39b432014-09-30 01:33:33 +02003318 if (ret)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003319 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003320}
3321
Filipe Manana8039d872015-10-13 15:15:00 +01003322/*
3323 * Make sure we do not end up inserting an inline extent into a file that has
3324 * already other (non-inline) extents. If a file has an inline extent it can
3325 * not have any other extents and the (single) inline extent must start at the
3326 * file offset 0. Failing to respect these rules will lead to file corruption,
3327 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3328 *
3329 * We can have extents that have been already written to disk or we can have
3330 * dirty ranges still in delalloc, in which case the extent maps and items are
3331 * created only when we run delalloc, and the delalloc ranges might fall outside
3332 * the range we are currently locking in the inode's io tree. So we check the
3333 * inode's i_size because of that (i_size updates are done while holding the
3334 * i_mutex, which we are holding here).
3335 * We also check to see if the inode has a size not greater than "datal" but has
3336 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3337 * protected against such concurrent fallocate calls by the i_mutex).
3338 *
3339 * If the file has no extents but a size greater than datal, do not allow the
3340 * copy because we would need turn the inline extent into a non-inline one (even
3341 * with NO_HOLES enabled). If we find our destination inode only has one inline
3342 * extent, just overwrite it with the source inline extent if its size is less
3343 * than the source extent's size, or we could copy the source inline extent's
3344 * data into the destination inode's inline extent if the later is greater then
3345 * the former.
3346 */
David Sterba4a0ab9d2017-02-10 20:18:49 +01003347static int clone_copy_inline_extent(struct inode *dst,
Filipe Manana8039d872015-10-13 15:15:00 +01003348 struct btrfs_trans_handle *trans,
3349 struct btrfs_path *path,
3350 struct btrfs_key *new_key,
3351 const u64 drop_start,
3352 const u64 datal,
3353 const u64 skip,
3354 const u64 size,
3355 char *inline_data)
3356{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003357 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
Filipe Manana8039d872015-10-13 15:15:00 +01003358 struct btrfs_root *root = BTRFS_I(dst)->root;
3359 const u64 aligned_end = ALIGN(new_key->offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003360 fs_info->sectorsize);
Filipe Manana8039d872015-10-13 15:15:00 +01003361 int ret;
3362 struct btrfs_key key;
3363
3364 if (new_key->offset > 0)
3365 return -EOPNOTSUPP;
3366
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003367 key.objectid = btrfs_ino(BTRFS_I(dst));
Filipe Manana8039d872015-10-13 15:15:00 +01003368 key.type = BTRFS_EXTENT_DATA_KEY;
3369 key.offset = 0;
3370 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3371 if (ret < 0) {
3372 return ret;
3373 } else if (ret > 0) {
3374 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3375 ret = btrfs_next_leaf(root, path);
3376 if (ret < 0)
3377 return ret;
3378 else if (ret > 0)
3379 goto copy_inline_extent;
3380 }
3381 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003382 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003383 key.type == BTRFS_EXTENT_DATA_KEY) {
3384 ASSERT(key.offset > 0);
3385 return -EOPNOTSUPP;
3386 }
3387 } else if (i_size_read(dst) <= datal) {
3388 struct btrfs_file_extent_item *ei;
3389 u64 ext_len;
3390
3391 /*
3392 * If the file size is <= datal, make sure there are no other
3393 * extents following (can happen do to an fallocate call with
3394 * the flag FALLOC_FL_KEEP_SIZE).
3395 */
3396 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3397 struct btrfs_file_extent_item);
3398 /*
3399 * If it's an inline extent, it can not have other extents
3400 * following it.
3401 */
3402 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3403 BTRFS_FILE_EXTENT_INLINE)
3404 goto copy_inline_extent;
3405
3406 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3407 if (ext_len > aligned_end)
3408 return -EOPNOTSUPP;
3409
3410 ret = btrfs_next_item(root, path);
3411 if (ret < 0) {
3412 return ret;
3413 } else if (ret == 0) {
3414 btrfs_item_key_to_cpu(path->nodes[0], &key,
3415 path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003416 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003417 key.type == BTRFS_EXTENT_DATA_KEY)
3418 return -EOPNOTSUPP;
3419 }
3420 }
3421
3422copy_inline_extent:
3423 /*
3424 * We have no extent items, or we have an extent at offset 0 which may
3425 * or may not be inlined. All these cases are dealt the same way.
3426 */
3427 if (i_size_read(dst) > datal) {
3428 /*
3429 * If the destination inode has an inline extent...
3430 * This would require copying the data from the source inline
3431 * extent into the beginning of the destination's inline extent.
3432 * But this is really complex, both extents can be compressed
3433 * or just one of them, which would require decompressing and
3434 * re-compressing data (which could increase the new compressed
3435 * size, not allowing the compressed data to fit anymore in an
3436 * inline extent).
3437 * So just don't support this case for now (it should be rare,
3438 * we are not really saving space when cloning inline extents).
3439 */
3440 return -EOPNOTSUPP;
3441 }
3442
3443 btrfs_release_path(path);
3444 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3445 if (ret)
3446 return ret;
3447 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3448 if (ret)
3449 return ret;
3450
3451 if (skip) {
3452 const u32 start = btrfs_file_extent_calc_inline_size(0);
3453
3454 memmove(inline_data + start, inline_data + start + skip, datal);
3455 }
3456
3457 write_extent_buffer(path->nodes[0], inline_data,
3458 btrfs_item_ptr_offset(path->nodes[0],
3459 path->slots[0]),
3460 size);
3461 inode_add_bytes(dst, datal);
3462
3463 return 0;
3464}
3465
Mark Fasheh32b7c682013-08-06 11:42:49 -07003466/**
3467 * btrfs_clone() - clone a range from inode file to another
3468 *
3469 * @src: Inode to clone from
3470 * @inode: Inode to clone to
3471 * @off: Offset within source to start clone from
3472 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003473 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003474 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003475 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003476 */
3477static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003478 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003479 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003480{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003481 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003482 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003483 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003484 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003485 struct btrfs_trans_handle *trans;
3486 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003487 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003488 u32 nritems;
3489 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003490 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003491 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003492 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003493
3494 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07003495 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3496 if (!buf)
3497 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003498
3499 path = btrfs_alloc_path();
3500 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003501 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003502 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003503 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003504
David Sterbae4058b52015-11-27 16:31:35 +01003505 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003506 /* clone data */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003507 key.objectid = btrfs_ino(BTRFS_I(src));
Yan Zhengae01a0a2008-08-04 23:23:47 -04003508 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003509 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003510
3511 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003512 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003513
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003514 /*
3515 * note the key will change type as we walk through the
3516 * tree.
3517 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003518 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003519 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3520 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003521 if (ret < 0)
3522 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003523 /*
3524 * First search, if no extent item that starts at offset off was
3525 * found but the previous item is an extent item, it's possible
3526 * it might overlap our target range, therefore process it.
3527 */
3528 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3529 btrfs_item_key_to_cpu(path->nodes[0], &key,
3530 path->slots[0] - 1);
3531 if (key.type == BTRFS_EXTENT_DATA_KEY)
3532 path->slots[0]--;
3533 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003534
Yan Zhengae01a0a2008-08-04 23:23:47 -04003535 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003536process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003537 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003538 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003539 if (ret < 0)
3540 goto out;
3541 if (ret > 0)
3542 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003543 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003544 }
3545 leaf = path->nodes[0];
3546 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003547
Yan Zhengae01a0a2008-08-04 23:23:47 -04003548 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003549 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003550 key.objectid != btrfs_ino(BTRFS_I(src)))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003551 break;
3552
David Sterba962a2982014-06-04 18:41:45 +02003553 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003554 struct btrfs_file_extent_item *extent;
3555 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003556 u32 size;
3557 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003558 u64 disko = 0, diskl = 0;
3559 u64 datao = 0, datal = 0;
3560 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003561 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003562
Sage Weilc5c9cd42008-11-12 14:32:25 -05003563 extent = btrfs_item_ptr(leaf, slot,
3564 struct btrfs_file_extent_item);
3565 comp = btrfs_file_extent_compression(leaf, extent);
3566 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003567 if (type == BTRFS_FILE_EXTENT_REG ||
3568 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003569 disko = btrfs_file_extent_disk_bytenr(leaf,
3570 extent);
3571 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3572 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003573 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003574 datal = btrfs_file_extent_num_bytes(leaf,
3575 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003576 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3577 /* take upper bound, may be compressed */
3578 datal = btrfs_file_extent_ram_bytes(leaf,
3579 extent);
3580 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003581
Filipe Manana2c463822014-05-31 02:31:05 +01003582 /*
3583 * The first search might have left us at an extent
3584 * item that ends before our target range's start, can
3585 * happen if we have holes and NO_HOLES feature enabled.
3586 */
3587 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003588 path->slots[0]++;
3589 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003590 } else if (key.offset >= off + len) {
3591 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003592 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003593 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003594 size = btrfs_item_size_nr(leaf, slot);
3595 read_extent_buffer(leaf, buf,
3596 btrfs_item_ptr_offset(leaf, slot),
3597 size);
3598
3599 btrfs_release_path(path);
3600 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003601
Zheng Yan31840ae2008-09-23 13:14:14 -04003602 memcpy(&new_key, &key, sizeof(new_key));
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003603 new_key.objectid = btrfs_ino(BTRFS_I(inode));
Li Zefan4d728ec2011-01-26 14:10:43 +08003604 if (off <= key.offset)
3605 new_key.offset = key.offset + destoff - off;
3606 else
3607 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003608
Sage Weilb6f34092011-09-20 14:48:51 -04003609 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003610 * Deal with a hole that doesn't have an extent item
3611 * that represents it (NO_HOLES feature enabled).
3612 * This hole is either in the middle of the cloning
3613 * range or at the beginning (fully overlaps it or
3614 * partially overlaps it).
3615 */
3616 if (new_key.offset != last_dest_end)
3617 drop_start = last_dest_end;
3618 else
3619 drop_start = new_key.offset;
3620
3621 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003622 * 1 - adjusting old extent (we may have to split it)
3623 * 1 - add new extent
3624 * 1 - inode update
3625 */
3626 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003627 if (IS_ERR(trans)) {
3628 ret = PTR_ERR(trans);
3629 goto out;
3630 }
3631
Chris Masonc8a894d2009-06-27 21:07:03 -04003632 if (type == BTRFS_FILE_EXTENT_REG ||
3633 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003634 /*
3635 * a | --- range to clone ---| b
3636 * | ------------- extent ------------- |
3637 */
3638
Antonio Ospite93915582014-06-04 14:03:48 +02003639 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003640 if (key.offset + datal > off + len)
3641 datal = off + len - key.offset;
3642
Antonio Ospite93915582014-06-04 14:03:48 +02003643 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003644 if (off > key.offset) {
3645 datao += off - key.offset;
3646 datal -= off - key.offset;
3647 }
3648
Josef Bacik5dc562c2012-08-17 13:14:17 -04003649 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003650 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003651 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003652 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003653 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003654 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003655 btrfs_abort_transaction(trans,
Jeff Mahoney66642832016-06-10 18:19:25 -04003656 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003657 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003658 goto out;
3659 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003660
Sage Weilc5c9cd42008-11-12 14:32:25 -05003661 ret = btrfs_insert_empty_item(trans, root, path,
3662 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003663 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003664 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003665 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003666 goto out;
3667 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003668
3669 leaf = path->nodes[0];
3670 slot = path->slots[0];
3671 write_extent_buffer(leaf, buf,
3672 btrfs_item_ptr_offset(leaf, slot),
3673 size);
3674
3675 extent = btrfs_item_ptr(leaf, slot,
3676 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003677
Sage Weilc5c9cd42008-11-12 14:32:25 -05003678 /* disko == 0 means it's a hole */
3679 if (!disko)
3680 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003681
3682 btrfs_set_file_extent_offset(leaf, extent,
3683 datao);
3684 btrfs_set_file_extent_num_bytes(leaf, extent,
3685 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003686
Sage Weilc5c9cd42008-11-12 14:32:25 -05003687 if (disko) {
3688 inode_add_bytes(inode, datal);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003689 ret = btrfs_inc_extent_ref(trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003690 root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003691 disko, diskl, 0,
3692 root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003693 btrfs_ino(BTRFS_I(inode)),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003694 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003695 if (ret) {
3696 btrfs_abort_transaction(trans,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003697 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003698 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003699 goto out;
3700
3701 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003702 }
3703 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3704 u64 skip = 0;
3705 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003706
Sage Weilc5c9cd42008-11-12 14:32:25 -05003707 if (off > key.offset) {
3708 skip = off - key.offset;
3709 new_key.offset += skip;
3710 }
Chris Masond3977122009-01-05 21:25:51 -05003711
Liu Boaa42ffd2012-09-18 03:52:23 -06003712 if (key.offset + datal > off + len)
3713 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003714
Sage Weilc5c9cd42008-11-12 14:32:25 -05003715 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003716 ret = -EINVAL;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003717 btrfs_end_transaction(trans);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003718 goto out;
3719 }
3720 size -= skip + trim;
3721 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003722
David Sterba4a0ab9d2017-02-10 20:18:49 +01003723 ret = clone_copy_inline_extent(inode,
Filipe Manana8039d872015-10-13 15:15:00 +01003724 trans, path,
3725 &new_key,
3726 drop_start,
3727 datal,
3728 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003729 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003730 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003731 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003732 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003733 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003734 goto out;
3735 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003736 leaf = path->nodes[0];
3737 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003738 }
3739
Filipe Manana7ffbb592014-06-09 03:48:05 +01003740 /* If we have an implicit hole (NO_HOLES feature). */
3741 if (drop_start < new_key.offset)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003742 clone_update_extent_map(BTRFS_I(inode), trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003743 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003744 new_key.offset - drop_start);
3745
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003746 clone_update_extent_map(BTRFS_I(inode), trans,
3747 path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003748
Sage Weilc5c9cd42008-11-12 14:32:25 -05003749 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003750 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003751
Filipe Manana62e23902014-08-08 02:47:06 +01003752 last_dest_end = ALIGN(new_key.offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003753 fs_info->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003754 ret = clone_finish_inode_update(trans, inode,
3755 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003756 destoff, olen,
3757 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003758 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003759 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003760 if (new_key.offset + datal >= destoff + len)
3761 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003762 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003763 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003764 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003765
3766 if (fatal_signal_pending(current)) {
3767 ret = -EINTR;
3768 goto out;
3769 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003770 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003771 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003772
Filipe Mananaf82a9902014-06-01 01:50:28 +01003773 if (last_dest_end < destoff + len) {
3774 /*
3775 * We have an implicit hole (NO_HOLES feature is enabled) that
3776 * fully or partially overlaps our cloning range at its end.
3777 */
3778 btrfs_release_path(path);
3779
3780 /*
3781 * 1 - remove extent(s)
3782 * 1 - inode update
3783 */
3784 trans = btrfs_start_transaction(root, 2);
3785 if (IS_ERR(trans)) {
3786 ret = PTR_ERR(trans);
3787 goto out;
3788 }
3789 ret = btrfs_drop_extents(trans, root, inode,
3790 last_dest_end, destoff + len, 1);
3791 if (ret) {
3792 if (ret != -EOPNOTSUPP)
Jeff Mahoney66642832016-06-10 18:19:25 -04003793 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003794 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003795 goto out;
3796 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003797 clone_update_extent_map(BTRFS_I(inode), trans, NULL,
3798 last_dest_end,
3799 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003800 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003801 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003802 }
3803
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003804out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003805 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003806 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003807 return ret;
3808}
3809
Zach Brown3db11b22015-11-10 16:53:32 -05003810static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3811 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003812{
Al Viro54563d42013-09-01 15:57:51 -04003813 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003814 struct inode *src = file_inode(file_src);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003815 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003816 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003817 int ret;
3818 u64 len = olen;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003819 u64 bs = fs_info->sb->s_blocksize;
Zach Brown3db11b22015-11-10 16:53:32 -05003820 int same_inode = src == inode;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003821
3822 /*
3823 * TODO:
3824 * - split compressed inline extents. annoying: we need to
3825 * decompress into destination's address_space (the file offset
3826 * may change, so source mapping won't do), then recompress (or
3827 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003828 *
3829 * - split destination inode's inline extents. The inline extents can
3830 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003831 */
3832
Mark Fasheh32b7c682013-08-06 11:42:49 -07003833 if (btrfs_root_readonly(root))
3834 return -EROFS;
3835
Zach Brown3db11b22015-11-10 16:53:32 -05003836 if (file_src->f_path.mnt != file->f_path.mnt ||
3837 src->i_sb != inode->i_sb)
3838 return -EXDEV;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003839
3840 /* don't make the dst file partly checksummed */
3841 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3842 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
Zach Brown3db11b22015-11-10 16:53:32 -05003843 return -EINVAL;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003844
Mark Fasheh32b7c682013-08-06 11:42:49 -07003845 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Zach Brown3db11b22015-11-10 16:53:32 -05003846 return -EISDIR;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003847
3848 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003849 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003850 } else {
Al Viro59551022016-01-22 15:40:57 -05003851 inode_lock(src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003852 }
3853
3854 /* determine range to clone */
3855 ret = -EINVAL;
3856 if (off + len > src->i_size || off + len < off)
3857 goto out_unlock;
3858 if (len == 0)
3859 olen = len = src->i_size - off;
3860 /* if we extend to eof, continue to block boundary */
3861 if (off + len == src->i_size)
3862 len = ALIGN(src->i_size, bs) - off;
3863
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003864 if (len == 0) {
3865 ret = 0;
3866 goto out_unlock;
3867 }
3868
Mark Fasheh32b7c682013-08-06 11:42:49 -07003869 /* verify the end result is block aligned */
3870 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3871 !IS_ALIGNED(destoff, bs))
3872 goto out_unlock;
3873
3874 /* verify if ranges are overlapped within the same file */
3875 if (same_inode) {
3876 if (destoff + len > off && destoff < off + len)
3877 goto out_unlock;
3878 }
3879
3880 if (destoff > inode->i_size) {
3881 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3882 if (ret)
3883 goto out_unlock;
3884 }
3885
Filipe Mananac125b8b2014-05-23 05:03:34 +01003886 /*
3887 * Lock the target range too. Right after we replace the file extent
3888 * items in the fs tree (which now point to the cloned data), we might
3889 * have a worker replace them with extent items relative to a write
3890 * operation that was issued before this clone operation (i.e. confront
3891 * with inode.c:btrfs_finish_ordered_io).
3892 */
3893 if (same_inode) {
3894 u64 lock_start = min_t(u64, off, destoff);
3895 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003896
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003897 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003898 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003899 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3900 true);
3901 }
3902 ASSERT(ret == 0);
3903 if (WARN_ON(ret)) {
3904 /* ranges in the io trees already unlocked */
3905 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003906 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003907
Mark Fasheh1c919a52015-06-30 14:42:08 -07003908 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003909
Filipe Mananac125b8b2014-05-23 05:03:34 +01003910 if (same_inode) {
3911 u64 lock_start = min_t(u64, off, destoff);
3912 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3913
3914 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3915 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003916 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003917 }
3918 /*
3919 * Truncate page cache pages so that future reads will see the cloned
3920 * data immediately and not the previous data.
3921 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303922 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003923 round_down(destoff, PAGE_SIZE),
3924 round_up(destoff + len, PAGE_SIZE) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003925out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003926 if (!same_inode)
3927 btrfs_double_inode_unlock(src, inode);
3928 else
Al Viro59551022016-01-22 15:40:57 -05003929 inode_unlock(src);
Zach Brown3db11b22015-11-10 16:53:32 -05003930 return ret;
3931}
3932
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003933int btrfs_clone_file_range(struct file *src_file, loff_t off,
3934 struct file *dst_file, loff_t destoff, u64 len)
Zach Brown3db11b22015-11-10 16:53:32 -05003935{
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003936 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003937}
3938
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003939/*
3940 * there are many ways the trans_start and trans_end ioctls can lead
3941 * to deadlocks. They should only be used by applications that
3942 * basically own the machine, and have a very in depth understanding
3943 * of all the possible deadlocks and enospc problems.
3944 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05003945static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003946{
Al Viro496ad9a2013-01-23 17:07:38 -05003947 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003948 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003949 struct btrfs_root *root = BTRFS_I(inode)->root;
3950 struct btrfs_trans_handle *trans;
Josef Bacik23b5ec72017-07-24 15:14:25 -04003951 struct btrfs_file_private *private;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003952 int ret;
Nikolay Borisov3558d4f2017-07-26 11:26:28 +03003953 static bool warned = false;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003954
Sage Weil1ab86ae2009-09-29 18:38:44 -04003955 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04003956 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003957 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003958
Nikolay Borisov3558d4f2017-07-26 11:26:28 +03003959 if (!warned) {
3960 btrfs_warn(fs_info,
3961 "Userspace transaction mechanism is considered "
3962 "deprecated and slated to be removed in 4.17. "
3963 "If you have a valid use case please "
3964 "speak up on the mailing list");
3965 WARN_ON(1);
3966 warned = true;
3967 }
3968
Sage Weil1ab86ae2009-09-29 18:38:44 -04003969 ret = -EINPROGRESS;
Josef Bacik23b5ec72017-07-24 15:14:25 -04003970 private = file->private_data;
3971 if (private && private->trans)
Sage Weil1ab86ae2009-09-29 18:38:44 -04003972 goto out;
Josef Bacik23b5ec72017-07-24 15:14:25 -04003973 if (!private) {
3974 private = kzalloc(sizeof(struct btrfs_file_private),
3975 GFP_KERNEL);
3976 if (!private)
3977 return -ENOMEM;
3978 file->private_data = private;
3979 }
Sage Weil9ca9ee02008-08-04 10:41:27 -04003980
Li Zefanb83cc962010-12-20 16:04:08 +08003981 ret = -EROFS;
3982 if (btrfs_root_readonly(root))
3983 goto out;
3984
Al Viroa561be72011-11-23 11:57:51 -05003985 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05003986 if (ret)
3987 goto out;
3988
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003989 atomic_inc(&fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04003990
Sage Weil1ab86ae2009-09-29 18:38:44 -04003991 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003992 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00003993 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04003994 goto out_drop;
3995
Josef Bacik23b5ec72017-07-24 15:14:25 -04003996 private->trans = trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04003997 return 0;
3998
3999out_drop:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004000 atomic_dec(&fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05004001 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004002out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004003 return ret;
4004}
4005
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004006static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
4007{
Al Viro496ad9a2013-01-23 17:07:38 -05004008 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004009 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004010 struct btrfs_root *root = BTRFS_I(inode)->root;
4011 struct btrfs_root *new_root;
4012 struct btrfs_dir_item *di;
4013 struct btrfs_trans_handle *trans;
4014 struct btrfs_path *path;
4015 struct btrfs_key location;
4016 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004017 u64 objectid = 0;
4018 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00004019 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004020
4021 if (!capable(CAP_SYS_ADMIN))
4022 return -EPERM;
4023
Miao Xie3c04ce02012-11-26 08:43:07 +00004024 ret = mnt_want_write_file(file);
4025 if (ret)
4026 return ret;
4027
4028 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
4029 ret = -EFAULT;
4030 goto out;
4031 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004032
4033 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05304034 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004035
4036 location.objectid = objectid;
4037 location.type = BTRFS_ROOT_ITEM_KEY;
4038 location.offset = (u64)-1;
4039
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004040 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00004041 if (IS_ERR(new_root)) {
4042 ret = PTR_ERR(new_root);
4043 goto out;
4044 }
satoru takeuchi6d6d2822017-09-12 22:42:52 +09004045 if (!is_fstree(new_root->objectid)) {
4046 ret = -ENOENT;
4047 goto out;
4048 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004049
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004050 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00004051 if (!path) {
4052 ret = -ENOMEM;
4053 goto out;
4054 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004055 path->leave_spinning = 1;
4056
4057 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004058 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004059 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00004060 ret = PTR_ERR(trans);
4061 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004062 }
4063
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004064 dir_id = btrfs_super_root_dir(fs_info->super_copy);
4065 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004066 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00004067 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004068 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004069 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004070 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004071 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00004072 ret = -ENOENT;
4073 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004074 }
4075
4076 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4077 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4078 btrfs_mark_buffer_dirty(path->nodes[0]);
4079 btrfs_free_path(path);
4080
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004081 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004082 btrfs_end_transaction(trans);
Miao Xie3c04ce02012-11-26 08:43:07 +00004083out:
4084 mnt_drop_write_file(file);
4085 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004086}
4087
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004088void btrfs_get_block_group_info(struct list_head *groups_list,
4089 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004090{
4091 struct btrfs_block_group_cache *block_group;
4092
4093 space->total_bytes = 0;
4094 space->used_bytes = 0;
4095 space->flags = 0;
4096 list_for_each_entry(block_group, groups_list, list) {
4097 space->flags = block_group->flags;
4098 space->total_bytes += block_group->key.offset;
4099 space->used_bytes +=
4100 btrfs_block_group_used(&block_group->item);
4101 }
4102}
4103
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004104static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
4105 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004106{
4107 struct btrfs_ioctl_space_args space_args;
4108 struct btrfs_ioctl_space_info space;
4109 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004110 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004111 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004112 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01004113 static const u64 types[] = {
4114 BTRFS_BLOCK_GROUP_DATA,
4115 BTRFS_BLOCK_GROUP_SYSTEM,
4116 BTRFS_BLOCK_GROUP_METADATA,
4117 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
4118 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004119 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004120 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004121 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004122 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004123 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004124
4125 if (copy_from_user(&space_args,
4126 (struct btrfs_ioctl_space_args __user *)arg,
4127 sizeof(space_args)))
4128 return -EFAULT;
4129
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004130 for (i = 0; i < num_types; i++) {
4131 struct btrfs_space_info *tmp;
4132
4133 info = NULL;
4134 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004135 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004136 list) {
4137 if (tmp->flags == types[i]) {
4138 info = tmp;
4139 break;
4140 }
4141 }
4142 rcu_read_unlock();
4143
4144 if (!info)
4145 continue;
4146
4147 down_read(&info->groups_sem);
4148 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4149 if (!list_empty(&info->block_groups[c]))
4150 slot_count++;
4151 }
4152 up_read(&info->groups_sem);
4153 }
Josef Bacik1406e432010-01-13 18:19:06 +00004154
David Sterba36523e952014-02-07 14:34:12 +01004155 /*
4156 * Global block reserve, exported as a space_info
4157 */
4158 slot_count++;
4159
Chris Mason7fde62b2010-03-16 15:40:10 -04004160 /* space_slots == 0 means they are asking for a count */
4161 if (space_args.space_slots == 0) {
4162 space_args.total_spaces = slot_count;
4163 goto out;
4164 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004165
Dan Rosenberg51788b12011-02-14 16:04:23 -05004166 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004167
Chris Mason7fde62b2010-03-16 15:40:10 -04004168 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004169
Chris Mason7fde62b2010-03-16 15:40:10 -04004170 /* we generally have at most 6 or so space infos, one for each raid
4171 * level. So, a whole page should be more than enough for everyone
4172 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004173 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04004174 return -ENOMEM;
4175
4176 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01004177 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04004178 if (!dest)
4179 return -ENOMEM;
4180 dest_orig = dest;
4181
4182 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004183 for (i = 0; i < num_types; i++) {
4184 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004185
Dan Rosenberg51788b12011-02-14 16:04:23 -05004186 if (!slot_count)
4187 break;
4188
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004189 info = NULL;
4190 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004191 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004192 list) {
4193 if (tmp->flags == types[i]) {
4194 info = tmp;
4195 break;
4196 }
4197 }
4198 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004199
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004200 if (!info)
4201 continue;
4202 down_read(&info->groups_sem);
4203 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4204 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004205 btrfs_get_block_group_info(
4206 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004207 memcpy(dest, &space, sizeof(space));
4208 dest++;
4209 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004210 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004211 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004212 if (!slot_count)
4213 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004214 }
4215 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004216 }
Josef Bacik1406e432010-01-13 18:19:06 +00004217
David Sterba36523e952014-02-07 14:34:12 +01004218 /*
4219 * Add global block reserve
4220 */
4221 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004222 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01004223
4224 spin_lock(&block_rsv->lock);
4225 space.total_bytes = block_rsv->size;
4226 space.used_bytes = block_rsv->size - block_rsv->reserved;
4227 spin_unlock(&block_rsv->lock);
4228 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4229 memcpy(dest, &space, sizeof(space));
4230 space_args.total_spaces++;
4231 }
4232
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004233 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004234 (arg + sizeof(struct btrfs_ioctl_space_args));
4235
4236 if (copy_to_user(user_dest, dest_orig, alloc_size))
4237 ret = -EFAULT;
4238
4239 kfree(dest_orig);
4240out:
4241 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004242 ret = -EFAULT;
4243
4244 return ret;
4245}
4246
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004247/*
4248 * there are many ways the trans_start and trans_end ioctls can lead
4249 * to deadlocks. They should only be used by applications that
4250 * basically own the machine, and have a very in depth understanding
4251 * of all the possible deadlocks and enospc problems.
4252 */
4253long btrfs_ioctl_trans_end(struct file *file)
4254{
Al Viro496ad9a2013-01-23 17:07:38 -05004255 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004256 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik23b5ec72017-07-24 15:14:25 -04004257 struct btrfs_file_private *private = file->private_data;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004258
Josef Bacik23b5ec72017-07-24 15:14:25 -04004259 if (!private || !private->trans)
Sage Weil1ab86ae2009-09-29 18:38:44 -04004260 return -EINVAL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004261
Josef Bacik23b5ec72017-07-24 15:14:25 -04004262 btrfs_end_transaction(private->trans);
4263 private->trans = NULL;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004264
Josef Bacika4abeea2011-04-11 17:25:13 -04004265 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004266
Al Viro2a79f172011-12-09 08:06:57 -05004267 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004268 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004269}
4270
Miao Xie9a8c28b2012-11-26 08:40:43 +00004271static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4272 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004273{
Sage Weil46204592010-10-29 15:41:32 -04004274 struct btrfs_trans_handle *trans;
4275 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004276 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004277
Miao Xied4edf392013-02-20 09:17:06 +00004278 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004279 if (IS_ERR(trans)) {
4280 if (PTR_ERR(trans) != -ENOENT)
4281 return PTR_ERR(trans);
4282
4283 /* No running transaction, don't bother */
4284 transid = root->fs_info->last_trans_committed;
4285 goto out;
4286 }
Sage Weil46204592010-10-29 15:41:32 -04004287 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004288 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004289 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004290 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004291 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004292 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004293out:
Sage Weil46204592010-10-29 15:41:32 -04004294 if (argp)
4295 if (copy_to_user(argp, &transid, sizeof(transid)))
4296 return -EFAULT;
4297 return 0;
4298}
4299
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004300static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00004301 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004302{
Sage Weil46204592010-10-29 15:41:32 -04004303 u64 transid;
4304
4305 if (argp) {
4306 if (copy_from_user(&transid, argp, sizeof(transid)))
4307 return -EFAULT;
4308 } else {
4309 transid = 0; /* current trans */
4310 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004311 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04004312}
4313
Miao Xieb8e95482012-11-26 08:48:01 +00004314static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004315{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004316 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01004317 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004318 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004319
4320 if (!capable(CAP_SYS_ADMIN))
4321 return -EPERM;
4322
4323 sa = memdup_user(arg, sizeof(*sa));
4324 if (IS_ERR(sa))
4325 return PTR_ERR(sa);
4326
Miao Xieb8e95482012-11-26 08:48:01 +00004327 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4328 ret = mnt_want_write_file(file);
4329 if (ret)
4330 goto out;
4331 }
4332
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004333 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004334 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4335 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004336
4337 if (copy_to_user(arg, sa, sizeof(*sa)))
4338 ret = -EFAULT;
4339
Miao Xieb8e95482012-11-26 08:48:01 +00004340 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4341 mnt_drop_write_file(file);
4342out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004343 kfree(sa);
4344 return ret;
4345}
4346
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004347static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01004348{
4349 if (!capable(CAP_SYS_ADMIN))
4350 return -EPERM;
4351
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004352 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004353}
4354
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004355static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01004356 void __user *arg)
4357{
4358 struct btrfs_ioctl_scrub_args *sa;
4359 int ret;
4360
4361 if (!capable(CAP_SYS_ADMIN))
4362 return -EPERM;
4363
4364 sa = memdup_user(arg, sizeof(*sa));
4365 if (IS_ERR(sa))
4366 return PTR_ERR(sa);
4367
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004368 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01004369
4370 if (copy_to_user(arg, sa, sizeof(*sa)))
4371 ret = -EFAULT;
4372
4373 kfree(sa);
4374 return ret;
4375}
4376
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004377static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06004378 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004379{
4380 struct btrfs_ioctl_get_dev_stats *sa;
4381 int ret;
4382
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004383 sa = memdup_user(arg, sizeof(*sa));
4384 if (IS_ERR(sa))
4385 return PTR_ERR(sa);
4386
David Sterbab27f7c02012-06-22 06:30:39 -06004387 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4388 kfree(sa);
4389 return -EPERM;
4390 }
4391
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004392 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004393
4394 if (copy_to_user(arg, sa, sizeof(*sa)))
4395 ret = -EFAULT;
4396
4397 kfree(sa);
4398 return ret;
4399}
4400
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004401static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4402 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004403{
4404 struct btrfs_ioctl_dev_replace_args *p;
4405 int ret;
4406
4407 if (!capable(CAP_SYS_ADMIN))
4408 return -EPERM;
4409
4410 p = memdup_user(arg, sizeof(*p));
4411 if (IS_ERR(p))
4412 return PTR_ERR(p);
4413
4414 switch (p->cmd) {
4415 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01004416 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004417 ret = -EROFS;
4418 goto out;
4419 }
David Sterba171938e2017-03-28 14:44:21 +02004420 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004421 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004422 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004423 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
David Sterba171938e2017-03-28 14:44:21 +02004424 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004425 }
4426 break;
4427 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004428 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004429 ret = 0;
4430 break;
4431 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004432 ret = btrfs_dev_replace_cancel(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004433 break;
4434 default:
4435 ret = -EINVAL;
4436 break;
4437 }
4438
4439 if (copy_to_user(arg, p, sizeof(*p)))
4440 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004441out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004442 kfree(p);
4443 return ret;
4444}
4445
Jan Schmidtd7728c92011-07-07 16:48:38 +02004446static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4447{
4448 int ret = 0;
4449 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004450 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004451 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004452 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004453 struct inode_fs_paths *ipath = NULL;
4454 struct btrfs_path *path;
4455
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004456 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004457 return -EPERM;
4458
4459 path = btrfs_alloc_path();
4460 if (!path) {
4461 ret = -ENOMEM;
4462 goto out;
4463 }
4464
4465 ipa = memdup_user(arg, sizeof(*ipa));
4466 if (IS_ERR(ipa)) {
4467 ret = PTR_ERR(ipa);
4468 ipa = NULL;
4469 goto out;
4470 }
4471
4472 size = min_t(u32, ipa->size, 4096);
4473 ipath = init_ipath(size, root, path);
4474 if (IS_ERR(ipath)) {
4475 ret = PTR_ERR(ipath);
4476 ipath = NULL;
4477 goto out;
4478 }
4479
4480 ret = paths_from_inode(ipa->inum, ipath);
4481 if (ret < 0)
4482 goto out;
4483
4484 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004485 rel_ptr = ipath->fspath->val[i] -
4486 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004487 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004488 }
4489
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004490 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
4491 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004492 if (ret) {
4493 ret = -EFAULT;
4494 goto out;
4495 }
4496
4497out:
4498 btrfs_free_path(path);
4499 free_ipath(ipath);
4500 kfree(ipa);
4501
4502 return ret;
4503}
4504
4505static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4506{
4507 struct btrfs_data_container *inodes = ctx;
4508 const size_t c = 3 * sizeof(u64);
4509
4510 if (inodes->bytes_left >= c) {
4511 inodes->bytes_left -= c;
4512 inodes->val[inodes->elem_cnt] = inum;
4513 inodes->val[inodes->elem_cnt + 1] = offset;
4514 inodes->val[inodes->elem_cnt + 2] = root;
4515 inodes->elem_cnt += 3;
4516 } else {
4517 inodes->bytes_missing += c - inodes->bytes_left;
4518 inodes->bytes_left = 0;
4519 inodes->elem_missed += 3;
4520 }
4521
4522 return 0;
4523}
4524
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004525static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004526 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004527{
4528 int ret = 0;
4529 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004530 struct btrfs_ioctl_logical_ino_args *loi;
4531 struct btrfs_data_container *inodes = NULL;
4532 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004533 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004534
4535 if (!capable(CAP_SYS_ADMIN))
4536 return -EPERM;
4537
4538 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304539 if (IS_ERR(loi))
4540 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004541
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004542 if (version == 1) {
4543 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004544 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004545 } else {
4546 /* All reserved bits must be 0 for now */
4547 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
4548 ret = -EINVAL;
4549 goto out_loi;
4550 }
4551 /* Only accept flags we have defined so far */
4552 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
4553 ret = -EINVAL;
4554 goto out_loi;
4555 }
4556 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004557 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004558 }
4559
Jan Schmidtd7728c92011-07-07 16:48:38 +02004560 path = btrfs_alloc_path();
4561 if (!path) {
4562 ret = -ENOMEM;
4563 goto out;
4564 }
4565
Jan Schmidtd7728c92011-07-07 16:48:38 +02004566 inodes = init_data_container(size);
4567 if (IS_ERR(inodes)) {
4568 ret = PTR_ERR(inodes);
4569 inodes = NULL;
4570 goto out;
4571 }
4572
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004573 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004574 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06004575 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004576 ret = -ENOENT;
4577 if (ret < 0)
4578 goto out;
4579
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004580 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4581 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004582 if (ret)
4583 ret = -EFAULT;
4584
4585out:
4586 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004587 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004588out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02004589 kfree(loi);
4590
4591 return ret;
4592}
4593
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004594void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004595 struct btrfs_ioctl_balance_args *bargs)
4596{
4597 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4598
4599 bargs->flags = bctl->flags;
4600
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004601 if (atomic_read(&fs_info->balance_running))
4602 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4603 if (atomic_read(&fs_info->balance_pause_req))
4604 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004605 if (atomic_read(&fs_info->balance_cancel_req))
4606 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004607
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004608 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4609 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4610 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004611
4612 if (lock) {
4613 spin_lock(&fs_info->balance_lock);
4614 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4615 spin_unlock(&fs_info->balance_lock);
4616 } else {
4617 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4618 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004619}
4620
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004621static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004622{
Al Viro496ad9a2013-01-23 17:07:38 -05004623 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004624 struct btrfs_fs_info *fs_info = root->fs_info;
4625 struct btrfs_ioctl_balance_args *bargs;
4626 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004627 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004628 int ret;
4629
4630 if (!capable(CAP_SYS_ADMIN))
4631 return -EPERM;
4632
Liu Boe54bfa32012-06-29 03:58:48 -06004633 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004634 if (ret)
4635 return ret;
4636
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004637again:
David Sterba171938e2017-03-28 14:44:21 +02004638 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004639 mutex_lock(&fs_info->volume_mutex);
4640 mutex_lock(&fs_info->balance_mutex);
4641 need_unlock = true;
4642 goto locked;
4643 }
4644
4645 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004646 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004647 * (1) some other op is running
4648 * (2) balance is running
4649 * (3) balance is paused -- special case (think resume)
4650 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004651 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004652 if (fs_info->balance_ctl) {
4653 /* this is either (2) or (3) */
4654 if (!atomic_read(&fs_info->balance_running)) {
4655 mutex_unlock(&fs_info->balance_mutex);
4656 if (!mutex_trylock(&fs_info->volume_mutex))
4657 goto again;
4658 mutex_lock(&fs_info->balance_mutex);
4659
4660 if (fs_info->balance_ctl &&
4661 !atomic_read(&fs_info->balance_running)) {
4662 /* this is (3) */
4663 need_unlock = false;
4664 goto locked;
4665 }
4666
4667 mutex_unlock(&fs_info->balance_mutex);
4668 mutex_unlock(&fs_info->volume_mutex);
4669 goto again;
4670 } else {
4671 /* this is (2) */
4672 mutex_unlock(&fs_info->balance_mutex);
4673 ret = -EINPROGRESS;
4674 goto out;
4675 }
4676 } else {
4677 /* this is (1) */
4678 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004679 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004680 goto out;
4681 }
4682
4683locked:
David Sterba171938e2017-03-28 14:44:21 +02004684 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004685
4686 if (arg) {
4687 bargs = memdup_user(arg, sizeof(*bargs));
4688 if (IS_ERR(bargs)) {
4689 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004690 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004691 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004692
4693 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4694 if (!fs_info->balance_ctl) {
4695 ret = -ENOTCONN;
4696 goto out_bargs;
4697 }
4698
4699 bctl = fs_info->balance_ctl;
4700 spin_lock(&fs_info->balance_lock);
4701 bctl->flags |= BTRFS_BALANCE_RESUME;
4702 spin_unlock(&fs_info->balance_lock);
4703
4704 goto do_balance;
4705 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004706 } else {
4707 bargs = NULL;
4708 }
4709
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004710 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004711 ret = -EINPROGRESS;
4712 goto out_bargs;
4713 }
4714
David Sterba8d2db782015-11-04 15:38:29 +01004715 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004716 if (!bctl) {
4717 ret = -ENOMEM;
4718 goto out_bargs;
4719 }
4720
4721 bctl->fs_info = fs_info;
4722 if (arg) {
4723 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4724 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4725 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4726
4727 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004728 } else {
4729 /* balance everything - no filters */
4730 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004731 }
4732
David Sterba8eb93452015-10-12 16:55:54 +02004733 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4734 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004735 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004736 }
4737
Ilya Dryomovde322262012-01-16 22:04:49 +02004738do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004739 /*
David Sterba171938e2017-03-28 14:44:21 +02004740 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004741 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4742 * or, if restriper was paused all the way until unmount, in
David Sterba171938e2017-03-28 14:44:21 +02004743 * free_fs_info. The flag is cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004744 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004745 need_unlock = false;
4746
4747 ret = btrfs_balance(bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004748 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004749
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004750 if (arg) {
4751 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4752 ret = -EFAULT;
4753 }
4754
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004755out_bctl:
4756 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004757out_bargs:
4758 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004759out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004760 mutex_unlock(&fs_info->balance_mutex);
4761 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004762 if (need_unlock)
David Sterba171938e2017-03-28 14:44:21 +02004763 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004764out:
Liu Boe54bfa32012-06-29 03:58:48 -06004765 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004766 return ret;
4767}
4768
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004769static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004770{
4771 if (!capable(CAP_SYS_ADMIN))
4772 return -EPERM;
4773
4774 switch (cmd) {
4775 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004776 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004777 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004778 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004779 }
4780
4781 return -EINVAL;
4782}
4783
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004784static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004785 void __user *arg)
4786{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004787 struct btrfs_ioctl_balance_args *bargs;
4788 int ret = 0;
4789
4790 if (!capable(CAP_SYS_ADMIN))
4791 return -EPERM;
4792
4793 mutex_lock(&fs_info->balance_mutex);
4794 if (!fs_info->balance_ctl) {
4795 ret = -ENOTCONN;
4796 goto out;
4797 }
4798
David Sterba8d2db782015-11-04 15:38:29 +01004799 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004800 if (!bargs) {
4801 ret = -ENOMEM;
4802 goto out;
4803 }
4804
4805 update_ioctl_balance_args(fs_info, 1, bargs);
4806
4807 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4808 ret = -EFAULT;
4809
4810 kfree(bargs);
4811out:
4812 mutex_unlock(&fs_info->balance_mutex);
4813 return ret;
4814}
4815
Miao Xie905b0dd2012-11-26 08:50:11 +00004816static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004817{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004818 struct inode *inode = file_inode(file);
4819 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004820 struct btrfs_ioctl_quota_ctl_args *sa;
4821 struct btrfs_trans_handle *trans = NULL;
4822 int ret;
4823 int err;
4824
4825 if (!capable(CAP_SYS_ADMIN))
4826 return -EPERM;
4827
Miao Xie905b0dd2012-11-26 08:50:11 +00004828 ret = mnt_want_write_file(file);
4829 if (ret)
4830 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004831
4832 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004833 if (IS_ERR(sa)) {
4834 ret = PTR_ERR(sa);
4835 goto drop_write;
4836 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004837
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004838 down_write(&fs_info->subvol_sem);
4839 trans = btrfs_start_transaction(fs_info->tree_root, 2);
Jan Schmidt2f232032013-04-25 16:04:51 +00004840 if (IS_ERR(trans)) {
4841 ret = PTR_ERR(trans);
4842 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004843 }
4844
4845 switch (sa->cmd) {
4846 case BTRFS_QUOTA_CTL_ENABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004847 ret = btrfs_quota_enable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004848 break;
4849 case BTRFS_QUOTA_CTL_DISABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004850 ret = btrfs_quota_disable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004851 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004852 default:
4853 ret = -EINVAL;
4854 break;
4855 }
4856
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004857 err = btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00004858 if (err && !ret)
4859 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004860out:
4861 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004862 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004863drop_write:
4864 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004865 return ret;
4866}
4867
Miao Xie905b0dd2012-11-26 08:50:11 +00004868static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004869{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004870 struct inode *inode = file_inode(file);
4871 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4872 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004873 struct btrfs_ioctl_qgroup_assign_args *sa;
4874 struct btrfs_trans_handle *trans;
4875 int ret;
4876 int err;
4877
4878 if (!capable(CAP_SYS_ADMIN))
4879 return -EPERM;
4880
Miao Xie905b0dd2012-11-26 08:50:11 +00004881 ret = mnt_want_write_file(file);
4882 if (ret)
4883 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004884
4885 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004886 if (IS_ERR(sa)) {
4887 ret = PTR_ERR(sa);
4888 goto drop_write;
4889 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004890
4891 trans = btrfs_join_transaction(root);
4892 if (IS_ERR(trans)) {
4893 ret = PTR_ERR(trans);
4894 goto out;
4895 }
4896
Arne Jansen5d13a372011-09-14 15:53:51 +02004897 if (sa->assign) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004898 ret = btrfs_add_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004899 sa->src, sa->dst);
4900 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004901 ret = btrfs_del_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004902 sa->src, sa->dst);
4903 }
4904
Qu Wenruoe082f562015-02-27 16:24:28 +08004905 /* update qgroup status and info */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004906 err = btrfs_run_qgroups(trans, fs_info);
Qu Wenruoe082f562015-02-27 16:24:28 +08004907 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004908 btrfs_handle_fs_error(fs_info, err,
4909 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004910 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004911 if (err && !ret)
4912 ret = err;
4913
4914out:
4915 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004916drop_write:
4917 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004918 return ret;
4919}
4920
Miao Xie905b0dd2012-11-26 08:50:11 +00004921static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004922{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004923 struct inode *inode = file_inode(file);
4924 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4925 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004926 struct btrfs_ioctl_qgroup_create_args *sa;
4927 struct btrfs_trans_handle *trans;
4928 int ret;
4929 int err;
4930
4931 if (!capable(CAP_SYS_ADMIN))
4932 return -EPERM;
4933
Miao Xie905b0dd2012-11-26 08:50:11 +00004934 ret = mnt_want_write_file(file);
4935 if (ret)
4936 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004937
4938 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004939 if (IS_ERR(sa)) {
4940 ret = PTR_ERR(sa);
4941 goto drop_write;
4942 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004943
Miao Xied86e56c2012-11-15 11:35:41 +00004944 if (!sa->qgroupid) {
4945 ret = -EINVAL;
4946 goto out;
4947 }
4948
Arne Jansen5d13a372011-09-14 15:53:51 +02004949 trans = btrfs_join_transaction(root);
4950 if (IS_ERR(trans)) {
4951 ret = PTR_ERR(trans);
4952 goto out;
4953 }
4954
Arne Jansen5d13a372011-09-14 15:53:51 +02004955 if (sa->create) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004956 ret = btrfs_create_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004957 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004958 ret = btrfs_remove_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004959 }
4960
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004961 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004962 if (err && !ret)
4963 ret = err;
4964
4965out:
4966 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004967drop_write:
4968 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004969 return ret;
4970}
4971
Miao Xie905b0dd2012-11-26 08:50:11 +00004972static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004973{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004974 struct inode *inode = file_inode(file);
4975 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4976 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004977 struct btrfs_ioctl_qgroup_limit_args *sa;
4978 struct btrfs_trans_handle *trans;
4979 int ret;
4980 int err;
4981 u64 qgroupid;
4982
4983 if (!capable(CAP_SYS_ADMIN))
4984 return -EPERM;
4985
Miao Xie905b0dd2012-11-26 08:50:11 +00004986 ret = mnt_want_write_file(file);
4987 if (ret)
4988 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004989
4990 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004991 if (IS_ERR(sa)) {
4992 ret = PTR_ERR(sa);
4993 goto drop_write;
4994 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004995
4996 trans = btrfs_join_transaction(root);
4997 if (IS_ERR(trans)) {
4998 ret = PTR_ERR(trans);
4999 goto out;
5000 }
5001
5002 qgroupid = sa->qgroupid;
5003 if (!qgroupid) {
5004 /* take the current subvol as qgroup */
5005 qgroupid = root->root_key.objectid;
5006 }
5007
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005008 ret = btrfs_limit_qgroup(trans, fs_info, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02005009
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005010 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02005011 if (err && !ret)
5012 ret = err;
5013
5014out:
5015 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00005016drop_write:
5017 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02005018 return ret;
5019}
5020
Jan Schmidt2f232032013-04-25 16:04:51 +00005021static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
5022{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005023 struct inode *inode = file_inode(file);
5024 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00005025 struct btrfs_ioctl_quota_rescan_args *qsa;
5026 int ret;
5027
5028 if (!capable(CAP_SYS_ADMIN))
5029 return -EPERM;
5030
5031 ret = mnt_want_write_file(file);
5032 if (ret)
5033 return ret;
5034
5035 qsa = memdup_user(arg, sizeof(*qsa));
5036 if (IS_ERR(qsa)) {
5037 ret = PTR_ERR(qsa);
5038 goto drop_write;
5039 }
5040
5041 if (qsa->flags) {
5042 ret = -EINVAL;
5043 goto out;
5044 }
5045
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005046 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00005047
5048out:
5049 kfree(qsa);
5050drop_write:
5051 mnt_drop_write_file(file);
5052 return ret;
5053}
5054
5055static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
5056{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005057 struct inode *inode = file_inode(file);
5058 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00005059 struct btrfs_ioctl_quota_rescan_args *qsa;
5060 int ret = 0;
5061
5062 if (!capable(CAP_SYS_ADMIN))
5063 return -EPERM;
5064
David Sterba8d2db782015-11-04 15:38:29 +01005065 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00005066 if (!qsa)
5067 return -ENOMEM;
5068
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005069 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00005070 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005071 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00005072 }
5073
5074 if (copy_to_user(arg, qsa, sizeof(*qsa)))
5075 ret = -EFAULT;
5076
5077 kfree(qsa);
5078 return ret;
5079}
5080
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005081static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
5082{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005083 struct inode *inode = file_inode(file);
5084 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005085
5086 if (!capable(CAP_SYS_ADMIN))
5087 return -EPERM;
5088
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005089 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005090}
5091
Hugo Millsabccd002014-01-30 20:17:00 +00005092static long _btrfs_ioctl_set_received_subvol(struct file *file,
5093 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02005094{
Al Viro496ad9a2013-01-23 17:07:38 -05005095 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005096 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02005097 struct btrfs_root *root = BTRFS_I(inode)->root;
5098 struct btrfs_root_item *root_item = &root->root_item;
5099 struct btrfs_trans_handle *trans;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005100 struct timespec ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02005101 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005102 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005103
David Sterbabd60ea02014-01-16 15:50:22 +01005104 if (!inode_owner_or_capable(inode))
5105 return -EPERM;
5106
Alexander Block8ea05e32012-07-25 17:35:53 +02005107 ret = mnt_want_write_file(file);
5108 if (ret < 0)
5109 return ret;
5110
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005111 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02005112
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005113 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02005114 ret = -EINVAL;
5115 goto out;
5116 }
5117
5118 if (btrfs_root_readonly(root)) {
5119 ret = -EROFS;
5120 goto out;
5121 }
5122
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005123 /*
5124 * 1 - root item
5125 * 2 - uuid items (received uuid + subvol uuid)
5126 */
5127 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005128 if (IS_ERR(trans)) {
5129 ret = PTR_ERR(trans);
5130 trans = NULL;
5131 goto out;
5132 }
5133
5134 sa->rtransid = trans->transid;
5135 sa->rtime.sec = ct.tv_sec;
5136 sa->rtime.nsec = ct.tv_nsec;
5137
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005138 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5139 BTRFS_UUID_SIZE);
5140 if (received_uuid_changed &&
5141 !btrfs_is_empty_uuid(root_item->received_uuid))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005142 btrfs_uuid_tree_rem(trans, fs_info, root_item->received_uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005143 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5144 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02005145 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5146 btrfs_set_root_stransid(root_item, sa->stransid);
5147 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005148 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5149 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5150 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5151 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005152
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005153 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02005154 &root->root_key, &root->root_item);
5155 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005156 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005157 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005158 }
5159 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005160 ret = btrfs_uuid_tree_add(trans, fs_info, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005161 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5162 root->root_key.objectid);
5163 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005164 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03005165 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005166 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005167 }
5168 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005169 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00005170out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005171 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00005172 mnt_drop_write_file(file);
5173 return ret;
5174}
5175
5176#ifdef CONFIG_64BIT
5177static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5178 void __user *arg)
5179{
5180 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5181 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5182 int ret = 0;
5183
5184 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305185 if (IS_ERR(args32))
5186 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00005187
David Sterba8d2db782015-11-04 15:38:29 +01005188 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005189 if (!args64) {
5190 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005191 goto out;
5192 }
5193
5194 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5195 args64->stransid = args32->stransid;
5196 args64->rtransid = args32->rtransid;
5197 args64->stime.sec = args32->stime.sec;
5198 args64->stime.nsec = args32->stime.nsec;
5199 args64->rtime.sec = args32->rtime.sec;
5200 args64->rtime.nsec = args32->rtime.nsec;
5201 args64->flags = args32->flags;
5202
5203 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5204 if (ret)
5205 goto out;
5206
5207 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5208 args32->stransid = args64->stransid;
5209 args32->rtransid = args64->rtransid;
5210 args32->stime.sec = args64->stime.sec;
5211 args32->stime.nsec = args64->stime.nsec;
5212 args32->rtime.sec = args64->rtime.sec;
5213 args32->rtime.nsec = args64->rtime.nsec;
5214 args32->flags = args64->flags;
5215
5216 ret = copy_to_user(arg, args32, sizeof(*args32));
5217 if (ret)
5218 ret = -EFAULT;
5219
5220out:
5221 kfree(args32);
5222 kfree(args64);
5223 return ret;
5224}
5225#endif
5226
5227static long btrfs_ioctl_set_received_subvol(struct file *file,
5228 void __user *arg)
5229{
5230 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5231 int ret = 0;
5232
5233 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305234 if (IS_ERR(sa))
5235 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00005236
5237 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5238
5239 if (ret)
5240 goto out;
5241
Alexander Block8ea05e32012-07-25 17:35:53 +02005242 ret = copy_to_user(arg, sa, sizeof(*sa));
5243 if (ret)
5244 ret = -EFAULT;
5245
5246out:
5247 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005248 return ret;
5249}
5250
jeff.liu867ab662013-01-05 02:48:01 +00005251static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5252{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005253 struct inode *inode = file_inode(file);
5254 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005255 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005256 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005257 char label[BTRFS_LABEL_SIZE];
5258
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005259 spin_lock(&fs_info->super_lock);
5260 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5261 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005262
5263 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005264
5265 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005266 btrfs_warn(fs_info,
5267 "label is too long, return the first %zu bytes",
5268 --len);
jeff.liu867ab662013-01-05 02:48:01 +00005269 }
5270
jeff.liu867ab662013-01-05 02:48:01 +00005271 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005272
5273 return ret ? -EFAULT : 0;
5274}
5275
jeff.liua8bfd4a2013-01-05 02:48:08 +00005276static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5277{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005278 struct inode *inode = file_inode(file);
5279 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5280 struct btrfs_root *root = BTRFS_I(inode)->root;
5281 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005282 struct btrfs_trans_handle *trans;
5283 char label[BTRFS_LABEL_SIZE];
5284 int ret;
5285
5286 if (!capable(CAP_SYS_ADMIN))
5287 return -EPERM;
5288
5289 if (copy_from_user(label, arg, sizeof(label)))
5290 return -EFAULT;
5291
5292 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005293 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005294 "unable to set label with more than %d bytes",
5295 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005296 return -EINVAL;
5297 }
5298
5299 ret = mnt_want_write_file(file);
5300 if (ret)
5301 return ret;
5302
jeff.liua8bfd4a2013-01-05 02:48:08 +00005303 trans = btrfs_start_transaction(root, 0);
5304 if (IS_ERR(trans)) {
5305 ret = PTR_ERR(trans);
5306 goto out_unlock;
5307 }
5308
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005309 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005310 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005311 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005312 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005313
5314out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005315 mnt_drop_write_file(file);
5316 return ret;
5317}
5318
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005319#define INIT_FEATURE_FLAGS(suffix) \
5320 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5321 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5322 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5323
David Sterbad5131b62016-02-17 15:26:27 +01005324int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005325{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005326 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005327 INIT_FEATURE_FLAGS(SUPP),
5328 INIT_FEATURE_FLAGS(SAFE_SET),
5329 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5330 };
5331
5332 if (copy_to_user(arg, &features, sizeof(features)))
5333 return -EFAULT;
5334
5335 return 0;
5336}
5337
5338static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5339{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005340 struct inode *inode = file_inode(file);
5341 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5342 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005343 struct btrfs_ioctl_feature_flags features;
5344
5345 features.compat_flags = btrfs_super_compat_flags(super_block);
5346 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5347 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5348
5349 if (copy_to_user(arg, &features, sizeof(features)))
5350 return -EFAULT;
5351
5352 return 0;
5353}
5354
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005355static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005356 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005357 u64 change_mask, u64 flags, u64 supported_flags,
5358 u64 safe_set, u64 safe_clear)
5359{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005360 const char *type = btrfs_feature_set_names[set];
5361 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005362 u64 disallowed, unsupported;
5363 u64 set_mask = flags & change_mask;
5364 u64 clear_mask = ~flags & change_mask;
5365
5366 unsupported = set_mask & ~supported_flags;
5367 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005368 names = btrfs_printable_features(set, unsupported);
5369 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005370 btrfs_warn(fs_info,
5371 "this kernel does not support the %s feature bit%s",
5372 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005373 kfree(names);
5374 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005375 btrfs_warn(fs_info,
5376 "this kernel does not support %s bits 0x%llx",
5377 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005378 return -EOPNOTSUPP;
5379 }
5380
5381 disallowed = set_mask & ~safe_set;
5382 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005383 names = btrfs_printable_features(set, disallowed);
5384 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005385 btrfs_warn(fs_info,
5386 "can't set the %s feature bit%s while mounted",
5387 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005388 kfree(names);
5389 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005390 btrfs_warn(fs_info,
5391 "can't set %s bits 0x%llx while mounted",
5392 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005393 return -EPERM;
5394 }
5395
5396 disallowed = clear_mask & ~safe_clear;
5397 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005398 names = btrfs_printable_features(set, disallowed);
5399 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005400 btrfs_warn(fs_info,
5401 "can't clear the %s feature bit%s while mounted",
5402 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005403 kfree(names);
5404 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005405 btrfs_warn(fs_info,
5406 "can't clear %s bits 0x%llx while mounted",
5407 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005408 return -EPERM;
5409 }
5410
5411 return 0;
5412}
5413
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005414#define check_feature(fs_info, change_mask, flags, mask_base) \
5415check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005416 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5417 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5418 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5419
5420static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5421{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005422 struct inode *inode = file_inode(file);
5423 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5424 struct btrfs_root *root = BTRFS_I(inode)->root;
5425 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005426 struct btrfs_ioctl_feature_flags flags[2];
5427 struct btrfs_trans_handle *trans;
5428 u64 newflags;
5429 int ret;
5430
5431 if (!capable(CAP_SYS_ADMIN))
5432 return -EPERM;
5433
5434 if (copy_from_user(flags, arg, sizeof(flags)))
5435 return -EFAULT;
5436
5437 /* Nothing to do */
5438 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5439 !flags[0].incompat_flags)
5440 return 0;
5441
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005442 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005443 flags[1].compat_flags, COMPAT);
5444 if (ret)
5445 return ret;
5446
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005447 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005448 flags[1].compat_ro_flags, COMPAT_RO);
5449 if (ret)
5450 return ret;
5451
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005452 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005453 flags[1].incompat_flags, INCOMPAT);
5454 if (ret)
5455 return ret;
5456
David Sterba7ab19622016-05-04 11:32:00 +02005457 ret = mnt_want_write_file(file);
5458 if (ret)
5459 return ret;
5460
David Sterba8051aa12014-02-07 14:34:04 +01005461 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005462 if (IS_ERR(trans)) {
5463 ret = PTR_ERR(trans);
5464 goto out_drop_write;
5465 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005466
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005467 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005468 newflags = btrfs_super_compat_flags(super_block);
5469 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5470 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5471 btrfs_set_super_compat_flags(super_block, newflags);
5472
5473 newflags = btrfs_super_compat_ro_flags(super_block);
5474 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5475 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5476 btrfs_set_super_compat_ro_flags(super_block, newflags);
5477
5478 newflags = btrfs_super_incompat_flags(super_block);
5479 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5480 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5481 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005482 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005483
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005484 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02005485out_drop_write:
5486 mnt_drop_write_file(file);
5487
5488 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005489}
5490
Josef Bacik2351f432017-09-27 10:43:13 -04005491static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
5492{
5493 struct btrfs_ioctl_send_args *arg;
5494 int ret;
5495
5496 if (compat) {
5497#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5498 struct btrfs_ioctl_send_args_32 args32;
5499
5500 ret = copy_from_user(&args32, argp, sizeof(args32));
5501 if (ret)
5502 return -EFAULT;
5503 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
5504 if (!arg)
5505 return -ENOMEM;
5506 arg->send_fd = args32.send_fd;
5507 arg->clone_sources_count = args32.clone_sources_count;
5508 arg->clone_sources = compat_ptr(args32.clone_sources);
5509 arg->parent_root = args32.parent_root;
5510 arg->flags = args32.flags;
5511 memcpy(arg->reserved, args32.reserved,
5512 sizeof(args32.reserved));
5513#else
5514 return -ENOTTY;
5515#endif
5516 } else {
5517 arg = memdup_user(argp, sizeof(*arg));
5518 if (IS_ERR(arg))
5519 return PTR_ERR(arg);
5520 }
5521 ret = btrfs_ioctl_send(file, arg);
5522 kfree(arg);
5523 return ret;
5524}
5525
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005526long btrfs_ioctl(struct file *file, unsigned int
5527 cmd, unsigned long arg)
5528{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005529 struct inode *inode = file_inode(file);
5530 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5531 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005532 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005533
5534 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005535 case FS_IOC_GETFLAGS:
5536 return btrfs_ioctl_getflags(file, argp);
5537 case FS_IOC_SETFLAGS:
5538 return btrfs_ioctl_setflags(file, argp);
5539 case FS_IOC_GETVERSION:
5540 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005541 case FITRIM:
5542 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005543 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005544 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005545 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005546 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005547 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005548 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005549 case BTRFS_IOC_SUBVOL_CREATE_V2:
5550 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005551 case BTRFS_IOC_SNAP_DESTROY:
5552 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005553 case BTRFS_IOC_SUBVOL_GETFLAGS:
5554 return btrfs_ioctl_subvol_getflags(file, argp);
5555 case BTRFS_IOC_SUBVOL_SETFLAGS:
5556 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005557 case BTRFS_IOC_DEFAULT_SUBVOL:
5558 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005559 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005560 return btrfs_ioctl_defrag(file, NULL);
5561 case BTRFS_IOC_DEFRAG_RANGE:
5562 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005563 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005564 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005565 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005566 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005567 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005568 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005569 case BTRFS_IOC_RM_DEV_V2:
5570 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005571 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005572 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005573 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005574 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005575 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005576 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005577 case BTRFS_IOC_TRANS_START:
5578 return btrfs_ioctl_trans_start(file);
5579 case BTRFS_IOC_TRANS_END:
5580 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005581 case BTRFS_IOC_TREE_SEARCH:
5582 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005583 case BTRFS_IOC_TREE_SEARCH_V2:
5584 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005585 case BTRFS_IOC_INO_LOOKUP:
5586 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005587 case BTRFS_IOC_INO_PATHS:
5588 return btrfs_ioctl_ino_to_path(root, argp);
5589 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04005590 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
5591 case BTRFS_IOC_LOGICAL_INO_V2:
5592 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00005593 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005594 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005595 case BTRFS_IOC_SYNC: {
5596 int ret;
5597
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005598 ret = btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005599 if (ret)
5600 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005601 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005602 /*
5603 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005604 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005605 * processing uncleaned subvols.
5606 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005607 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005608 return ret;
5609 }
Sage Weil46204592010-10-29 15:41:32 -04005610 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005611 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005612 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005613 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005614 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005615 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005616 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005617 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005618 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005619 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005620 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005621 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005622 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005623 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005624 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005625 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005626 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5627 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005628#ifdef CONFIG_64BIT
5629 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5630 return btrfs_ioctl_set_received_subvol_32(file, argp);
5631#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005632 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04005633 return _btrfs_ioctl_send(file, argp, false);
5634#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5635 case BTRFS_IOC_SEND_32:
5636 return _btrfs_ioctl_send(file, argp, true);
5637#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005638 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005639 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005640 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005641 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005642 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005643 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005644 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005645 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005646 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005647 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005648 case BTRFS_IOC_QUOTA_RESCAN:
5649 return btrfs_ioctl_quota_rescan(file, argp);
5650 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5651 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005652 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5653 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005654 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005655 return btrfs_ioctl_dev_replace(fs_info, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005656 case BTRFS_IOC_GET_FSLABEL:
5657 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005658 case BTRFS_IOC_SET_FSLABEL:
5659 return btrfs_ioctl_set_fslabel(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005660 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005661 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005662 case BTRFS_IOC_GET_FEATURES:
5663 return btrfs_ioctl_get_features(file, argp);
5664 case BTRFS_IOC_SET_FEATURES:
5665 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005666 }
5667
5668 return -ENOTTY;
5669}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005670
5671#ifdef CONFIG_COMPAT
5672long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5673{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005674 /*
5675 * These all access 32-bit values anyway so no further
5676 * handling is necessary.
5677 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005678 switch (cmd) {
5679 case FS_IOC32_GETFLAGS:
5680 cmd = FS_IOC_GETFLAGS;
5681 break;
5682 case FS_IOC32_SETFLAGS:
5683 cmd = FS_IOC_SETFLAGS;
5684 break;
5685 case FS_IOC32_GETVERSION:
5686 cmd = FS_IOC_GETVERSION;
5687 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005688 }
5689
5690 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5691}
5692#endif