blob: 632e26d6f7ce0cd26284b0e39c140c7f09a1f3d2 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004 */
5
6#include <linux/kernel.h>
7#include <linux/bio.h>
8#include <linux/buffer_head.h>
9#include <linux/file.h>
10#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040011#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040012#include <linux/pagemap.h>
13#include <linux/highmem.h>
14#include <linux/time.h>
15#include <linux/init.h>
16#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040017#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040018#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040019#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040020#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040021#include <linux/swap.h>
22#include <linux/writeback.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040023#include <linux/compat.h>
24#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040025#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040026#include <linux/xattr.h>
David Sterbaf54de062017-05-31 19:32:09 +020027#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000029#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020030#include <linux/uuid.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000031#include <linux/btrfs.h>
Mark Fasheh416161d2013-08-06 11:42:51 -070032#include <linux/uaccess.h>
Jeff Laytonae5e1652018-01-29 06:41:30 -050033#include <linux/iversion.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include "ctree.h"
35#include "disk-io.h"
36#include "transaction.h"
37#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040038#include "print-tree.h"
39#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040040#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080041#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020042#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040043#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020044#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010045#include "dev-replace.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000046#include "props.h"
Jeff Mahoney3b02a682013-11-01 13:07:02 -040047#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070048#include "qgroup.h"
Filipe Manana1ec9a1a2016-02-10 10:42:25 +000049#include "tree-log.h"
Anand Jainebb87652016-03-10 17:26:59 +080050#include "compression.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040051
Hugo Millsabccd002014-01-30 20:17:00 +000052#ifdef CONFIG_64BIT
53/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
54 * structures are incorrect, as the timespec structure from userspace
55 * is 4 bytes too small. We define these alternatives here to teach
56 * the kernel about the 32-bit struct packing.
57 */
58struct btrfs_ioctl_timespec_32 {
59 __u64 sec;
60 __u32 nsec;
61} __attribute__ ((__packed__));
62
63struct btrfs_ioctl_received_subvol_args_32 {
64 char uuid[BTRFS_UUID_SIZE]; /* in */
65 __u64 stransid; /* in */
66 __u64 rtransid; /* out */
67 struct btrfs_ioctl_timespec_32 stime; /* in */
68 struct btrfs_ioctl_timespec_32 rtime; /* out */
69 __u64 flags; /* in */
70 __u64 reserved[16]; /* in */
71} __attribute__ ((__packed__));
72
73#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
74 struct btrfs_ioctl_received_subvol_args_32)
75#endif
76
Josef Bacik2351f432017-09-27 10:43:13 -040077#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
78struct btrfs_ioctl_send_args_32 {
79 __s64 send_fd; /* in */
80 __u64 clone_sources_count; /* in */
81 compat_uptr_t clone_sources; /* in */
82 __u64 parent_root; /* in */
83 __u64 flags; /* in */
84 __u64 reserved[4]; /* in */
85} __attribute__ ((__packed__));
86
87#define BTRFS_IOC_SEND_32 _IOW(BTRFS_IOCTL_MAGIC, 38, \
88 struct btrfs_ioctl_send_args_32)
89#endif
Hugo Millsabccd002014-01-30 20:17:00 +000090
Mark Fasheh416161d2013-08-06 11:42:51 -070091static int btrfs_clone(struct inode *src, struct inode *inode,
Mark Fasheh1c919a52015-06-30 14:42:08 -070092 u64 off, u64 olen, u64 olen_aligned, u64 destoff,
93 int no_time_update);
Mark Fasheh416161d2013-08-06 11:42:51 -070094
Christoph Hellwig6cbff002009-04-17 10:37:41 +020095/* Mask out flags that are inappropriate for the given type of inode. */
David Sterba38e82de2018-03-26 18:29:41 +020096static unsigned int btrfs_mask_flags(umode_t mode, unsigned int flags)
Christoph Hellwig6cbff002009-04-17 10:37:41 +020097{
98 if (S_ISDIR(mode))
99 return flags;
100 else if (S_ISREG(mode))
101 return flags & ~FS_DIRSYNC_FL;
102 else
103 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
104}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400105
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200106/*
107 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
108 */
109static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
110{
111 unsigned int iflags = 0;
112
113 if (flags & BTRFS_INODE_SYNC)
114 iflags |= FS_SYNC_FL;
115 if (flags & BTRFS_INODE_IMMUTABLE)
116 iflags |= FS_IMMUTABLE_FL;
117 if (flags & BTRFS_INODE_APPEND)
118 iflags |= FS_APPEND_FL;
119 if (flags & BTRFS_INODE_NODUMP)
120 iflags |= FS_NODUMP_FL;
121 if (flags & BTRFS_INODE_NOATIME)
122 iflags |= FS_NOATIME_FL;
123 if (flags & BTRFS_INODE_DIRSYNC)
124 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000125 if (flags & BTRFS_INODE_NODATACOW)
126 iflags |= FS_NOCOW_FL;
127
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900128 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000129 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900130 else if (flags & BTRFS_INODE_COMPRESS)
131 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200132
133 return iflags;
134}
135
136/*
137 * Update inode->i_flags based on the btrfs internal flags.
138 */
139void btrfs_update_iflags(struct inode *inode)
140{
141 struct btrfs_inode *ip = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100142 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200143
144 if (ip->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100145 new_fl |= S_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200146 if (ip->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100147 new_fl |= S_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200148 if (ip->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100149 new_fl |= S_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200150 if (ip->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100151 new_fl |= S_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200152 if (ip->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100153 new_fl |= S_DIRSYNC;
154
155 set_mask_bits(&inode->i_flags,
156 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
157 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200158}
159
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200160static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
161{
Al Viro496ad9a2013-01-23 17:07:38 -0500162 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200163 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
164
165 if (copy_to_user(arg, &flags, sizeof(flags)))
166 return -EFAULT;
167 return 0;
168}
169
Liu Bo75e7cb72011-03-22 10:12:20 +0000170static int check_flags(unsigned int flags)
171{
172 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
173 FS_NOATIME_FL | FS_NODUMP_FL | \
174 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000175 FS_NOCOMP_FL | FS_COMPR_FL |
176 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000177 return -EOPNOTSUPP;
178
179 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
180 return -EINVAL;
181
Liu Bo75e7cb72011-03-22 10:12:20 +0000182 return 0;
183}
184
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200185static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
186{
Al Viro496ad9a2013-01-23 17:07:38 -0500187 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400188 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200189 struct btrfs_inode *ip = BTRFS_I(inode);
190 struct btrfs_root *root = ip->root;
191 struct btrfs_trans_handle *trans;
192 unsigned int flags, oldflags;
193 int ret;
Li Zefanf062abf02011-12-29 13:36:45 +0800194 u64 ip_oldflags;
195 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600196 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200197
David Sterbabd60ea02014-01-16 15:50:22 +0100198 if (!inode_owner_or_capable(inode))
199 return -EPERM;
200
Li Zefanb83cc962010-12-20 16:04:08 +0800201 if (btrfs_root_readonly(root))
202 return -EROFS;
203
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200204 if (copy_from_user(&flags, arg, sizeof(flags)))
205 return -EFAULT;
206
Liu Bo75e7cb72011-03-22 10:12:20 +0000207 ret = check_flags(flags);
208 if (ret)
209 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200210
Jan Karae7848682012-06-12 16:20:32 +0200211 ret = mnt_want_write_file(file);
212 if (ret)
213 return ret;
214
Al Viro59551022016-01-22 15:40:57 -0500215 inode_lock(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200216
Li Zefanf062abf02011-12-29 13:36:45 +0800217 ip_oldflags = ip->flags;
218 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600219 mode = inode->i_mode;
Li Zefanf062abf02011-12-29 13:36:45 +0800220
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200221 flags = btrfs_mask_flags(inode->i_mode, flags);
222 oldflags = btrfs_flags_to_ioctl(ip->flags);
223 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
224 if (!capable(CAP_LINUX_IMMUTABLE)) {
225 ret = -EPERM;
226 goto out_unlock;
227 }
228 }
229
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200230 if (flags & FS_SYNC_FL)
231 ip->flags |= BTRFS_INODE_SYNC;
232 else
233 ip->flags &= ~BTRFS_INODE_SYNC;
234 if (flags & FS_IMMUTABLE_FL)
235 ip->flags |= BTRFS_INODE_IMMUTABLE;
236 else
237 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
238 if (flags & FS_APPEND_FL)
239 ip->flags |= BTRFS_INODE_APPEND;
240 else
241 ip->flags &= ~BTRFS_INODE_APPEND;
242 if (flags & FS_NODUMP_FL)
243 ip->flags |= BTRFS_INODE_NODUMP;
244 else
245 ip->flags &= ~BTRFS_INODE_NODUMP;
246 if (flags & FS_NOATIME_FL)
247 ip->flags |= BTRFS_INODE_NOATIME;
248 else
249 ip->flags &= ~BTRFS_INODE_NOATIME;
250 if (flags & FS_DIRSYNC_FL)
251 ip->flags |= BTRFS_INODE_DIRSYNC;
252 else
253 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600254 if (flags & FS_NOCOW_FL) {
255 if (S_ISREG(mode)) {
256 /*
257 * It's safe to turn csums off here, no extents exist.
258 * Otherwise we want the flag to reflect the real COW
259 * status of the file and will not set it.
260 */
261 if (inode->i_size == 0)
262 ip->flags |= BTRFS_INODE_NODATACOW
263 | BTRFS_INODE_NODATASUM;
264 } else {
265 ip->flags |= BTRFS_INODE_NODATACOW;
266 }
267 } else {
268 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400269 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600270 */
271 if (S_ISREG(mode)) {
272 if (inode->i_size == 0)
273 ip->flags &= ~(BTRFS_INODE_NODATACOW
274 | BTRFS_INODE_NODATASUM);
275 } else {
276 ip->flags &= ~BTRFS_INODE_NODATACOW;
277 }
278 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200279
Liu Bo75e7cb72011-03-22 10:12:20 +0000280 /*
281 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
282 * flag may be changed automatically if compression code won't make
283 * things smaller.
284 */
285 if (flags & FS_NOCOMP_FL) {
286 ip->flags &= ~BTRFS_INODE_COMPRESS;
287 ip->flags |= BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000288
289 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
290 if (ret && ret != -ENODATA)
291 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000292 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000293 const char *comp;
294
Liu Bo75e7cb72011-03-22 10:12:20 +0000295 ip->flags |= BTRFS_INODE_COMPRESS;
296 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000297
David Sterba93370502017-10-31 17:32:41 +0100298 comp = btrfs_compress_type2str(fs_info->compress_type);
299 if (!comp || comp[0] == 0)
300 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
301
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000302 ret = btrfs_set_prop(inode, "btrfs.compression",
303 comp, strlen(comp), 0);
304 if (ret)
305 goto out_drop;
306
Li Zefanebcb9042011-04-15 03:03:17 +0000307 } else {
Filipe Manana78a017a2014-09-11 11:44:49 +0100308 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
309 if (ret && ret != -ENODATA)
310 goto out_drop;
Li Zefanebcb9042011-04-15 03:03:17 +0000311 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000312 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200313
Li Zefan4da6f1a2011-12-29 13:39:50 +0800314 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf02011-12-29 13:36:45 +0800315 if (IS_ERR(trans)) {
316 ret = PTR_ERR(trans);
317 goto out_drop;
318 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200319
Li Zefan306424cc2011-12-14 20:12:02 -0500320 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400321 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700322 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200323 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200324
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400325 btrfs_end_transaction(trans);
Li Zefanf062abf02011-12-29 13:36:45 +0800326 out_drop:
327 if (ret) {
328 ip->flags = ip_oldflags;
329 inode->i_flags = i_oldflags;
330 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200331
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200332 out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500333 inode_unlock(inode);
Jan Karae7848682012-06-12 16:20:32 +0200334 mnt_drop_write_file(file);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000335 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200336}
337
338static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
339{
Al Viro496ad9a2013-01-23 17:07:38 -0500340 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200341
342 return put_user(inode->i_generation, arg);
343}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400344
Li Dongyangf7039b12011-03-24 10:24:28 +0000345static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
346{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400347 struct inode *inode = file_inode(file);
348 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000349 struct btrfs_device *device;
350 struct request_queue *q;
351 struct fstrim_range range;
352 u64 minlen = ULLONG_MAX;
353 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500354 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000355 int ret;
356
357 if (!capable(CAP_SYS_ADMIN))
358 return -EPERM;
359
Xiao Guangrong1f781602011-04-20 10:09:16 +0000360 rcu_read_lock();
361 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
362 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000363 if (!device->bdev)
364 continue;
365 q = bdev_get_queue(device->bdev);
366 if (blk_queue_discard(q)) {
367 num_devices++;
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100368 minlen = min_t(u64, q->limits.discard_granularity,
Li Dongyangf7039b12011-03-24 10:24:28 +0000369 minlen);
370 }
371 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000372 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200373
Li Dongyangf7039b12011-03-24 10:24:28 +0000374 if (!num_devices)
375 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000376 if (copy_from_user(&range, arg, sizeof(range)))
377 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000378 if (range.start > total_bytes ||
379 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200380 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000381
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200382 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000383 range.minlen = max(range.minlen, minlen);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400384 ret = btrfs_trim_fs(fs_info, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000385 if (ret < 0)
386 return ret;
387
388 if (copy_to_user(arg, &range, sizeof(range)))
389 return -EFAULT;
390
391 return 0;
392}
393
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200394int btrfs_is_empty_uuid(u8 *uuid)
395{
Chris Mason46e0f662013-11-15 12:14:55 +0100396 int i;
397
398 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
399 if (uuid[i])
400 return 0;
401 }
402 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200403}
404
Miao Xied5c12072013-02-28 10:04:33 +0000405static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400406 struct dentry *dentry,
David Sterba52f75f42017-02-14 18:33:53 +0100407 const char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200408 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000409 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400410{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400411 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400412 struct btrfs_trans_handle *trans;
413 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100414 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400415 struct btrfs_inode_item *inode_item;
416 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000417 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400418 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000419 struct btrfs_block_rsv block_rsv;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700420 struct timespec cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900421 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400422 int ret;
423 int err;
424 u64 objectid;
425 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500426 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000427 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200428 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400429
David Sterba49a3c4d2016-03-24 17:49:22 +0100430 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
431 if (!root_item)
432 return -ENOMEM;
433
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400434 ret = btrfs_find_free_objectid(fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400435 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100436 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000437
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800438 /*
439 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400440 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800441 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100442 if (btrfs_qgroup_level(objectid)) {
443 ret = -ENOSPC;
444 goto fail_free;
445 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800446
Miao Xied5c12072013-02-28 10:04:33 +0000447 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400448 /*
Miao Xied5c12072013-02-28 10:04:33 +0000449 * The same as the snapshot creation, please see the comment
450 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400451 */
Miao Xied5c12072013-02-28 10:04:33 +0000452 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200453 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000454 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100455 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400456
Miao Xied5c12072013-02-28 10:04:33 +0000457 trans = btrfs_start_transaction(root, 0);
458 if (IS_ERR(trans)) {
459 ret = PTR_ERR(trans);
David Sterba7775c812017-02-10 19:18:18 +0100460 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
David Sterba49a3c4d2016-03-24 17:49:22 +0100461 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000462 }
463 trans->block_rsv = &block_rsv;
464 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400465
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400466 ret = btrfs_qgroup_inherit(trans, fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200467 if (ret)
468 goto fail;
469
David Sterba4d75f8a2014-06-15 01:54:12 +0200470 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400471 if (IS_ERR(leaf)) {
472 ret = PTR_ERR(leaf);
473 goto fail;
474 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400475
David Sterbab159fa22016-11-08 18:09:03 +0100476 memzero_extent_buffer(leaf, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400477 btrfs_set_header_bytenr(leaf, leaf->start);
478 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400479 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400480 btrfs_set_header_owner(leaf, objectid);
481
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400482 write_extent_buffer_fsid(leaf, fs_info->fsid);
483 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400484 btrfs_mark_buffer_dirty(leaf);
485
David Sterba49a3c4d2016-03-24 17:49:22 +0100486 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800487 btrfs_set_stack_inode_generation(inode_item, 1);
488 btrfs_set_stack_inode_size(inode_item, 3);
489 btrfs_set_stack_inode_nlink(inode_item, 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400490 btrfs_set_stack_inode_nbytes(inode_item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400491 fs_info->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800492 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400493
David Sterba49a3c4d2016-03-24 17:49:22 +0100494 btrfs_set_root_flags(root_item, 0);
495 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800496 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000497
David Sterba49a3c4d2016-03-24 17:49:22 +0100498 btrfs_set_root_bytenr(root_item, leaf->start);
499 btrfs_set_root_generation(root_item, trans->transid);
500 btrfs_set_root_level(root_item, 0);
501 btrfs_set_root_refs(root_item, 1);
502 btrfs_set_root_used(root_item, leaf->len);
503 btrfs_set_root_last_snapshot(root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400504
David Sterba49a3c4d2016-03-24 17:49:22 +0100505 btrfs_set_root_generation_v2(root_item,
506 btrfs_root_generation(root_item));
Alexander Block8ea05e32012-07-25 17:35:53 +0200507 uuid_le_gen(&new_uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100508 memcpy(root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
509 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
510 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
511 root_item->ctime = root_item->otime;
512 btrfs_set_root_ctransid(root_item, trans->transid);
513 btrfs_set_root_otransid(root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400514
Chris Mason925baed2008-06-25 16:01:30 -0400515 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400516 free_extent_buffer(leaf);
517 leaf = NULL;
518
David Sterba49a3c4d2016-03-24 17:49:22 +0100519 btrfs_set_root_dirid(root_item, new_dirid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400520
521 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400522 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200523 key.type = BTRFS_ROOT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400524 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100525 root_item);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400526 if (ret)
527 goto fail;
528
Yan, Zheng76dda932009-09-21 16:00:26 -0400529 key.offset = (u64)-1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400530 new_root = btrfs_read_fs_root_no_name(fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100531 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100532 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400533 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100534 goto fail;
535 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400536
537 btrfs_record_root_in_trans(trans, new_root);
538
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000539 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700540 if (ret) {
541 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400542 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700543 goto fail;
544 }
545
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530546 mutex_lock(&new_root->objectid_mutex);
547 new_root->highest_objectid = new_dirid;
548 mutex_unlock(&new_root->objectid_mutex);
549
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400550 /*
551 * insert the directory item
552 */
Nikolay Borisov877574e2017-02-20 13:50:33 +0200553 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100554 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400555 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100556 goto fail;
557 }
Chris Mason3de45862008-11-17 21:02:50 -0500558
559 ret = btrfs_insert_dir_item(trans, root,
Nikolay Borisov8e7611c2017-02-20 13:50:31 +0200560 name, namelen, BTRFS_I(dir), &key,
Chris Mason3de45862008-11-17 21:02:50 -0500561 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100562 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400563 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400564 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100565 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500566
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200567 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
Yan Zheng52c26172009-01-05 15:43:43 -0500568 ret = btrfs_update_inode(trans, root, dir);
569 BUG_ON(ret);
570
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400571 ret = btrfs_add_root_ref(trans, fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400572 objectid, root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200573 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500574 BUG_ON(ret);
575
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400576 ret = btrfs_uuid_tree_add(trans, fs_info, root_item->uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400577 BTRFS_UUID_KEY_SUBVOL, objectid);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200578 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400579 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200580
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400581fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100582 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000583 trans->block_rsv = NULL;
584 trans->bytes_reserved = 0;
David Sterba7775c812017-02-10 19:18:18 +0100585 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Liu Bode6e8202014-01-09 14:57:06 +0800586
Sage Weil72fd0322010-10-29 15:41:32 -0400587 if (async_transid) {
588 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400589 err = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000590 if (err)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400591 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400592 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400593 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400594 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400595 if (err && !ret)
596 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500597
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900598 if (!ret) {
599 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800600 if (IS_ERR(inode))
601 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900602 d_instantiate(dentry, inode);
603 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400604 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100605
606fail_free:
607 kfree(root_item);
608 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400609}
610
Miao Xiee9662f72013-02-28 10:01:15 +0000611static int create_snapshot(struct btrfs_root *root, struct inode *dir,
David Sterba61d7e4c2017-02-10 19:54:06 +0100612 struct dentry *dentry,
Miao Xiee9662f72013-02-28 10:01:15 +0000613 u64 *async_transid, bool readonly,
614 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400615{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400616 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000617 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400618 struct btrfs_pending_snapshot *pending_snapshot;
619 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000620 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400621
Miao Xie27cdeb72014-04-02 19:51:05 +0800622 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400623 return -EINVAL;
624
David Sterba23269bf2017-02-13 11:03:44 +0100625 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100626 if (!pending_snapshot)
627 return -ENOMEM;
628
David Sterbab0c0ea62015-11-10 18:54:00 +0100629 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100630 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100631 pending_snapshot->path = btrfs_alloc_path();
632 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100633 ret = -ENOMEM;
634 goto free_pending;
635 }
636
David Sterbaea14b57f2017-06-22 02:19:11 +0200637 atomic_inc(&root->will_be_snapshotted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100638 smp_mb__after_atomic();
Liu Bo45bac0f2017-09-01 16:14:29 -0600639 /* wait for no snapshot writes */
640 wait_event(root->subv_writers->wait,
641 percpu_counter_sum(&root->subv_writers->counter) == 0);
Miao Xie8257b2d2014-03-06 13:38:19 +0800642
Miao Xie6a038432013-05-15 07:48:24 +0000643 ret = btrfs_start_delalloc_inodes(root, 0);
644 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100645 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000646
Chris Mason6374e57a2017-06-23 09:48:21 -0700647 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
Miao Xie6a038432013-05-15 07:48:24 +0000648
Miao Xie66d8f3d2012-09-06 04:02:28 -0600649 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
650 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000651 /*
652 * 1 - parent dir inode
653 * 2 - dir entries
654 * 1 - root item
655 * 2 - root ref/backref
656 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200657 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000658 */
659 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200660 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400661 &pending_snapshot->qgroup_reserved,
662 false);
Miao Xied5c12072013-02-28 10:04:33 +0000663 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100664 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000665
Yan, Zhenga22285a2010-05-16 10:48:46 -0400666 pending_snapshot->dentry = dentry;
667 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800668 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000669 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000670 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400671
Miao Xied5c12072013-02-28 10:04:33 +0000672 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400673 if (IS_ERR(trans)) {
674 ret = PTR_ERR(trans);
675 goto fail;
676 }
677
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400678 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400679 list_add(&pending_snapshot->list,
680 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400681 spin_unlock(&fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400682 if (async_transid) {
683 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400684 ret = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000685 if (ret)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400686 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400687 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400688 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400689 }
Miao Xieaec80302013-03-04 09:44:29 +0000690 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400691 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400692
693 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400694 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000695 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400696
Chris Masond3797302014-10-15 13:50:56 -0700697 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
698 if (ret)
699 goto fail;
700
David Howells2b0143b2015-03-17 22:25:59 +0000701 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000702 if (IS_ERR(inode)) {
703 ret = PTR_ERR(inode);
704 goto fail;
705 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900706
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000707 d_instantiate(dentry, inode);
708 ret = 0;
709fail:
David Sterba7775c812017-02-10 19:18:18 +0100710 btrfs_subvolume_release_metadata(fs_info, &pending_snapshot->block_rsv);
David Sterbaa1ee7362015-11-10 18:53:56 +0100711dec_and_free:
David Sterbaea14b57f2017-06-22 02:19:11 +0200712 if (atomic_dec_and_test(&root->will_be_snapshotted))
Peter Zijlstra46259562018-03-15 11:43:08 +0100713 wake_up_var(&root->will_be_snapshotted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100714free_pending:
715 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100716 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100717 kfree(pending_snapshot);
718
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400719 return ret;
720}
721
Sage Weil4260f7c2010-10-29 15:46:43 -0400722/* copy of may_delete in fs/namei.c()
723 * Check whether we can remove a link victim from directory dir, check
724 * whether the type of victim is right.
725 * 1. We can't do it if dir is read-only (done in permission())
726 * 2. We should have write and exec permissions on dir
727 * 3. We can't remove anything from append-only dir
728 * 4. We can't do anything with immutable dir (done in permission())
729 * 5. If the sticky bit on dir is set we should either
730 * a. be owner of dir, or
731 * b. be owner of victim, or
732 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400733 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400734 * links pointing to it.
735 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
736 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
737 * 9. We can't remove a root or mountpoint.
738 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
739 * nfs_async_unlink().
740 */
741
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530742static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400743{
744 int error;
745
David Howells2b0143b2015-03-17 22:25:59 +0000746 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400747 return -ENOENT;
748
David Howells2b0143b2015-03-17 22:25:59 +0000749 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400750 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400751
752 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
753 if (error)
754 return error;
755 if (IS_APPEND(dir))
756 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000757 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
758 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400759 return -EPERM;
760 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000761 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400762 return -ENOTDIR;
763 if (IS_ROOT(victim))
764 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000765 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400766 return -EISDIR;
767 if (IS_DEADDIR(dir))
768 return -ENOENT;
769 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
770 return -EBUSY;
771 return 0;
772}
773
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400774/* copy of may_create in fs/namei.c() */
775static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
776{
David Howells2b0143b2015-03-17 22:25:59 +0000777 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400778 return -EEXIST;
779 if (IS_DEADDIR(dir))
780 return -ENOENT;
781 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
782}
783
784/*
785 * Create a new subvolume below @parent. This is largely modeled after
786 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
787 * inside this filesystem so it's quite a bit simpler.
788 */
Al Viro92872092016-11-20 19:34:31 -0500789static noinline int btrfs_mksubvol(const struct path *parent,
David Sterba52f75f42017-02-14 18:33:53 +0100790 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400791 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200792 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000793 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400794{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400795 struct inode *dir = d_inode(parent->dentry);
796 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400797 struct dentry *dentry;
798 int error;
799
Al Viro00235412016-05-26 00:05:12 -0400800 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
801 if (error == -EINTR)
802 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400803
804 dentry = lookup_one_len(name, parent->dentry, namelen);
805 error = PTR_ERR(dentry);
806 if (IS_ERR(dentry))
807 goto out_unlock;
808
Yan, Zheng76dda932009-09-21 16:00:26 -0400809 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400810 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600811 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400812
Chris Mason9c520572012-12-17 14:26:57 -0500813 /*
814 * even if this name doesn't exist, we may get hash collisions.
815 * check for them now when we can safely fail
816 */
817 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
818 dir->i_ino, name,
819 namelen);
820 if (error)
821 goto out_dput;
822
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400823 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400824
825 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
826 goto out_up_read;
827
Chris Mason3de45862008-11-17 21:02:50 -0500828 if (snap_src) {
David Sterba61d7e4c2017-02-10 19:54:06 +0100829 error = create_snapshot(snap_src, dir, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200830 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500831 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000832 error = create_subvol(dir, dentry, name, namelen,
833 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500834 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400835 if (!error)
836 fsnotify_mkdir(dir, dentry);
837out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400838 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400839out_dput:
840 dput(dentry);
841out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500842 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400843 return error;
844}
845
Chris Mason4cb53002011-05-24 15:35:30 -0400846/*
847 * When we're defragging a range, we don't want to kick it off again
848 * if it is really just waiting for delalloc to send it down.
849 * If we find a nice big extent or delalloc range for the bytes in the
850 * file you want to defrag, we return 0 to let you know to skip this
851 * part of the file
852 */
David Sterbaaab110a2014-07-29 17:32:10 +0200853static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400854{
855 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
856 struct extent_map *em = NULL;
857 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
858 u64 end;
859
860 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300861 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -0400862 read_unlock(&em_tree->lock);
863
864 if (em) {
865 end = extent_map_end(em);
866 free_extent_map(em);
867 if (end - offset > thresh)
868 return 0;
869 }
870 /* if we already have a nice delalloc here, just stop */
871 thresh /= 2;
872 end = count_range_bits(io_tree, &offset, offset + thresh,
873 thresh, EXTENT_DELALLOC, 1);
874 if (end >= thresh)
875 return 0;
876 return 1;
877}
878
879/*
880 * helper function to walk through a file and find extents
881 * newer than a specific transid, and smaller than thresh.
882 *
883 * This is used by the defragging code to find new and small
884 * extents
885 */
886static int find_new_extents(struct btrfs_root *root,
887 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200888 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400889{
890 struct btrfs_path *path;
891 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400892 struct extent_buffer *leaf;
893 struct btrfs_file_extent_item *extent;
894 int type;
895 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200896 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -0400897
898 path = btrfs_alloc_path();
899 if (!path)
900 return -ENOMEM;
901
David Sterbaa4689d22011-05-31 17:08:14 +0000902 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400903 min_key.type = BTRFS_EXTENT_DATA_KEY;
904 min_key.offset = *off;
905
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530906 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100907 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400908 if (ret != 0)
909 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000910process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000911 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400912 goto none;
913 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
914 goto none;
915
916 leaf = path->nodes[0];
917 extent = btrfs_item_ptr(leaf, path->slots[0],
918 struct btrfs_file_extent_item);
919
920 type = btrfs_file_extent_type(leaf, extent);
921 if (type == BTRFS_FILE_EXTENT_REG &&
922 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
923 check_defrag_in_cache(inode, min_key.offset, thresh)) {
924 *off = min_key.offset;
925 btrfs_free_path(path);
926 return 0;
927 }
928
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000929 path->slots[0]++;
930 if (path->slots[0] < btrfs_header_nritems(leaf)) {
931 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
932 goto process_slot;
933 }
934
Chris Mason4cb53002011-05-24 15:35:30 -0400935 if (min_key.offset == (u64)-1)
936 goto none;
937
938 min_key.offset++;
939 btrfs_release_path(path);
940 }
941none:
942 btrfs_free_path(path);
943 return -ENOENT;
944}
945
Li Zefan6c282eb2012-06-11 16:03:35 +0800946static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400947{
948 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500949 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800950 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300951 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500952
953 /*
954 * hopefully we have this extent in the tree already, try without
955 * the full extent lock
956 */
957 read_lock(&em_tree->lock);
958 em = lookup_extent_mapping(em_tree, start, len);
959 read_unlock(&em_tree->lock);
960
961 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000962 struct extent_state *cached = NULL;
963 u64 end = start + len - 1;
964
Chris Mason940100a2010-03-10 10:52:59 -0500965 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +0100966 lock_extent_bits(io_tree, start, end, &cached);
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +0200967 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
David Sterbae43bbe52017-12-12 21:43:52 +0100968 unlock_extent_cached(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -0500969
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000970 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800971 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500972 }
973
Li Zefan6c282eb2012-06-11 16:03:35 +0800974 return em;
975}
976
977static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
978{
979 struct extent_map *next;
980 bool ret = true;
981
982 /* this is the last extent */
983 if (em->start + em->len >= i_size_read(inode))
984 return false;
985
986 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -0700987 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
988 ret = false;
989 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +0900990 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +0800991 ret = false;
992
993 free_extent_map(next);
994 return ret;
995}
996
David Sterbaaab110a2014-07-29 17:32:10 +0200997static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400998 u64 *last_len, u64 *skip, u64 *defrag_end,
999 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001000{
1001 struct extent_map *em;
1002 int ret = 1;
1003 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001004 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001005
1006 /*
1007 * make sure that once we start defragging an extent, we keep on
1008 * defragging it
1009 */
1010 if (start < *defrag_end)
1011 return 1;
1012
1013 *skip = 0;
1014
1015 em = defrag_lookup_extent(inode, start);
1016 if (!em)
1017 return 0;
1018
Chris Mason940100a2010-03-10 10:52:59 -05001019 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001020 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001021 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001022 goto out;
1023 }
1024
Liu Bo4a3560c2015-08-07 16:48:41 +08001025 if (!*defrag_end)
1026 prev_mergeable = false;
1027
Li Zefan6c282eb2012-06-11 16:03:35 +08001028 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001029 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001030 * we hit a real extent, if it is big or the next extent is not a
1031 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001032 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001033 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001034 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001035 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001036out:
Chris Mason940100a2010-03-10 10:52:59 -05001037 /*
1038 * last_len ends up being a counter of how many bytes we've defragged.
1039 * every time we choose not to defrag an extent, we reset *last_len
1040 * so that the next tiny extent will force a defrag.
1041 *
1042 * The end result of this is that tiny extents before a single big
1043 * extent will force at least part of that big extent to be defragged.
1044 */
1045 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001046 *defrag_end = extent_map_end(em);
1047 } else {
1048 *last_len = 0;
1049 *skip = extent_map_end(em);
1050 *defrag_end = 0;
1051 }
1052
1053 free_extent_map(em);
1054 return ret;
1055}
1056
Chris Mason4cb53002011-05-24 15:35:30 -04001057/*
1058 * it doesn't do much good to defrag one or two pages
1059 * at a time. This pulls in a nice chunk of pages
1060 * to COW and defrag.
1061 *
1062 * It also makes sure the delalloc code has enough
1063 * dirty data to avoid making new small extents as part
1064 * of the defrag
1065 *
1066 * It's a good idea to start RA on this range
1067 * before calling this.
1068 */
1069static int cluster_pages_for_defrag(struct inode *inode,
1070 struct page **pages,
1071 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001072 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001073{
Chris Mason4cb53002011-05-24 15:35:30 -04001074 unsigned long file_end;
1075 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001076 u64 page_start;
1077 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001078 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001079 int ret;
1080 int i;
1081 int i_done;
1082 struct btrfs_ordered_extent *ordered;
1083 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001084 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001085 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001086 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001087
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001088 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001089 if (!isize || start_index > file_end)
1090 return 0;
1091
1092 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001093
Qu Wenruo364ecf32017-02-27 15:10:38 +08001094 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001095 start_index << PAGE_SHIFT,
1096 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001097 if (ret)
1098 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001099 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001100 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001101
1102 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001103 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001104 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001105again:
Josef Bacika94733d2011-07-11 10:47:06 -04001106 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001107 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001108 if (!page)
1109 break;
1110
Miao Xie600a45e2012-02-16 15:01:24 +08001111 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001112 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001113 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001114 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001115 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001116 ordered = btrfs_lookup_ordered_extent(inode,
1117 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001118 unlock_extent_cached(tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001119 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001120 if (!ordered)
1121 break;
1122
1123 unlock_page(page);
1124 btrfs_start_ordered_extent(inode, ordered, 1);
1125 btrfs_put_ordered_extent(ordered);
1126 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001127 /*
1128 * we unlocked the page above, so we need check if
1129 * it was released or not.
1130 */
1131 if (page->mapping != inode->i_mapping) {
1132 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001133 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001134 goto again;
1135 }
Miao Xie600a45e2012-02-16 15:01:24 +08001136 }
1137
Chris Mason4cb53002011-05-24 15:35:30 -04001138 if (!PageUptodate(page)) {
1139 btrfs_readpage(NULL, page);
1140 lock_page(page);
1141 if (!PageUptodate(page)) {
1142 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001143 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001144 ret = -EIO;
1145 break;
1146 }
1147 }
Miao Xie600a45e2012-02-16 15:01:24 +08001148
Miao Xie600a45e2012-02-16 15:01:24 +08001149 if (page->mapping != inode->i_mapping) {
1150 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001151 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001152 goto again;
1153 }
1154
Chris Mason4cb53002011-05-24 15:35:30 -04001155 pages[i] = page;
1156 i_done++;
1157 }
1158 if (!i_done || ret)
1159 goto out;
1160
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001161 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001162 goto out;
1163
1164 /*
1165 * so now we have a nice long stream of locked
1166 * and up to date pages, lets wait on them
1167 */
1168 for (i = 0; i < i_done; i++)
1169 wait_on_page_writeback(pages[i]);
1170
1171 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001172 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001173
1174 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001175 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001176 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1177 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001178 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001179 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001180
Liu Bo1f12bd02012-03-29 09:57:44 -04001181 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001182 spin_lock(&BTRFS_I(inode)->lock);
1183 BTRFS_I(inode)->outstanding_extents++;
1184 spin_unlock(&BTRFS_I(inode)->lock);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001185 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001186 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001187 (page_cnt - i_done) << PAGE_SHIFT, true);
Chris Mason4cb53002011-05-24 15:35:30 -04001188 }
1189
1190
Liu Bo9e8a4a82012-09-05 19:10:51 -06001191 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001192 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001193
1194 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001195 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001196
1197 for (i = 0; i < i_done; i++) {
1198 clear_page_dirty_for_io(pages[i]);
1199 ClearPageChecked(pages[i]);
1200 set_page_extent_mapped(pages[i]);
1201 set_page_dirty(pages[i]);
1202 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001203 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001204 }
Qu Wenruo43b18592017-12-12 15:34:32 +08001205 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT,
1206 false);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001207 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001208 return i_done;
1209out:
1210 for (i = 0; i < i_done; i++) {
1211 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001212 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001213 }
Qu Wenruobc42bda2017-02-27 15:10:39 +08001214 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001215 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001216 page_cnt << PAGE_SHIFT, true);
1217 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT,
1218 true);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001219 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001220 return ret;
1221
1222}
1223
1224int btrfs_defrag_file(struct inode *inode, struct file *file,
1225 struct btrfs_ioctl_defrag_range_args *range,
1226 u64 newer_than, unsigned long max_to_defrag)
1227{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001228 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001229 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001230 struct file_ra_state *ra = NULL;
1231 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001232 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001233 u64 last_len = 0;
1234 u64 skip = 0;
1235 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001236 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001237 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001238 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001239 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001240 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001241 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001242 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001243 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001244 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001245 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001246 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001247 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001248
Liu Bo0abd5b12013-04-16 09:20:28 +00001249 if (isize == 0)
1250 return 0;
1251
1252 if (range->start >= isize)
1253 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001254
David Sterba1e2ef462017-07-17 20:01:59 +02001255 if (do_compress) {
Li Zefan1a419d82010-10-25 15:12:50 +08001256 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1257 return -EINVAL;
1258 if (range->compress_type)
1259 compress_type = range->compress_type;
1260 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001261
Liu Bo0abd5b12013-04-16 09:20:28 +00001262 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001263 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001264
Chris Mason4cb53002011-05-24 15:35:30 -04001265 /*
David Sterba0a52d102017-06-22 03:22:58 +02001266 * If we were not given a file, allocate a readahead context. As
1267 * readahead is just an optimization, defrag will work without it so
1268 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001269 */
1270 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001271 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001272 if (ra)
1273 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001274 } else {
1275 ra = &file->f_ra;
1276 }
1277
David Sterba63e727e2017-06-22 03:13:02 +02001278 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001279 if (!pages) {
1280 ret = -ENOMEM;
1281 goto out_ra;
1282 }
1283
1284 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001285 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001286 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001287 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001288 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001289 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001290 }
1291
Chris Mason4cb53002011-05-24 15:35:30 -04001292 if (newer_than) {
1293 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001294 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001295 if (!ret) {
1296 range->start = newer_off;
1297 /*
1298 * we always align our defrag to help keep
1299 * the extents in the file evenly spaced
1300 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001301 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001302 } else
1303 goto out_ra;
1304 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001305 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001306 }
1307 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301308 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001309
Li Zefan2a0f7f52011-10-10 15:43:34 -04001310 /*
1311 * make writeback starts from i, so the defrag range can be
1312 * written sequentially.
1313 */
1314 if (i < inode->i_mapping->writeback_index)
1315 inode->i_mapping->writeback_index = i;
1316
Chris Masonf7f43cc2011-10-11 11:41:40 -04001317 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001318 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001319 /*
1320 * make sure we stop running if someone unmounts
1321 * the FS
1322 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001323 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001324 break;
1325
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001326 if (btrfs_defrag_cancelled(fs_info)) {
1327 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001328 ret = -EAGAIN;
1329 break;
1330 }
1331
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001332 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001333 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001334 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001335 unsigned long next;
1336 /*
1337 * the should_defrag function tells us how much to skip
1338 * bump our counter by the suggested amount
1339 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001340 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001341 i = max(i + 1, next);
1342 continue;
1343 }
Li Zefan008873e2011-09-02 15:57:07 +08001344
1345 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001346 cluster = (PAGE_ALIGN(defrag_end) >>
1347 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001348 cluster = min(cluster, max_cluster);
1349 } else {
1350 cluster = max_cluster;
1351 }
1352
Li Zefan008873e2011-09-02 15:57:07 +08001353 if (i + cluster > ra_index) {
1354 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001355 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001356 page_cache_sync_readahead(inode->i_mapping, ra,
1357 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301358 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001359 }
Chris Mason940100a2010-03-10 10:52:59 -05001360
Al Viro59551022016-01-22 15:40:57 -05001361 inode_lock(inode);
David Sterba1e2ef462017-07-17 20:01:59 +02001362 if (do_compress)
David Sterbaeec63c62017-07-17 19:41:31 +02001363 BTRFS_I(inode)->defrag_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001364 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001365 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001366 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001367 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001368 }
Chris Mason940100a2010-03-10 10:52:59 -05001369
Chris Mason4cb53002011-05-24 15:35:30 -04001370 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001371 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001372 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001373
1374 if (newer_than) {
1375 if (newer_off == (u64)-1)
1376 break;
1377
Liu Boe1f041e2012-03-29 09:57:45 -04001378 if (ret > 0)
1379 i += ret;
1380
Chris Mason4cb53002011-05-24 15:35:30 -04001381 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001382 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001383
Byongho Leeee221842015-12-15 01:42:10 +09001384 ret = find_new_extents(root, inode, newer_than,
1385 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001386 if (!ret) {
1387 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001388 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001389 } else {
1390 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001391 }
Chris Mason4cb53002011-05-24 15:35:30 -04001392 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001393 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001394 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001395 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001396 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001397 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001398 last_len = 0;
1399 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001400 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001401 }
1402
Filipe Mananadec8ef92014-03-01 10:55:54 +00001403 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001404 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001405 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1406 &BTRFS_I(inode)->runtime_flags))
1407 filemap_flush(inode->i_mapping);
1408 }
Chris Mason1e701a32010-03-11 09:42:04 -05001409
Li Zefan1a419d82010-10-25 15:12:50 +08001410 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001411 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
Nick Terrell5c1aab12017-08-09 19:39:02 -07001412 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1413 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
Li Zefan1a419d82010-10-25 15:12:50 +08001414 }
1415
Diego Calleja60ccf822011-09-01 16:33:57 +02001416 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001417
Chris Mason4cb53002011-05-24 15:35:30 -04001418out_ra:
David Sterba1e2ef462017-07-17 20:01:59 +02001419 if (do_compress) {
Al Viro59551022016-01-22 15:40:57 -05001420 inode_lock(inode);
David Sterbaeec63c62017-07-17 19:41:31 +02001421 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
Al Viro59551022016-01-22 15:40:57 -05001422 inode_unlock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001423 }
Chris Mason4cb53002011-05-24 15:35:30 -04001424 if (!file)
1425 kfree(ra);
1426 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001427 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001428}
1429
Miao Xie198605a2012-11-26 08:43:45 +00001430static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001431 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001432{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001433 struct inode *inode = file_inode(file);
1434 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001435 u64 new_size;
1436 u64 old_size;
1437 u64 devid = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001438 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001439 struct btrfs_ioctl_vol_args *vol_args;
1440 struct btrfs_trans_handle *trans;
1441 struct btrfs_device *device = NULL;
1442 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001443 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001444 char *devstr = NULL;
1445 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001446 int mod = 0;
1447
Chris Masone441d542009-01-05 16:57:23 -05001448 if (!capable(CAP_SYS_ADMIN))
1449 return -EPERM;
1450
Miao Xie198605a2012-11-26 08:43:45 +00001451 ret = mnt_want_write_file(file);
1452 if (ret)
1453 return ret;
1454
David Sterba171938e2017-03-28 14:44:21 +02001455 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Miao Xie97547672012-12-21 10:38:50 +00001456 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001457 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001458 }
1459
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001460 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001461 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001462 if (IS_ERR(vol_args)) {
1463 ret = PTR_ERR(vol_args);
1464 goto out;
1465 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001466
1467 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001468
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001469 sizestr = vol_args->name;
1470 devstr = strchr(sizestr, ':');
1471 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001472 sizestr = devstr + 1;
1473 *devstr = '\0';
1474 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001475 ret = kstrtoull(devstr, 10, &devid);
1476 if (ret)
1477 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001478 if (!devid) {
1479 ret = -EINVAL;
1480 goto out_free;
1481 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001482 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001483 }
Miao Xiedba60f32012-12-21 09:19:51 +00001484
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001485 device = btrfs_find_device(fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001486 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001487 btrfs_info(fs_info, "resizer unable to find device %llu",
1488 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001489 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001490 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001491 }
Miao Xiedba60f32012-12-21 09:19:51 +00001492
Anand Jainebbede42017-12-04 12:54:52 +08001493 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001494 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001495 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001496 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001497 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001498 goto out_free;
1499 }
1500
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001501 if (!strcmp(sizestr, "max"))
1502 new_size = device->bdev->bd_inode->i_size;
1503 else {
1504 if (sizestr[0] == '-') {
1505 mod = -1;
1506 sizestr++;
1507 } else if (sizestr[0] == '+') {
1508 mod = 1;
1509 sizestr++;
1510 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001511 new_size = memparse(sizestr, &retptr);
1512 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001513 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001514 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001515 }
1516 }
1517
Anand Jain401e29c2017-12-04 12:54:55 +08001518 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xiedfd79822012-12-21 09:21:30 +00001519 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001520 goto out_free;
1521 }
1522
Miao Xie7cc8e582014-09-03 21:35:38 +08001523 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001524
1525 if (mod < 0) {
1526 if (new_size > old_size) {
1527 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001528 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001529 }
1530 new_size = old_size - new_size;
1531 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001532 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001533 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001534 goto out_free;
1535 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001536 new_size = old_size + new_size;
1537 }
1538
Byongho Leeee221842015-12-15 01:42:10 +09001539 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001540 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001541 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001542 }
1543 if (new_size > device->bdev->bd_inode->i_size) {
1544 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001545 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001546 }
1547
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001548 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001549
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001550 btrfs_info_in_rcu(fs_info, "new size for %s is %llu",
1551 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001552
1553 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001554 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001555 if (IS_ERR(trans)) {
1556 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001557 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001558 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001559 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001560 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001561 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001562 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001563 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001564
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001565out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001566 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001567out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001568 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02001569 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001570 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001571 return ret;
1572}
1573
Sage Weil72fd0322010-10-29 15:41:32 -04001574static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
David Sterba52f75f42017-02-14 18:33:53 +01001575 const char *name, unsigned long fd, int subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001576 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001577 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001578{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001579 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001580 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001581
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001582 if (!S_ISDIR(file_inode(file)->i_mode))
1583 return -ENOTDIR;
1584
Liu Boa874a632012-06-29 03:58:46 -06001585 ret = mnt_want_write_file(file);
1586 if (ret)
1587 goto out;
1588
Sage Weil72fd0322010-10-29 15:41:32 -04001589 namelen = strlen(name);
1590 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001591 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001592 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001593 }
1594
Chris Mason16780ca2012-02-20 22:14:55 -05001595 if (name[0] == '.' &&
1596 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1597 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001598 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001599 }
1600
Chris Mason3de45862008-11-17 21:02:50 -05001601 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001602 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001603 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001604 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001605 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001606 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001607 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001608 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001609 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001610 }
1611
Al Viro496ad9a2013-01-23 17:07:38 -05001612 src_inode = file_inode(src.file);
1613 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001614 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001615 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001616 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001617 } else if (!inode_owner_or_capable(src_inode)) {
1618 /*
1619 * Subvolume creation is not restricted, but snapshots
1620 * are limited to own subvolumes only
1621 */
1622 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001623 } else {
1624 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1625 BTRFS_I(src_inode)->root,
1626 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001627 }
Al Viro2903ff02012-08-28 12:52:22 -04001628 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001629 }
Liu Boa874a632012-06-29 03:58:46 -06001630out_drop_write:
1631 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001632out:
Sage Weil72fd0322010-10-29 15:41:32 -04001633 return ret;
1634}
1635
1636static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001637 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001638{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001639 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001640 int ret;
1641
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001642 if (!S_ISDIR(file_inode(file)->i_mode))
1643 return -ENOTDIR;
1644
Li Zefanfa0d2b92010-12-20 15:53:28 +08001645 vol_args = memdup_user(arg, sizeof(*vol_args));
1646 if (IS_ERR(vol_args))
1647 return PTR_ERR(vol_args);
1648 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001649
Li Zefanfa0d2b92010-12-20 15:53:28 +08001650 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001651 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001652 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001653
Li Zefanfa0d2b92010-12-20 15:53:28 +08001654 kfree(vol_args);
1655 return ret;
1656}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001657
Li Zefanfa0d2b92010-12-20 15:53:28 +08001658static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1659 void __user *arg, int subvol)
1660{
1661 struct btrfs_ioctl_vol_args_v2 *vol_args;
1662 int ret;
1663 u64 transid = 0;
1664 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001665 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001666 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001667
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001668 if (!S_ISDIR(file_inode(file)->i_mode))
1669 return -ENOTDIR;
1670
Li Zefanfa0d2b92010-12-20 15:53:28 +08001671 vol_args = memdup_user(arg, sizeof(*vol_args));
1672 if (IS_ERR(vol_args))
1673 return PTR_ERR(vol_args);
1674 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001675
Li Zefanb83cc962010-12-20 16:04:08 +08001676 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001677 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1678 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001679 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001680 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001681 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001682
1683 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1684 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001685 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1686 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001687 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001688 if (vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001689 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001690 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001691 }
1692 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1693 if (IS_ERR(inherit)) {
1694 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001695 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001696 }
1697 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001698
1699 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001700 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001701 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001702 if (ret)
1703 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001704
Dan Carpenterc47ca322014-09-04 14:09:15 +03001705 if (ptr && copy_to_user(arg +
1706 offsetof(struct btrfs_ioctl_vol_args_v2,
1707 transid),
1708 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001709 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001710
1711free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001712 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001713free_args:
1714 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001715 return ret;
1716}
1717
Li Zefan0caa1022010-12-20 16:30:25 +08001718static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1719 void __user *arg)
1720{
Al Viro496ad9a2013-01-23 17:07:38 -05001721 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001722 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001723 struct btrfs_root *root = BTRFS_I(inode)->root;
1724 int ret = 0;
1725 u64 flags = 0;
1726
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001727 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001728 return -EINVAL;
1729
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001730 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001731 if (btrfs_root_readonly(root))
1732 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001733 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001734
1735 if (copy_to_user(arg, &flags, sizeof(flags)))
1736 ret = -EFAULT;
1737
1738 return ret;
1739}
1740
1741static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1742 void __user *arg)
1743{
Al Viro496ad9a2013-01-23 17:07:38 -05001744 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001745 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001746 struct btrfs_root *root = BTRFS_I(inode)->root;
1747 struct btrfs_trans_handle *trans;
1748 u64 root_flags;
1749 u64 flags;
1750 int ret = 0;
1751
David Sterbabd60ea02014-01-16 15:50:22 +01001752 if (!inode_owner_or_capable(inode))
1753 return -EPERM;
1754
Liu Bob9ca0662012-06-29 03:58:49 -06001755 ret = mnt_want_write_file(file);
1756 if (ret)
1757 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001758
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001759 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06001760 ret = -EINVAL;
1761 goto out_drop_write;
1762 }
Li Zefan0caa1022010-12-20 16:30:25 +08001763
Liu Bob9ca0662012-06-29 03:58:49 -06001764 if (copy_from_user(&flags, arg, sizeof(flags))) {
1765 ret = -EFAULT;
1766 goto out_drop_write;
1767 }
Li Zefan0caa1022010-12-20 16:30:25 +08001768
Liu Bob9ca0662012-06-29 03:58:49 -06001769 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1770 ret = -EINVAL;
1771 goto out_drop_write;
1772 }
Li Zefan0caa1022010-12-20 16:30:25 +08001773
Liu Bob9ca0662012-06-29 03:58:49 -06001774 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1775 ret = -EOPNOTSUPP;
1776 goto out_drop_write;
1777 }
Li Zefan0caa1022010-12-20 16:30:25 +08001778
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001779 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001780
1781 /* nothing to do */
1782 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001783 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001784
1785 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001786 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001787 btrfs_set_root_flags(&root->root_item,
1788 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001789 } else {
1790 /*
1791 * Block RO -> RW transition if this subvolume is involved in
1792 * send
1793 */
1794 spin_lock(&root->root_item_lock);
1795 if (root->send_in_progress == 0) {
1796 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001797 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001798 spin_unlock(&root->root_item_lock);
1799 } else {
1800 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001801 btrfs_warn(fs_info,
1802 "Attempt to set subvolume %llu read-write during send",
1803 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01001804 ret = -EPERM;
1805 goto out_drop_sem;
1806 }
1807 }
Li Zefan0caa1022010-12-20 16:30:25 +08001808
1809 trans = btrfs_start_transaction(root, 1);
1810 if (IS_ERR(trans)) {
1811 ret = PTR_ERR(trans);
1812 goto out_reset;
1813 }
1814
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001815 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001816 &root->root_key, &root->root_item);
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001817 if (ret < 0) {
1818 btrfs_end_transaction(trans);
1819 goto out_reset;
1820 }
Li Zefan0caa1022010-12-20 16:30:25 +08001821
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001822 ret = btrfs_commit_transaction(trans);
1823
Li Zefan0caa1022010-12-20 16:30:25 +08001824out_reset:
1825 if (ret)
1826 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001827out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001828 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001829out_drop_write:
1830 mnt_drop_write_file(file);
1831out:
Li Zefan0caa1022010-12-20 16:30:25 +08001832 return ret;
1833}
1834
Yan, Zheng76dda932009-09-21 16:00:26 -04001835/*
1836 * helper to check if the subvolume references other subvolumes
1837 */
1838static noinline int may_destroy_subvol(struct btrfs_root *root)
1839{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001840 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04001841 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001842 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001843 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001844 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001845 int ret;
1846
1847 path = btrfs_alloc_path();
1848 if (!path)
1849 return -ENOMEM;
1850
Josef Bacik175a2b82013-08-12 15:36:44 -04001851 /* Make sure this root isn't set as the default subvol */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001852 dir_id = btrfs_super_root_dir(fs_info->super_copy);
1853 di = btrfs_lookup_dir_item(NULL, fs_info->tree_root, path,
Josef Bacik175a2b82013-08-12 15:36:44 -04001854 dir_id, "default", 7, 0);
1855 if (di && !IS_ERR(di)) {
1856 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1857 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001858 ret = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001859 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001860 "deleting default subvolume %llu is not allowed",
1861 key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001862 goto out;
1863 }
1864 btrfs_release_path(path);
1865 }
1866
Yan, Zheng76dda932009-09-21 16:00:26 -04001867 key.objectid = root->root_key.objectid;
1868 key.type = BTRFS_ROOT_REF_KEY;
1869 key.offset = (u64)-1;
1870
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001871 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key, path, 0, 0);
Yan, Zheng76dda932009-09-21 16:00:26 -04001872 if (ret < 0)
1873 goto out;
1874 BUG_ON(ret == 0);
1875
1876 ret = 0;
1877 if (path->slots[0] > 0) {
1878 path->slots[0]--;
1879 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1880 if (key.objectid == root->root_key.objectid &&
1881 key.type == BTRFS_ROOT_REF_KEY)
1882 ret = -ENOTEMPTY;
1883 }
1884out:
1885 btrfs_free_path(path);
1886 return ret;
1887}
1888
Chris Masonac8e9812010-02-28 15:39:26 -05001889static noinline int key_in_sk(struct btrfs_key *key,
1890 struct btrfs_ioctl_search_key *sk)
1891{
Chris Masonabc6e132010-03-18 12:10:08 -04001892 struct btrfs_key test;
1893 int ret;
1894
1895 test.objectid = sk->min_objectid;
1896 test.type = sk->min_type;
1897 test.offset = sk->min_offset;
1898
1899 ret = btrfs_comp_cpu_keys(key, &test);
1900 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001901 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001902
1903 test.objectid = sk->max_objectid;
1904 test.type = sk->max_type;
1905 test.offset = sk->max_offset;
1906
1907 ret = btrfs_comp_cpu_keys(key, &test);
1908 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001909 return 0;
1910 return 1;
1911}
1912
Jeff Mahoneydf397562016-06-21 20:18:21 -04001913static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05001914 struct btrfs_key *key,
1915 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001916 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001917 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001918 unsigned long *sk_offset,
1919 int *num_found)
1920{
1921 u64 found_transid;
1922 struct extent_buffer *leaf;
1923 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001924 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001925 unsigned long item_off;
1926 unsigned long item_len;
1927 int nritems;
1928 int i;
1929 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001930 int ret = 0;
1931
1932 leaf = path->nodes[0];
1933 slot = path->slots[0];
1934 nritems = btrfs_header_nritems(leaf);
1935
1936 if (btrfs_header_generation(leaf) > sk->max_transid) {
1937 i = nritems;
1938 goto advance_key;
1939 }
1940 found_transid = btrfs_header_generation(leaf);
1941
1942 for (i = slot; i < nritems; i++) {
1943 item_off = btrfs_item_ptr_offset(leaf, i);
1944 item_len = btrfs_item_size_nr(leaf, i);
1945
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001946 btrfs_item_key_to_cpu(leaf, key, i);
1947 if (!key_in_sk(key, sk))
1948 continue;
1949
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001950 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001951 if (*num_found) {
1952 ret = 1;
1953 goto out;
1954 }
Chris Masonac8e9812010-02-28 15:39:26 -05001955
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001956 /*
1957 * return one empty item back for v1, which does not
1958 * handle -EOVERFLOW
1959 */
1960
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001961 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001962 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001963 ret = -EOVERFLOW;
1964 }
Chris Masonac8e9812010-02-28 15:39:26 -05001965
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001966 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001967 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001968 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001969 }
1970
Chris Masonac8e9812010-02-28 15:39:26 -05001971 sh.objectid = key->objectid;
1972 sh.offset = key->offset;
1973 sh.type = key->type;
1974 sh.len = item_len;
1975 sh.transid = found_transid;
1976
1977 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001978 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1979 ret = -EFAULT;
1980 goto out;
1981 }
1982
Chris Masonac8e9812010-02-28 15:39:26 -05001983 *sk_offset += sizeof(sh);
1984
1985 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001986 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05001987 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001988 if (read_extent_buffer_to_user(leaf, up,
1989 item_off, item_len)) {
1990 ret = -EFAULT;
1991 goto out;
1992 }
1993
Chris Masonac8e9812010-02-28 15:39:26 -05001994 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001995 }
Hugo Millse2156862011-05-14 17:43:41 +00001996 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001997
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001998 if (ret) /* -EOVERFLOW from above */
1999 goto out;
2000
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002001 if (*num_found >= sk->nr_items) {
2002 ret = 1;
2003 goto out;
2004 }
Chris Masonac8e9812010-02-28 15:39:26 -05002005 }
2006advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002007 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002008 test.objectid = sk->max_objectid;
2009 test.type = sk->max_type;
2010 test.offset = sk->max_offset;
2011 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2012 ret = 1;
2013 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002014 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002015 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002016 key->offset = 0;
2017 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002018 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002019 key->offset = 0;
2020 key->type = 0;
2021 key->objectid++;
2022 } else
2023 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002024out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002025 /*
2026 * 0: all items from this leaf copied, continue with next
2027 * 1: * more items can be copied, but unused buffer is too small
2028 * * all items were found
2029 * Either way, it will stops the loop which iterates to the next
2030 * leaf
2031 * -EOVERFLOW: item was to large for buffer
2032 * -EFAULT: could not copy extent buffer back to userspace
2033 */
Chris Masonac8e9812010-02-28 15:39:26 -05002034 return ret;
2035}
2036
2037static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002038 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002039 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002040 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002041{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002042 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05002043 struct btrfs_root *root;
2044 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002045 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002046 int ret;
2047 int num_found = 0;
2048 unsigned long sk_offset = 0;
2049
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002050 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2051 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002052 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002053 }
Gerhard Heift12544442014-01-30 16:23:58 +01002054
Chris Masonac8e9812010-02-28 15:39:26 -05002055 path = btrfs_alloc_path();
2056 if (!path)
2057 return -ENOMEM;
2058
2059 if (sk->tree_id == 0) {
2060 /* search the root of the inode that was passed */
2061 root = BTRFS_I(inode)->root;
2062 } else {
2063 key.objectid = sk->tree_id;
2064 key.type = BTRFS_ROOT_ITEM_KEY;
2065 key.offset = (u64)-1;
2066 root = btrfs_read_fs_root_no_name(info, &key);
2067 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002068 btrfs_free_path(path);
2069 return -ENOENT;
2070 }
2071 }
2072
2073 key.objectid = sk->min_objectid;
2074 key.type = sk->min_type;
2075 key.offset = sk->min_offset;
2076
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302077 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002078 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002079 if (ret != 0) {
2080 if (ret > 0)
2081 ret = 0;
2082 goto err;
2083 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002084 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002085 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002086 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002087 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002088 break;
2089
2090 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002091 if (ret > 0)
2092 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002093err:
2094 sk->nr_items = num_found;
2095 btrfs_free_path(path);
2096 return ret;
2097}
2098
2099static noinline int btrfs_ioctl_tree_search(struct file *file,
2100 void __user *argp)
2101{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002102 struct btrfs_ioctl_search_args __user *uargs;
2103 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002104 struct inode *inode;
2105 int ret;
2106 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002107
2108 if (!capable(CAP_SYS_ADMIN))
2109 return -EPERM;
2110
Gerhard Heiftba346b32014-01-30 16:24:02 +01002111 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002112
Gerhard Heiftba346b32014-01-30 16:24:02 +01002113 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2114 return -EFAULT;
2115
2116 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002117
Al Viro496ad9a2013-01-23 17:07:38 -05002118 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002119 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002120
2121 /*
2122 * In the origin implementation an overflow is handled by returning a
2123 * search header with a len of zero, so reset ret.
2124 */
2125 if (ret == -EOVERFLOW)
2126 ret = 0;
2127
Gerhard Heiftba346b32014-01-30 16:24:02 +01002128 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002129 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002130 return ret;
2131}
2132
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002133static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2134 void __user *argp)
2135{
2136 struct btrfs_ioctl_search_args_v2 __user *uarg;
2137 struct btrfs_ioctl_search_args_v2 args;
2138 struct inode *inode;
2139 int ret;
2140 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002141 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002142
2143 if (!capable(CAP_SYS_ADMIN))
2144 return -EPERM;
2145
2146 /* copy search header and buffer size */
2147 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2148 if (copy_from_user(&args, uarg, sizeof(args)))
2149 return -EFAULT;
2150
2151 buf_size = args.buf_size;
2152
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002153 /* limit result size to 16MB */
2154 if (buf_size > buf_limit)
2155 buf_size = buf_limit;
2156
2157 inode = file_inode(file);
2158 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002159 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002160 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2161 ret = -EFAULT;
2162 else if (ret == -EOVERFLOW &&
2163 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2164 ret = -EFAULT;
2165
Yan, Zheng76dda932009-09-21 16:00:26 -04002166 return ret;
2167}
2168
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002169/*
Chris Masonac8e9812010-02-28 15:39:26 -05002170 * Search INODE_REFs to identify path name of 'dirid' directory
2171 * in a 'tree_id' tree. and sets path name to 'name'.
2172 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002173static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2174 u64 tree_id, u64 dirid, char *name)
2175{
2176 struct btrfs_root *root;
2177 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002178 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002179 int ret = -1;
2180 int slot;
2181 int len;
2182 int total_len = 0;
2183 struct btrfs_inode_ref *iref;
2184 struct extent_buffer *l;
2185 struct btrfs_path *path;
2186
2187 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2188 name[0]='\0';
2189 return 0;
2190 }
2191
2192 path = btrfs_alloc_path();
2193 if (!path)
2194 return -ENOMEM;
2195
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002196 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002197
2198 key.objectid = tree_id;
2199 key.type = BTRFS_ROOT_ITEM_KEY;
2200 key.offset = (u64)-1;
2201 root = btrfs_read_fs_root_no_name(info, &key);
2202 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002203 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002204 ret = -ENOENT;
2205 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002206 }
2207
2208 key.objectid = dirid;
2209 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002210 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002211
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302212 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002213 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2214 if (ret < 0)
2215 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002216 else if (ret > 0) {
2217 ret = btrfs_previous_item(root, path, dirid,
2218 BTRFS_INODE_REF_KEY);
2219 if (ret < 0)
2220 goto out;
2221 else if (ret > 0) {
2222 ret = -ENOENT;
2223 goto out;
2224 }
2225 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002226
2227 l = path->nodes[0];
2228 slot = path->slots[0];
2229 btrfs_item_key_to_cpu(l, &key, slot);
2230
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002231 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2232 len = btrfs_inode_ref_name_len(l, iref);
2233 ptr -= len + 1;
2234 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002235 if (ptr < name) {
2236 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002237 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002238 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002239
2240 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302241 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002242
2243 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2244 break;
2245
David Sterbab3b4aa72011-04-21 01:20:15 +02002246 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002247 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002248 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002249 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002250 }
Li Zefan77906a502011-07-14 03:16:00 +00002251 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302252 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002253 ret = 0;
2254out:
2255 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002256 return ret;
2257}
2258
2259static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2260 void __user *argp)
2261{
2262 struct btrfs_ioctl_ino_lookup_args *args;
2263 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002264 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002265
Julia Lawall2354d082010-10-29 15:14:18 -04002266 args = memdup_user(argp, sizeof(*args));
2267 if (IS_ERR(args))
2268 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002269
Al Viro496ad9a2013-01-23 17:07:38 -05002270 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002271
David Sterba01b810b2015-05-12 19:14:49 +02002272 /*
2273 * Unprivileged query to obtain the containing subvolume root id. The
2274 * path is reset so it's consistent with btrfs_search_path_in_tree.
2275 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002276 if (args->treeid == 0)
2277 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2278
David Sterba01b810b2015-05-12 19:14:49 +02002279 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2280 args->name[0] = 0;
2281 goto out;
2282 }
2283
2284 if (!capable(CAP_SYS_ADMIN)) {
2285 ret = -EPERM;
2286 goto out;
2287 }
2288
Chris Masonac8e9812010-02-28 15:39:26 -05002289 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2290 args->treeid, args->objectid,
2291 args->name);
2292
David Sterba01b810b2015-05-12 19:14:49 +02002293out:
Chris Masonac8e9812010-02-28 15:39:26 -05002294 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2295 ret = -EFAULT;
2296
2297 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002298 return ret;
2299}
2300
Yan, Zheng76dda932009-09-21 16:00:26 -04002301static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2302 void __user *arg)
2303{
Al Viro54563d42013-09-01 15:57:51 -04002304 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002305 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002306 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002307 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002308 struct inode *inode;
2309 struct btrfs_root *root = BTRFS_I(dir)->root;
2310 struct btrfs_root *dest = NULL;
2311 struct btrfs_ioctl_vol_args *vol_args;
2312 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002313 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002314 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002315 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002316 int namelen;
2317 int ret;
2318 int err = 0;
2319
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002320 if (!S_ISDIR(dir->i_mode))
2321 return -ENOTDIR;
2322
Yan, Zheng76dda932009-09-21 16:00:26 -04002323 vol_args = memdup_user(arg, sizeof(*vol_args));
2324 if (IS_ERR(vol_args))
2325 return PTR_ERR(vol_args);
2326
2327 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2328 namelen = strlen(vol_args->name);
2329 if (strchr(vol_args->name, '/') ||
2330 strncmp(vol_args->name, "..", namelen) == 0) {
2331 err = -EINVAL;
2332 goto out;
2333 }
2334
Al Viroa561be72011-11-23 11:57:51 -05002335 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002336 if (err)
2337 goto out;
2338
David Sterba521e0542014-04-15 16:41:44 +02002339
Al Viro00235412016-05-26 00:05:12 -04002340 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2341 if (err == -EINTR)
2342 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002343 dentry = lookup_one_len(vol_args->name, parent, namelen);
2344 if (IS_ERR(dentry)) {
2345 err = PTR_ERR(dentry);
2346 goto out_unlock_dir;
2347 }
2348
David Howells2b0143b2015-03-17 22:25:59 +00002349 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002350 err = -ENOENT;
2351 goto out_dput;
2352 }
2353
David Howells2b0143b2015-03-17 22:25:59 +00002354 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002355 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302356 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002357 /*
2358 * Regular user. Only allow this with a special mount
2359 * option, when the user has write+exec access to the
2360 * subvol root, and when rmdir(2) would have been
2361 * allowed.
2362 *
2363 * Note that this is _not_ check that the subvol is
2364 * empty or doesn't contain data that we wouldn't
2365 * otherwise be able to delete.
2366 *
2367 * Users who want to delete empty subvols should try
2368 * rmdir(2).
2369 */
2370 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002371 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002372 goto out_dput;
2373
2374 /*
2375 * Do not allow deletion if the parent dir is the same
2376 * as the dir to be deleted. That means the ioctl
2377 * must be called on the dentry referencing the root
2378 * of the subvol, not a random directory contained
2379 * within it.
2380 */
2381 err = -EINVAL;
2382 if (root == dest)
2383 goto out_dput;
2384
2385 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2386 if (err)
2387 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002388 }
2389
Miao Xie5c39da52012-10-22 11:39:53 +00002390 /* check if subvolume may be deleted by a user */
2391 err = btrfs_may_delete(dir, dentry, 1);
2392 if (err)
2393 goto out_dput;
2394
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002395 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002396 err = -EINVAL;
2397 goto out_dput;
2398 }
2399
Al Viro59551022016-01-22 15:40:57 -05002400 inode_lock(inode);
David Sterba521e0542014-04-15 16:41:44 +02002401
2402 /*
2403 * Don't allow to delete a subvolume with send in progress. This is
2404 * inside the i_mutex so the error handling that has to drop the bit
2405 * again is not run concurrently.
2406 */
2407 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002408 root_flags = btrfs_root_flags(&dest->root_item);
2409 if (dest->send_in_progress == 0) {
2410 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002411 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2412 spin_unlock(&dest->root_item_lock);
2413 } else {
2414 spin_unlock(&dest->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002415 btrfs_warn(fs_info,
2416 "Attempt to delete subvolume %llu during send",
2417 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002418 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002419 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002420 }
2421
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002422 down_write(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -04002423
2424 err = may_destroy_subvol(dest);
2425 if (err)
2426 goto out_up_write;
2427
Miao Xiec58aaad2013-02-28 10:05:36 +00002428 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2429 /*
2430 * One for dir inode, two for dir entries, two for root
2431 * ref/backref.
2432 */
2433 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002434 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002435 if (err)
2436 goto out_up_write;
2437
Yan, Zhenga22285a2010-05-16 10:48:46 -04002438 trans = btrfs_start_transaction(root, 0);
2439 if (IS_ERR(trans)) {
2440 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002441 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002442 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002443 trans->block_rsv = &block_rsv;
2444 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002445
Nikolay Borisov43663552017-01-18 00:31:29 +02002446 btrfs_record_snapshot_destroy(trans, BTRFS_I(dir));
Filipe Manana2be63d52016-02-12 11:34:23 +00002447
Yan, Zheng76dda932009-09-21 16:00:26 -04002448 ret = btrfs_unlink_subvol(trans, root, dir,
2449 dest->root_key.objectid,
2450 dentry->d_name.name,
2451 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002452 if (ret) {
2453 err = ret;
Jeff Mahoney66642832016-06-10 18:19:25 -04002454 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002455 goto out_end_trans;
2456 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002457
2458 btrfs_record_root_in_trans(trans, dest);
2459
2460 memset(&dest->root_item.drop_progress, 0,
2461 sizeof(dest->root_item.drop_progress));
2462 dest->root_item.drop_level = 0;
2463 btrfs_set_root_refs(&dest->root_item, 0);
2464
Miao Xie27cdeb72014-04-02 19:51:05 +08002465 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002466 ret = btrfs_insert_orphan_item(trans,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002467 fs_info->tree_root,
Yan, Zhengd68fc572010-05-16 10:49:58 -04002468 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002469 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002470 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002471 err = ret;
2472 goto out_end_trans;
2473 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002474 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002475
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002476 ret = btrfs_uuid_tree_rem(trans, fs_info, dest->root_item.uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04002477 BTRFS_UUID_KEY_SUBVOL,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002478 dest->root_key.objectid);
2479 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002480 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002481 err = ret;
2482 goto out_end_trans;
2483 }
2484 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002485 ret = btrfs_uuid_tree_rem(trans, fs_info,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002486 dest->root_item.received_uuid,
2487 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2488 dest->root_key.objectid);
2489 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002490 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002491 err = ret;
2492 goto out_end_trans;
2493 }
2494 }
2495
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002496out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002497 trans->block_rsv = NULL;
2498 trans->bytes_reserved = 0;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002499 ret = btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002500 if (ret && !err)
2501 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002502 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002503out_release:
David Sterba7775c812017-02-10 19:18:18 +01002504 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Yan, Zheng76dda932009-09-21 16:00:26 -04002505out_up_write:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002506 up_write(&fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002507 if (err) {
2508 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002509 root_flags = btrfs_root_flags(&dest->root_item);
2510 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002511 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2512 spin_unlock(&dest->root_item_lock);
2513 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002514out_unlock_inode:
Al Viro59551022016-01-22 15:40:57 -05002515 inode_unlock(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04002516 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002517 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002518 btrfs_invalidate_inodes(dest);
2519 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002520 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002521
2522 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002523 if (dest->ino_cache_inode) {
2524 iput(dest->ino_cache_inode);
2525 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002526 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002527 }
2528out_dput:
2529 dput(dentry);
2530out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002531 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002532out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002533 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002534out:
2535 kfree(vol_args);
2536 return err;
2537}
2538
Chris Mason1e701a32010-03-11 09:42:04 -05002539static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002540{
Al Viro496ad9a2013-01-23 17:07:38 -05002541 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002542 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002543 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002544 int ret;
2545
Ilya Dryomov25122d12013-01-20 15:57:57 +02002546 ret = mnt_want_write_file(file);
2547 if (ret)
2548 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002549
Ilya Dryomov25122d12013-01-20 15:57:57 +02002550 if (btrfs_root_readonly(root)) {
2551 ret = -EROFS;
2552 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002553 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002554
2555 switch (inode->i_mode & S_IFMT) {
2556 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002557 if (!capable(CAP_SYS_ADMIN)) {
2558 ret = -EPERM;
2559 goto out;
2560 }
Eric Sandeende78b512013-01-31 18:21:12 +00002561 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002562 break;
2563 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002564 if (!(file->f_mode & FMODE_WRITE)) {
2565 ret = -EINVAL;
2566 goto out;
2567 }
Chris Mason1e701a32010-03-11 09:42:04 -05002568
2569 range = kzalloc(sizeof(*range), GFP_KERNEL);
2570 if (!range) {
2571 ret = -ENOMEM;
2572 goto out;
2573 }
2574
2575 if (argp) {
2576 if (copy_from_user(range, argp,
2577 sizeof(*range))) {
2578 ret = -EFAULT;
2579 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002580 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002581 }
2582 /* compression requires us to start the IO */
2583 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2584 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2585 range->extent_thresh = (u32)-1;
2586 }
2587 } else {
2588 /* the rest are all set to zero by kzalloc */
2589 range->len = (u64)-1;
2590 }
Al Viro496ad9a2013-01-23 17:07:38 -05002591 ret = btrfs_defrag_file(file_inode(file), file,
Anand Jain7c829b72018-03-07 17:29:18 +08002592 range, BTRFS_OLDEST_GENERATION, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04002593 if (ret > 0)
2594 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002595 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002596 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002597 default:
2598 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002599 }
Chris Masone441d542009-01-05 16:57:23 -05002600out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002601 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002602 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002603}
2604
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002605static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002606{
2607 struct btrfs_ioctl_vol_args *vol_args;
2608 int ret;
2609
Chris Masone441d542009-01-05 16:57:23 -05002610 if (!capable(CAP_SYS_ADMIN))
2611 return -EPERM;
2612
David Sterba171938e2017-03-28 14:44:21 +02002613 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
Anand Jaine57138b2013-08-21 11:44:48 +08002614 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002615
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002616 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002617 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002618 if (IS_ERR(vol_args)) {
2619 ret = PTR_ERR(vol_args);
2620 goto out;
2621 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002622
Mark Fasheh5516e592008-07-24 12:20:14 -04002623 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002624 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002625
Anand Jain43d20762014-07-01 00:58:56 +08002626 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002627 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08002628
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002629 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002630out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002631 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002632 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002633 return ret;
2634}
2635
Anand Jain6b526ed2016-02-13 10:01:39 +08002636static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002637{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002638 struct inode *inode = file_inode(file);
2639 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08002640 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002641 int ret;
2642
Chris Masone441d542009-01-05 16:57:23 -05002643 if (!capable(CAP_SYS_ADMIN))
2644 return -EPERM;
2645
Miao Xieda249272012-11-26 08:44:50 +00002646 ret = mnt_want_write_file(file);
2647 if (ret)
2648 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002649
Li Zefandae7b662009-04-08 15:06:54 +08002650 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002651 if (IS_ERR(vol_args)) {
2652 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002653 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002654 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002655
Anand Jain6b526ed2016-02-13 10:01:39 +08002656 /* Check for compatibility reject unknown flags */
David Sterba735654e2016-02-15 18:15:21 +01002657 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED)
2658 return -EOPNOTSUPP;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002659
David Sterba171938e2017-03-28 14:44:21 +02002660 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jain183860f2013-05-17 10:52:45 +00002661 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2662 goto out;
2663 }
2664
David Sterba735654e2016-02-15 18:15:21 +01002665 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002666 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08002667 } else {
2668 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002669 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08002670 }
David Sterba171938e2017-03-28 14:44:21 +02002671 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain183860f2013-05-17 10:52:45 +00002672
Anand Jain6b526ed2016-02-13 10:01:39 +08002673 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01002674 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002675 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08002676 vol_args->devid);
2677 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002678 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08002679 vol_args->name);
2680 }
Anand Jain183860f2013-05-17 10:52:45 +00002681out:
2682 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002683err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002684 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002685 return ret;
2686}
2687
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002688static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2689{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002690 struct inode *inode = file_inode(file);
2691 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002692 struct btrfs_ioctl_vol_args *vol_args;
2693 int ret;
2694
2695 if (!capable(CAP_SYS_ADMIN))
2696 return -EPERM;
2697
2698 ret = mnt_want_write_file(file);
2699 if (ret)
2700 return ret;
2701
David Sterba171938e2017-03-28 14:44:21 +02002702 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002703 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02002704 goto out_drop_write;
2705 }
2706
2707 vol_args = memdup_user(arg, sizeof(*vol_args));
2708 if (IS_ERR(vol_args)) {
2709 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002710 goto out;
2711 }
2712
David Sterba58d7bbf2016-05-04 14:10:47 +02002713 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002714 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002715
2716 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002717 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002718 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02002719out:
David Sterba171938e2017-03-28 14:44:21 +02002720 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
David Sterba58d7bbf2016-05-04 14:10:47 +02002721out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002722 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02002723
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002724 return ret;
2725}
2726
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002727static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
2728 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002729{
Li Zefan027ed2f2011-06-08 08:27:56 +00002730 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002731 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002732 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002733 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002734
Li Zefan027ed2f2011-06-08 08:27:56 +00002735 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2736 if (!fi_args)
2737 return -ENOMEM;
2738
David Sterbad03262c2017-06-16 00:09:21 +02002739 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00002740 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01002741
David Sterbad03262c2017-06-16 00:09:21 +02002742 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002743 if (device->devid > fi_args->max_id)
2744 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002745 }
David Sterbad03262c2017-06-16 00:09:21 +02002746 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002747
David Sterbad03262c2017-06-16 00:09:21 +02002748 memcpy(&fi_args->fsid, fs_info->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07002749 fi_args->nodesize = fs_info->nodesize;
2750 fi_args->sectorsize = fs_info->sectorsize;
2751 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02002752
Li Zefan027ed2f2011-06-08 08:27:56 +00002753 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2754 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002755
Li Zefan027ed2f2011-06-08 08:27:56 +00002756 kfree(fi_args);
2757 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002758}
2759
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002760static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
2761 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002762{
2763 struct btrfs_ioctl_dev_info_args *di_args;
2764 struct btrfs_device *dev;
Jan Schmidt475f6382011-03-11 15:41:01 +01002765 int ret = 0;
2766 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002767
Jan Schmidt475f6382011-03-11 15:41:01 +01002768 di_args = memdup_user(arg, sizeof(*di_args));
2769 if (IS_ERR(di_args))
2770 return PTR_ERR(di_args);
2771
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002772 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002773 s_uuid = di_args->uuid;
2774
David Sterbac5593ca2017-06-16 00:09:21 +02002775 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002776 dev = btrfs_find_device(fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002777
2778 if (!dev) {
2779 ret = -ENODEV;
2780 goto out;
2781 }
2782
2783 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002784 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2785 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002786 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002787 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002788 struct rcu_string *name;
2789
Josef Bacik606686e2012-06-04 14:03:51 -04002790 name = rcu_dereference(dev->name);
Xiongfeng Wang6670d4c2018-01-08 19:51:22 +08002791 strncpy(di_args->path, name->str, sizeof(di_args->path) - 1);
Jim Meyeringa27202f2012-04-26 18:36:56 +02002792 di_args->path[sizeof(di_args->path) - 1] = 0;
2793 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002794 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002795 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002796
2797out:
David Sterbac5593ca2017-06-16 00:09:21 +02002798 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002799 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2800 ret = -EFAULT;
2801
2802 kfree(di_args);
2803 return ret;
2804}
2805
Mark Fashehf4414602015-06-30 14:42:05 -07002806static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002807{
2808 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002809
Mark Fasheh416161d2013-08-06 11:42:51 -07002810 page = grab_cache_page(inode->i_mapping, index);
2811 if (!page)
Filipe Manana31314002016-01-27 18:37:47 +00002812 return ERR_PTR(-ENOMEM);
Mark Fasheh416161d2013-08-06 11:42:51 -07002813
2814 if (!PageUptodate(page)) {
Filipe Manana31314002016-01-27 18:37:47 +00002815 int ret;
2816
2817 ret = btrfs_readpage(NULL, page);
2818 if (ret)
2819 return ERR_PTR(ret);
Mark Fasheh416161d2013-08-06 11:42:51 -07002820 lock_page(page);
2821 if (!PageUptodate(page)) {
2822 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002823 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002824 return ERR_PTR(-EIO);
2825 }
2826 if (page->mapping != inode->i_mapping) {
2827 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002828 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002829 return ERR_PTR(-EAGAIN);
Mark Fasheh416161d2013-08-06 11:42:51 -07002830 }
2831 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002832
2833 return page;
2834}
2835
Mark Fashehf4414602015-06-30 14:42:05 -07002836static int gather_extent_pages(struct inode *inode, struct page **pages,
2837 int num_pages, u64 off)
2838{
2839 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002840 pgoff_t index = off >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002841
2842 for (i = 0; i < num_pages; i++) {
Filipe Manana31314002016-01-27 18:37:47 +00002843again:
Mark Fashehf4414602015-06-30 14:42:05 -07002844 pages[i] = extent_same_get_page(inode, index + i);
Filipe Manana31314002016-01-27 18:37:47 +00002845 if (IS_ERR(pages[i])) {
2846 int err = PTR_ERR(pages[i]);
2847
2848 if (err == -EAGAIN)
2849 goto again;
2850 pages[i] = NULL;
2851 return err;
2852 }
Mark Fashehf4414602015-06-30 14:42:05 -07002853 }
2854 return 0;
2855}
2856
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002857static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2858 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002859{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002860 /*
2861 * Do any pending delalloc/csum calculations on inode, one way or
2862 * another, and lock file content.
2863 * The locking order is:
2864 *
2865 * 1) pages
2866 * 2) range in the inode's io tree
2867 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002868 while (1) {
2869 struct btrfs_ordered_extent *ordered;
2870 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2871 ordered = btrfs_lookup_first_ordered_extent(inode,
2872 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002873 if ((!ordered ||
2874 ordered->file_offset + ordered->len <= off ||
2875 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002876 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002877 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2878 if (ordered)
2879 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002880 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002881 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002882 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2883 if (ordered)
2884 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002885 if (!retry_range_locking)
2886 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002887 btrfs_wait_ordered_range(inode, off, len);
2888 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002889 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002890}
2891
Mark Fashehf4414602015-06-30 14:42:05 -07002892static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002893{
Al Viro59551022016-01-22 15:40:57 -05002894 inode_unlock(inode1);
2895 inode_unlock(inode2);
Mark Fasheh416161d2013-08-06 11:42:51 -07002896}
2897
Mark Fashehf4414602015-06-30 14:42:05 -07002898static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2899{
2900 if (inode1 < inode2)
2901 swap(inode1, inode2);
2902
Al Viro59551022016-01-22 15:40:57 -05002903 inode_lock_nested(inode1, I_MUTEX_PARENT);
2904 inode_lock_nested(inode2, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002905}
2906
2907static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2908 struct inode *inode2, u64 loff2, u64 len)
2909{
2910 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2911 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2912}
2913
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002914static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2915 struct inode *inode2, u64 loff2, u64 len,
2916 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002917{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002918 int ret;
2919
Mark Fasheh416161d2013-08-06 11:42:51 -07002920 if (inode1 < inode2) {
2921 swap(inode1, inode2);
2922 swap(loff1, loff2);
2923 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002924 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2925 if (ret)
2926 return ret;
2927 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2928 if (ret)
2929 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2930 loff1 + len - 1);
2931 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002932}
2933
2934struct cmp_pages {
2935 int num_pages;
2936 struct page **src_pages;
2937 struct page **dst_pages;
2938};
2939
2940static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2941{
2942 int i;
2943 struct page *pg;
2944
2945 for (i = 0; i < cmp->num_pages; i++) {
2946 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002947 if (pg) {
2948 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002949 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002950 }
Mark Fashehf4414602015-06-30 14:42:05 -07002951 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002952 if (pg) {
2953 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002954 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002955 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002956 }
Mark Fashehf4414602015-06-30 14:42:05 -07002957 kfree(cmp->src_pages);
2958 kfree(cmp->dst_pages);
2959}
2960
2961static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2962 struct inode *dst, u64 dst_loff,
2963 u64 len, struct cmp_pages *cmp)
2964{
2965 int ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002966 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002967 struct page **src_pgarr, **dst_pgarr;
2968
2969 /*
2970 * We must gather up all the pages before we initiate our
2971 * extent locking. We use an array for the page pointers. Size
2972 * of the array is bounded by len, which is in turn bounded by
2973 * BTRFS_MAX_DEDUPE_LEN.
2974 */
David Sterba66722f72016-02-11 15:01:38 +01002975 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
2976 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
Mark Fashehf4414602015-06-30 14:42:05 -07002977 if (!src_pgarr || !dst_pgarr) {
2978 kfree(src_pgarr);
2979 kfree(dst_pgarr);
2980 return -ENOMEM;
2981 }
2982 cmp->num_pages = num_pages;
2983 cmp->src_pages = src_pgarr;
2984 cmp->dst_pages = dst_pgarr;
2985
Filipe Mananab1517622017-02-21 17:14:52 +00002986 /*
2987 * If deduping ranges in the same inode, locking rules make it mandatory
2988 * to always lock pages in ascending order to avoid deadlocks with
2989 * concurrent tasks (such as starting writeback/delalloc).
2990 */
2991 if (src == dst && dst_loff < loff) {
2992 swap(src_pgarr, dst_pgarr);
2993 swap(loff, dst_loff);
2994 }
2995
2996 ret = gather_extent_pages(src, src_pgarr, cmp->num_pages, loff);
Mark Fashehf4414602015-06-30 14:42:05 -07002997 if (ret)
2998 goto out;
2999
Filipe Mananab1517622017-02-21 17:14:52 +00003000 ret = gather_extent_pages(dst, dst_pgarr, cmp->num_pages, dst_loff);
Mark Fashehf4414602015-06-30 14:42:05 -07003001
3002out:
3003 if (ret)
3004 btrfs_cmp_data_free(cmp);
Naohiro Aota78ad4ce2017-09-08 17:48:55 +09003005 return ret;
Mark Fasheh416161d2013-08-06 11:42:51 -07003006}
3007
David Sterba1a287cf2017-02-10 20:15:10 +01003008static int btrfs_cmp_data(u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003009{
3010 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07003011 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07003012 struct page *src_page, *dst_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003013 unsigned int cmp_len = PAGE_SIZE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003014 void *addr, *dst_addr;
3015
Mark Fashehf4414602015-06-30 14:42:05 -07003016 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003017 while (len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003018 if (len < PAGE_SIZE)
Mark Fasheh416161d2013-08-06 11:42:51 -07003019 cmp_len = len;
3020
Mark Fashehf4414602015-06-30 14:42:05 -07003021 BUG_ON(i >= cmp->num_pages);
3022
3023 src_page = cmp->src_pages[i];
3024 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003025 ASSERT(PageLocked(src_page));
3026 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07003027
Mark Fasheh416161d2013-08-06 11:42:51 -07003028 addr = kmap_atomic(src_page);
3029 dst_addr = kmap_atomic(dst_page);
3030
3031 flush_dcache_page(src_page);
3032 flush_dcache_page(dst_page);
3033
3034 if (memcmp(addr, dst_addr, cmp_len))
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003035 ret = -EBADE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003036
3037 kunmap_atomic(addr);
3038 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07003039
3040 if (ret)
3041 break;
3042
Mark Fasheh416161d2013-08-06 11:42:51 -07003043 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07003044 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07003045 }
3046
3047 return ret;
3048}
3049
Mark Fashehe1d227a2015-06-08 15:05:25 -07003050static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
3051 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07003052{
Mark Fashehe1d227a2015-06-08 15:05:25 -07003053 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003054 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
3055
Mark Fashehe1d227a2015-06-08 15:05:25 -07003056 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07003057 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003058
3059 /* if we extend to eof, continue to block boundary */
3060 if (off + len == inode->i_size)
3061 *plen = len = ALIGN(inode->i_size, bs) - off;
3062
Mark Fasheh416161d2013-08-06 11:42:51 -07003063 /* Check that we are block aligned - btrfs_clone() requires this */
3064 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
3065 return -EINVAL;
3066
3067 return 0;
3068}
3069
Mark Fashehe1d227a2015-06-08 15:05:25 -07003070static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07003071 struct inode *dst, u64 dst_loff)
3072{
3073 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003074 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07003075 struct cmp_pages cmp;
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003076 bool same_inode = (src == dst);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003077 u64 same_lock_start = 0;
3078 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003079
Filipe Manana113e8282015-03-30 18:26:47 +01003080 if (len == 0)
3081 return 0;
3082
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003083 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003084 inode_lock(src);
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003085 else
3086 btrfs_double_inode_lock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003087
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003088 ret = extent_same_check_offsets(src, loff, &len, olen);
3089 if (ret)
3090 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07003091
Omar Sandovalfc4badd2017-01-17 23:37:38 -08003092 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3093 if (ret)
3094 goto out_unlock;
3095
3096 if (same_inode) {
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003097 /*
3098 * Single inode case wants the same checks, except we
3099 * don't want our length pushed out past i_size as
3100 * comparing that data range makes no sense.
3101 *
3102 * extent_same_check_offsets() will do this for an
3103 * unaligned length at i_size, so catch it here and
3104 * reject the request.
3105 *
3106 * This effectively means we require aligned extents
3107 * for the single-inode case, whereas the other cases
3108 * allow an unaligned length so long as it ends at
3109 * i_size.
3110 */
3111 if (len != olen) {
3112 ret = -EINVAL;
3113 goto out_unlock;
3114 }
3115
3116 /* Check for overlapping ranges */
3117 if (dst_loff + len > loff && dst_loff < loff + len) {
3118 ret = -EINVAL;
3119 goto out_unlock;
3120 }
3121
3122 same_lock_start = min_t(u64, loff, dst_loff);
3123 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003124 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003125
3126 /* don't make the dst file partly checksummed */
3127 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3128 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3129 ret = -EINVAL;
3130 goto out_unlock;
3131 }
3132
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003133again:
Mark Fashehf4414602015-06-30 14:42:05 -07003134 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3135 if (ret)
3136 goto out_unlock;
3137
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003138 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003139 ret = lock_extent_range(src, same_lock_start, same_lock_len,
3140 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003141 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003142 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
3143 false);
3144 /*
3145 * If one of the inodes has dirty pages in the respective range or
3146 * ordered extents, we need to flush dellaloc and wait for all ordered
3147 * extents in the range. We must unlock the pages and the ranges in the
3148 * io trees to avoid deadlocks when flushing delalloc (requires locking
3149 * pages) and when waiting for ordered extents to complete (they require
3150 * range locking).
3151 */
3152 if (ret == -EAGAIN) {
3153 /*
3154 * Ranges in the io trees already unlocked. Now unlock all
3155 * pages before waiting for all IO to complete.
3156 */
3157 btrfs_cmp_data_free(&cmp);
3158 if (same_inode) {
3159 btrfs_wait_ordered_range(src, same_lock_start,
3160 same_lock_len);
3161 } else {
3162 btrfs_wait_ordered_range(src, loff, len);
3163 btrfs_wait_ordered_range(dst, dst_loff, len);
3164 }
3165 goto again;
3166 }
3167 ASSERT(ret == 0);
3168 if (WARN_ON(ret)) {
3169 /* ranges in the io trees already unlocked */
3170 btrfs_cmp_data_free(&cmp);
3171 return ret;
3172 }
Mark Fashehf4414602015-06-30 14:42:05 -07003173
Mark Fasheh207910d2015-06-30 14:42:04 -07003174 /* pass original length for comparison so we stay within i_size */
David Sterba1a287cf2017-02-10 20:15:10 +01003175 ret = btrfs_cmp_data(olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003176 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003177 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003178
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003179 if (same_inode)
3180 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3181 same_lock_start + same_lock_len - 1);
3182 else
3183 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003184
3185 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003186out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003187 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003188 inode_unlock(src);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003189 else
3190 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003191
3192 return ret;
3193}
3194
Byongho Leeee221842015-12-15 01:42:10 +09003195#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003196
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003197ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3198 struct file *dst_file, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003199{
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003200 struct inode *src = file_inode(src_file);
3201 struct inode *dst = file_inode(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003202 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003203 ssize_t res;
Mark Fasheh416161d2013-08-06 11:42:51 -07003204
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003205 if (olen > BTRFS_MAX_DEDUPE_LEN)
3206 olen = BTRFS_MAX_DEDUPE_LEN;
Mark Fasheh416161d2013-08-06 11:42:51 -07003207
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003208 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003209 /*
3210 * Btrfs does not support blocksize < page_size. As a
3211 * result, btrfs_cmp_data() won't correctly handle
3212 * this situation without an update.
3213 */
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003214 return -EINVAL;
Mark Fasheh416161d2013-08-06 11:42:51 -07003215 }
3216
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003217 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3218 if (res)
3219 return res;
3220 return olen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003221}
3222
Filipe Mananaf82a9902014-06-01 01:50:28 +01003223static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3224 struct inode *inode,
3225 u64 endoff,
3226 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003227 const u64 olen,
3228 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003229{
3230 struct btrfs_root *root = BTRFS_I(inode)->root;
3231 int ret;
3232
3233 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003234 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003235 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003236 /*
3237 * We round up to the block size at eof when determining which
3238 * extents to clone above, but shouldn't round up the file size.
3239 */
3240 if (endoff > destoff + olen)
3241 endoff = destoff + olen;
3242 if (endoff > inode->i_size)
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003243 btrfs_i_size_write(BTRFS_I(inode), endoff);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003244
3245 ret = btrfs_update_inode(trans, root, inode);
3246 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003247 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003248 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003249 goto out;
3250 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003251 ret = btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003252out:
3253 return ret;
3254}
3255
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003256static void clone_update_extent_map(struct btrfs_inode *inode,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003257 const struct btrfs_trans_handle *trans,
3258 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003259 const u64 hole_offset,
3260 const u64 hole_len)
3261{
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003262 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01003263 struct extent_map *em;
3264 int ret;
3265
3266 em = alloc_extent_map();
3267 if (!em) {
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003268 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003269 return;
3270 }
3271
Filipe Manana14f59792014-06-29 21:45:40 +01003272 if (path) {
3273 struct btrfs_file_extent_item *fi;
3274
3275 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3276 struct btrfs_file_extent_item);
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003277 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003278 em->generation = -1;
3279 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3280 BTRFS_FILE_EXTENT_INLINE)
3281 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003282 &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003283 } else {
3284 em->start = hole_offset;
3285 em->len = hole_len;
3286 em->ram_bytes = em->len;
3287 em->orig_start = hole_offset;
3288 em->block_start = EXTENT_MAP_HOLE;
3289 em->block_len = 0;
3290 em->orig_block_len = 0;
3291 em->compress_type = BTRFS_COMPRESS_NONE;
3292 em->generation = trans->transid;
3293 }
3294
3295 while (1) {
3296 write_lock(&em_tree->lock);
3297 ret = add_extent_mapping(em_tree, em, 1);
3298 write_unlock(&em_tree->lock);
3299 if (ret != -EEXIST) {
3300 free_extent_map(em);
3301 break;
3302 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003303 btrfs_drop_extent_cache(inode, em->start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003304 em->start + em->len - 1, 0);
3305 }
3306
David Sterbaee39b432014-09-30 01:33:33 +02003307 if (ret)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003308 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003309}
3310
Filipe Manana8039d872015-10-13 15:15:00 +01003311/*
3312 * Make sure we do not end up inserting an inline extent into a file that has
3313 * already other (non-inline) extents. If a file has an inline extent it can
3314 * not have any other extents and the (single) inline extent must start at the
3315 * file offset 0. Failing to respect these rules will lead to file corruption,
3316 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3317 *
3318 * We can have extents that have been already written to disk or we can have
3319 * dirty ranges still in delalloc, in which case the extent maps and items are
3320 * created only when we run delalloc, and the delalloc ranges might fall outside
3321 * the range we are currently locking in the inode's io tree. So we check the
3322 * inode's i_size because of that (i_size updates are done while holding the
3323 * i_mutex, which we are holding here).
3324 * We also check to see if the inode has a size not greater than "datal" but has
3325 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3326 * protected against such concurrent fallocate calls by the i_mutex).
3327 *
3328 * If the file has no extents but a size greater than datal, do not allow the
3329 * copy because we would need turn the inline extent into a non-inline one (even
3330 * with NO_HOLES enabled). If we find our destination inode only has one inline
3331 * extent, just overwrite it with the source inline extent if its size is less
3332 * than the source extent's size, or we could copy the source inline extent's
3333 * data into the destination inode's inline extent if the later is greater then
3334 * the former.
3335 */
David Sterba4a0ab9d2017-02-10 20:18:49 +01003336static int clone_copy_inline_extent(struct inode *dst,
Filipe Manana8039d872015-10-13 15:15:00 +01003337 struct btrfs_trans_handle *trans,
3338 struct btrfs_path *path,
3339 struct btrfs_key *new_key,
3340 const u64 drop_start,
3341 const u64 datal,
3342 const u64 skip,
3343 const u64 size,
3344 char *inline_data)
3345{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003346 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
Filipe Manana8039d872015-10-13 15:15:00 +01003347 struct btrfs_root *root = BTRFS_I(dst)->root;
3348 const u64 aligned_end = ALIGN(new_key->offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003349 fs_info->sectorsize);
Filipe Manana8039d872015-10-13 15:15:00 +01003350 int ret;
3351 struct btrfs_key key;
3352
3353 if (new_key->offset > 0)
3354 return -EOPNOTSUPP;
3355
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003356 key.objectid = btrfs_ino(BTRFS_I(dst));
Filipe Manana8039d872015-10-13 15:15:00 +01003357 key.type = BTRFS_EXTENT_DATA_KEY;
3358 key.offset = 0;
3359 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3360 if (ret < 0) {
3361 return ret;
3362 } else if (ret > 0) {
3363 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3364 ret = btrfs_next_leaf(root, path);
3365 if (ret < 0)
3366 return ret;
3367 else if (ret > 0)
3368 goto copy_inline_extent;
3369 }
3370 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003371 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003372 key.type == BTRFS_EXTENT_DATA_KEY) {
3373 ASSERT(key.offset > 0);
3374 return -EOPNOTSUPP;
3375 }
3376 } else if (i_size_read(dst) <= datal) {
3377 struct btrfs_file_extent_item *ei;
3378 u64 ext_len;
3379
3380 /*
3381 * If the file size is <= datal, make sure there are no other
3382 * extents following (can happen do to an fallocate call with
3383 * the flag FALLOC_FL_KEEP_SIZE).
3384 */
3385 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3386 struct btrfs_file_extent_item);
3387 /*
3388 * If it's an inline extent, it can not have other extents
3389 * following it.
3390 */
3391 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3392 BTRFS_FILE_EXTENT_INLINE)
3393 goto copy_inline_extent;
3394
3395 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3396 if (ext_len > aligned_end)
3397 return -EOPNOTSUPP;
3398
3399 ret = btrfs_next_item(root, path);
3400 if (ret < 0) {
3401 return ret;
3402 } else if (ret == 0) {
3403 btrfs_item_key_to_cpu(path->nodes[0], &key,
3404 path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003405 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003406 key.type == BTRFS_EXTENT_DATA_KEY)
3407 return -EOPNOTSUPP;
3408 }
3409 }
3410
3411copy_inline_extent:
3412 /*
3413 * We have no extent items, or we have an extent at offset 0 which may
3414 * or may not be inlined. All these cases are dealt the same way.
3415 */
3416 if (i_size_read(dst) > datal) {
3417 /*
3418 * If the destination inode has an inline extent...
3419 * This would require copying the data from the source inline
3420 * extent into the beginning of the destination's inline extent.
3421 * But this is really complex, both extents can be compressed
3422 * or just one of them, which would require decompressing and
3423 * re-compressing data (which could increase the new compressed
3424 * size, not allowing the compressed data to fit anymore in an
3425 * inline extent).
3426 * So just don't support this case for now (it should be rare,
3427 * we are not really saving space when cloning inline extents).
3428 */
3429 return -EOPNOTSUPP;
3430 }
3431
3432 btrfs_release_path(path);
3433 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3434 if (ret)
3435 return ret;
3436 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3437 if (ret)
3438 return ret;
3439
3440 if (skip) {
3441 const u32 start = btrfs_file_extent_calc_inline_size(0);
3442
3443 memmove(inline_data + start, inline_data + start + skip, datal);
3444 }
3445
3446 write_extent_buffer(path->nodes[0], inline_data,
3447 btrfs_item_ptr_offset(path->nodes[0],
3448 path->slots[0]),
3449 size);
3450 inode_add_bytes(dst, datal);
3451
3452 return 0;
3453}
3454
Mark Fasheh32b7c682013-08-06 11:42:49 -07003455/**
3456 * btrfs_clone() - clone a range from inode file to another
3457 *
3458 * @src: Inode to clone from
3459 * @inode: Inode to clone to
3460 * @off: Offset within source to start clone from
3461 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003462 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003463 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003464 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003465 */
3466static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003467 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003468 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003469{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003470 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003471 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003472 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003473 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003474 struct btrfs_trans_handle *trans;
3475 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003476 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003477 u32 nritems;
3478 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003479 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003480 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003481 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003482
3483 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07003484 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3485 if (!buf)
3486 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003487
3488 path = btrfs_alloc_path();
3489 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003490 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003491 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003492 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003493
David Sterbae4058b52015-11-27 16:31:35 +01003494 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003495 /* clone data */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003496 key.objectid = btrfs_ino(BTRFS_I(src));
Yan Zhengae01a0a2008-08-04 23:23:47 -04003497 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003498 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003499
3500 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003501 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003502
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003503 /*
3504 * note the key will change type as we walk through the
3505 * tree.
3506 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003507 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003508 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3509 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003510 if (ret < 0)
3511 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003512 /*
3513 * First search, if no extent item that starts at offset off was
3514 * found but the previous item is an extent item, it's possible
3515 * it might overlap our target range, therefore process it.
3516 */
3517 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3518 btrfs_item_key_to_cpu(path->nodes[0], &key,
3519 path->slots[0] - 1);
3520 if (key.type == BTRFS_EXTENT_DATA_KEY)
3521 path->slots[0]--;
3522 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003523
Yan Zhengae01a0a2008-08-04 23:23:47 -04003524 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003525process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003526 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003527 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003528 if (ret < 0)
3529 goto out;
3530 if (ret > 0)
3531 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003532 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003533 }
3534 leaf = path->nodes[0];
3535 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003536
Yan Zhengae01a0a2008-08-04 23:23:47 -04003537 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003538 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003539 key.objectid != btrfs_ino(BTRFS_I(src)))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003540 break;
3541
David Sterba962a2982014-06-04 18:41:45 +02003542 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003543 struct btrfs_file_extent_item *extent;
3544 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003545 u32 size;
3546 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003547 u64 disko = 0, diskl = 0;
3548 u64 datao = 0, datal = 0;
3549 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003550 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003551
Sage Weilc5c9cd42008-11-12 14:32:25 -05003552 extent = btrfs_item_ptr(leaf, slot,
3553 struct btrfs_file_extent_item);
3554 comp = btrfs_file_extent_compression(leaf, extent);
3555 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003556 if (type == BTRFS_FILE_EXTENT_REG ||
3557 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003558 disko = btrfs_file_extent_disk_bytenr(leaf,
3559 extent);
3560 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3561 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003562 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003563 datal = btrfs_file_extent_num_bytes(leaf,
3564 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003565 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3566 /* take upper bound, may be compressed */
3567 datal = btrfs_file_extent_ram_bytes(leaf,
3568 extent);
3569 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003570
Filipe Manana2c463822014-05-31 02:31:05 +01003571 /*
3572 * The first search might have left us at an extent
3573 * item that ends before our target range's start, can
3574 * happen if we have holes and NO_HOLES feature enabled.
3575 */
3576 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003577 path->slots[0]++;
3578 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003579 } else if (key.offset >= off + len) {
3580 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003581 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003582 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003583 size = btrfs_item_size_nr(leaf, slot);
3584 read_extent_buffer(leaf, buf,
3585 btrfs_item_ptr_offset(leaf, slot),
3586 size);
3587
3588 btrfs_release_path(path);
3589 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003590
Zheng Yan31840ae2008-09-23 13:14:14 -04003591 memcpy(&new_key, &key, sizeof(new_key));
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003592 new_key.objectid = btrfs_ino(BTRFS_I(inode));
Li Zefan4d728ec2011-01-26 14:10:43 +08003593 if (off <= key.offset)
3594 new_key.offset = key.offset + destoff - off;
3595 else
3596 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003597
Sage Weilb6f34092011-09-20 14:48:51 -04003598 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003599 * Deal with a hole that doesn't have an extent item
3600 * that represents it (NO_HOLES feature enabled).
3601 * This hole is either in the middle of the cloning
3602 * range or at the beginning (fully overlaps it or
3603 * partially overlaps it).
3604 */
3605 if (new_key.offset != last_dest_end)
3606 drop_start = last_dest_end;
3607 else
3608 drop_start = new_key.offset;
3609
3610 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003611 * 1 - adjusting old extent (we may have to split it)
3612 * 1 - add new extent
3613 * 1 - inode update
3614 */
3615 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003616 if (IS_ERR(trans)) {
3617 ret = PTR_ERR(trans);
3618 goto out;
3619 }
3620
Chris Masonc8a894d2009-06-27 21:07:03 -04003621 if (type == BTRFS_FILE_EXTENT_REG ||
3622 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003623 /*
3624 * a | --- range to clone ---| b
3625 * | ------------- extent ------------- |
3626 */
3627
Antonio Ospite93915582014-06-04 14:03:48 +02003628 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003629 if (key.offset + datal > off + len)
3630 datal = off + len - key.offset;
3631
Antonio Ospite93915582014-06-04 14:03:48 +02003632 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003633 if (off > key.offset) {
3634 datao += off - key.offset;
3635 datal -= off - key.offset;
3636 }
3637
Josef Bacik5dc562c2012-08-17 13:14:17 -04003638 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003639 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003640 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003641 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003642 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003643 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003644 btrfs_abort_transaction(trans,
Jeff Mahoney66642832016-06-10 18:19:25 -04003645 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003646 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003647 goto out;
3648 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003649
Sage Weilc5c9cd42008-11-12 14:32:25 -05003650 ret = btrfs_insert_empty_item(trans, root, path,
3651 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003652 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003653 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003654 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003655 goto out;
3656 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003657
3658 leaf = path->nodes[0];
3659 slot = path->slots[0];
3660 write_extent_buffer(leaf, buf,
3661 btrfs_item_ptr_offset(leaf, slot),
3662 size);
3663
3664 extent = btrfs_item_ptr(leaf, slot,
3665 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003666
Sage Weilc5c9cd42008-11-12 14:32:25 -05003667 /* disko == 0 means it's a hole */
3668 if (!disko)
3669 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003670
3671 btrfs_set_file_extent_offset(leaf, extent,
3672 datao);
3673 btrfs_set_file_extent_num_bytes(leaf, extent,
3674 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003675
Sage Weilc5c9cd42008-11-12 14:32:25 -05003676 if (disko) {
3677 inode_add_bytes(inode, datal);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003678 ret = btrfs_inc_extent_ref(trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003679 root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003680 disko, diskl, 0,
3681 root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003682 btrfs_ino(BTRFS_I(inode)),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003683 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003684 if (ret) {
3685 btrfs_abort_transaction(trans,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003686 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003687 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003688 goto out;
3689
3690 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003691 }
3692 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3693 u64 skip = 0;
3694 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003695
Sage Weilc5c9cd42008-11-12 14:32:25 -05003696 if (off > key.offset) {
3697 skip = off - key.offset;
3698 new_key.offset += skip;
3699 }
Chris Masond3977122009-01-05 21:25:51 -05003700
Liu Boaa42ffd2012-09-18 03:52:23 -06003701 if (key.offset + datal > off + len)
3702 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003703
Sage Weilc5c9cd42008-11-12 14:32:25 -05003704 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003705 ret = -EINVAL;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003706 btrfs_end_transaction(trans);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003707 goto out;
3708 }
3709 size -= skip + trim;
3710 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003711
David Sterba4a0ab9d2017-02-10 20:18:49 +01003712 ret = clone_copy_inline_extent(inode,
Filipe Manana8039d872015-10-13 15:15:00 +01003713 trans, path,
3714 &new_key,
3715 drop_start,
3716 datal,
3717 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003718 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003719 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003720 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003721 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003722 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003723 goto out;
3724 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003725 leaf = path->nodes[0];
3726 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003727 }
3728
Filipe Manana7ffbb592014-06-09 03:48:05 +01003729 /* If we have an implicit hole (NO_HOLES feature). */
3730 if (drop_start < new_key.offset)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003731 clone_update_extent_map(BTRFS_I(inode), trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003732 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003733 new_key.offset - drop_start);
3734
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003735 clone_update_extent_map(BTRFS_I(inode), trans,
3736 path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003737
Sage Weilc5c9cd42008-11-12 14:32:25 -05003738 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003739 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003740
Filipe Manana62e23902014-08-08 02:47:06 +01003741 last_dest_end = ALIGN(new_key.offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003742 fs_info->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003743 ret = clone_finish_inode_update(trans, inode,
3744 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003745 destoff, olen,
3746 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003747 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003748 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003749 if (new_key.offset + datal >= destoff + len)
3750 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003751 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003752 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003753 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003754
3755 if (fatal_signal_pending(current)) {
3756 ret = -EINTR;
3757 goto out;
3758 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003759 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003760 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003761
Filipe Mananaf82a9902014-06-01 01:50:28 +01003762 if (last_dest_end < destoff + len) {
3763 /*
3764 * We have an implicit hole (NO_HOLES feature is enabled) that
3765 * fully or partially overlaps our cloning range at its end.
3766 */
3767 btrfs_release_path(path);
3768
3769 /*
3770 * 1 - remove extent(s)
3771 * 1 - inode update
3772 */
3773 trans = btrfs_start_transaction(root, 2);
3774 if (IS_ERR(trans)) {
3775 ret = PTR_ERR(trans);
3776 goto out;
3777 }
3778 ret = btrfs_drop_extents(trans, root, inode,
3779 last_dest_end, destoff + len, 1);
3780 if (ret) {
3781 if (ret != -EOPNOTSUPP)
Jeff Mahoney66642832016-06-10 18:19:25 -04003782 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003783 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003784 goto out;
3785 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003786 clone_update_extent_map(BTRFS_I(inode), trans, NULL,
3787 last_dest_end,
3788 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003789 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003790 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003791 }
3792
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003793out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003794 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003795 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003796 return ret;
3797}
3798
Zach Brown3db11b22015-11-10 16:53:32 -05003799static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3800 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003801{
Al Viro54563d42013-09-01 15:57:51 -04003802 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003803 struct inode *src = file_inode(file_src);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003804 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003805 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003806 int ret;
3807 u64 len = olen;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003808 u64 bs = fs_info->sb->s_blocksize;
Zach Brown3db11b22015-11-10 16:53:32 -05003809 int same_inode = src == inode;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003810
3811 /*
3812 * TODO:
3813 * - split compressed inline extents. annoying: we need to
3814 * decompress into destination's address_space (the file offset
3815 * may change, so source mapping won't do), then recompress (or
3816 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003817 *
3818 * - split destination inode's inline extents. The inline extents can
3819 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003820 */
3821
Mark Fasheh32b7c682013-08-06 11:42:49 -07003822 if (btrfs_root_readonly(root))
3823 return -EROFS;
3824
Zach Brown3db11b22015-11-10 16:53:32 -05003825 if (file_src->f_path.mnt != file->f_path.mnt ||
3826 src->i_sb != inode->i_sb)
3827 return -EXDEV;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003828
3829 /* don't make the dst file partly checksummed */
3830 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3831 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
Zach Brown3db11b22015-11-10 16:53:32 -05003832 return -EINVAL;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003833
Mark Fasheh32b7c682013-08-06 11:42:49 -07003834 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Zach Brown3db11b22015-11-10 16:53:32 -05003835 return -EISDIR;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003836
3837 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003838 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003839 } else {
Al Viro59551022016-01-22 15:40:57 -05003840 inode_lock(src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003841 }
3842
3843 /* determine range to clone */
3844 ret = -EINVAL;
3845 if (off + len > src->i_size || off + len < off)
3846 goto out_unlock;
3847 if (len == 0)
3848 olen = len = src->i_size - off;
3849 /* if we extend to eof, continue to block boundary */
3850 if (off + len == src->i_size)
3851 len = ALIGN(src->i_size, bs) - off;
3852
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003853 if (len == 0) {
3854 ret = 0;
3855 goto out_unlock;
3856 }
3857
Mark Fasheh32b7c682013-08-06 11:42:49 -07003858 /* verify the end result is block aligned */
3859 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3860 !IS_ALIGNED(destoff, bs))
3861 goto out_unlock;
3862
3863 /* verify if ranges are overlapped within the same file */
3864 if (same_inode) {
3865 if (destoff + len > off && destoff < off + len)
3866 goto out_unlock;
3867 }
3868
3869 if (destoff > inode->i_size) {
3870 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3871 if (ret)
3872 goto out_unlock;
3873 }
3874
Filipe Mananac125b8b2014-05-23 05:03:34 +01003875 /*
3876 * Lock the target range too. Right after we replace the file extent
3877 * items in the fs tree (which now point to the cloned data), we might
3878 * have a worker replace them with extent items relative to a write
3879 * operation that was issued before this clone operation (i.e. confront
3880 * with inode.c:btrfs_finish_ordered_io).
3881 */
3882 if (same_inode) {
3883 u64 lock_start = min_t(u64, off, destoff);
3884 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003885
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003886 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003887 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003888 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3889 true);
3890 }
3891 ASSERT(ret == 0);
3892 if (WARN_ON(ret)) {
3893 /* ranges in the io trees already unlocked */
3894 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003895 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003896
Mark Fasheh1c919a52015-06-30 14:42:08 -07003897 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003898
Filipe Mananac125b8b2014-05-23 05:03:34 +01003899 if (same_inode) {
3900 u64 lock_start = min_t(u64, off, destoff);
3901 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3902
3903 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3904 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003905 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003906 }
3907 /*
3908 * Truncate page cache pages so that future reads will see the cloned
3909 * data immediately and not the previous data.
3910 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303911 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003912 round_down(destoff, PAGE_SIZE),
3913 round_up(destoff + len, PAGE_SIZE) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003914out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003915 if (!same_inode)
3916 btrfs_double_inode_unlock(src, inode);
3917 else
Al Viro59551022016-01-22 15:40:57 -05003918 inode_unlock(src);
Zach Brown3db11b22015-11-10 16:53:32 -05003919 return ret;
3920}
3921
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003922int btrfs_clone_file_range(struct file *src_file, loff_t off,
3923 struct file *dst_file, loff_t destoff, u64 len)
Zach Brown3db11b22015-11-10 16:53:32 -05003924{
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003925 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003926}
3927
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003928static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3929{
Al Viro496ad9a2013-01-23 17:07:38 -05003930 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003931 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003932 struct btrfs_root *root = BTRFS_I(inode)->root;
3933 struct btrfs_root *new_root;
3934 struct btrfs_dir_item *di;
3935 struct btrfs_trans_handle *trans;
3936 struct btrfs_path *path;
3937 struct btrfs_key location;
3938 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003939 u64 objectid = 0;
3940 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003941 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003942
3943 if (!capable(CAP_SYS_ADMIN))
3944 return -EPERM;
3945
Miao Xie3c04ce02012-11-26 08:43:07 +00003946 ret = mnt_want_write_file(file);
3947 if (ret)
3948 return ret;
3949
3950 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3951 ret = -EFAULT;
3952 goto out;
3953 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003954
3955 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303956 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003957
3958 location.objectid = objectid;
3959 location.type = BTRFS_ROOT_ITEM_KEY;
3960 location.offset = (u64)-1;
3961
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003962 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003963 if (IS_ERR(new_root)) {
3964 ret = PTR_ERR(new_root);
3965 goto out;
3966 }
satoru takeuchi6d6d2822017-09-12 22:42:52 +09003967 if (!is_fstree(new_root->objectid)) {
3968 ret = -ENOENT;
3969 goto out;
3970 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003971
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003972 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003973 if (!path) {
3974 ret = -ENOMEM;
3975 goto out;
3976 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003977 path->leave_spinning = 1;
3978
3979 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003980 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003981 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003982 ret = PTR_ERR(trans);
3983 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003984 }
3985
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003986 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3987 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003988 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003989 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003990 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003991 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003992 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003993 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003994 ret = -ENOENT;
3995 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003996 }
3997
3998 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3999 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4000 btrfs_mark_buffer_dirty(path->nodes[0]);
4001 btrfs_free_path(path);
4002
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004003 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004004 btrfs_end_transaction(trans);
Miao Xie3c04ce02012-11-26 08:43:07 +00004005out:
4006 mnt_drop_write_file(file);
4007 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004008}
4009
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004010void btrfs_get_block_group_info(struct list_head *groups_list,
4011 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004012{
4013 struct btrfs_block_group_cache *block_group;
4014
4015 space->total_bytes = 0;
4016 space->used_bytes = 0;
4017 space->flags = 0;
4018 list_for_each_entry(block_group, groups_list, list) {
4019 space->flags = block_group->flags;
4020 space->total_bytes += block_group->key.offset;
4021 space->used_bytes +=
4022 btrfs_block_group_used(&block_group->item);
4023 }
4024}
4025
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004026static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
4027 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004028{
4029 struct btrfs_ioctl_space_args space_args;
4030 struct btrfs_ioctl_space_info space;
4031 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004032 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004033 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004034 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01004035 static const u64 types[] = {
4036 BTRFS_BLOCK_GROUP_DATA,
4037 BTRFS_BLOCK_GROUP_SYSTEM,
4038 BTRFS_BLOCK_GROUP_METADATA,
4039 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
4040 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004041 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004042 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004043 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004044 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004045 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004046
4047 if (copy_from_user(&space_args,
4048 (struct btrfs_ioctl_space_args __user *)arg,
4049 sizeof(space_args)))
4050 return -EFAULT;
4051
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004052 for (i = 0; i < num_types; i++) {
4053 struct btrfs_space_info *tmp;
4054
4055 info = NULL;
4056 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004057 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004058 list) {
4059 if (tmp->flags == types[i]) {
4060 info = tmp;
4061 break;
4062 }
4063 }
4064 rcu_read_unlock();
4065
4066 if (!info)
4067 continue;
4068
4069 down_read(&info->groups_sem);
4070 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4071 if (!list_empty(&info->block_groups[c]))
4072 slot_count++;
4073 }
4074 up_read(&info->groups_sem);
4075 }
Josef Bacik1406e432010-01-13 18:19:06 +00004076
David Sterba36523e952014-02-07 14:34:12 +01004077 /*
4078 * Global block reserve, exported as a space_info
4079 */
4080 slot_count++;
4081
Chris Mason7fde62b2010-03-16 15:40:10 -04004082 /* space_slots == 0 means they are asking for a count */
4083 if (space_args.space_slots == 0) {
4084 space_args.total_spaces = slot_count;
4085 goto out;
4086 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004087
Dan Rosenberg51788b12011-02-14 16:04:23 -05004088 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004089
Chris Mason7fde62b2010-03-16 15:40:10 -04004090 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004091
Chris Mason7fde62b2010-03-16 15:40:10 -04004092 /* we generally have at most 6 or so space infos, one for each raid
4093 * level. So, a whole page should be more than enough for everyone
4094 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004095 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04004096 return -ENOMEM;
4097
4098 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01004099 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04004100 if (!dest)
4101 return -ENOMEM;
4102 dest_orig = dest;
4103
4104 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004105 for (i = 0; i < num_types; i++) {
4106 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004107
Dan Rosenberg51788b12011-02-14 16:04:23 -05004108 if (!slot_count)
4109 break;
4110
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004111 info = NULL;
4112 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004113 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004114 list) {
4115 if (tmp->flags == types[i]) {
4116 info = tmp;
4117 break;
4118 }
4119 }
4120 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004121
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004122 if (!info)
4123 continue;
4124 down_read(&info->groups_sem);
4125 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4126 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004127 btrfs_get_block_group_info(
4128 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004129 memcpy(dest, &space, sizeof(space));
4130 dest++;
4131 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004132 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004133 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004134 if (!slot_count)
4135 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004136 }
4137 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004138 }
Josef Bacik1406e432010-01-13 18:19:06 +00004139
David Sterba36523e952014-02-07 14:34:12 +01004140 /*
4141 * Add global block reserve
4142 */
4143 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004144 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01004145
4146 spin_lock(&block_rsv->lock);
4147 space.total_bytes = block_rsv->size;
4148 space.used_bytes = block_rsv->size - block_rsv->reserved;
4149 spin_unlock(&block_rsv->lock);
4150 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4151 memcpy(dest, &space, sizeof(space));
4152 space_args.total_spaces++;
4153 }
4154
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004155 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004156 (arg + sizeof(struct btrfs_ioctl_space_args));
4157
4158 if (copy_to_user(user_dest, dest_orig, alloc_size))
4159 ret = -EFAULT;
4160
4161 kfree(dest_orig);
4162out:
4163 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004164 ret = -EFAULT;
4165
4166 return ret;
4167}
4168
Miao Xie9a8c28b2012-11-26 08:40:43 +00004169static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4170 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004171{
Sage Weil46204592010-10-29 15:41:32 -04004172 struct btrfs_trans_handle *trans;
4173 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004174 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004175
Miao Xied4edf392013-02-20 09:17:06 +00004176 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004177 if (IS_ERR(trans)) {
4178 if (PTR_ERR(trans) != -ENOENT)
4179 return PTR_ERR(trans);
4180
4181 /* No running transaction, don't bother */
4182 transid = root->fs_info->last_trans_committed;
4183 goto out;
4184 }
Sage Weil46204592010-10-29 15:41:32 -04004185 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004186 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004187 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004188 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004189 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004190 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004191out:
Sage Weil46204592010-10-29 15:41:32 -04004192 if (argp)
4193 if (copy_to_user(argp, &transid, sizeof(transid)))
4194 return -EFAULT;
4195 return 0;
4196}
4197
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004198static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00004199 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004200{
Sage Weil46204592010-10-29 15:41:32 -04004201 u64 transid;
4202
4203 if (argp) {
4204 if (copy_from_user(&transid, argp, sizeof(transid)))
4205 return -EFAULT;
4206 } else {
4207 transid = 0; /* current trans */
4208 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004209 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04004210}
4211
Miao Xieb8e95482012-11-26 08:48:01 +00004212static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004213{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004214 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01004215 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004216 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004217
4218 if (!capable(CAP_SYS_ADMIN))
4219 return -EPERM;
4220
4221 sa = memdup_user(arg, sizeof(*sa));
4222 if (IS_ERR(sa))
4223 return PTR_ERR(sa);
4224
Miao Xieb8e95482012-11-26 08:48:01 +00004225 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4226 ret = mnt_want_write_file(file);
4227 if (ret)
4228 goto out;
4229 }
4230
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004231 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004232 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4233 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004234
4235 if (copy_to_user(arg, sa, sizeof(*sa)))
4236 ret = -EFAULT;
4237
Miao Xieb8e95482012-11-26 08:48:01 +00004238 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4239 mnt_drop_write_file(file);
4240out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004241 kfree(sa);
4242 return ret;
4243}
4244
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004245static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01004246{
4247 if (!capable(CAP_SYS_ADMIN))
4248 return -EPERM;
4249
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004250 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004251}
4252
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004253static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01004254 void __user *arg)
4255{
4256 struct btrfs_ioctl_scrub_args *sa;
4257 int ret;
4258
4259 if (!capable(CAP_SYS_ADMIN))
4260 return -EPERM;
4261
4262 sa = memdup_user(arg, sizeof(*sa));
4263 if (IS_ERR(sa))
4264 return PTR_ERR(sa);
4265
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004266 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01004267
4268 if (copy_to_user(arg, sa, sizeof(*sa)))
4269 ret = -EFAULT;
4270
4271 kfree(sa);
4272 return ret;
4273}
4274
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004275static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06004276 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004277{
4278 struct btrfs_ioctl_get_dev_stats *sa;
4279 int ret;
4280
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004281 sa = memdup_user(arg, sizeof(*sa));
4282 if (IS_ERR(sa))
4283 return PTR_ERR(sa);
4284
David Sterbab27f7c02012-06-22 06:30:39 -06004285 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4286 kfree(sa);
4287 return -EPERM;
4288 }
4289
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004290 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004291
4292 if (copy_to_user(arg, sa, sizeof(*sa)))
4293 ret = -EFAULT;
4294
4295 kfree(sa);
4296 return ret;
4297}
4298
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004299static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4300 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004301{
4302 struct btrfs_ioctl_dev_replace_args *p;
4303 int ret;
4304
4305 if (!capable(CAP_SYS_ADMIN))
4306 return -EPERM;
4307
4308 p = memdup_user(arg, sizeof(*p));
4309 if (IS_ERR(p))
4310 return PTR_ERR(p);
4311
4312 switch (p->cmd) {
4313 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01004314 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004315 ret = -EROFS;
4316 goto out;
4317 }
David Sterba171938e2017-03-28 14:44:21 +02004318 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004319 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004320 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004321 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
David Sterba171938e2017-03-28 14:44:21 +02004322 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004323 }
4324 break;
4325 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004326 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004327 ret = 0;
4328 break;
4329 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Anand Jain17d202b2018-02-12 23:33:30 +08004330 p->result = btrfs_dev_replace_cancel(fs_info);
Anand Jain97282032018-02-12 23:33:29 +08004331 ret = 0;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004332 break;
4333 default:
4334 ret = -EINVAL;
4335 break;
4336 }
4337
4338 if (copy_to_user(arg, p, sizeof(*p)))
4339 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004340out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004341 kfree(p);
4342 return ret;
4343}
4344
Jan Schmidtd7728c92011-07-07 16:48:38 +02004345static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4346{
4347 int ret = 0;
4348 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004349 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004350 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004351 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004352 struct inode_fs_paths *ipath = NULL;
4353 struct btrfs_path *path;
4354
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004355 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004356 return -EPERM;
4357
4358 path = btrfs_alloc_path();
4359 if (!path) {
4360 ret = -ENOMEM;
4361 goto out;
4362 }
4363
4364 ipa = memdup_user(arg, sizeof(*ipa));
4365 if (IS_ERR(ipa)) {
4366 ret = PTR_ERR(ipa);
4367 ipa = NULL;
4368 goto out;
4369 }
4370
4371 size = min_t(u32, ipa->size, 4096);
4372 ipath = init_ipath(size, root, path);
4373 if (IS_ERR(ipath)) {
4374 ret = PTR_ERR(ipath);
4375 ipath = NULL;
4376 goto out;
4377 }
4378
4379 ret = paths_from_inode(ipa->inum, ipath);
4380 if (ret < 0)
4381 goto out;
4382
4383 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004384 rel_ptr = ipath->fspath->val[i] -
4385 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004386 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004387 }
4388
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004389 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
4390 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004391 if (ret) {
4392 ret = -EFAULT;
4393 goto out;
4394 }
4395
4396out:
4397 btrfs_free_path(path);
4398 free_ipath(ipath);
4399 kfree(ipa);
4400
4401 return ret;
4402}
4403
4404static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4405{
4406 struct btrfs_data_container *inodes = ctx;
4407 const size_t c = 3 * sizeof(u64);
4408
4409 if (inodes->bytes_left >= c) {
4410 inodes->bytes_left -= c;
4411 inodes->val[inodes->elem_cnt] = inum;
4412 inodes->val[inodes->elem_cnt + 1] = offset;
4413 inodes->val[inodes->elem_cnt + 2] = root;
4414 inodes->elem_cnt += 3;
4415 } else {
4416 inodes->bytes_missing += c - inodes->bytes_left;
4417 inodes->bytes_left = 0;
4418 inodes->elem_missed += 3;
4419 }
4420
4421 return 0;
4422}
4423
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004424static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004425 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004426{
4427 int ret = 0;
4428 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004429 struct btrfs_ioctl_logical_ino_args *loi;
4430 struct btrfs_data_container *inodes = NULL;
4431 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004432 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004433
4434 if (!capable(CAP_SYS_ADMIN))
4435 return -EPERM;
4436
4437 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304438 if (IS_ERR(loi))
4439 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004440
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004441 if (version == 1) {
4442 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004443 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004444 } else {
4445 /* All reserved bits must be 0 for now */
4446 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
4447 ret = -EINVAL;
4448 goto out_loi;
4449 }
4450 /* Only accept flags we have defined so far */
4451 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
4452 ret = -EINVAL;
4453 goto out_loi;
4454 }
4455 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004456 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004457 }
4458
Jan Schmidtd7728c92011-07-07 16:48:38 +02004459 path = btrfs_alloc_path();
4460 if (!path) {
4461 ret = -ENOMEM;
4462 goto out;
4463 }
4464
Jan Schmidtd7728c92011-07-07 16:48:38 +02004465 inodes = init_data_container(size);
4466 if (IS_ERR(inodes)) {
4467 ret = PTR_ERR(inodes);
4468 inodes = NULL;
4469 goto out;
4470 }
4471
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004472 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004473 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06004474 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004475 ret = -ENOENT;
4476 if (ret < 0)
4477 goto out;
4478
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004479 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4480 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004481 if (ret)
4482 ret = -EFAULT;
4483
4484out:
4485 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004486 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004487out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02004488 kfree(loi);
4489
4490 return ret;
4491}
4492
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004493void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004494 struct btrfs_ioctl_balance_args *bargs)
4495{
4496 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4497
4498 bargs->flags = bctl->flags;
4499
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004500 if (atomic_read(&fs_info->balance_running))
4501 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4502 if (atomic_read(&fs_info->balance_pause_req))
4503 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004504 if (atomic_read(&fs_info->balance_cancel_req))
4505 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004506
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004507 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4508 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4509 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004510
4511 if (lock) {
4512 spin_lock(&fs_info->balance_lock);
4513 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4514 spin_unlock(&fs_info->balance_lock);
4515 } else {
4516 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4517 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004518}
4519
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004520static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004521{
Al Viro496ad9a2013-01-23 17:07:38 -05004522 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004523 struct btrfs_fs_info *fs_info = root->fs_info;
4524 struct btrfs_ioctl_balance_args *bargs;
4525 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004526 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004527 int ret;
4528
4529 if (!capable(CAP_SYS_ADMIN))
4530 return -EPERM;
4531
Liu Boe54bfa312012-06-29 03:58:48 -06004532 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004533 if (ret)
4534 return ret;
4535
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004536again:
David Sterba171938e2017-03-28 14:44:21 +02004537 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004538 mutex_lock(&fs_info->volume_mutex);
4539 mutex_lock(&fs_info->balance_mutex);
4540 need_unlock = true;
4541 goto locked;
4542 }
4543
4544 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004545 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004546 * (1) some other op is running
4547 * (2) balance is running
4548 * (3) balance is paused -- special case (think resume)
4549 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004550 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004551 if (fs_info->balance_ctl) {
4552 /* this is either (2) or (3) */
4553 if (!atomic_read(&fs_info->balance_running)) {
4554 mutex_unlock(&fs_info->balance_mutex);
4555 if (!mutex_trylock(&fs_info->volume_mutex))
4556 goto again;
4557 mutex_lock(&fs_info->balance_mutex);
4558
4559 if (fs_info->balance_ctl &&
4560 !atomic_read(&fs_info->balance_running)) {
4561 /* this is (3) */
4562 need_unlock = false;
4563 goto locked;
4564 }
4565
4566 mutex_unlock(&fs_info->balance_mutex);
4567 mutex_unlock(&fs_info->volume_mutex);
4568 goto again;
4569 } else {
4570 /* this is (2) */
4571 mutex_unlock(&fs_info->balance_mutex);
4572 ret = -EINPROGRESS;
4573 goto out;
4574 }
4575 } else {
4576 /* this is (1) */
4577 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004578 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004579 goto out;
4580 }
4581
4582locked:
David Sterba171938e2017-03-28 14:44:21 +02004583 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004584
4585 if (arg) {
4586 bargs = memdup_user(arg, sizeof(*bargs));
4587 if (IS_ERR(bargs)) {
4588 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004589 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004590 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004591
4592 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4593 if (!fs_info->balance_ctl) {
4594 ret = -ENOTCONN;
4595 goto out_bargs;
4596 }
4597
4598 bctl = fs_info->balance_ctl;
4599 spin_lock(&fs_info->balance_lock);
4600 bctl->flags |= BTRFS_BALANCE_RESUME;
4601 spin_unlock(&fs_info->balance_lock);
4602
4603 goto do_balance;
4604 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004605 } else {
4606 bargs = NULL;
4607 }
4608
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004609 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004610 ret = -EINPROGRESS;
4611 goto out_bargs;
4612 }
4613
David Sterba8d2db782015-11-04 15:38:29 +01004614 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004615 if (!bctl) {
4616 ret = -ENOMEM;
4617 goto out_bargs;
4618 }
4619
4620 bctl->fs_info = fs_info;
4621 if (arg) {
4622 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4623 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4624 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4625
4626 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004627 } else {
4628 /* balance everything - no filters */
4629 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004630 }
4631
David Sterba8eb93452015-10-12 16:55:54 +02004632 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4633 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004634 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004635 }
4636
Ilya Dryomovde322262012-01-16 22:04:49 +02004637do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004638 /*
David Sterba171938e2017-03-28 14:44:21 +02004639 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004640 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4641 * or, if restriper was paused all the way until unmount, in
David Sterba171938e2017-03-28 14:44:21 +02004642 * free_fs_info. The flag is cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004643 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004644 need_unlock = false;
4645
4646 ret = btrfs_balance(bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004647 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004648
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004649 if (arg) {
4650 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4651 ret = -EFAULT;
4652 }
4653
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004654out_bctl:
4655 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004656out_bargs:
4657 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004658out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004659 mutex_unlock(&fs_info->balance_mutex);
4660 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004661 if (need_unlock)
David Sterba171938e2017-03-28 14:44:21 +02004662 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004663out:
Liu Boe54bfa312012-06-29 03:58:48 -06004664 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004665 return ret;
4666}
4667
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004668static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004669{
4670 if (!capable(CAP_SYS_ADMIN))
4671 return -EPERM;
4672
4673 switch (cmd) {
4674 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004675 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004676 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004677 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004678 }
4679
4680 return -EINVAL;
4681}
4682
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004683static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004684 void __user *arg)
4685{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004686 struct btrfs_ioctl_balance_args *bargs;
4687 int ret = 0;
4688
4689 if (!capable(CAP_SYS_ADMIN))
4690 return -EPERM;
4691
4692 mutex_lock(&fs_info->balance_mutex);
4693 if (!fs_info->balance_ctl) {
4694 ret = -ENOTCONN;
4695 goto out;
4696 }
4697
David Sterba8d2db782015-11-04 15:38:29 +01004698 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004699 if (!bargs) {
4700 ret = -ENOMEM;
4701 goto out;
4702 }
4703
4704 update_ioctl_balance_args(fs_info, 1, bargs);
4705
4706 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4707 ret = -EFAULT;
4708
4709 kfree(bargs);
4710out:
4711 mutex_unlock(&fs_info->balance_mutex);
4712 return ret;
4713}
4714
Miao Xie905b0dd2012-11-26 08:50:11 +00004715static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004716{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004717 struct inode *inode = file_inode(file);
4718 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004719 struct btrfs_ioctl_quota_ctl_args *sa;
4720 struct btrfs_trans_handle *trans = NULL;
4721 int ret;
4722 int err;
4723
4724 if (!capable(CAP_SYS_ADMIN))
4725 return -EPERM;
4726
Miao Xie905b0dd2012-11-26 08:50:11 +00004727 ret = mnt_want_write_file(file);
4728 if (ret)
4729 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004730
4731 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004732 if (IS_ERR(sa)) {
4733 ret = PTR_ERR(sa);
4734 goto drop_write;
4735 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004736
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004737 down_write(&fs_info->subvol_sem);
4738 trans = btrfs_start_transaction(fs_info->tree_root, 2);
Jan Schmidt2f232032013-04-25 16:04:51 +00004739 if (IS_ERR(trans)) {
4740 ret = PTR_ERR(trans);
4741 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004742 }
4743
4744 switch (sa->cmd) {
4745 case BTRFS_QUOTA_CTL_ENABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004746 ret = btrfs_quota_enable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004747 break;
4748 case BTRFS_QUOTA_CTL_DISABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004749 ret = btrfs_quota_disable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004750 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004751 default:
4752 ret = -EINVAL;
4753 break;
4754 }
4755
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004756 err = btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00004757 if (err && !ret)
4758 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004759out:
4760 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004761 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004762drop_write:
4763 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004764 return ret;
4765}
4766
Miao Xie905b0dd2012-11-26 08:50:11 +00004767static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004768{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004769 struct inode *inode = file_inode(file);
4770 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4771 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004772 struct btrfs_ioctl_qgroup_assign_args *sa;
4773 struct btrfs_trans_handle *trans;
4774 int ret;
4775 int err;
4776
4777 if (!capable(CAP_SYS_ADMIN))
4778 return -EPERM;
4779
Miao Xie905b0dd2012-11-26 08:50:11 +00004780 ret = mnt_want_write_file(file);
4781 if (ret)
4782 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004783
4784 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004785 if (IS_ERR(sa)) {
4786 ret = PTR_ERR(sa);
4787 goto drop_write;
4788 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004789
4790 trans = btrfs_join_transaction(root);
4791 if (IS_ERR(trans)) {
4792 ret = PTR_ERR(trans);
4793 goto out;
4794 }
4795
Arne Jansen5d13a372011-09-14 15:53:51 +02004796 if (sa->assign) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004797 ret = btrfs_add_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004798 sa->src, sa->dst);
4799 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004800 ret = btrfs_del_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004801 sa->src, sa->dst);
4802 }
4803
Qu Wenruoe082f562015-02-27 16:24:28 +08004804 /* update qgroup status and info */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004805 err = btrfs_run_qgroups(trans, fs_info);
Qu Wenruoe082f562015-02-27 16:24:28 +08004806 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004807 btrfs_handle_fs_error(fs_info, err,
4808 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004809 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004810 if (err && !ret)
4811 ret = err;
4812
4813out:
4814 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004815drop_write:
4816 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004817 return ret;
4818}
4819
Miao Xie905b0dd2012-11-26 08:50:11 +00004820static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004821{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004822 struct inode *inode = file_inode(file);
4823 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4824 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004825 struct btrfs_ioctl_qgroup_create_args *sa;
4826 struct btrfs_trans_handle *trans;
4827 int ret;
4828 int err;
4829
4830 if (!capable(CAP_SYS_ADMIN))
4831 return -EPERM;
4832
Miao Xie905b0dd2012-11-26 08:50:11 +00004833 ret = mnt_want_write_file(file);
4834 if (ret)
4835 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004836
4837 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004838 if (IS_ERR(sa)) {
4839 ret = PTR_ERR(sa);
4840 goto drop_write;
4841 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004842
Miao Xied86e56c2012-11-15 11:35:41 +00004843 if (!sa->qgroupid) {
4844 ret = -EINVAL;
4845 goto out;
4846 }
4847
Arne Jansen5d13a372011-09-14 15:53:51 +02004848 trans = btrfs_join_transaction(root);
4849 if (IS_ERR(trans)) {
4850 ret = PTR_ERR(trans);
4851 goto out;
4852 }
4853
Arne Jansen5d13a372011-09-14 15:53:51 +02004854 if (sa->create) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004855 ret = btrfs_create_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004856 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004857 ret = btrfs_remove_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004858 }
4859
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004860 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004861 if (err && !ret)
4862 ret = err;
4863
4864out:
4865 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004866drop_write:
4867 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004868 return ret;
4869}
4870
Miao Xie905b0dd2012-11-26 08:50:11 +00004871static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004872{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004873 struct inode *inode = file_inode(file);
4874 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4875 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004876 struct btrfs_ioctl_qgroup_limit_args *sa;
4877 struct btrfs_trans_handle *trans;
4878 int ret;
4879 int err;
4880 u64 qgroupid;
4881
4882 if (!capable(CAP_SYS_ADMIN))
4883 return -EPERM;
4884
Miao Xie905b0dd2012-11-26 08:50:11 +00004885 ret = mnt_want_write_file(file);
4886 if (ret)
4887 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004888
4889 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004890 if (IS_ERR(sa)) {
4891 ret = PTR_ERR(sa);
4892 goto drop_write;
4893 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004894
4895 trans = btrfs_join_transaction(root);
4896 if (IS_ERR(trans)) {
4897 ret = PTR_ERR(trans);
4898 goto out;
4899 }
4900
4901 qgroupid = sa->qgroupid;
4902 if (!qgroupid) {
4903 /* take the current subvol as qgroup */
4904 qgroupid = root->root_key.objectid;
4905 }
4906
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004907 ret = btrfs_limit_qgroup(trans, fs_info, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004908
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004909 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004910 if (err && !ret)
4911 ret = err;
4912
4913out:
4914 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004915drop_write:
4916 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004917 return ret;
4918}
4919
Jan Schmidt2f232032013-04-25 16:04:51 +00004920static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4921{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004922 struct inode *inode = file_inode(file);
4923 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004924 struct btrfs_ioctl_quota_rescan_args *qsa;
4925 int ret;
4926
4927 if (!capable(CAP_SYS_ADMIN))
4928 return -EPERM;
4929
4930 ret = mnt_want_write_file(file);
4931 if (ret)
4932 return ret;
4933
4934 qsa = memdup_user(arg, sizeof(*qsa));
4935 if (IS_ERR(qsa)) {
4936 ret = PTR_ERR(qsa);
4937 goto drop_write;
4938 }
4939
4940 if (qsa->flags) {
4941 ret = -EINVAL;
4942 goto out;
4943 }
4944
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004945 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00004946
4947out:
4948 kfree(qsa);
4949drop_write:
4950 mnt_drop_write_file(file);
4951 return ret;
4952}
4953
4954static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4955{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004956 struct inode *inode = file_inode(file);
4957 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004958 struct btrfs_ioctl_quota_rescan_args *qsa;
4959 int ret = 0;
4960
4961 if (!capable(CAP_SYS_ADMIN))
4962 return -EPERM;
4963
David Sterba8d2db782015-11-04 15:38:29 +01004964 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00004965 if (!qsa)
4966 return -ENOMEM;
4967
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004968 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00004969 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004970 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00004971 }
4972
4973 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4974 ret = -EFAULT;
4975
4976 kfree(qsa);
4977 return ret;
4978}
4979
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004980static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4981{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004982 struct inode *inode = file_inode(file);
4983 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004984
4985 if (!capable(CAP_SYS_ADMIN))
4986 return -EPERM;
4987
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004988 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004989}
4990
Hugo Millsabccd002014-01-30 20:17:00 +00004991static long _btrfs_ioctl_set_received_subvol(struct file *file,
4992 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004993{
Al Viro496ad9a2013-01-23 17:07:38 -05004994 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004995 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02004996 struct btrfs_root *root = BTRFS_I(inode)->root;
4997 struct btrfs_root_item *root_item = &root->root_item;
4998 struct btrfs_trans_handle *trans;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004999 struct timespec ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02005000 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005001 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005002
David Sterbabd60ea02014-01-16 15:50:22 +01005003 if (!inode_owner_or_capable(inode))
5004 return -EPERM;
5005
Alexander Block8ea05e32012-07-25 17:35:53 +02005006 ret = mnt_want_write_file(file);
5007 if (ret < 0)
5008 return ret;
5009
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005010 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02005011
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02005012 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02005013 ret = -EINVAL;
5014 goto out;
5015 }
5016
5017 if (btrfs_root_readonly(root)) {
5018 ret = -EROFS;
5019 goto out;
5020 }
5021
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005022 /*
5023 * 1 - root item
5024 * 2 - uuid items (received uuid + subvol uuid)
5025 */
5026 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005027 if (IS_ERR(trans)) {
5028 ret = PTR_ERR(trans);
5029 trans = NULL;
5030 goto out;
5031 }
5032
5033 sa->rtransid = trans->transid;
5034 sa->rtime.sec = ct.tv_sec;
5035 sa->rtime.nsec = ct.tv_nsec;
5036
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005037 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5038 BTRFS_UUID_SIZE);
5039 if (received_uuid_changed &&
Nikolay Borisovd87ff752018-03-12 14:48:09 +02005040 !btrfs_is_empty_uuid(root_item->received_uuid)) {
5041 ret = btrfs_uuid_tree_rem(trans, fs_info,
5042 root_item->received_uuid,
5043 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5044 root->root_key.objectid);
5045 if (ret && ret != -ENOENT) {
5046 btrfs_abort_transaction(trans, ret);
5047 btrfs_end_transaction(trans);
5048 goto out;
5049 }
5050 }
Alexander Block8ea05e32012-07-25 17:35:53 +02005051 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5052 btrfs_set_root_stransid(root_item, sa->stransid);
5053 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005054 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5055 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5056 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5057 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005058
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005059 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02005060 &root->root_key, &root->root_item);
5061 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005062 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005063 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005064 }
5065 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005066 ret = btrfs_uuid_tree_add(trans, fs_info, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005067 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5068 root->root_key.objectid);
5069 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005070 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03005071 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02005072 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005073 }
5074 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005075 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00005076out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005077 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00005078 mnt_drop_write_file(file);
5079 return ret;
5080}
5081
5082#ifdef CONFIG_64BIT
5083static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5084 void __user *arg)
5085{
5086 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5087 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5088 int ret = 0;
5089
5090 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305091 if (IS_ERR(args32))
5092 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00005093
David Sterba8d2db782015-11-04 15:38:29 +01005094 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005095 if (!args64) {
5096 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005097 goto out;
5098 }
5099
5100 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5101 args64->stransid = args32->stransid;
5102 args64->rtransid = args32->rtransid;
5103 args64->stime.sec = args32->stime.sec;
5104 args64->stime.nsec = args32->stime.nsec;
5105 args64->rtime.sec = args32->rtime.sec;
5106 args64->rtime.nsec = args32->rtime.nsec;
5107 args64->flags = args32->flags;
5108
5109 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5110 if (ret)
5111 goto out;
5112
5113 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5114 args32->stransid = args64->stransid;
5115 args32->rtransid = args64->rtransid;
5116 args32->stime.sec = args64->stime.sec;
5117 args32->stime.nsec = args64->stime.nsec;
5118 args32->rtime.sec = args64->rtime.sec;
5119 args32->rtime.nsec = args64->rtime.nsec;
5120 args32->flags = args64->flags;
5121
5122 ret = copy_to_user(arg, args32, sizeof(*args32));
5123 if (ret)
5124 ret = -EFAULT;
5125
5126out:
5127 kfree(args32);
5128 kfree(args64);
5129 return ret;
5130}
5131#endif
5132
5133static long btrfs_ioctl_set_received_subvol(struct file *file,
5134 void __user *arg)
5135{
5136 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5137 int ret = 0;
5138
5139 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05305140 if (IS_ERR(sa))
5141 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00005142
5143 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5144
5145 if (ret)
5146 goto out;
5147
Alexander Block8ea05e32012-07-25 17:35:53 +02005148 ret = copy_to_user(arg, sa, sizeof(*sa));
5149 if (ret)
5150 ret = -EFAULT;
5151
5152out:
5153 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005154 return ret;
5155}
5156
jeff.liu867ab662013-01-05 02:48:01 +00005157static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5158{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005159 struct inode *inode = file_inode(file);
5160 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005161 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005162 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005163 char label[BTRFS_LABEL_SIZE];
5164
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005165 spin_lock(&fs_info->super_lock);
5166 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5167 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005168
5169 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005170
5171 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005172 btrfs_warn(fs_info,
5173 "label is too long, return the first %zu bytes",
5174 --len);
jeff.liu867ab662013-01-05 02:48:01 +00005175 }
5176
jeff.liu867ab662013-01-05 02:48:01 +00005177 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005178
5179 return ret ? -EFAULT : 0;
5180}
5181
jeff.liua8bfd4a2013-01-05 02:48:08 +00005182static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5183{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005184 struct inode *inode = file_inode(file);
5185 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5186 struct btrfs_root *root = BTRFS_I(inode)->root;
5187 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005188 struct btrfs_trans_handle *trans;
5189 char label[BTRFS_LABEL_SIZE];
5190 int ret;
5191
5192 if (!capable(CAP_SYS_ADMIN))
5193 return -EPERM;
5194
5195 if (copy_from_user(label, arg, sizeof(label)))
5196 return -EFAULT;
5197
5198 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005199 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005200 "unable to set label with more than %d bytes",
5201 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005202 return -EINVAL;
5203 }
5204
5205 ret = mnt_want_write_file(file);
5206 if (ret)
5207 return ret;
5208
jeff.liua8bfd4a2013-01-05 02:48:08 +00005209 trans = btrfs_start_transaction(root, 0);
5210 if (IS_ERR(trans)) {
5211 ret = PTR_ERR(trans);
5212 goto out_unlock;
5213 }
5214
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005215 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005216 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005217 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005218 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005219
5220out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005221 mnt_drop_write_file(file);
5222 return ret;
5223}
5224
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005225#define INIT_FEATURE_FLAGS(suffix) \
5226 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5227 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5228 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5229
David Sterbad5131b62016-02-17 15:26:27 +01005230int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005231{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005232 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005233 INIT_FEATURE_FLAGS(SUPP),
5234 INIT_FEATURE_FLAGS(SAFE_SET),
5235 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5236 };
5237
5238 if (copy_to_user(arg, &features, sizeof(features)))
5239 return -EFAULT;
5240
5241 return 0;
5242}
5243
5244static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5245{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005246 struct inode *inode = file_inode(file);
5247 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5248 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005249 struct btrfs_ioctl_feature_flags features;
5250
5251 features.compat_flags = btrfs_super_compat_flags(super_block);
5252 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5253 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5254
5255 if (copy_to_user(arg, &features, sizeof(features)))
5256 return -EFAULT;
5257
5258 return 0;
5259}
5260
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005261static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005262 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005263 u64 change_mask, u64 flags, u64 supported_flags,
5264 u64 safe_set, u64 safe_clear)
5265{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005266 const char *type = btrfs_feature_set_names[set];
5267 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005268 u64 disallowed, unsupported;
5269 u64 set_mask = flags & change_mask;
5270 u64 clear_mask = ~flags & change_mask;
5271
5272 unsupported = set_mask & ~supported_flags;
5273 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005274 names = btrfs_printable_features(set, unsupported);
5275 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005276 btrfs_warn(fs_info,
5277 "this kernel does not support the %s feature bit%s",
5278 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005279 kfree(names);
5280 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005281 btrfs_warn(fs_info,
5282 "this kernel does not support %s bits 0x%llx",
5283 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005284 return -EOPNOTSUPP;
5285 }
5286
5287 disallowed = set_mask & ~safe_set;
5288 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005289 names = btrfs_printable_features(set, disallowed);
5290 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005291 btrfs_warn(fs_info,
5292 "can't set the %s feature bit%s while mounted",
5293 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005294 kfree(names);
5295 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005296 btrfs_warn(fs_info,
5297 "can't set %s bits 0x%llx while mounted",
5298 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005299 return -EPERM;
5300 }
5301
5302 disallowed = clear_mask & ~safe_clear;
5303 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005304 names = btrfs_printable_features(set, disallowed);
5305 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005306 btrfs_warn(fs_info,
5307 "can't clear the %s feature bit%s while mounted",
5308 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005309 kfree(names);
5310 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005311 btrfs_warn(fs_info,
5312 "can't clear %s bits 0x%llx while mounted",
5313 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005314 return -EPERM;
5315 }
5316
5317 return 0;
5318}
5319
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005320#define check_feature(fs_info, change_mask, flags, mask_base) \
5321check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005322 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5323 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5324 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5325
5326static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5327{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005328 struct inode *inode = file_inode(file);
5329 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5330 struct btrfs_root *root = BTRFS_I(inode)->root;
5331 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005332 struct btrfs_ioctl_feature_flags flags[2];
5333 struct btrfs_trans_handle *trans;
5334 u64 newflags;
5335 int ret;
5336
5337 if (!capable(CAP_SYS_ADMIN))
5338 return -EPERM;
5339
5340 if (copy_from_user(flags, arg, sizeof(flags)))
5341 return -EFAULT;
5342
5343 /* Nothing to do */
5344 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5345 !flags[0].incompat_flags)
5346 return 0;
5347
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005348 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005349 flags[1].compat_flags, COMPAT);
5350 if (ret)
5351 return ret;
5352
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005353 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005354 flags[1].compat_ro_flags, COMPAT_RO);
5355 if (ret)
5356 return ret;
5357
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005358 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005359 flags[1].incompat_flags, INCOMPAT);
5360 if (ret)
5361 return ret;
5362
David Sterba7ab19622016-05-04 11:32:00 +02005363 ret = mnt_want_write_file(file);
5364 if (ret)
5365 return ret;
5366
David Sterba8051aa12014-02-07 14:34:04 +01005367 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005368 if (IS_ERR(trans)) {
5369 ret = PTR_ERR(trans);
5370 goto out_drop_write;
5371 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005372
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005373 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005374 newflags = btrfs_super_compat_flags(super_block);
5375 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5376 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5377 btrfs_set_super_compat_flags(super_block, newflags);
5378
5379 newflags = btrfs_super_compat_ro_flags(super_block);
5380 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5381 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5382 btrfs_set_super_compat_ro_flags(super_block, newflags);
5383
5384 newflags = btrfs_super_incompat_flags(super_block);
5385 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5386 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5387 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005388 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005389
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005390 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02005391out_drop_write:
5392 mnt_drop_write_file(file);
5393
5394 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005395}
5396
Josef Bacik2351f432017-09-27 10:43:13 -04005397static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
5398{
5399 struct btrfs_ioctl_send_args *arg;
5400 int ret;
5401
5402 if (compat) {
5403#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5404 struct btrfs_ioctl_send_args_32 args32;
5405
5406 ret = copy_from_user(&args32, argp, sizeof(args32));
5407 if (ret)
5408 return -EFAULT;
5409 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
5410 if (!arg)
5411 return -ENOMEM;
5412 arg->send_fd = args32.send_fd;
5413 arg->clone_sources_count = args32.clone_sources_count;
5414 arg->clone_sources = compat_ptr(args32.clone_sources);
5415 arg->parent_root = args32.parent_root;
5416 arg->flags = args32.flags;
5417 memcpy(arg->reserved, args32.reserved,
5418 sizeof(args32.reserved));
5419#else
5420 return -ENOTTY;
5421#endif
5422 } else {
5423 arg = memdup_user(argp, sizeof(*arg));
5424 if (IS_ERR(arg))
5425 return PTR_ERR(arg);
5426 }
5427 ret = btrfs_ioctl_send(file, arg);
5428 kfree(arg);
5429 return ret;
5430}
5431
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005432long btrfs_ioctl(struct file *file, unsigned int
5433 cmd, unsigned long arg)
5434{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005435 struct inode *inode = file_inode(file);
5436 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5437 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005438 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005439
5440 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005441 case FS_IOC_GETFLAGS:
5442 return btrfs_ioctl_getflags(file, argp);
5443 case FS_IOC_SETFLAGS:
5444 return btrfs_ioctl_setflags(file, argp);
5445 case FS_IOC_GETVERSION:
5446 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005447 case FITRIM:
5448 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005449 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005450 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005451 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005452 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005453 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005454 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005455 case BTRFS_IOC_SUBVOL_CREATE_V2:
5456 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005457 case BTRFS_IOC_SNAP_DESTROY:
5458 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005459 case BTRFS_IOC_SUBVOL_GETFLAGS:
5460 return btrfs_ioctl_subvol_getflags(file, argp);
5461 case BTRFS_IOC_SUBVOL_SETFLAGS:
5462 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005463 case BTRFS_IOC_DEFAULT_SUBVOL:
5464 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005465 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005466 return btrfs_ioctl_defrag(file, NULL);
5467 case BTRFS_IOC_DEFRAG_RANGE:
5468 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005469 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005470 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005471 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005472 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005473 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005474 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005475 case BTRFS_IOC_RM_DEV_V2:
5476 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005477 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005478 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005479 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005480 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005481 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005482 return btrfs_ioctl_balance(file, NULL);
Chris Masonac8e9812010-02-28 15:39:26 -05005483 case BTRFS_IOC_TREE_SEARCH:
5484 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005485 case BTRFS_IOC_TREE_SEARCH_V2:
5486 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005487 case BTRFS_IOC_INO_LOOKUP:
5488 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005489 case BTRFS_IOC_INO_PATHS:
5490 return btrfs_ioctl_ino_to_path(root, argp);
5491 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04005492 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
5493 case BTRFS_IOC_LOGICAL_INO_V2:
5494 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00005495 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005496 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005497 case BTRFS_IOC_SYNC: {
5498 int ret;
5499
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005500 ret = btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005501 if (ret)
5502 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005503 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005504 /*
5505 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005506 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005507 * processing uncleaned subvols.
5508 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005509 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005510 return ret;
5511 }
Sage Weil46204592010-10-29 15:41:32 -04005512 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005513 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005514 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005515 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005516 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005517 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005518 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005519 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005520 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005521 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005522 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005523 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005524 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005525 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005526 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005527 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005528 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5529 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005530#ifdef CONFIG_64BIT
5531 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5532 return btrfs_ioctl_set_received_subvol_32(file, argp);
5533#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005534 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04005535 return _btrfs_ioctl_send(file, argp, false);
5536#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5537 case BTRFS_IOC_SEND_32:
5538 return _btrfs_ioctl_send(file, argp, true);
5539#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005540 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005541 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005542 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005543 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005544 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005545 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005546 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005547 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005548 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005549 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005550 case BTRFS_IOC_QUOTA_RESCAN:
5551 return btrfs_ioctl_quota_rescan(file, argp);
5552 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5553 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005554 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5555 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005556 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005557 return btrfs_ioctl_dev_replace(fs_info, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005558 case BTRFS_IOC_GET_FSLABEL:
5559 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005560 case BTRFS_IOC_SET_FSLABEL:
5561 return btrfs_ioctl_set_fslabel(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005562 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005563 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005564 case BTRFS_IOC_GET_FEATURES:
5565 return btrfs_ioctl_get_features(file, argp);
5566 case BTRFS_IOC_SET_FEATURES:
5567 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005568 }
5569
5570 return -ENOTTY;
5571}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005572
5573#ifdef CONFIG_COMPAT
5574long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5575{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005576 /*
5577 * These all access 32-bit values anyway so no further
5578 * handling is necessary.
5579 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005580 switch (cmd) {
5581 case FS_IOC32_GETFLAGS:
5582 cmd = FS_IOC_GETFLAGS;
5583 break;
5584 case FS_IOC32_SETFLAGS:
5585 cmd = FS_IOC_SETFLAGS;
5586 break;
5587 case FS_IOC32_GETVERSION:
5588 cmd = FS_IOC_GETVERSION;
5589 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005590 }
5591
5592 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5593}
5594#endif