blob: f0d0aef3826a6b962e2a35a51e4a0514f0c5ce47 [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 Borisovfc4f21b12017-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
Chris Masonac8e9812010-02-28 15:39:26 -05001835static noinline int key_in_sk(struct btrfs_key *key,
1836 struct btrfs_ioctl_search_key *sk)
1837{
Chris Masonabc6e132010-03-18 12:10:08 -04001838 struct btrfs_key test;
1839 int ret;
1840
1841 test.objectid = sk->min_objectid;
1842 test.type = sk->min_type;
1843 test.offset = sk->min_offset;
1844
1845 ret = btrfs_comp_cpu_keys(key, &test);
1846 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001847 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001848
1849 test.objectid = sk->max_objectid;
1850 test.type = sk->max_type;
1851 test.offset = sk->max_offset;
1852
1853 ret = btrfs_comp_cpu_keys(key, &test);
1854 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001855 return 0;
1856 return 1;
1857}
1858
Jeff Mahoneydf397562016-06-21 20:18:21 -04001859static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05001860 struct btrfs_key *key,
1861 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001862 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001863 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001864 unsigned long *sk_offset,
1865 int *num_found)
1866{
1867 u64 found_transid;
1868 struct extent_buffer *leaf;
1869 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001870 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001871 unsigned long item_off;
1872 unsigned long item_len;
1873 int nritems;
1874 int i;
1875 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001876 int ret = 0;
1877
1878 leaf = path->nodes[0];
1879 slot = path->slots[0];
1880 nritems = btrfs_header_nritems(leaf);
1881
1882 if (btrfs_header_generation(leaf) > sk->max_transid) {
1883 i = nritems;
1884 goto advance_key;
1885 }
1886 found_transid = btrfs_header_generation(leaf);
1887
1888 for (i = slot; i < nritems; i++) {
1889 item_off = btrfs_item_ptr_offset(leaf, i);
1890 item_len = btrfs_item_size_nr(leaf, i);
1891
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001892 btrfs_item_key_to_cpu(leaf, key, i);
1893 if (!key_in_sk(key, sk))
1894 continue;
1895
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001896 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001897 if (*num_found) {
1898 ret = 1;
1899 goto out;
1900 }
Chris Masonac8e9812010-02-28 15:39:26 -05001901
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001902 /*
1903 * return one empty item back for v1, which does not
1904 * handle -EOVERFLOW
1905 */
1906
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001907 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001908 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001909 ret = -EOVERFLOW;
1910 }
Chris Masonac8e9812010-02-28 15:39:26 -05001911
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001912 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001913 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001914 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001915 }
1916
Chris Masonac8e9812010-02-28 15:39:26 -05001917 sh.objectid = key->objectid;
1918 sh.offset = key->offset;
1919 sh.type = key->type;
1920 sh.len = item_len;
1921 sh.transid = found_transid;
1922
1923 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001924 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1925 ret = -EFAULT;
1926 goto out;
1927 }
1928
Chris Masonac8e9812010-02-28 15:39:26 -05001929 *sk_offset += sizeof(sh);
1930
1931 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001932 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05001933 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001934 if (read_extent_buffer_to_user(leaf, up,
1935 item_off, item_len)) {
1936 ret = -EFAULT;
1937 goto out;
1938 }
1939
Chris Masonac8e9812010-02-28 15:39:26 -05001940 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001941 }
Hugo Millse2156862011-05-14 17:43:41 +00001942 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001943
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001944 if (ret) /* -EOVERFLOW from above */
1945 goto out;
1946
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001947 if (*num_found >= sk->nr_items) {
1948 ret = 1;
1949 goto out;
1950 }
Chris Masonac8e9812010-02-28 15:39:26 -05001951 }
1952advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001953 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001954 test.objectid = sk->max_objectid;
1955 test.type = sk->max_type;
1956 test.offset = sk->max_offset;
1957 if (btrfs_comp_cpu_keys(key, &test) >= 0)
1958 ret = 1;
1959 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04001960 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001961 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04001962 key->offset = 0;
1963 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001964 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04001965 key->offset = 0;
1966 key->type = 0;
1967 key->objectid++;
1968 } else
1969 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001970out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01001971 /*
1972 * 0: all items from this leaf copied, continue with next
1973 * 1: * more items can be copied, but unused buffer is too small
1974 * * all items were found
1975 * Either way, it will stops the loop which iterates to the next
1976 * leaf
1977 * -EOVERFLOW: item was to large for buffer
1978 * -EFAULT: could not copy extent buffer back to userspace
1979 */
Chris Masonac8e9812010-02-28 15:39:26 -05001980 return ret;
1981}
1982
1983static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01001984 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001985 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001986 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05001987{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001988 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05001989 struct btrfs_root *root;
1990 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001991 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05001992 int ret;
1993 int num_found = 0;
1994 unsigned long sk_offset = 0;
1995
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001996 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
1997 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01001998 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001999 }
Gerhard Heift12544442014-01-30 16:23:58 +01002000
Chris Masonac8e9812010-02-28 15:39:26 -05002001 path = btrfs_alloc_path();
2002 if (!path)
2003 return -ENOMEM;
2004
2005 if (sk->tree_id == 0) {
2006 /* search the root of the inode that was passed */
2007 root = BTRFS_I(inode)->root;
2008 } else {
2009 key.objectid = sk->tree_id;
2010 key.type = BTRFS_ROOT_ITEM_KEY;
2011 key.offset = (u64)-1;
2012 root = btrfs_read_fs_root_no_name(info, &key);
2013 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002014 btrfs_free_path(path);
2015 return -ENOENT;
2016 }
2017 }
2018
2019 key.objectid = sk->min_objectid;
2020 key.type = sk->min_type;
2021 key.offset = sk->min_offset;
2022
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302023 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002024 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002025 if (ret != 0) {
2026 if (ret > 0)
2027 ret = 0;
2028 goto err;
2029 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002030 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002031 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002032 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002033 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002034 break;
2035
2036 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002037 if (ret > 0)
2038 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002039err:
2040 sk->nr_items = num_found;
2041 btrfs_free_path(path);
2042 return ret;
2043}
2044
2045static noinline int btrfs_ioctl_tree_search(struct file *file,
2046 void __user *argp)
2047{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002048 struct btrfs_ioctl_search_args __user *uargs;
2049 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002050 struct inode *inode;
2051 int ret;
2052 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002053
2054 if (!capable(CAP_SYS_ADMIN))
2055 return -EPERM;
2056
Gerhard Heiftba346b32014-01-30 16:24:02 +01002057 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002058
Gerhard Heiftba346b32014-01-30 16:24:02 +01002059 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2060 return -EFAULT;
2061
2062 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002063
Al Viro496ad9a2013-01-23 17:07:38 -05002064 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002065 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002066
2067 /*
2068 * In the origin implementation an overflow is handled by returning a
2069 * search header with a len of zero, so reset ret.
2070 */
2071 if (ret == -EOVERFLOW)
2072 ret = 0;
2073
Gerhard Heiftba346b32014-01-30 16:24:02 +01002074 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002075 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002076 return ret;
2077}
2078
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002079static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2080 void __user *argp)
2081{
2082 struct btrfs_ioctl_search_args_v2 __user *uarg;
2083 struct btrfs_ioctl_search_args_v2 args;
2084 struct inode *inode;
2085 int ret;
2086 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002087 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002088
2089 if (!capable(CAP_SYS_ADMIN))
2090 return -EPERM;
2091
2092 /* copy search header and buffer size */
2093 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2094 if (copy_from_user(&args, uarg, sizeof(args)))
2095 return -EFAULT;
2096
2097 buf_size = args.buf_size;
2098
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002099 /* limit result size to 16MB */
2100 if (buf_size > buf_limit)
2101 buf_size = buf_limit;
2102
2103 inode = file_inode(file);
2104 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002105 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002106 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2107 ret = -EFAULT;
2108 else if (ret == -EOVERFLOW &&
2109 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2110 ret = -EFAULT;
2111
Yan, Zheng76dda932009-09-21 16:00:26 -04002112 return ret;
2113}
2114
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002115/*
Chris Masonac8e9812010-02-28 15:39:26 -05002116 * Search INODE_REFs to identify path name of 'dirid' directory
2117 * in a 'tree_id' tree. and sets path name to 'name'.
2118 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002119static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2120 u64 tree_id, u64 dirid, char *name)
2121{
2122 struct btrfs_root *root;
2123 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002124 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002125 int ret = -1;
2126 int slot;
2127 int len;
2128 int total_len = 0;
2129 struct btrfs_inode_ref *iref;
2130 struct extent_buffer *l;
2131 struct btrfs_path *path;
2132
2133 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2134 name[0]='\0';
2135 return 0;
2136 }
2137
2138 path = btrfs_alloc_path();
2139 if (!path)
2140 return -ENOMEM;
2141
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002142 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002143
2144 key.objectid = tree_id;
2145 key.type = BTRFS_ROOT_ITEM_KEY;
2146 key.offset = (u64)-1;
2147 root = btrfs_read_fs_root_no_name(info, &key);
2148 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002149 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002150 ret = -ENOENT;
2151 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002152 }
2153
2154 key.objectid = dirid;
2155 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002156 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002157
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302158 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002159 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2160 if (ret < 0)
2161 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002162 else if (ret > 0) {
2163 ret = btrfs_previous_item(root, path, dirid,
2164 BTRFS_INODE_REF_KEY);
2165 if (ret < 0)
2166 goto out;
2167 else if (ret > 0) {
2168 ret = -ENOENT;
2169 goto out;
2170 }
2171 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002172
2173 l = path->nodes[0];
2174 slot = path->slots[0];
2175 btrfs_item_key_to_cpu(l, &key, slot);
2176
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002177 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2178 len = btrfs_inode_ref_name_len(l, iref);
2179 ptr -= len + 1;
2180 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002181 if (ptr < name) {
2182 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002183 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002184 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002185
2186 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302187 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002188
2189 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2190 break;
2191
David Sterbab3b4aa72011-04-21 01:20:15 +02002192 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002193 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002194 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002195 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002196 }
Li Zefan77906a502011-07-14 03:16:00 +00002197 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302198 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002199 ret = 0;
2200out:
2201 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002202 return ret;
2203}
2204
2205static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2206 void __user *argp)
2207{
2208 struct btrfs_ioctl_ino_lookup_args *args;
2209 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002210 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002211
Julia Lawall2354d08f2010-10-29 15:14:18 -04002212 args = memdup_user(argp, sizeof(*args));
2213 if (IS_ERR(args))
2214 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002215
Al Viro496ad9a2013-01-23 17:07:38 -05002216 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002217
David Sterba01b810b2015-05-12 19:14:49 +02002218 /*
2219 * Unprivileged query to obtain the containing subvolume root id. The
2220 * path is reset so it's consistent with btrfs_search_path_in_tree.
2221 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002222 if (args->treeid == 0)
2223 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2224
David Sterba01b810b2015-05-12 19:14:49 +02002225 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2226 args->name[0] = 0;
2227 goto out;
2228 }
2229
2230 if (!capable(CAP_SYS_ADMIN)) {
2231 ret = -EPERM;
2232 goto out;
2233 }
2234
Chris Masonac8e9812010-02-28 15:39:26 -05002235 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2236 args->treeid, args->objectid,
2237 args->name);
2238
David Sterba01b810b2015-05-12 19:14:49 +02002239out:
Chris Masonac8e9812010-02-28 15:39:26 -05002240 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2241 ret = -EFAULT;
2242
2243 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002244 return ret;
2245}
2246
Yan, Zheng76dda932009-09-21 16:00:26 -04002247static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2248 void __user *arg)
2249{
Al Viro54563d42013-09-01 15:57:51 -04002250 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002251 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002252 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002253 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002254 struct inode *inode;
2255 struct btrfs_root *root = BTRFS_I(dir)->root;
2256 struct btrfs_root *dest = NULL;
2257 struct btrfs_ioctl_vol_args *vol_args;
Yan, Zheng76dda932009-09-21 16:00:26 -04002258 int namelen;
Yan, Zheng76dda932009-09-21 16:00:26 -04002259 int err = 0;
2260
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002261 if (!S_ISDIR(dir->i_mode))
2262 return -ENOTDIR;
2263
Yan, Zheng76dda932009-09-21 16:00:26 -04002264 vol_args = memdup_user(arg, sizeof(*vol_args));
2265 if (IS_ERR(vol_args))
2266 return PTR_ERR(vol_args);
2267
2268 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2269 namelen = strlen(vol_args->name);
2270 if (strchr(vol_args->name, '/') ||
2271 strncmp(vol_args->name, "..", namelen) == 0) {
2272 err = -EINVAL;
2273 goto out;
2274 }
2275
Al Viroa561be72011-11-23 11:57:51 -05002276 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002277 if (err)
2278 goto out;
2279
David Sterba521e0542014-04-15 16:41:44 +02002280
Al Viro00235412016-05-26 00:05:12 -04002281 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2282 if (err == -EINTR)
2283 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002284 dentry = lookup_one_len(vol_args->name, parent, namelen);
2285 if (IS_ERR(dentry)) {
2286 err = PTR_ERR(dentry);
2287 goto out_unlock_dir;
2288 }
2289
David Howells2b0143b2015-03-17 22:25:59 +00002290 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002291 err = -ENOENT;
2292 goto out_dput;
2293 }
2294
David Howells2b0143b2015-03-17 22:25:59 +00002295 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002296 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302297 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002298 /*
2299 * Regular user. Only allow this with a special mount
2300 * option, when the user has write+exec access to the
2301 * subvol root, and when rmdir(2) would have been
2302 * allowed.
2303 *
2304 * Note that this is _not_ check that the subvol is
2305 * empty or doesn't contain data that we wouldn't
2306 * otherwise be able to delete.
2307 *
2308 * Users who want to delete empty subvols should try
2309 * rmdir(2).
2310 */
2311 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002312 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002313 goto out_dput;
2314
2315 /*
2316 * Do not allow deletion if the parent dir is the same
2317 * as the dir to be deleted. That means the ioctl
2318 * must be called on the dentry referencing the root
2319 * of the subvol, not a random directory contained
2320 * within it.
2321 */
2322 err = -EINVAL;
2323 if (root == dest)
2324 goto out_dput;
2325
2326 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2327 if (err)
2328 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002329 }
2330
Miao Xie5c39da52012-10-22 11:39:53 +00002331 /* check if subvolume may be deleted by a user */
2332 err = btrfs_may_delete(dir, dentry, 1);
2333 if (err)
2334 goto out_dput;
2335
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002336 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002337 err = -EINVAL;
2338 goto out_dput;
2339 }
2340
Al Viro59551022016-01-22 15:40:57 -05002341 inode_lock(inode);
Misono Tomohirof60a2362018-04-18 11:34:52 +09002342 err = btrfs_delete_subvolume(dir, dentry);
Al Viro59551022016-01-22 15:40:57 -05002343 inode_unlock(inode);
Misono Tomohirof60a2362018-04-18 11:34:52 +09002344 if (!err)
Yan, Zheng76dda932009-09-21 16:00:26 -04002345 d_delete(dentry);
Liu Bofa6ac872013-02-20 14:10:23 +00002346
Yan, Zheng76dda932009-09-21 16:00:26 -04002347out_dput:
2348 dput(dentry);
2349out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002350 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002351out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002352 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002353out:
2354 kfree(vol_args);
2355 return err;
2356}
2357
Chris Mason1e701a32010-03-11 09:42:04 -05002358static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002359{
Al Viro496ad9a2013-01-23 17:07:38 -05002360 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002361 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002362 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002363 int ret;
2364
Ilya Dryomov25122d12013-01-20 15:57:57 +02002365 ret = mnt_want_write_file(file);
2366 if (ret)
2367 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002368
Ilya Dryomov25122d12013-01-20 15:57:57 +02002369 if (btrfs_root_readonly(root)) {
2370 ret = -EROFS;
2371 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002372 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002373
2374 switch (inode->i_mode & S_IFMT) {
2375 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002376 if (!capable(CAP_SYS_ADMIN)) {
2377 ret = -EPERM;
2378 goto out;
2379 }
Eric Sandeende78b512013-01-31 18:21:12 +00002380 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002381 break;
2382 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002383 if (!(file->f_mode & FMODE_WRITE)) {
2384 ret = -EINVAL;
2385 goto out;
2386 }
Chris Mason1e701a32010-03-11 09:42:04 -05002387
2388 range = kzalloc(sizeof(*range), GFP_KERNEL);
2389 if (!range) {
2390 ret = -ENOMEM;
2391 goto out;
2392 }
2393
2394 if (argp) {
2395 if (copy_from_user(range, argp,
2396 sizeof(*range))) {
2397 ret = -EFAULT;
2398 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002399 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002400 }
2401 /* compression requires us to start the IO */
2402 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2403 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2404 range->extent_thresh = (u32)-1;
2405 }
2406 } else {
2407 /* the rest are all set to zero by kzalloc */
2408 range->len = (u64)-1;
2409 }
Al Viro496ad9a2013-01-23 17:07:38 -05002410 ret = btrfs_defrag_file(file_inode(file), file,
Anand Jain7c829b72018-03-07 17:29:18 +08002411 range, BTRFS_OLDEST_GENERATION, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04002412 if (ret > 0)
2413 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002414 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002415 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002416 default:
2417 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002418 }
Chris Masone441d542009-01-05 16:57:23 -05002419out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002420 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002421 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002422}
2423
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002424static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002425{
2426 struct btrfs_ioctl_vol_args *vol_args;
2427 int ret;
2428
Chris Masone441d542009-01-05 16:57:23 -05002429 if (!capable(CAP_SYS_ADMIN))
2430 return -EPERM;
2431
David Sterba171938e2017-03-28 14:44:21 +02002432 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
Anand Jaine57138b2013-08-21 11:44:48 +08002433 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002434
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002435 mutex_lock(&fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002436 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002437 if (IS_ERR(vol_args)) {
2438 ret = PTR_ERR(vol_args);
2439 goto out;
2440 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002441
Mark Fasheh5516e592008-07-24 12:20:14 -04002442 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002443 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002444
Anand Jain43d20762014-07-01 00:58:56 +08002445 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002446 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08002447
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002448 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002449out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002450 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002451 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002452 return ret;
2453}
2454
Anand Jain6b526ed2016-02-13 10:01:39 +08002455static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002456{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002457 struct inode *inode = file_inode(file);
2458 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08002459 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002460 int ret;
2461
Chris Masone441d542009-01-05 16:57:23 -05002462 if (!capable(CAP_SYS_ADMIN))
2463 return -EPERM;
2464
Miao Xieda249272012-11-26 08:44:50 +00002465 ret = mnt_want_write_file(file);
2466 if (ret)
2467 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002468
Li Zefandae7b662009-04-08 15:06:54 +08002469 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002470 if (IS_ERR(vol_args)) {
2471 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002472 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002473 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002474
Anand Jain6b526ed2016-02-13 10:01:39 +08002475 /* Check for compatibility reject unknown flags */
David Sterba735654e2016-02-15 18:15:21 +01002476 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED)
2477 return -EOPNOTSUPP;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002478
David Sterba171938e2017-03-28 14:44:21 +02002479 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jain183860f2013-05-17 10:52:45 +00002480 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2481 goto out;
2482 }
David Sterba72b81ab2018-03-20 17:20:45 +01002483 mutex_lock(&fs_info->volume_mutex);
Anand Jain183860f2013-05-17 10:52:45 +00002484
David Sterba735654e2016-02-15 18:15:21 +01002485 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002486 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08002487 } else {
2488 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002489 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08002490 }
David Sterba72b81ab2018-03-20 17:20:45 +01002491 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002492 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain183860f2013-05-17 10:52:45 +00002493
Anand Jain6b526ed2016-02-13 10:01:39 +08002494 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01002495 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002496 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08002497 vol_args->devid);
2498 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002499 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08002500 vol_args->name);
2501 }
Anand Jain183860f2013-05-17 10:52:45 +00002502out:
2503 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002504err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002505 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002506 return ret;
2507}
2508
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002509static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2510{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002511 struct inode *inode = file_inode(file);
2512 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002513 struct btrfs_ioctl_vol_args *vol_args;
2514 int ret;
2515
2516 if (!capable(CAP_SYS_ADMIN))
2517 return -EPERM;
2518
2519 ret = mnt_want_write_file(file);
2520 if (ret)
2521 return ret;
2522
David Sterba171938e2017-03-28 14:44:21 +02002523 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002524 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02002525 goto out_drop_write;
2526 }
David Sterba72b81ab2018-03-20 17:20:45 +01002527 mutex_lock(&fs_info->volume_mutex);
David Sterba58d7bbf2016-05-04 14:10:47 +02002528
2529 vol_args = memdup_user(arg, sizeof(*vol_args));
2530 if (IS_ERR(vol_args)) {
2531 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002532 goto out;
2533 }
2534
David Sterba58d7bbf2016-05-04 14:10:47 +02002535 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002536 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002537
2538 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002539 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002540 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02002541out:
David Sterba72b81ab2018-03-20 17:20:45 +01002542 mutex_unlock(&fs_info->volume_mutex);
David Sterba171938e2017-03-28 14:44:21 +02002543 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
David Sterba58d7bbf2016-05-04 14:10:47 +02002544out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002545 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02002546
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002547 return ret;
2548}
2549
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002550static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
2551 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002552{
Li Zefan027ed2f2011-06-08 08:27:56 +00002553 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002554 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002555 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002556 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002557
Li Zefan027ed2f2011-06-08 08:27:56 +00002558 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2559 if (!fi_args)
2560 return -ENOMEM;
2561
David Sterbad03262c2017-06-16 00:09:21 +02002562 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00002563 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01002564
David Sterbad03262c2017-06-16 00:09:21 +02002565 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002566 if (device->devid > fi_args->max_id)
2567 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002568 }
David Sterbad03262c2017-06-16 00:09:21 +02002569 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002570
David Sterbad03262c2017-06-16 00:09:21 +02002571 memcpy(&fi_args->fsid, fs_info->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07002572 fi_args->nodesize = fs_info->nodesize;
2573 fi_args->sectorsize = fs_info->sectorsize;
2574 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02002575
Li Zefan027ed2f2011-06-08 08:27:56 +00002576 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2577 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002578
Li Zefan027ed2f2011-06-08 08:27:56 +00002579 kfree(fi_args);
2580 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002581}
2582
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002583static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
2584 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002585{
2586 struct btrfs_ioctl_dev_info_args *di_args;
2587 struct btrfs_device *dev;
Jan Schmidt475f6382011-03-11 15:41:01 +01002588 int ret = 0;
2589 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002590
Jan Schmidt475f6382011-03-11 15:41:01 +01002591 di_args = memdup_user(arg, sizeof(*di_args));
2592 if (IS_ERR(di_args))
2593 return PTR_ERR(di_args);
2594
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002595 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002596 s_uuid = di_args->uuid;
2597
David Sterbac5593ca2017-06-16 00:09:21 +02002598 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002599 dev = btrfs_find_device(fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002600
2601 if (!dev) {
2602 ret = -ENODEV;
2603 goto out;
2604 }
2605
2606 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002607 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2608 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002609 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002610 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002611 struct rcu_string *name;
2612
Josef Bacik606686e2012-06-04 14:03:51 -04002613 name = rcu_dereference(dev->name);
Xiongfeng Wang6670d4c2018-01-08 19:51:22 +08002614 strncpy(di_args->path, name->str, sizeof(di_args->path) - 1);
Jim Meyeringa27202f2012-04-26 18:36:56 +02002615 di_args->path[sizeof(di_args->path) - 1] = 0;
2616 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002617 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002618 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002619
2620out:
David Sterbac5593ca2017-06-16 00:09:21 +02002621 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002622 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2623 ret = -EFAULT;
2624
2625 kfree(di_args);
2626 return ret;
2627}
2628
Mark Fashehf4414602015-06-30 14:42:05 -07002629static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002630{
2631 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002632
Mark Fasheh416161d2013-08-06 11:42:51 -07002633 page = grab_cache_page(inode->i_mapping, index);
2634 if (!page)
Filipe Manana31314002016-01-27 18:37:47 +00002635 return ERR_PTR(-ENOMEM);
Mark Fasheh416161d2013-08-06 11:42:51 -07002636
2637 if (!PageUptodate(page)) {
Filipe Manana31314002016-01-27 18:37:47 +00002638 int ret;
2639
2640 ret = btrfs_readpage(NULL, page);
2641 if (ret)
2642 return ERR_PTR(ret);
Mark Fasheh416161d2013-08-06 11:42:51 -07002643 lock_page(page);
2644 if (!PageUptodate(page)) {
2645 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002646 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002647 return ERR_PTR(-EIO);
2648 }
2649 if (page->mapping != inode->i_mapping) {
2650 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002651 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002652 return ERR_PTR(-EAGAIN);
Mark Fasheh416161d2013-08-06 11:42:51 -07002653 }
2654 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002655
2656 return page;
2657}
2658
Mark Fashehf4414602015-06-30 14:42:05 -07002659static int gather_extent_pages(struct inode *inode, struct page **pages,
2660 int num_pages, u64 off)
2661{
2662 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002663 pgoff_t index = off >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002664
2665 for (i = 0; i < num_pages; i++) {
Filipe Manana31314002016-01-27 18:37:47 +00002666again:
Mark Fashehf4414602015-06-30 14:42:05 -07002667 pages[i] = extent_same_get_page(inode, index + i);
Filipe Manana31314002016-01-27 18:37:47 +00002668 if (IS_ERR(pages[i])) {
2669 int err = PTR_ERR(pages[i]);
2670
2671 if (err == -EAGAIN)
2672 goto again;
2673 pages[i] = NULL;
2674 return err;
2675 }
Mark Fashehf4414602015-06-30 14:42:05 -07002676 }
2677 return 0;
2678}
2679
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002680static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2681 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002682{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002683 /*
2684 * Do any pending delalloc/csum calculations on inode, one way or
2685 * another, and lock file content.
2686 * The locking order is:
2687 *
2688 * 1) pages
2689 * 2) range in the inode's io tree
2690 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002691 while (1) {
2692 struct btrfs_ordered_extent *ordered;
2693 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2694 ordered = btrfs_lookup_first_ordered_extent(inode,
2695 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002696 if ((!ordered ||
2697 ordered->file_offset + ordered->len <= off ||
2698 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002699 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002700 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2701 if (ordered)
2702 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002703 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002704 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002705 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2706 if (ordered)
2707 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002708 if (!retry_range_locking)
2709 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002710 btrfs_wait_ordered_range(inode, off, len);
2711 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002712 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002713}
2714
Mark Fashehf4414602015-06-30 14:42:05 -07002715static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002716{
Al Viro59551022016-01-22 15:40:57 -05002717 inode_unlock(inode1);
2718 inode_unlock(inode2);
Mark Fasheh416161d2013-08-06 11:42:51 -07002719}
2720
Mark Fashehf4414602015-06-30 14:42:05 -07002721static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2722{
2723 if (inode1 < inode2)
2724 swap(inode1, inode2);
2725
Al Viro59551022016-01-22 15:40:57 -05002726 inode_lock_nested(inode1, I_MUTEX_PARENT);
2727 inode_lock_nested(inode2, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002728}
2729
2730static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2731 struct inode *inode2, u64 loff2, u64 len)
2732{
2733 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2734 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2735}
2736
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002737static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2738 struct inode *inode2, u64 loff2, u64 len,
2739 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002740{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002741 int ret;
2742
Mark Fasheh416161d2013-08-06 11:42:51 -07002743 if (inode1 < inode2) {
2744 swap(inode1, inode2);
2745 swap(loff1, loff2);
2746 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002747 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2748 if (ret)
2749 return ret;
2750 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2751 if (ret)
2752 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2753 loff1 + len - 1);
2754 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002755}
2756
2757struct cmp_pages {
2758 int num_pages;
2759 struct page **src_pages;
2760 struct page **dst_pages;
2761};
2762
2763static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2764{
2765 int i;
2766 struct page *pg;
2767
2768 for (i = 0; i < cmp->num_pages; i++) {
2769 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002770 if (pg) {
2771 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002772 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002773 }
Mark Fashehf4414602015-06-30 14:42:05 -07002774 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002775 if (pg) {
2776 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002777 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002778 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002779 }
Mark Fashehf4414602015-06-30 14:42:05 -07002780 kfree(cmp->src_pages);
2781 kfree(cmp->dst_pages);
2782}
2783
2784static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2785 struct inode *dst, u64 dst_loff,
2786 u64 len, struct cmp_pages *cmp)
2787{
2788 int ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002789 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002790 struct page **src_pgarr, **dst_pgarr;
2791
2792 /*
2793 * We must gather up all the pages before we initiate our
2794 * extent locking. We use an array for the page pointers. Size
2795 * of the array is bounded by len, which is in turn bounded by
2796 * BTRFS_MAX_DEDUPE_LEN.
2797 */
David Sterba66722f72016-02-11 15:01:38 +01002798 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
2799 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
Mark Fashehf4414602015-06-30 14:42:05 -07002800 if (!src_pgarr || !dst_pgarr) {
2801 kfree(src_pgarr);
2802 kfree(dst_pgarr);
2803 return -ENOMEM;
2804 }
2805 cmp->num_pages = num_pages;
2806 cmp->src_pages = src_pgarr;
2807 cmp->dst_pages = dst_pgarr;
2808
Filipe Mananab1517622017-02-21 17:14:52 +00002809 /*
2810 * If deduping ranges in the same inode, locking rules make it mandatory
2811 * to always lock pages in ascending order to avoid deadlocks with
2812 * concurrent tasks (such as starting writeback/delalloc).
2813 */
2814 if (src == dst && dst_loff < loff) {
2815 swap(src_pgarr, dst_pgarr);
2816 swap(loff, dst_loff);
2817 }
2818
2819 ret = gather_extent_pages(src, src_pgarr, cmp->num_pages, loff);
Mark Fashehf4414602015-06-30 14:42:05 -07002820 if (ret)
2821 goto out;
2822
Filipe Mananab1517622017-02-21 17:14:52 +00002823 ret = gather_extent_pages(dst, dst_pgarr, cmp->num_pages, dst_loff);
Mark Fashehf4414602015-06-30 14:42:05 -07002824
2825out:
2826 if (ret)
2827 btrfs_cmp_data_free(cmp);
Naohiro Aota78ad4ce2017-09-08 17:48:55 +09002828 return ret;
Mark Fasheh416161d2013-08-06 11:42:51 -07002829}
2830
David Sterba1a287cf2017-02-10 20:15:10 +01002831static int btrfs_cmp_data(u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002832{
2833 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07002834 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07002835 struct page *src_page, *dst_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002836 unsigned int cmp_len = PAGE_SIZE;
Mark Fasheh416161d2013-08-06 11:42:51 -07002837 void *addr, *dst_addr;
2838
Mark Fashehf4414602015-06-30 14:42:05 -07002839 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002840 while (len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002841 if (len < PAGE_SIZE)
Mark Fasheh416161d2013-08-06 11:42:51 -07002842 cmp_len = len;
2843
Mark Fashehf4414602015-06-30 14:42:05 -07002844 BUG_ON(i >= cmp->num_pages);
2845
2846 src_page = cmp->src_pages[i];
2847 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002848 ASSERT(PageLocked(src_page));
2849 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07002850
Mark Fasheh416161d2013-08-06 11:42:51 -07002851 addr = kmap_atomic(src_page);
2852 dst_addr = kmap_atomic(dst_page);
2853
2854 flush_dcache_page(src_page);
2855 flush_dcache_page(dst_page);
2856
2857 if (memcmp(addr, dst_addr, cmp_len))
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08002858 ret = -EBADE;
Mark Fasheh416161d2013-08-06 11:42:51 -07002859
2860 kunmap_atomic(addr);
2861 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07002862
2863 if (ret)
2864 break;
2865
Mark Fasheh416161d2013-08-06 11:42:51 -07002866 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07002867 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07002868 }
2869
2870 return ret;
2871}
2872
Mark Fashehe1d227a2015-06-08 15:05:25 -07002873static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
2874 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07002875{
Mark Fashehe1d227a2015-06-08 15:05:25 -07002876 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07002877 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2878
Mark Fashehe1d227a2015-06-08 15:05:25 -07002879 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07002880 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002881
2882 /* if we extend to eof, continue to block boundary */
2883 if (off + len == inode->i_size)
2884 *plen = len = ALIGN(inode->i_size, bs) - off;
2885
Mark Fasheh416161d2013-08-06 11:42:51 -07002886 /* Check that we are block aligned - btrfs_clone() requires this */
2887 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2888 return -EINVAL;
2889
2890 return 0;
2891}
2892
Mark Fashehe1d227a2015-06-08 15:05:25 -07002893static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07002894 struct inode *dst, u64 dst_loff)
2895{
2896 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002897 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07002898 struct cmp_pages cmp;
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002899 bool same_inode = (src == dst);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002900 u64 same_lock_start = 0;
2901 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002902
Filipe Manana113e8282015-03-30 18:26:47 +01002903 if (len == 0)
2904 return 0;
2905
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002906 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05002907 inode_lock(src);
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002908 else
2909 btrfs_double_inode_lock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07002910
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002911 ret = extent_same_check_offsets(src, loff, &len, olen);
2912 if (ret)
2913 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07002914
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002915 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
2916 if (ret)
2917 goto out_unlock;
2918
2919 if (same_inode) {
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002920 /*
2921 * Single inode case wants the same checks, except we
2922 * don't want our length pushed out past i_size as
2923 * comparing that data range makes no sense.
2924 *
2925 * extent_same_check_offsets() will do this for an
2926 * unaligned length at i_size, so catch it here and
2927 * reject the request.
2928 *
2929 * This effectively means we require aligned extents
2930 * for the single-inode case, whereas the other cases
2931 * allow an unaligned length so long as it ends at
2932 * i_size.
2933 */
2934 if (len != olen) {
2935 ret = -EINVAL;
2936 goto out_unlock;
2937 }
2938
2939 /* Check for overlapping ranges */
2940 if (dst_loff + len > loff && dst_loff < loff + len) {
2941 ret = -EINVAL;
2942 goto out_unlock;
2943 }
2944
2945 same_lock_start = min_t(u64, loff, dst_loff);
2946 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002947 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002948
2949 /* don't make the dst file partly checksummed */
2950 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2951 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2952 ret = -EINVAL;
2953 goto out_unlock;
2954 }
2955
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002956again:
Mark Fashehf4414602015-06-30 14:42:05 -07002957 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
2958 if (ret)
2959 goto out_unlock;
2960
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002961 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002962 ret = lock_extent_range(src, same_lock_start, same_lock_len,
2963 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002964 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002965 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
2966 false);
2967 /*
2968 * If one of the inodes has dirty pages in the respective range or
2969 * ordered extents, we need to flush dellaloc and wait for all ordered
2970 * extents in the range. We must unlock the pages and the ranges in the
2971 * io trees to avoid deadlocks when flushing delalloc (requires locking
2972 * pages) and when waiting for ordered extents to complete (they require
2973 * range locking).
2974 */
2975 if (ret == -EAGAIN) {
2976 /*
2977 * Ranges in the io trees already unlocked. Now unlock all
2978 * pages before waiting for all IO to complete.
2979 */
2980 btrfs_cmp_data_free(&cmp);
2981 if (same_inode) {
2982 btrfs_wait_ordered_range(src, same_lock_start,
2983 same_lock_len);
2984 } else {
2985 btrfs_wait_ordered_range(src, loff, len);
2986 btrfs_wait_ordered_range(dst, dst_loff, len);
2987 }
2988 goto again;
2989 }
2990 ASSERT(ret == 0);
2991 if (WARN_ON(ret)) {
2992 /* ranges in the io trees already unlocked */
2993 btrfs_cmp_data_free(&cmp);
2994 return ret;
2995 }
Mark Fashehf4414602015-06-30 14:42:05 -07002996
Mark Fasheh207910d2015-06-30 14:42:04 -07002997 /* pass original length for comparison so we stay within i_size */
David Sterba1a287cf2017-02-10 20:15:10 +01002998 ret = btrfs_cmp_data(olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07002999 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003000 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003001
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003002 if (same_inode)
3003 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3004 same_lock_start + same_lock_len - 1);
3005 else
3006 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003007
3008 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003009out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003010 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003011 inode_unlock(src);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003012 else
3013 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003014
3015 return ret;
3016}
3017
Byongho Leeee221842015-12-15 01:42:10 +09003018#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003019
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003020ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3021 struct file *dst_file, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003022{
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003023 struct inode *src = file_inode(src_file);
3024 struct inode *dst = file_inode(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003025 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003026 ssize_t res;
Mark Fasheh416161d2013-08-06 11:42:51 -07003027
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003028 if (olen > BTRFS_MAX_DEDUPE_LEN)
3029 olen = BTRFS_MAX_DEDUPE_LEN;
Mark Fasheh416161d2013-08-06 11:42:51 -07003030
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003031 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003032 /*
3033 * Btrfs does not support blocksize < page_size. As a
3034 * result, btrfs_cmp_data() won't correctly handle
3035 * this situation without an update.
3036 */
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003037 return -EINVAL;
Mark Fasheh416161d2013-08-06 11:42:51 -07003038 }
3039
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003040 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3041 if (res)
3042 return res;
3043 return olen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003044}
3045
Filipe Mananaf82a9902014-06-01 01:50:28 +01003046static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3047 struct inode *inode,
3048 u64 endoff,
3049 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003050 const u64 olen,
3051 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003052{
3053 struct btrfs_root *root = BTRFS_I(inode)->root;
3054 int ret;
3055
3056 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003057 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003058 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003059 /*
3060 * We round up to the block size at eof when determining which
3061 * extents to clone above, but shouldn't round up the file size.
3062 */
3063 if (endoff > destoff + olen)
3064 endoff = destoff + olen;
3065 if (endoff > inode->i_size)
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003066 btrfs_i_size_write(BTRFS_I(inode), endoff);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003067
3068 ret = btrfs_update_inode(trans, root, inode);
3069 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003070 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003071 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003072 goto out;
3073 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003074 ret = btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003075out:
3076 return ret;
3077}
3078
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003079static void clone_update_extent_map(struct btrfs_inode *inode,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003080 const struct btrfs_trans_handle *trans,
3081 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003082 const u64 hole_offset,
3083 const u64 hole_len)
3084{
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003085 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01003086 struct extent_map *em;
3087 int ret;
3088
3089 em = alloc_extent_map();
3090 if (!em) {
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003091 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003092 return;
3093 }
3094
Filipe Manana14f59792014-06-29 21:45:40 +01003095 if (path) {
3096 struct btrfs_file_extent_item *fi;
3097
3098 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3099 struct btrfs_file_extent_item);
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003100 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003101 em->generation = -1;
3102 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3103 BTRFS_FILE_EXTENT_INLINE)
3104 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003105 &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003106 } else {
3107 em->start = hole_offset;
3108 em->len = hole_len;
3109 em->ram_bytes = em->len;
3110 em->orig_start = hole_offset;
3111 em->block_start = EXTENT_MAP_HOLE;
3112 em->block_len = 0;
3113 em->orig_block_len = 0;
3114 em->compress_type = BTRFS_COMPRESS_NONE;
3115 em->generation = trans->transid;
3116 }
3117
3118 while (1) {
3119 write_lock(&em_tree->lock);
3120 ret = add_extent_mapping(em_tree, em, 1);
3121 write_unlock(&em_tree->lock);
3122 if (ret != -EEXIST) {
3123 free_extent_map(em);
3124 break;
3125 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003126 btrfs_drop_extent_cache(inode, em->start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003127 em->start + em->len - 1, 0);
3128 }
3129
David Sterbaee39b432014-09-30 01:33:33 +02003130 if (ret)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003131 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003132}
3133
Filipe Manana8039d872015-10-13 15:15:00 +01003134/*
3135 * Make sure we do not end up inserting an inline extent into a file that has
3136 * already other (non-inline) extents. If a file has an inline extent it can
3137 * not have any other extents and the (single) inline extent must start at the
3138 * file offset 0. Failing to respect these rules will lead to file corruption,
3139 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3140 *
3141 * We can have extents that have been already written to disk or we can have
3142 * dirty ranges still in delalloc, in which case the extent maps and items are
3143 * created only when we run delalloc, and the delalloc ranges might fall outside
3144 * the range we are currently locking in the inode's io tree. So we check the
3145 * inode's i_size because of that (i_size updates are done while holding the
3146 * i_mutex, which we are holding here).
3147 * We also check to see if the inode has a size not greater than "datal" but has
3148 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3149 * protected against such concurrent fallocate calls by the i_mutex).
3150 *
3151 * If the file has no extents but a size greater than datal, do not allow the
3152 * copy because we would need turn the inline extent into a non-inline one (even
3153 * with NO_HOLES enabled). If we find our destination inode only has one inline
3154 * extent, just overwrite it with the source inline extent if its size is less
3155 * than the source extent's size, or we could copy the source inline extent's
3156 * data into the destination inode's inline extent if the later is greater then
3157 * the former.
3158 */
David Sterba4a0ab9d2017-02-10 20:18:49 +01003159static int clone_copy_inline_extent(struct inode *dst,
Filipe Manana8039d872015-10-13 15:15:00 +01003160 struct btrfs_trans_handle *trans,
3161 struct btrfs_path *path,
3162 struct btrfs_key *new_key,
3163 const u64 drop_start,
3164 const u64 datal,
3165 const u64 skip,
3166 const u64 size,
3167 char *inline_data)
3168{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003169 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
Filipe Manana8039d872015-10-13 15:15:00 +01003170 struct btrfs_root *root = BTRFS_I(dst)->root;
3171 const u64 aligned_end = ALIGN(new_key->offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003172 fs_info->sectorsize);
Filipe Manana8039d872015-10-13 15:15:00 +01003173 int ret;
3174 struct btrfs_key key;
3175
3176 if (new_key->offset > 0)
3177 return -EOPNOTSUPP;
3178
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003179 key.objectid = btrfs_ino(BTRFS_I(dst));
Filipe Manana8039d872015-10-13 15:15:00 +01003180 key.type = BTRFS_EXTENT_DATA_KEY;
3181 key.offset = 0;
3182 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3183 if (ret < 0) {
3184 return ret;
3185 } else if (ret > 0) {
3186 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3187 ret = btrfs_next_leaf(root, path);
3188 if (ret < 0)
3189 return ret;
3190 else if (ret > 0)
3191 goto copy_inline_extent;
3192 }
3193 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003194 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003195 key.type == BTRFS_EXTENT_DATA_KEY) {
3196 ASSERT(key.offset > 0);
3197 return -EOPNOTSUPP;
3198 }
3199 } else if (i_size_read(dst) <= datal) {
3200 struct btrfs_file_extent_item *ei;
3201 u64 ext_len;
3202
3203 /*
3204 * If the file size is <= datal, make sure there are no other
3205 * extents following (can happen do to an fallocate call with
3206 * the flag FALLOC_FL_KEEP_SIZE).
3207 */
3208 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3209 struct btrfs_file_extent_item);
3210 /*
3211 * If it's an inline extent, it can not have other extents
3212 * following it.
3213 */
3214 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3215 BTRFS_FILE_EXTENT_INLINE)
3216 goto copy_inline_extent;
3217
3218 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3219 if (ext_len > aligned_end)
3220 return -EOPNOTSUPP;
3221
3222 ret = btrfs_next_item(root, path);
3223 if (ret < 0) {
3224 return ret;
3225 } else if (ret == 0) {
3226 btrfs_item_key_to_cpu(path->nodes[0], &key,
3227 path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003228 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003229 key.type == BTRFS_EXTENT_DATA_KEY)
3230 return -EOPNOTSUPP;
3231 }
3232 }
3233
3234copy_inline_extent:
3235 /*
3236 * We have no extent items, or we have an extent at offset 0 which may
3237 * or may not be inlined. All these cases are dealt the same way.
3238 */
3239 if (i_size_read(dst) > datal) {
3240 /*
3241 * If the destination inode has an inline extent...
3242 * This would require copying the data from the source inline
3243 * extent into the beginning of the destination's inline extent.
3244 * But this is really complex, both extents can be compressed
3245 * or just one of them, which would require decompressing and
3246 * re-compressing data (which could increase the new compressed
3247 * size, not allowing the compressed data to fit anymore in an
3248 * inline extent).
3249 * So just don't support this case for now (it should be rare,
3250 * we are not really saving space when cloning inline extents).
3251 */
3252 return -EOPNOTSUPP;
3253 }
3254
3255 btrfs_release_path(path);
3256 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3257 if (ret)
3258 return ret;
3259 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3260 if (ret)
3261 return ret;
3262
3263 if (skip) {
3264 const u32 start = btrfs_file_extent_calc_inline_size(0);
3265
3266 memmove(inline_data + start, inline_data + start + skip, datal);
3267 }
3268
3269 write_extent_buffer(path->nodes[0], inline_data,
3270 btrfs_item_ptr_offset(path->nodes[0],
3271 path->slots[0]),
3272 size);
3273 inode_add_bytes(dst, datal);
3274
3275 return 0;
3276}
3277
Mark Fasheh32b7c682013-08-06 11:42:49 -07003278/**
3279 * btrfs_clone() - clone a range from inode file to another
3280 *
3281 * @src: Inode to clone from
3282 * @inode: Inode to clone to
3283 * @off: Offset within source to start clone from
3284 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003285 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003286 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003287 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003288 */
3289static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003290 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003291 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003292{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003293 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003294 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003295 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003296 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003297 struct btrfs_trans_handle *trans;
3298 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003299 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003300 u32 nritems;
3301 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003302 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003303 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003304 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003305
3306 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07003307 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3308 if (!buf)
3309 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003310
3311 path = btrfs_alloc_path();
3312 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003313 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003314 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003315 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003316
David Sterbae4058b52015-11-27 16:31:35 +01003317 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003318 /* clone data */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003319 key.objectid = btrfs_ino(BTRFS_I(src));
Yan Zhengae01a0a2008-08-04 23:23:47 -04003320 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003321 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003322
3323 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003324 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003325
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003326 /*
3327 * note the key will change type as we walk through the
3328 * tree.
3329 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003330 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003331 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3332 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003333 if (ret < 0)
3334 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003335 /*
3336 * First search, if no extent item that starts at offset off was
3337 * found but the previous item is an extent item, it's possible
3338 * it might overlap our target range, therefore process it.
3339 */
3340 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3341 btrfs_item_key_to_cpu(path->nodes[0], &key,
3342 path->slots[0] - 1);
3343 if (key.type == BTRFS_EXTENT_DATA_KEY)
3344 path->slots[0]--;
3345 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003346
Yan Zhengae01a0a2008-08-04 23:23:47 -04003347 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003348process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003349 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003350 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003351 if (ret < 0)
3352 goto out;
3353 if (ret > 0)
3354 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003355 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003356 }
3357 leaf = path->nodes[0];
3358 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003359
Yan Zhengae01a0a2008-08-04 23:23:47 -04003360 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003361 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003362 key.objectid != btrfs_ino(BTRFS_I(src)))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003363 break;
3364
David Sterba962a2982014-06-04 18:41:45 +02003365 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003366 struct btrfs_file_extent_item *extent;
3367 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003368 u32 size;
3369 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003370 u64 disko = 0, diskl = 0;
3371 u64 datao = 0, datal = 0;
3372 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003373 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003374
Sage Weilc5c9cd42008-11-12 14:32:25 -05003375 extent = btrfs_item_ptr(leaf, slot,
3376 struct btrfs_file_extent_item);
3377 comp = btrfs_file_extent_compression(leaf, extent);
3378 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003379 if (type == BTRFS_FILE_EXTENT_REG ||
3380 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003381 disko = btrfs_file_extent_disk_bytenr(leaf,
3382 extent);
3383 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3384 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003385 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003386 datal = btrfs_file_extent_num_bytes(leaf,
3387 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003388 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3389 /* take upper bound, may be compressed */
3390 datal = btrfs_file_extent_ram_bytes(leaf,
3391 extent);
3392 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003393
Filipe Manana2c463822014-05-31 02:31:05 +01003394 /*
3395 * The first search might have left us at an extent
3396 * item that ends before our target range's start, can
3397 * happen if we have holes and NO_HOLES feature enabled.
3398 */
3399 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003400 path->slots[0]++;
3401 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003402 } else if (key.offset >= off + len) {
3403 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003404 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003405 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003406 size = btrfs_item_size_nr(leaf, slot);
3407 read_extent_buffer(leaf, buf,
3408 btrfs_item_ptr_offset(leaf, slot),
3409 size);
3410
3411 btrfs_release_path(path);
3412 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003413
Zheng Yan31840ae2008-09-23 13:14:14 -04003414 memcpy(&new_key, &key, sizeof(new_key));
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003415 new_key.objectid = btrfs_ino(BTRFS_I(inode));
Li Zefan4d728ec2011-01-26 14:10:43 +08003416 if (off <= key.offset)
3417 new_key.offset = key.offset + destoff - off;
3418 else
3419 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003420
Sage Weilb6f34092011-09-20 14:48:51 -04003421 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003422 * Deal with a hole that doesn't have an extent item
3423 * that represents it (NO_HOLES feature enabled).
3424 * This hole is either in the middle of the cloning
3425 * range or at the beginning (fully overlaps it or
3426 * partially overlaps it).
3427 */
3428 if (new_key.offset != last_dest_end)
3429 drop_start = last_dest_end;
3430 else
3431 drop_start = new_key.offset;
3432
3433 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003434 * 1 - adjusting old extent (we may have to split it)
3435 * 1 - add new extent
3436 * 1 - inode update
3437 */
3438 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003439 if (IS_ERR(trans)) {
3440 ret = PTR_ERR(trans);
3441 goto out;
3442 }
3443
Chris Masonc8a894d2009-06-27 21:07:03 -04003444 if (type == BTRFS_FILE_EXTENT_REG ||
3445 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003446 /*
3447 * a | --- range to clone ---| b
3448 * | ------------- extent ------------- |
3449 */
3450
Antonio Ospite93915582014-06-04 14:03:48 +02003451 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003452 if (key.offset + datal > off + len)
3453 datal = off + len - key.offset;
3454
Antonio Ospite93915582014-06-04 14:03:48 +02003455 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003456 if (off > key.offset) {
3457 datao += off - key.offset;
3458 datal -= off - key.offset;
3459 }
3460
Josef Bacik5dc562c2012-08-17 13:14:17 -04003461 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003462 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003463 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003464 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003465 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003466 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003467 btrfs_abort_transaction(trans,
Jeff Mahoney66642832016-06-10 18:19:25 -04003468 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003469 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003470 goto out;
3471 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003472
Sage Weilc5c9cd42008-11-12 14:32:25 -05003473 ret = btrfs_insert_empty_item(trans, root, path,
3474 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003475 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003476 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003477 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003478 goto out;
3479 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003480
3481 leaf = path->nodes[0];
3482 slot = path->slots[0];
3483 write_extent_buffer(leaf, buf,
3484 btrfs_item_ptr_offset(leaf, slot),
3485 size);
3486
3487 extent = btrfs_item_ptr(leaf, slot,
3488 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003489
Sage Weilc5c9cd42008-11-12 14:32:25 -05003490 /* disko == 0 means it's a hole */
3491 if (!disko)
3492 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003493
3494 btrfs_set_file_extent_offset(leaf, extent,
3495 datao);
3496 btrfs_set_file_extent_num_bytes(leaf, extent,
3497 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003498
Sage Weilc5c9cd42008-11-12 14:32:25 -05003499 if (disko) {
3500 inode_add_bytes(inode, datal);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003501 ret = btrfs_inc_extent_ref(trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003502 root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003503 disko, diskl, 0,
3504 root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003505 btrfs_ino(BTRFS_I(inode)),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003506 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003507 if (ret) {
3508 btrfs_abort_transaction(trans,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003509 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003510 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003511 goto out;
3512
3513 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003514 }
3515 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3516 u64 skip = 0;
3517 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003518
Sage Weilc5c9cd42008-11-12 14:32:25 -05003519 if (off > key.offset) {
3520 skip = off - key.offset;
3521 new_key.offset += skip;
3522 }
Chris Masond3977122009-01-05 21:25:51 -05003523
Liu Boaa42ffd2012-09-18 03:52:23 -06003524 if (key.offset + datal > off + len)
3525 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003526
Sage Weilc5c9cd42008-11-12 14:32:25 -05003527 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003528 ret = -EINVAL;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003529 btrfs_end_transaction(trans);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003530 goto out;
3531 }
3532 size -= skip + trim;
3533 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003534
David Sterba4a0ab9d2017-02-10 20:18:49 +01003535 ret = clone_copy_inline_extent(inode,
Filipe Manana8039d872015-10-13 15:15:00 +01003536 trans, path,
3537 &new_key,
3538 drop_start,
3539 datal,
3540 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003541 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003542 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003543 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003544 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003545 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003546 goto out;
3547 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003548 leaf = path->nodes[0];
3549 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003550 }
3551
Filipe Manana7ffbb592014-06-09 03:48:05 +01003552 /* If we have an implicit hole (NO_HOLES feature). */
3553 if (drop_start < new_key.offset)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003554 clone_update_extent_map(BTRFS_I(inode), trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003555 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003556 new_key.offset - drop_start);
3557
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003558 clone_update_extent_map(BTRFS_I(inode), trans,
3559 path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003560
Sage Weilc5c9cd42008-11-12 14:32:25 -05003561 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003562 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003563
Filipe Manana62e23902014-08-08 02:47:06 +01003564 last_dest_end = ALIGN(new_key.offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003565 fs_info->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003566 ret = clone_finish_inode_update(trans, inode,
3567 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003568 destoff, olen,
3569 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003570 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003571 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003572 if (new_key.offset + datal >= destoff + len)
3573 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003574 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003575 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003576 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003577
3578 if (fatal_signal_pending(current)) {
3579 ret = -EINTR;
3580 goto out;
3581 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003582 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003583 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003584
Filipe Mananaf82a9902014-06-01 01:50:28 +01003585 if (last_dest_end < destoff + len) {
3586 /*
3587 * We have an implicit hole (NO_HOLES feature is enabled) that
3588 * fully or partially overlaps our cloning range at its end.
3589 */
3590 btrfs_release_path(path);
3591
3592 /*
3593 * 1 - remove extent(s)
3594 * 1 - inode update
3595 */
3596 trans = btrfs_start_transaction(root, 2);
3597 if (IS_ERR(trans)) {
3598 ret = PTR_ERR(trans);
3599 goto out;
3600 }
3601 ret = btrfs_drop_extents(trans, root, inode,
3602 last_dest_end, destoff + len, 1);
3603 if (ret) {
3604 if (ret != -EOPNOTSUPP)
Jeff Mahoney66642832016-06-10 18:19:25 -04003605 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003606 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003607 goto out;
3608 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003609 clone_update_extent_map(BTRFS_I(inode), trans, NULL,
3610 last_dest_end,
3611 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003612 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003613 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003614 }
3615
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003616out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003617 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003618 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003619 return ret;
3620}
3621
Zach Brown3db11b22015-11-10 16:53:32 -05003622static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3623 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003624{
Al Viro54563d42013-09-01 15:57:51 -04003625 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003626 struct inode *src = file_inode(file_src);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003627 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003628 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003629 int ret;
3630 u64 len = olen;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003631 u64 bs = fs_info->sb->s_blocksize;
Zach Brown3db11b22015-11-10 16:53:32 -05003632 int same_inode = src == inode;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003633
3634 /*
3635 * TODO:
3636 * - split compressed inline extents. annoying: we need to
3637 * decompress into destination's address_space (the file offset
3638 * may change, so source mapping won't do), then recompress (or
3639 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003640 *
3641 * - split destination inode's inline extents. The inline extents can
3642 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003643 */
3644
Mark Fasheh32b7c682013-08-06 11:42:49 -07003645 if (btrfs_root_readonly(root))
3646 return -EROFS;
3647
Zach Brown3db11b22015-11-10 16:53:32 -05003648 if (file_src->f_path.mnt != file->f_path.mnt ||
3649 src->i_sb != inode->i_sb)
3650 return -EXDEV;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003651
3652 /* don't make the dst file partly checksummed */
3653 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3654 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
Zach Brown3db11b22015-11-10 16:53:32 -05003655 return -EINVAL;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003656
Mark Fasheh32b7c682013-08-06 11:42:49 -07003657 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Zach Brown3db11b22015-11-10 16:53:32 -05003658 return -EISDIR;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003659
3660 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003661 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003662 } else {
Al Viro59551022016-01-22 15:40:57 -05003663 inode_lock(src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003664 }
3665
3666 /* determine range to clone */
3667 ret = -EINVAL;
3668 if (off + len > src->i_size || off + len < off)
3669 goto out_unlock;
3670 if (len == 0)
3671 olen = len = src->i_size - off;
3672 /* if we extend to eof, continue to block boundary */
3673 if (off + len == src->i_size)
3674 len = ALIGN(src->i_size, bs) - off;
3675
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003676 if (len == 0) {
3677 ret = 0;
3678 goto out_unlock;
3679 }
3680
Mark Fasheh32b7c682013-08-06 11:42:49 -07003681 /* verify the end result is block aligned */
3682 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3683 !IS_ALIGNED(destoff, bs))
3684 goto out_unlock;
3685
3686 /* verify if ranges are overlapped within the same file */
3687 if (same_inode) {
3688 if (destoff + len > off && destoff < off + len)
3689 goto out_unlock;
3690 }
3691
3692 if (destoff > inode->i_size) {
3693 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3694 if (ret)
3695 goto out_unlock;
3696 }
3697
Filipe Mananac125b8b2014-05-23 05:03:34 +01003698 /*
3699 * Lock the target range too. Right after we replace the file extent
3700 * items in the fs tree (which now point to the cloned data), we might
3701 * have a worker replace them with extent items relative to a write
3702 * operation that was issued before this clone operation (i.e. confront
3703 * with inode.c:btrfs_finish_ordered_io).
3704 */
3705 if (same_inode) {
3706 u64 lock_start = min_t(u64, off, destoff);
3707 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003708
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003709 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003710 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003711 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3712 true);
3713 }
3714 ASSERT(ret == 0);
3715 if (WARN_ON(ret)) {
3716 /* ranges in the io trees already unlocked */
3717 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003718 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003719
Mark Fasheh1c919a52015-06-30 14:42:08 -07003720 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003721
Filipe Mananac125b8b2014-05-23 05:03:34 +01003722 if (same_inode) {
3723 u64 lock_start = min_t(u64, off, destoff);
3724 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3725
3726 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3727 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003728 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003729 }
3730 /*
3731 * Truncate page cache pages so that future reads will see the cloned
3732 * data immediately and not the previous data.
3733 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303734 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003735 round_down(destoff, PAGE_SIZE),
3736 round_up(destoff + len, PAGE_SIZE) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003737out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003738 if (!same_inode)
3739 btrfs_double_inode_unlock(src, inode);
3740 else
Al Viro59551022016-01-22 15:40:57 -05003741 inode_unlock(src);
Zach Brown3db11b22015-11-10 16:53:32 -05003742 return ret;
3743}
3744
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003745int btrfs_clone_file_range(struct file *src_file, loff_t off,
3746 struct file *dst_file, loff_t destoff, u64 len)
Zach Brown3db11b22015-11-10 16:53:32 -05003747{
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003748 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003749}
3750
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003751static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3752{
Al Viro496ad9a2013-01-23 17:07:38 -05003753 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003754 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003755 struct btrfs_root *root = BTRFS_I(inode)->root;
3756 struct btrfs_root *new_root;
3757 struct btrfs_dir_item *di;
3758 struct btrfs_trans_handle *trans;
3759 struct btrfs_path *path;
3760 struct btrfs_key location;
3761 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003762 u64 objectid = 0;
3763 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003764 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003765
3766 if (!capable(CAP_SYS_ADMIN))
3767 return -EPERM;
3768
Miao Xie3c04ce02012-11-26 08:43:07 +00003769 ret = mnt_want_write_file(file);
3770 if (ret)
3771 return ret;
3772
3773 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3774 ret = -EFAULT;
3775 goto out;
3776 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003777
3778 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303779 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003780
3781 location.objectid = objectid;
3782 location.type = BTRFS_ROOT_ITEM_KEY;
3783 location.offset = (u64)-1;
3784
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003785 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003786 if (IS_ERR(new_root)) {
3787 ret = PTR_ERR(new_root);
3788 goto out;
3789 }
satoru takeuchi6d6d2822017-09-12 22:42:52 +09003790 if (!is_fstree(new_root->objectid)) {
3791 ret = -ENOENT;
3792 goto out;
3793 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003794
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003795 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003796 if (!path) {
3797 ret = -ENOMEM;
3798 goto out;
3799 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003800 path->leave_spinning = 1;
3801
3802 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003803 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003804 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003805 ret = PTR_ERR(trans);
3806 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003807 }
3808
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003809 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3810 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003811 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003812 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003813 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003814 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003815 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003816 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003817 ret = -ENOENT;
3818 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003819 }
3820
3821 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3822 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3823 btrfs_mark_buffer_dirty(path->nodes[0]);
3824 btrfs_free_path(path);
3825
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003826 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003827 btrfs_end_transaction(trans);
Miao Xie3c04ce02012-11-26 08:43:07 +00003828out:
3829 mnt_drop_write_file(file);
3830 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003831}
3832
Su Yuec065f5b12018-04-02 17:24:11 +08003833static void get_block_group_info(struct list_head *groups_list,
3834 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003835{
3836 struct btrfs_block_group_cache *block_group;
3837
3838 space->total_bytes = 0;
3839 space->used_bytes = 0;
3840 space->flags = 0;
3841 list_for_each_entry(block_group, groups_list, list) {
3842 space->flags = block_group->flags;
3843 space->total_bytes += block_group->key.offset;
3844 space->used_bytes +=
3845 btrfs_block_group_used(&block_group->item);
3846 }
3847}
3848
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003849static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
3850 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003851{
3852 struct btrfs_ioctl_space_args space_args;
3853 struct btrfs_ioctl_space_info space;
3854 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003855 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003856 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003857 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01003858 static const u64 types[] = {
3859 BTRFS_BLOCK_GROUP_DATA,
3860 BTRFS_BLOCK_GROUP_SYSTEM,
3861 BTRFS_BLOCK_GROUP_METADATA,
3862 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
3863 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003864 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003865 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003866 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003867 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003868 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003869
3870 if (copy_from_user(&space_args,
3871 (struct btrfs_ioctl_space_args __user *)arg,
3872 sizeof(space_args)))
3873 return -EFAULT;
3874
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003875 for (i = 0; i < num_types; i++) {
3876 struct btrfs_space_info *tmp;
3877
3878 info = NULL;
3879 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003880 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003881 list) {
3882 if (tmp->flags == types[i]) {
3883 info = tmp;
3884 break;
3885 }
3886 }
3887 rcu_read_unlock();
3888
3889 if (!info)
3890 continue;
3891
3892 down_read(&info->groups_sem);
3893 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3894 if (!list_empty(&info->block_groups[c]))
3895 slot_count++;
3896 }
3897 up_read(&info->groups_sem);
3898 }
Josef Bacik1406e432010-01-13 18:19:06 +00003899
David Sterba36523e952014-02-07 14:34:12 +01003900 /*
3901 * Global block reserve, exported as a space_info
3902 */
3903 slot_count++;
3904
Chris Mason7fde62b2010-03-16 15:40:10 -04003905 /* space_slots == 0 means they are asking for a count */
3906 if (space_args.space_slots == 0) {
3907 space_args.total_spaces = slot_count;
3908 goto out;
3909 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003910
Dan Rosenberg51788b12011-02-14 16:04:23 -05003911 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003912
Chris Mason7fde62b2010-03-16 15:40:10 -04003913 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003914
Chris Mason7fde62b2010-03-16 15:40:10 -04003915 /* we generally have at most 6 or so space infos, one for each raid
3916 * level. So, a whole page should be more than enough for everyone
3917 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003918 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04003919 return -ENOMEM;
3920
3921 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01003922 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04003923 if (!dest)
3924 return -ENOMEM;
3925 dest_orig = dest;
3926
3927 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003928 for (i = 0; i < num_types; i++) {
3929 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003930
Dan Rosenberg51788b12011-02-14 16:04:23 -05003931 if (!slot_count)
3932 break;
3933
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003934 info = NULL;
3935 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003936 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003937 list) {
3938 if (tmp->flags == types[i]) {
3939 info = tmp;
3940 break;
3941 }
3942 }
3943 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003944
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003945 if (!info)
3946 continue;
3947 down_read(&info->groups_sem);
3948 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3949 if (!list_empty(&info->block_groups[c])) {
Su Yuec065f5b12018-04-02 17:24:11 +08003950 get_block_group_info(&info->block_groups[c],
3951 &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003952 memcpy(dest, &space, sizeof(space));
3953 dest++;
3954 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003955 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003956 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003957 if (!slot_count)
3958 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003959 }
3960 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003961 }
Josef Bacik1406e432010-01-13 18:19:06 +00003962
David Sterba36523e952014-02-07 14:34:12 +01003963 /*
3964 * Add global block reserve
3965 */
3966 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003967 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01003968
3969 spin_lock(&block_rsv->lock);
3970 space.total_bytes = block_rsv->size;
3971 space.used_bytes = block_rsv->size - block_rsv->reserved;
3972 spin_unlock(&block_rsv->lock);
3973 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3974 memcpy(dest, &space, sizeof(space));
3975 space_args.total_spaces++;
3976 }
3977
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003978 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003979 (arg + sizeof(struct btrfs_ioctl_space_args));
3980
3981 if (copy_to_user(user_dest, dest_orig, alloc_size))
3982 ret = -EFAULT;
3983
3984 kfree(dest_orig);
3985out:
3986 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003987 ret = -EFAULT;
3988
3989 return ret;
3990}
3991
Miao Xie9a8c28b2012-11-26 08:40:43 +00003992static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3993 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003994{
Sage Weil46204592010-10-29 15:41:32 -04003995 struct btrfs_trans_handle *trans;
3996 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003997 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003998
Miao Xied4edf392013-02-20 09:17:06 +00003999 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004000 if (IS_ERR(trans)) {
4001 if (PTR_ERR(trans) != -ENOENT)
4002 return PTR_ERR(trans);
4003
4004 /* No running transaction, don't bother */
4005 transid = root->fs_info->last_trans_committed;
4006 goto out;
4007 }
Sage Weil46204592010-10-29 15:41:32 -04004008 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004009 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004010 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004011 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004012 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004013 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004014out:
Sage Weil46204592010-10-29 15:41:32 -04004015 if (argp)
4016 if (copy_to_user(argp, &transid, sizeof(transid)))
4017 return -EFAULT;
4018 return 0;
4019}
4020
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004021static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00004022 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004023{
Sage Weil46204592010-10-29 15:41:32 -04004024 u64 transid;
4025
4026 if (argp) {
4027 if (copy_from_user(&transid, argp, sizeof(transid)))
4028 return -EFAULT;
4029 } else {
4030 transid = 0; /* current trans */
4031 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004032 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04004033}
4034
Miao Xieb8e95482012-11-26 08:48:01 +00004035static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004036{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004037 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01004038 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004039 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004040
4041 if (!capable(CAP_SYS_ADMIN))
4042 return -EPERM;
4043
4044 sa = memdup_user(arg, sizeof(*sa));
4045 if (IS_ERR(sa))
4046 return PTR_ERR(sa);
4047
Miao Xieb8e95482012-11-26 08:48:01 +00004048 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4049 ret = mnt_want_write_file(file);
4050 if (ret)
4051 goto out;
4052 }
4053
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004054 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004055 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4056 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004057
4058 if (copy_to_user(arg, sa, sizeof(*sa)))
4059 ret = -EFAULT;
4060
Miao Xieb8e95482012-11-26 08:48:01 +00004061 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4062 mnt_drop_write_file(file);
4063out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004064 kfree(sa);
4065 return ret;
4066}
4067
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004068static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01004069{
4070 if (!capable(CAP_SYS_ADMIN))
4071 return -EPERM;
4072
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004073 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004074}
4075
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004076static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01004077 void __user *arg)
4078{
4079 struct btrfs_ioctl_scrub_args *sa;
4080 int ret;
4081
4082 if (!capable(CAP_SYS_ADMIN))
4083 return -EPERM;
4084
4085 sa = memdup_user(arg, sizeof(*sa));
4086 if (IS_ERR(sa))
4087 return PTR_ERR(sa);
4088
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004089 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01004090
4091 if (copy_to_user(arg, sa, sizeof(*sa)))
4092 ret = -EFAULT;
4093
4094 kfree(sa);
4095 return ret;
4096}
4097
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004098static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06004099 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004100{
4101 struct btrfs_ioctl_get_dev_stats *sa;
4102 int ret;
4103
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004104 sa = memdup_user(arg, sizeof(*sa));
4105 if (IS_ERR(sa))
4106 return PTR_ERR(sa);
4107
David Sterbab27f7c02012-06-22 06:30:39 -06004108 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4109 kfree(sa);
4110 return -EPERM;
4111 }
4112
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004113 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004114
4115 if (copy_to_user(arg, sa, sizeof(*sa)))
4116 ret = -EFAULT;
4117
4118 kfree(sa);
4119 return ret;
4120}
4121
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004122static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4123 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004124{
4125 struct btrfs_ioctl_dev_replace_args *p;
4126 int ret;
4127
4128 if (!capable(CAP_SYS_ADMIN))
4129 return -EPERM;
4130
4131 p = memdup_user(arg, sizeof(*p));
4132 if (IS_ERR(p))
4133 return PTR_ERR(p);
4134
4135 switch (p->cmd) {
4136 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01004137 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004138 ret = -EROFS;
4139 goto out;
4140 }
David Sterba171938e2017-03-28 14:44:21 +02004141 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004142 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004143 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004144 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
David Sterba171938e2017-03-28 14:44:21 +02004145 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004146 }
4147 break;
4148 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004149 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004150 ret = 0;
4151 break;
4152 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Anand Jain17d202b2018-02-12 23:33:30 +08004153 p->result = btrfs_dev_replace_cancel(fs_info);
Anand Jain97282032018-02-12 23:33:29 +08004154 ret = 0;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004155 break;
4156 default:
4157 ret = -EINVAL;
4158 break;
4159 }
4160
4161 if (copy_to_user(arg, p, sizeof(*p)))
4162 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004163out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004164 kfree(p);
4165 return ret;
4166}
4167
Jan Schmidtd7728c92011-07-07 16:48:38 +02004168static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4169{
4170 int ret = 0;
4171 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004172 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004173 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004174 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004175 struct inode_fs_paths *ipath = NULL;
4176 struct btrfs_path *path;
4177
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004178 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004179 return -EPERM;
4180
4181 path = btrfs_alloc_path();
4182 if (!path) {
4183 ret = -ENOMEM;
4184 goto out;
4185 }
4186
4187 ipa = memdup_user(arg, sizeof(*ipa));
4188 if (IS_ERR(ipa)) {
4189 ret = PTR_ERR(ipa);
4190 ipa = NULL;
4191 goto out;
4192 }
4193
4194 size = min_t(u32, ipa->size, 4096);
4195 ipath = init_ipath(size, root, path);
4196 if (IS_ERR(ipath)) {
4197 ret = PTR_ERR(ipath);
4198 ipath = NULL;
4199 goto out;
4200 }
4201
4202 ret = paths_from_inode(ipa->inum, ipath);
4203 if (ret < 0)
4204 goto out;
4205
4206 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004207 rel_ptr = ipath->fspath->val[i] -
4208 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004209 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004210 }
4211
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004212 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
4213 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004214 if (ret) {
4215 ret = -EFAULT;
4216 goto out;
4217 }
4218
4219out:
4220 btrfs_free_path(path);
4221 free_ipath(ipath);
4222 kfree(ipa);
4223
4224 return ret;
4225}
4226
4227static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4228{
4229 struct btrfs_data_container *inodes = ctx;
4230 const size_t c = 3 * sizeof(u64);
4231
4232 if (inodes->bytes_left >= c) {
4233 inodes->bytes_left -= c;
4234 inodes->val[inodes->elem_cnt] = inum;
4235 inodes->val[inodes->elem_cnt + 1] = offset;
4236 inodes->val[inodes->elem_cnt + 2] = root;
4237 inodes->elem_cnt += 3;
4238 } else {
4239 inodes->bytes_missing += c - inodes->bytes_left;
4240 inodes->bytes_left = 0;
4241 inodes->elem_missed += 3;
4242 }
4243
4244 return 0;
4245}
4246
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004247static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004248 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004249{
4250 int ret = 0;
4251 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004252 struct btrfs_ioctl_logical_ino_args *loi;
4253 struct btrfs_data_container *inodes = NULL;
4254 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004255 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004256
4257 if (!capable(CAP_SYS_ADMIN))
4258 return -EPERM;
4259
4260 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304261 if (IS_ERR(loi))
4262 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004263
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004264 if (version == 1) {
4265 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004266 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004267 } else {
4268 /* All reserved bits must be 0 for now */
4269 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
4270 ret = -EINVAL;
4271 goto out_loi;
4272 }
4273 /* Only accept flags we have defined so far */
4274 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
4275 ret = -EINVAL;
4276 goto out_loi;
4277 }
4278 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004279 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004280 }
4281
Jan Schmidtd7728c92011-07-07 16:48:38 +02004282 path = btrfs_alloc_path();
4283 if (!path) {
4284 ret = -ENOMEM;
4285 goto out;
4286 }
4287
Jan Schmidtd7728c92011-07-07 16:48:38 +02004288 inodes = init_data_container(size);
4289 if (IS_ERR(inodes)) {
4290 ret = PTR_ERR(inodes);
4291 inodes = NULL;
4292 goto out;
4293 }
4294
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004295 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004296 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06004297 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004298 ret = -ENOENT;
4299 if (ret < 0)
4300 goto out;
4301
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004302 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4303 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004304 if (ret)
4305 ret = -EFAULT;
4306
4307out:
4308 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004309 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004310out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02004311 kfree(loi);
4312
4313 return ret;
4314}
4315
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004316void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004317 struct btrfs_ioctl_balance_args *bargs)
4318{
4319 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4320
4321 bargs->flags = bctl->flags;
4322
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004323 if (atomic_read(&fs_info->balance_running))
4324 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4325 if (atomic_read(&fs_info->balance_pause_req))
4326 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004327 if (atomic_read(&fs_info->balance_cancel_req))
4328 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004329
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004330 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4331 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4332 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004333
4334 if (lock) {
4335 spin_lock(&fs_info->balance_lock);
4336 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4337 spin_unlock(&fs_info->balance_lock);
4338 } else {
4339 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4340 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004341}
4342
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004343static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004344{
Al Viro496ad9a2013-01-23 17:07:38 -05004345 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004346 struct btrfs_fs_info *fs_info = root->fs_info;
4347 struct btrfs_ioctl_balance_args *bargs;
4348 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004349 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004350 int ret;
4351
4352 if (!capable(CAP_SYS_ADMIN))
4353 return -EPERM;
4354
Liu Boe54bfa312012-06-29 03:58:48 -06004355 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004356 if (ret)
4357 return ret;
4358
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004359again:
David Sterba171938e2017-03-28 14:44:21 +02004360 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004361 mutex_lock(&fs_info->volume_mutex);
4362 mutex_lock(&fs_info->balance_mutex);
4363 need_unlock = true;
4364 goto locked;
4365 }
4366
4367 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004368 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004369 * (1) some other op is running
4370 * (2) balance is running
4371 * (3) balance is paused -- special case (think resume)
4372 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004373 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004374 if (fs_info->balance_ctl) {
4375 /* this is either (2) or (3) */
4376 if (!atomic_read(&fs_info->balance_running)) {
4377 mutex_unlock(&fs_info->balance_mutex);
4378 if (!mutex_trylock(&fs_info->volume_mutex))
4379 goto again;
4380 mutex_lock(&fs_info->balance_mutex);
4381
4382 if (fs_info->balance_ctl &&
4383 !atomic_read(&fs_info->balance_running)) {
4384 /* this is (3) */
4385 need_unlock = false;
4386 goto locked;
4387 }
4388
4389 mutex_unlock(&fs_info->balance_mutex);
4390 mutex_unlock(&fs_info->volume_mutex);
4391 goto again;
4392 } else {
4393 /* this is (2) */
4394 mutex_unlock(&fs_info->balance_mutex);
4395 ret = -EINPROGRESS;
4396 goto out;
4397 }
4398 } else {
4399 /* this is (1) */
4400 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004401 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004402 goto out;
4403 }
4404
4405locked:
David Sterba171938e2017-03-28 14:44:21 +02004406 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004407
4408 if (arg) {
4409 bargs = memdup_user(arg, sizeof(*bargs));
4410 if (IS_ERR(bargs)) {
4411 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004412 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004413 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004414
4415 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4416 if (!fs_info->balance_ctl) {
4417 ret = -ENOTCONN;
4418 goto out_bargs;
4419 }
4420
4421 bctl = fs_info->balance_ctl;
4422 spin_lock(&fs_info->balance_lock);
4423 bctl->flags |= BTRFS_BALANCE_RESUME;
4424 spin_unlock(&fs_info->balance_lock);
4425
4426 goto do_balance;
4427 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004428 } else {
4429 bargs = NULL;
4430 }
4431
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004432 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004433 ret = -EINPROGRESS;
4434 goto out_bargs;
4435 }
4436
David Sterba8d2db782015-11-04 15:38:29 +01004437 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004438 if (!bctl) {
4439 ret = -ENOMEM;
4440 goto out_bargs;
4441 }
4442
4443 bctl->fs_info = fs_info;
4444 if (arg) {
4445 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4446 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4447 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4448
4449 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004450 } else {
4451 /* balance everything - no filters */
4452 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004453 }
4454
David Sterba8eb93452015-10-12 16:55:54 +02004455 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4456 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004457 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004458 }
4459
Ilya Dryomovde322262012-01-16 22:04:49 +02004460do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004461 /*
David Sterba171938e2017-03-28 14:44:21 +02004462 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004463 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4464 * or, if restriper was paused all the way until unmount, in
David Sterbaa17c95d2018-03-20 17:28:05 +01004465 * free_fs_info. The flag should be cleared after __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004466 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004467 need_unlock = false;
4468
4469 ret = btrfs_balance(bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004470 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004471
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004472 if (arg) {
4473 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4474 ret = -EFAULT;
4475 }
4476
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004477out_bctl:
4478 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004479out_bargs:
4480 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004481out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004482 mutex_unlock(&fs_info->balance_mutex);
4483 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004484 if (need_unlock)
David Sterba171938e2017-03-28 14:44:21 +02004485 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004486out:
Liu Boe54bfa312012-06-29 03:58:48 -06004487 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004488 return ret;
4489}
4490
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004491static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004492{
4493 if (!capable(CAP_SYS_ADMIN))
4494 return -EPERM;
4495
4496 switch (cmd) {
4497 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004498 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004499 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004500 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004501 }
4502
4503 return -EINVAL;
4504}
4505
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004506static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004507 void __user *arg)
4508{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004509 struct btrfs_ioctl_balance_args *bargs;
4510 int ret = 0;
4511
4512 if (!capable(CAP_SYS_ADMIN))
4513 return -EPERM;
4514
4515 mutex_lock(&fs_info->balance_mutex);
4516 if (!fs_info->balance_ctl) {
4517 ret = -ENOTCONN;
4518 goto out;
4519 }
4520
David Sterba8d2db782015-11-04 15:38:29 +01004521 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004522 if (!bargs) {
4523 ret = -ENOMEM;
4524 goto out;
4525 }
4526
4527 update_ioctl_balance_args(fs_info, 1, bargs);
4528
4529 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4530 ret = -EFAULT;
4531
4532 kfree(bargs);
4533out:
4534 mutex_unlock(&fs_info->balance_mutex);
4535 return ret;
4536}
4537
Miao Xie905b0dd2012-11-26 08:50:11 +00004538static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004539{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004540 struct inode *inode = file_inode(file);
4541 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004542 struct btrfs_ioctl_quota_ctl_args *sa;
4543 struct btrfs_trans_handle *trans = NULL;
4544 int ret;
4545 int err;
4546
4547 if (!capable(CAP_SYS_ADMIN))
4548 return -EPERM;
4549
Miao Xie905b0dd2012-11-26 08:50:11 +00004550 ret = mnt_want_write_file(file);
4551 if (ret)
4552 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004553
4554 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004555 if (IS_ERR(sa)) {
4556 ret = PTR_ERR(sa);
4557 goto drop_write;
4558 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004559
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004560 down_write(&fs_info->subvol_sem);
4561 trans = btrfs_start_transaction(fs_info->tree_root, 2);
Jan Schmidt2f232032013-04-25 16:04:51 +00004562 if (IS_ERR(trans)) {
4563 ret = PTR_ERR(trans);
4564 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004565 }
4566
4567 switch (sa->cmd) {
4568 case BTRFS_QUOTA_CTL_ENABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004569 ret = btrfs_quota_enable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004570 break;
4571 case BTRFS_QUOTA_CTL_DISABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004572 ret = btrfs_quota_disable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004573 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004574 default:
4575 ret = -EINVAL;
4576 break;
4577 }
4578
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004579 err = btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00004580 if (err && !ret)
4581 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004582out:
4583 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004584 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004585drop_write:
4586 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004587 return ret;
4588}
4589
Miao Xie905b0dd2012-11-26 08:50:11 +00004590static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004591{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004592 struct inode *inode = file_inode(file);
4593 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4594 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004595 struct btrfs_ioctl_qgroup_assign_args *sa;
4596 struct btrfs_trans_handle *trans;
4597 int ret;
4598 int err;
4599
4600 if (!capable(CAP_SYS_ADMIN))
4601 return -EPERM;
4602
Miao Xie905b0dd2012-11-26 08:50:11 +00004603 ret = mnt_want_write_file(file);
4604 if (ret)
4605 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004606
4607 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004608 if (IS_ERR(sa)) {
4609 ret = PTR_ERR(sa);
4610 goto drop_write;
4611 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004612
4613 trans = btrfs_join_transaction(root);
4614 if (IS_ERR(trans)) {
4615 ret = PTR_ERR(trans);
4616 goto out;
4617 }
4618
Arne Jansen5d13a372011-09-14 15:53:51 +02004619 if (sa->assign) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004620 ret = btrfs_add_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004621 sa->src, sa->dst);
4622 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004623 ret = btrfs_del_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004624 sa->src, sa->dst);
4625 }
4626
Qu Wenruoe082f562015-02-27 16:24:28 +08004627 /* update qgroup status and info */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004628 err = btrfs_run_qgroups(trans, fs_info);
Qu Wenruoe082f562015-02-27 16:24:28 +08004629 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004630 btrfs_handle_fs_error(fs_info, err,
4631 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004632 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004633 if (err && !ret)
4634 ret = err;
4635
4636out:
4637 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004638drop_write:
4639 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004640 return ret;
4641}
4642
Miao Xie905b0dd2012-11-26 08:50:11 +00004643static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004644{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004645 struct inode *inode = file_inode(file);
4646 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4647 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004648 struct btrfs_ioctl_qgroup_create_args *sa;
4649 struct btrfs_trans_handle *trans;
4650 int ret;
4651 int err;
4652
4653 if (!capable(CAP_SYS_ADMIN))
4654 return -EPERM;
4655
Miao Xie905b0dd2012-11-26 08:50:11 +00004656 ret = mnt_want_write_file(file);
4657 if (ret)
4658 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004659
4660 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004661 if (IS_ERR(sa)) {
4662 ret = PTR_ERR(sa);
4663 goto drop_write;
4664 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004665
Miao Xied86e56c2012-11-15 11:35:41 +00004666 if (!sa->qgroupid) {
4667 ret = -EINVAL;
4668 goto out;
4669 }
4670
Arne Jansen5d13a372011-09-14 15:53:51 +02004671 trans = btrfs_join_transaction(root);
4672 if (IS_ERR(trans)) {
4673 ret = PTR_ERR(trans);
4674 goto out;
4675 }
4676
Arne Jansen5d13a372011-09-14 15:53:51 +02004677 if (sa->create) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004678 ret = btrfs_create_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004679 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004680 ret = btrfs_remove_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004681 }
4682
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004683 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004684 if (err && !ret)
4685 ret = err;
4686
4687out:
4688 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004689drop_write:
4690 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004691 return ret;
4692}
4693
Miao Xie905b0dd2012-11-26 08:50:11 +00004694static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004695{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004696 struct inode *inode = file_inode(file);
4697 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4698 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004699 struct btrfs_ioctl_qgroup_limit_args *sa;
4700 struct btrfs_trans_handle *trans;
4701 int ret;
4702 int err;
4703 u64 qgroupid;
4704
4705 if (!capable(CAP_SYS_ADMIN))
4706 return -EPERM;
4707
Miao Xie905b0dd2012-11-26 08:50:11 +00004708 ret = mnt_want_write_file(file);
4709 if (ret)
4710 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004711
4712 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004713 if (IS_ERR(sa)) {
4714 ret = PTR_ERR(sa);
4715 goto drop_write;
4716 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004717
4718 trans = btrfs_join_transaction(root);
4719 if (IS_ERR(trans)) {
4720 ret = PTR_ERR(trans);
4721 goto out;
4722 }
4723
4724 qgroupid = sa->qgroupid;
4725 if (!qgroupid) {
4726 /* take the current subvol as qgroup */
4727 qgroupid = root->root_key.objectid;
4728 }
4729
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004730 ret = btrfs_limit_qgroup(trans, fs_info, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004731
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004732 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004733 if (err && !ret)
4734 ret = err;
4735
4736out:
4737 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004738drop_write:
4739 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004740 return ret;
4741}
4742
Jan Schmidt2f232032013-04-25 16:04:51 +00004743static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4744{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004745 struct inode *inode = file_inode(file);
4746 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004747 struct btrfs_ioctl_quota_rescan_args *qsa;
4748 int ret;
4749
4750 if (!capable(CAP_SYS_ADMIN))
4751 return -EPERM;
4752
4753 ret = mnt_want_write_file(file);
4754 if (ret)
4755 return ret;
4756
4757 qsa = memdup_user(arg, sizeof(*qsa));
4758 if (IS_ERR(qsa)) {
4759 ret = PTR_ERR(qsa);
4760 goto drop_write;
4761 }
4762
4763 if (qsa->flags) {
4764 ret = -EINVAL;
4765 goto out;
4766 }
4767
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004768 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00004769
4770out:
4771 kfree(qsa);
4772drop_write:
4773 mnt_drop_write_file(file);
4774 return ret;
4775}
4776
4777static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4778{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004779 struct inode *inode = file_inode(file);
4780 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004781 struct btrfs_ioctl_quota_rescan_args *qsa;
4782 int ret = 0;
4783
4784 if (!capable(CAP_SYS_ADMIN))
4785 return -EPERM;
4786
David Sterba8d2db782015-11-04 15:38:29 +01004787 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00004788 if (!qsa)
4789 return -ENOMEM;
4790
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004791 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00004792 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004793 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00004794 }
4795
4796 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4797 ret = -EFAULT;
4798
4799 kfree(qsa);
4800 return ret;
4801}
4802
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004803static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4804{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004805 struct inode *inode = file_inode(file);
4806 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004807
4808 if (!capable(CAP_SYS_ADMIN))
4809 return -EPERM;
4810
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004811 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004812}
4813
Hugo Millsabccd002014-01-30 20:17:00 +00004814static long _btrfs_ioctl_set_received_subvol(struct file *file,
4815 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004816{
Al Viro496ad9a2013-01-23 17:07:38 -05004817 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004818 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02004819 struct btrfs_root *root = BTRFS_I(inode)->root;
4820 struct btrfs_root_item *root_item = &root->root_item;
4821 struct btrfs_trans_handle *trans;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004822 struct timespec ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02004823 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004824 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004825
David Sterbabd60ea02014-01-16 15:50:22 +01004826 if (!inode_owner_or_capable(inode))
4827 return -EPERM;
4828
Alexander Block8ea05e32012-07-25 17:35:53 +02004829 ret = mnt_want_write_file(file);
4830 if (ret < 0)
4831 return ret;
4832
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004833 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02004834
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004835 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02004836 ret = -EINVAL;
4837 goto out;
4838 }
4839
4840 if (btrfs_root_readonly(root)) {
4841 ret = -EROFS;
4842 goto out;
4843 }
4844
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004845 /*
4846 * 1 - root item
4847 * 2 - uuid items (received uuid + subvol uuid)
4848 */
4849 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004850 if (IS_ERR(trans)) {
4851 ret = PTR_ERR(trans);
4852 trans = NULL;
4853 goto out;
4854 }
4855
4856 sa->rtransid = trans->transid;
4857 sa->rtime.sec = ct.tv_sec;
4858 sa->rtime.nsec = ct.tv_nsec;
4859
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004860 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4861 BTRFS_UUID_SIZE);
4862 if (received_uuid_changed &&
Nikolay Borisovd87ff752018-03-12 14:48:09 +02004863 !btrfs_is_empty_uuid(root_item->received_uuid)) {
4864 ret = btrfs_uuid_tree_rem(trans, fs_info,
4865 root_item->received_uuid,
4866 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4867 root->root_key.objectid);
4868 if (ret && ret != -ENOENT) {
4869 btrfs_abort_transaction(trans, ret);
4870 btrfs_end_transaction(trans);
4871 goto out;
4872 }
4873 }
Alexander Block8ea05e32012-07-25 17:35:53 +02004874 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4875 btrfs_set_root_stransid(root_item, sa->stransid);
4876 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004877 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4878 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4879 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4880 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004881
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004882 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02004883 &root->root_key, &root->root_item);
4884 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004885 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004886 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004887 }
4888 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004889 ret = btrfs_uuid_tree_add(trans, fs_info, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004890 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4891 root->root_key.objectid);
4892 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004893 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03004894 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004895 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004896 }
4897 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004898 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00004899out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004900 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00004901 mnt_drop_write_file(file);
4902 return ret;
4903}
4904
4905#ifdef CONFIG_64BIT
4906static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4907 void __user *arg)
4908{
4909 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4910 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4911 int ret = 0;
4912
4913 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304914 if (IS_ERR(args32))
4915 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00004916
David Sterba8d2db782015-11-04 15:38:29 +01004917 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004918 if (!args64) {
4919 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004920 goto out;
4921 }
4922
4923 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4924 args64->stransid = args32->stransid;
4925 args64->rtransid = args32->rtransid;
4926 args64->stime.sec = args32->stime.sec;
4927 args64->stime.nsec = args32->stime.nsec;
4928 args64->rtime.sec = args32->rtime.sec;
4929 args64->rtime.nsec = args32->rtime.nsec;
4930 args64->flags = args32->flags;
4931
4932 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4933 if (ret)
4934 goto out;
4935
4936 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4937 args32->stransid = args64->stransid;
4938 args32->rtransid = args64->rtransid;
4939 args32->stime.sec = args64->stime.sec;
4940 args32->stime.nsec = args64->stime.nsec;
4941 args32->rtime.sec = args64->rtime.sec;
4942 args32->rtime.nsec = args64->rtime.nsec;
4943 args32->flags = args64->flags;
4944
4945 ret = copy_to_user(arg, args32, sizeof(*args32));
4946 if (ret)
4947 ret = -EFAULT;
4948
4949out:
4950 kfree(args32);
4951 kfree(args64);
4952 return ret;
4953}
4954#endif
4955
4956static long btrfs_ioctl_set_received_subvol(struct file *file,
4957 void __user *arg)
4958{
4959 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4960 int ret = 0;
4961
4962 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304963 if (IS_ERR(sa))
4964 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00004965
4966 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4967
4968 if (ret)
4969 goto out;
4970
Alexander Block8ea05e32012-07-25 17:35:53 +02004971 ret = copy_to_user(arg, sa, sizeof(*sa));
4972 if (ret)
4973 ret = -EFAULT;
4974
4975out:
4976 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004977 return ret;
4978}
4979
jeff.liu867ab662013-01-05 02:48:01 +00004980static int btrfs_ioctl_get_fslabel(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);
Anand Jaina1b83ac2013-07-19 17:39:32 +08004984 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004985 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004986 char label[BTRFS_LABEL_SIZE];
4987
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004988 spin_lock(&fs_info->super_lock);
4989 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4990 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08004991
4992 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00004993
4994 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004995 btrfs_warn(fs_info,
4996 "label is too long, return the first %zu bytes",
4997 --len);
jeff.liu867ab662013-01-05 02:48:01 +00004998 }
4999
jeff.liu867ab662013-01-05 02:48:01 +00005000 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005001
5002 return ret ? -EFAULT : 0;
5003}
5004
jeff.liua8bfd4a2013-01-05 02:48:08 +00005005static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5006{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005007 struct inode *inode = file_inode(file);
5008 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5009 struct btrfs_root *root = BTRFS_I(inode)->root;
5010 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005011 struct btrfs_trans_handle *trans;
5012 char label[BTRFS_LABEL_SIZE];
5013 int ret;
5014
5015 if (!capable(CAP_SYS_ADMIN))
5016 return -EPERM;
5017
5018 if (copy_from_user(label, arg, sizeof(label)))
5019 return -EFAULT;
5020
5021 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005022 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005023 "unable to set label with more than %d bytes",
5024 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005025 return -EINVAL;
5026 }
5027
5028 ret = mnt_want_write_file(file);
5029 if (ret)
5030 return ret;
5031
jeff.liua8bfd4a2013-01-05 02:48:08 +00005032 trans = btrfs_start_transaction(root, 0);
5033 if (IS_ERR(trans)) {
5034 ret = PTR_ERR(trans);
5035 goto out_unlock;
5036 }
5037
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005038 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005039 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005040 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005041 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005042
5043out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005044 mnt_drop_write_file(file);
5045 return ret;
5046}
5047
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005048#define INIT_FEATURE_FLAGS(suffix) \
5049 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5050 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5051 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5052
David Sterbad5131b62016-02-17 15:26:27 +01005053int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005054{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005055 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005056 INIT_FEATURE_FLAGS(SUPP),
5057 INIT_FEATURE_FLAGS(SAFE_SET),
5058 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5059 };
5060
5061 if (copy_to_user(arg, &features, sizeof(features)))
5062 return -EFAULT;
5063
5064 return 0;
5065}
5066
5067static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5068{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005069 struct inode *inode = file_inode(file);
5070 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5071 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005072 struct btrfs_ioctl_feature_flags features;
5073
5074 features.compat_flags = btrfs_super_compat_flags(super_block);
5075 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5076 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5077
5078 if (copy_to_user(arg, &features, sizeof(features)))
5079 return -EFAULT;
5080
5081 return 0;
5082}
5083
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005084static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005085 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005086 u64 change_mask, u64 flags, u64 supported_flags,
5087 u64 safe_set, u64 safe_clear)
5088{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005089 const char *type = btrfs_feature_set_names[set];
5090 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005091 u64 disallowed, unsupported;
5092 u64 set_mask = flags & change_mask;
5093 u64 clear_mask = ~flags & change_mask;
5094
5095 unsupported = set_mask & ~supported_flags;
5096 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005097 names = btrfs_printable_features(set, unsupported);
5098 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005099 btrfs_warn(fs_info,
5100 "this kernel does not support the %s feature bit%s",
5101 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005102 kfree(names);
5103 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005104 btrfs_warn(fs_info,
5105 "this kernel does not support %s bits 0x%llx",
5106 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005107 return -EOPNOTSUPP;
5108 }
5109
5110 disallowed = set_mask & ~safe_set;
5111 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005112 names = btrfs_printable_features(set, disallowed);
5113 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005114 btrfs_warn(fs_info,
5115 "can't set the %s feature bit%s while mounted",
5116 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005117 kfree(names);
5118 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005119 btrfs_warn(fs_info,
5120 "can't set %s bits 0x%llx while mounted",
5121 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005122 return -EPERM;
5123 }
5124
5125 disallowed = clear_mask & ~safe_clear;
5126 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005127 names = btrfs_printable_features(set, disallowed);
5128 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005129 btrfs_warn(fs_info,
5130 "can't clear the %s feature bit%s while mounted",
5131 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005132 kfree(names);
5133 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005134 btrfs_warn(fs_info,
5135 "can't clear %s bits 0x%llx while mounted",
5136 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005137 return -EPERM;
5138 }
5139
5140 return 0;
5141}
5142
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005143#define check_feature(fs_info, change_mask, flags, mask_base) \
5144check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005145 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5146 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5147 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5148
5149static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5150{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005151 struct inode *inode = file_inode(file);
5152 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5153 struct btrfs_root *root = BTRFS_I(inode)->root;
5154 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005155 struct btrfs_ioctl_feature_flags flags[2];
5156 struct btrfs_trans_handle *trans;
5157 u64 newflags;
5158 int ret;
5159
5160 if (!capable(CAP_SYS_ADMIN))
5161 return -EPERM;
5162
5163 if (copy_from_user(flags, arg, sizeof(flags)))
5164 return -EFAULT;
5165
5166 /* Nothing to do */
5167 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5168 !flags[0].incompat_flags)
5169 return 0;
5170
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005171 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005172 flags[1].compat_flags, COMPAT);
5173 if (ret)
5174 return ret;
5175
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005176 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005177 flags[1].compat_ro_flags, COMPAT_RO);
5178 if (ret)
5179 return ret;
5180
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005181 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005182 flags[1].incompat_flags, INCOMPAT);
5183 if (ret)
5184 return ret;
5185
David Sterba7ab19622016-05-04 11:32:00 +02005186 ret = mnt_want_write_file(file);
5187 if (ret)
5188 return ret;
5189
David Sterba8051aa12014-02-07 14:34:04 +01005190 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005191 if (IS_ERR(trans)) {
5192 ret = PTR_ERR(trans);
5193 goto out_drop_write;
5194 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005195
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005196 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005197 newflags = btrfs_super_compat_flags(super_block);
5198 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5199 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5200 btrfs_set_super_compat_flags(super_block, newflags);
5201
5202 newflags = btrfs_super_compat_ro_flags(super_block);
5203 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5204 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5205 btrfs_set_super_compat_ro_flags(super_block, newflags);
5206
5207 newflags = btrfs_super_incompat_flags(super_block);
5208 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5209 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5210 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005211 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005212
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005213 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02005214out_drop_write:
5215 mnt_drop_write_file(file);
5216
5217 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005218}
5219
Josef Bacik2351f432017-09-27 10:43:13 -04005220static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
5221{
5222 struct btrfs_ioctl_send_args *arg;
5223 int ret;
5224
5225 if (compat) {
5226#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5227 struct btrfs_ioctl_send_args_32 args32;
5228
5229 ret = copy_from_user(&args32, argp, sizeof(args32));
5230 if (ret)
5231 return -EFAULT;
5232 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
5233 if (!arg)
5234 return -ENOMEM;
5235 arg->send_fd = args32.send_fd;
5236 arg->clone_sources_count = args32.clone_sources_count;
5237 arg->clone_sources = compat_ptr(args32.clone_sources);
5238 arg->parent_root = args32.parent_root;
5239 arg->flags = args32.flags;
5240 memcpy(arg->reserved, args32.reserved,
5241 sizeof(args32.reserved));
5242#else
5243 return -ENOTTY;
5244#endif
5245 } else {
5246 arg = memdup_user(argp, sizeof(*arg));
5247 if (IS_ERR(arg))
5248 return PTR_ERR(arg);
5249 }
5250 ret = btrfs_ioctl_send(file, arg);
5251 kfree(arg);
5252 return ret;
5253}
5254
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005255long btrfs_ioctl(struct file *file, unsigned int
5256 cmd, unsigned long arg)
5257{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005258 struct inode *inode = file_inode(file);
5259 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5260 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005261 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005262
5263 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005264 case FS_IOC_GETFLAGS:
5265 return btrfs_ioctl_getflags(file, argp);
5266 case FS_IOC_SETFLAGS:
5267 return btrfs_ioctl_setflags(file, argp);
5268 case FS_IOC_GETVERSION:
5269 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005270 case FITRIM:
5271 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005272 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005273 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005274 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005275 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005276 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005277 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005278 case BTRFS_IOC_SUBVOL_CREATE_V2:
5279 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005280 case BTRFS_IOC_SNAP_DESTROY:
5281 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005282 case BTRFS_IOC_SUBVOL_GETFLAGS:
5283 return btrfs_ioctl_subvol_getflags(file, argp);
5284 case BTRFS_IOC_SUBVOL_SETFLAGS:
5285 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005286 case BTRFS_IOC_DEFAULT_SUBVOL:
5287 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005288 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005289 return btrfs_ioctl_defrag(file, NULL);
5290 case BTRFS_IOC_DEFRAG_RANGE:
5291 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005292 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005293 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005294 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005295 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005296 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005297 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005298 case BTRFS_IOC_RM_DEV_V2:
5299 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005300 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005301 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005302 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005303 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005304 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005305 return btrfs_ioctl_balance(file, NULL);
Chris Masonac8e9812010-02-28 15:39:26 -05005306 case BTRFS_IOC_TREE_SEARCH:
5307 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005308 case BTRFS_IOC_TREE_SEARCH_V2:
5309 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005310 case BTRFS_IOC_INO_LOOKUP:
5311 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005312 case BTRFS_IOC_INO_PATHS:
5313 return btrfs_ioctl_ino_to_path(root, argp);
5314 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04005315 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
5316 case BTRFS_IOC_LOGICAL_INO_V2:
5317 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00005318 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005319 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005320 case BTRFS_IOC_SYNC: {
5321 int ret;
5322
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005323 ret = btrfs_start_delalloc_roots(fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005324 if (ret)
5325 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005326 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005327 /*
5328 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005329 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005330 * processing uncleaned subvols.
5331 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005332 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005333 return ret;
5334 }
Sage Weil46204592010-10-29 15:41:32 -04005335 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005336 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005337 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005338 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005339 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005340 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005341 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005342 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005343 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005344 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005345 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005346 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005347 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005348 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005349 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005350 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005351 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5352 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005353#ifdef CONFIG_64BIT
5354 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5355 return btrfs_ioctl_set_received_subvol_32(file, argp);
5356#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005357 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04005358 return _btrfs_ioctl_send(file, argp, false);
5359#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5360 case BTRFS_IOC_SEND_32:
5361 return _btrfs_ioctl_send(file, argp, true);
5362#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005363 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005364 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005365 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005366 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005367 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005368 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005369 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005370 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005371 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005372 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005373 case BTRFS_IOC_QUOTA_RESCAN:
5374 return btrfs_ioctl_quota_rescan(file, argp);
5375 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5376 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005377 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5378 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005379 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005380 return btrfs_ioctl_dev_replace(fs_info, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005381 case BTRFS_IOC_GET_FSLABEL:
5382 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005383 case BTRFS_IOC_SET_FSLABEL:
5384 return btrfs_ioctl_set_fslabel(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005385 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005386 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005387 case BTRFS_IOC_GET_FEATURES:
5388 return btrfs_ioctl_get_features(file, argp);
5389 case BTRFS_IOC_SET_FEATURES:
5390 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005391 }
5392
5393 return -ENOTTY;
5394}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005395
5396#ifdef CONFIG_COMPAT
5397long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5398{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005399 /*
5400 * These all access 32-bit values anyway so no further
5401 * handling is necessary.
5402 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005403 switch (cmd) {
5404 case FS_IOC32_GETFLAGS:
5405 cmd = FS_IOC_GETFLAGS;
5406 break;
5407 case FS_IOC32_SETFLAGS:
5408 cmd = FS_IOC_SETFLAGS;
5409 break;
5410 case FS_IOC32_GETVERSION:
5411 cmd = FS_IOC_GETVERSION;
5412 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005413 }
5414
5415 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5416}
5417#endif