blob: 47e7e2822c6088d1246186eb42b705f18f4f5b40 [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 */
David Sterba7b6a2212018-03-26 18:40:21 +0200139void btrfs_sync_inode_flags_to_i_flags(struct inode *inode)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200140{
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 Zefanf062abf2011-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 Zefanf062abf2011-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 Zefanf062abf2011-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 Zefanf062abf2011-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
David Sterba7b6a2212018-03-26 18:40:21 +0200320 btrfs_sync_inode_flags_to_i_flags(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 Zefanf062abf2011-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);
liubo2d4e6f62011-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
Nikolay Borisov76f32e22018-04-23 10:54:14 +0300643 ret = btrfs_start_delalloc_inodes(root);
Miao Xie6a038432013-05-15 07:48:24 +0000644 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100645 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000646
Chris Mason6374e57a2017-06-23 09:48:21 -0700647 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
Miao Xie6a038432013-05-15 07:48:24 +0000648
Miao Xie66d8f3d2012-09-06 04:02:28 -0600649 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
650 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000651 /*
652 * 1 - parent dir inode
653 * 2 - dir entries
654 * 1 - root item
655 * 2 - root ref/backref
656 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200657 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000658 */
659 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200660 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400661 &pending_snapshot->qgroup_reserved,
662 false);
Miao Xied5c12072013-02-28 10:04:33 +0000663 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100664 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000665
Yan, Zhenga22285a2010-05-16 10:48:46 -0400666 pending_snapshot->dentry = dentry;
667 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800668 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000669 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000670 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400671
Miao Xied5c12072013-02-28 10:04:33 +0000672 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400673 if (IS_ERR(trans)) {
674 ret = PTR_ERR(trans);
675 goto fail;
676 }
677
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400678 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400679 list_add(&pending_snapshot->list,
680 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400681 spin_unlock(&fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400682 if (async_transid) {
683 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400684 ret = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000685 if (ret)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400686 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400687 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400688 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400689 }
Miao Xieaec80302013-03-04 09:44:29 +0000690 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400691 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400692
693 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400694 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000695 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400696
Chris Masond3797302014-10-15 13:50:56 -0700697 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
698 if (ret)
699 goto fail;
700
David Howells2b0143b2015-03-17 22:25:59 +0000701 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000702 if (IS_ERR(inode)) {
703 ret = PTR_ERR(inode);
704 goto fail;
705 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900706
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000707 d_instantiate(dentry, inode);
708 ret = 0;
709fail:
David Sterba7775c812017-02-10 19:18:18 +0100710 btrfs_subvolume_release_metadata(fs_info, &pending_snapshot->block_rsv);
David Sterbaa1ee7362015-11-10 18:53:56 +0100711dec_and_free:
David Sterbaea14b57f2017-06-22 02:19:11 +0200712 if (atomic_dec_and_test(&root->will_be_snapshotted))
Peter Zijlstra46259562018-03-15 11:43:08 +0100713 wake_up_var(&root->will_be_snapshotted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100714free_pending:
715 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100716 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100717 kfree(pending_snapshot);
718
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400719 return ret;
720}
721
Sage Weil4260f7c2010-10-29 15:46:43 -0400722/* copy of may_delete in fs/namei.c()
723 * Check whether we can remove a link victim from directory dir, check
724 * whether the type of victim is right.
725 * 1. We can't do it if dir is read-only (done in permission())
726 * 2. We should have write and exec permissions on dir
727 * 3. We can't remove anything from append-only dir
728 * 4. We can't do anything with immutable dir (done in permission())
729 * 5. If the sticky bit on dir is set we should either
730 * a. be owner of dir, or
731 * b. be owner of victim, or
732 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400733 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400734 * links pointing to it.
735 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
736 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
737 * 9. We can't remove a root or mountpoint.
738 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
739 * nfs_async_unlink().
740 */
741
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530742static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400743{
744 int error;
745
David Howells2b0143b2015-03-17 22:25:59 +0000746 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400747 return -ENOENT;
748
David Howells2b0143b2015-03-17 22:25:59 +0000749 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400750 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400751
752 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
753 if (error)
754 return error;
755 if (IS_APPEND(dir))
756 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000757 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
758 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400759 return -EPERM;
760 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000761 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400762 return -ENOTDIR;
763 if (IS_ROOT(victim))
764 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000765 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400766 return -EISDIR;
767 if (IS_DEADDIR(dir))
768 return -ENOENT;
769 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
770 return -EBUSY;
771 return 0;
772}
773
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400774/* copy of may_create in fs/namei.c() */
775static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
776{
David Howells2b0143b2015-03-17 22:25:59 +0000777 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400778 return -EEXIST;
779 if (IS_DEADDIR(dir))
780 return -ENOENT;
781 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
782}
783
784/*
785 * Create a new subvolume below @parent. This is largely modeled after
786 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
787 * inside this filesystem so it's quite a bit simpler.
788 */
Al Viro92872092016-11-20 19:34:31 -0500789static noinline int btrfs_mksubvol(const struct path *parent,
David Sterba52f75f42017-02-14 18:33:53 +0100790 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400791 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200792 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000793 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400794{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400795 struct inode *dir = d_inode(parent->dentry);
796 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400797 struct dentry *dentry;
798 int error;
799
Al Viro00235412016-05-26 00:05:12 -0400800 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
801 if (error == -EINTR)
802 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400803
804 dentry = lookup_one_len(name, parent->dentry, namelen);
805 error = PTR_ERR(dentry);
806 if (IS_ERR(dentry))
807 goto out_unlock;
808
Yan, Zheng76dda932009-09-21 16:00:26 -0400809 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400810 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600811 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400812
Chris Mason9c520572012-12-17 14:26:57 -0500813 /*
814 * even if this name doesn't exist, we may get hash collisions.
815 * check for them now when we can safely fail
816 */
817 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
818 dir->i_ino, name,
819 namelen);
820 if (error)
821 goto out_dput;
822
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400823 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400824
825 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
826 goto out_up_read;
827
Chris Mason3de45862008-11-17 21:02:50 -0500828 if (snap_src) {
David Sterba61d7e4c2017-02-10 19:54:06 +0100829 error = create_snapshot(snap_src, dir, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200830 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500831 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000832 error = create_subvol(dir, dentry, name, namelen,
833 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500834 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400835 if (!error)
836 fsnotify_mkdir(dir, dentry);
837out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400838 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400839out_dput:
840 dput(dentry);
841out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500842 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400843 return error;
844}
845
Chris Mason4cb53002011-05-24 15:35:30 -0400846/*
847 * When we're defragging a range, we don't want to kick it off again
848 * if it is really just waiting for delalloc to send it down.
849 * If we find a nice big extent or delalloc range for the bytes in the
850 * file you want to defrag, we return 0 to let you know to skip this
851 * part of the file
852 */
David Sterbaaab110a2014-07-29 17:32:10 +0200853static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400854{
855 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
856 struct extent_map *em = NULL;
857 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
858 u64 end;
859
860 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300861 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -0400862 read_unlock(&em_tree->lock);
863
864 if (em) {
865 end = extent_map_end(em);
866 free_extent_map(em);
867 if (end - offset > thresh)
868 return 0;
869 }
870 /* if we already have a nice delalloc here, just stop */
871 thresh /= 2;
872 end = count_range_bits(io_tree, &offset, offset + thresh,
873 thresh, EXTENT_DELALLOC, 1);
874 if (end >= thresh)
875 return 0;
876 return 1;
877}
878
879/*
880 * helper function to walk through a file and find extents
881 * newer than a specific transid, and smaller than thresh.
882 *
883 * This is used by the defragging code to find new and small
884 * extents
885 */
886static int find_new_extents(struct btrfs_root *root,
887 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200888 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400889{
890 struct btrfs_path *path;
891 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400892 struct extent_buffer *leaf;
893 struct btrfs_file_extent_item *extent;
894 int type;
895 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200896 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -0400897
898 path = btrfs_alloc_path();
899 if (!path)
900 return -ENOMEM;
901
David Sterbaa4689d22011-05-31 17:08:14 +0000902 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400903 min_key.type = BTRFS_EXTENT_DATA_KEY;
904 min_key.offset = *off;
905
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530906 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100907 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400908 if (ret != 0)
909 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000910process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000911 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400912 goto none;
913 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
914 goto none;
915
916 leaf = path->nodes[0];
917 extent = btrfs_item_ptr(leaf, path->slots[0],
918 struct btrfs_file_extent_item);
919
920 type = btrfs_file_extent_type(leaf, extent);
921 if (type == BTRFS_FILE_EXTENT_REG &&
922 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
923 check_defrag_in_cache(inode, min_key.offset, thresh)) {
924 *off = min_key.offset;
925 btrfs_free_path(path);
926 return 0;
927 }
928
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000929 path->slots[0]++;
930 if (path->slots[0] < btrfs_header_nritems(leaf)) {
931 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
932 goto process_slot;
933 }
934
Chris Mason4cb53002011-05-24 15:35:30 -0400935 if (min_key.offset == (u64)-1)
936 goto none;
937
938 min_key.offset++;
939 btrfs_release_path(path);
940 }
941none:
942 btrfs_free_path(path);
943 return -ENOENT;
944}
945
Li Zefan6c282eb2012-06-11 16:03:35 +0800946static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400947{
948 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500949 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800950 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300951 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500952
953 /*
954 * hopefully we have this extent in the tree already, try without
955 * the full extent lock
956 */
957 read_lock(&em_tree->lock);
958 em = lookup_extent_mapping(em_tree, start, len);
959 read_unlock(&em_tree->lock);
960
961 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000962 struct extent_state *cached = NULL;
963 u64 end = start + len - 1;
964
Chris Mason940100a2010-03-10 10:52:59 -0500965 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +0100966 lock_extent_bits(io_tree, start, end, &cached);
Nikolay Borisovfc4f21b2017-02-20 13:51:06 +0200967 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
David Sterbae43bbe52017-12-12 21:43:52 +0100968 unlock_extent_cached(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -0500969
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000970 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800971 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500972 }
973
Li Zefan6c282eb2012-06-11 16:03:35 +0800974 return em;
975}
976
977static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
978{
979 struct extent_map *next;
980 bool ret = true;
981
982 /* this is the last extent */
983 if (em->start + em->len >= i_size_read(inode))
984 return false;
985
986 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -0700987 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
988 ret = false;
989 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +0900990 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +0800991 ret = false;
992
993 free_extent_map(next);
994 return ret;
995}
996
David Sterbaaab110a2014-07-29 17:32:10 +0200997static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -0400998 u64 *last_len, u64 *skip, u64 *defrag_end,
999 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001000{
1001 struct extent_map *em;
1002 int ret = 1;
1003 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001004 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001005
1006 /*
1007 * make sure that once we start defragging an extent, we keep on
1008 * defragging it
1009 */
1010 if (start < *defrag_end)
1011 return 1;
1012
1013 *skip = 0;
1014
1015 em = defrag_lookup_extent(inode, start);
1016 if (!em)
1017 return 0;
1018
Chris Mason940100a2010-03-10 10:52:59 -05001019 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001020 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001021 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001022 goto out;
1023 }
1024
Liu Bo4a3560c2015-08-07 16:48:41 +08001025 if (!*defrag_end)
1026 prev_mergeable = false;
1027
Li Zefan6c282eb2012-06-11 16:03:35 +08001028 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001029 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001030 * we hit a real extent, if it is big or the next extent is not a
1031 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001032 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001033 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001034 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001035 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001036out:
Chris Mason940100a2010-03-10 10:52:59 -05001037 /*
1038 * last_len ends up being a counter of how many bytes we've defragged.
1039 * every time we choose not to defrag an extent, we reset *last_len
1040 * so that the next tiny extent will force a defrag.
1041 *
1042 * The end result of this is that tiny extents before a single big
1043 * extent will force at least part of that big extent to be defragged.
1044 */
1045 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001046 *defrag_end = extent_map_end(em);
1047 } else {
1048 *last_len = 0;
1049 *skip = extent_map_end(em);
1050 *defrag_end = 0;
1051 }
1052
1053 free_extent_map(em);
1054 return ret;
1055}
1056
Chris Mason4cb53002011-05-24 15:35:30 -04001057/*
1058 * it doesn't do much good to defrag one or two pages
1059 * at a time. This pulls in a nice chunk of pages
1060 * to COW and defrag.
1061 *
1062 * It also makes sure the delalloc code has enough
1063 * dirty data to avoid making new small extents as part
1064 * of the defrag
1065 *
1066 * It's a good idea to start RA on this range
1067 * before calling this.
1068 */
1069static int cluster_pages_for_defrag(struct inode *inode,
1070 struct page **pages,
1071 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001072 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001073{
Chris Mason4cb53002011-05-24 15:35:30 -04001074 unsigned long file_end;
1075 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001076 u64 page_start;
1077 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001078 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001079 int ret;
1080 int i;
1081 int i_done;
1082 struct btrfs_ordered_extent *ordered;
1083 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001084 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001085 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001086 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001087
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001088 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001089 if (!isize || start_index > file_end)
1090 return 0;
1091
1092 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001093
Qu Wenruo364ecf32017-02-27 15:10:38 +08001094 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001095 start_index << PAGE_SHIFT,
1096 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001097 if (ret)
1098 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001099 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001100 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001101
1102 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001103 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001104 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001105again:
Josef Bacika94733d2011-07-11 10:47:06 -04001106 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001107 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001108 if (!page)
1109 break;
1110
Miao Xie600a45e2012-02-16 15:01:24 +08001111 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001112 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001113 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001114 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001115 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001116 ordered = btrfs_lookup_ordered_extent(inode,
1117 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001118 unlock_extent_cached(tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001119 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001120 if (!ordered)
1121 break;
1122
1123 unlock_page(page);
1124 btrfs_start_ordered_extent(inode, ordered, 1);
1125 btrfs_put_ordered_extent(ordered);
1126 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001127 /*
1128 * we unlocked the page above, so we need check if
1129 * it was released or not.
1130 */
1131 if (page->mapping != inode->i_mapping) {
1132 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001133 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001134 goto again;
1135 }
Miao Xie600a45e2012-02-16 15:01:24 +08001136 }
1137
Chris Mason4cb53002011-05-24 15:35:30 -04001138 if (!PageUptodate(page)) {
1139 btrfs_readpage(NULL, page);
1140 lock_page(page);
1141 if (!PageUptodate(page)) {
1142 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001143 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001144 ret = -EIO;
1145 break;
1146 }
1147 }
Miao Xie600a45e2012-02-16 15:01:24 +08001148
Miao Xie600a45e2012-02-16 15:01:24 +08001149 if (page->mapping != inode->i_mapping) {
1150 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001151 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001152 goto again;
1153 }
1154
Chris Mason4cb53002011-05-24 15:35:30 -04001155 pages[i] = page;
1156 i_done++;
1157 }
1158 if (!i_done || ret)
1159 goto out;
1160
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001161 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001162 goto out;
1163
1164 /*
1165 * so now we have a nice long stream of locked
1166 * and up to date pages, lets wait on them
1167 */
1168 for (i = 0; i < i_done; i++)
1169 wait_on_page_writeback(pages[i]);
1170
1171 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001172 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001173
1174 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001175 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001176 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1177 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001178 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001179 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001180
Liu Bo1f12bd02012-03-29 09:57:44 -04001181 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001182 spin_lock(&BTRFS_I(inode)->lock);
1183 BTRFS_I(inode)->outstanding_extents++;
1184 spin_unlock(&BTRFS_I(inode)->lock);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001185 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001186 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001187 (page_cnt - i_done) << PAGE_SHIFT, true);
Chris Mason4cb53002011-05-24 15:35:30 -04001188 }
1189
1190
Liu Bo9e8a4a82012-09-05 19:10:51 -06001191 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001192 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001193
1194 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001195 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001196
1197 for (i = 0; i < i_done; i++) {
1198 clear_page_dirty_for_io(pages[i]);
1199 ClearPageChecked(pages[i]);
1200 set_page_extent_mapped(pages[i]);
1201 set_page_dirty(pages[i]);
1202 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001203 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001204 }
Qu Wenruo43b18592017-12-12 15:34:32 +08001205 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT,
1206 false);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001207 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001208 return i_done;
1209out:
1210 for (i = 0; i < i_done; i++) {
1211 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001212 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001213 }
Qu Wenruobc42bda2017-02-27 15:10:39 +08001214 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001215 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001216 page_cnt << PAGE_SHIFT, true);
1217 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT,
1218 true);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001219 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001220 return ret;
1221
1222}
1223
1224int btrfs_defrag_file(struct inode *inode, struct file *file,
1225 struct btrfs_ioctl_defrag_range_args *range,
1226 u64 newer_than, unsigned long max_to_defrag)
1227{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001228 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001229 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001230 struct file_ra_state *ra = NULL;
1231 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001232 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001233 u64 last_len = 0;
1234 u64 skip = 0;
1235 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001236 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001237 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001238 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001239 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001240 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001241 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001242 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001243 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001244 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001245 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001246 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001247 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001248
Liu Bo0abd5b12013-04-16 09:20:28 +00001249 if (isize == 0)
1250 return 0;
1251
1252 if (range->start >= isize)
1253 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001254
David Sterba1e2ef462017-07-17 20:01:59 +02001255 if (do_compress) {
Li Zefan1a419d82010-10-25 15:12:50 +08001256 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1257 return -EINVAL;
1258 if (range->compress_type)
1259 compress_type = range->compress_type;
1260 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001261
Liu Bo0abd5b12013-04-16 09:20:28 +00001262 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001263 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001264
Chris Mason4cb53002011-05-24 15:35:30 -04001265 /*
David Sterba0a52d102017-06-22 03:22:58 +02001266 * If we were not given a file, allocate a readahead context. As
1267 * readahead is just an optimization, defrag will work without it so
1268 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001269 */
1270 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001271 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001272 if (ra)
1273 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001274 } else {
1275 ra = &file->f_ra;
1276 }
1277
David Sterba63e727e2017-06-22 03:13:02 +02001278 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001279 if (!pages) {
1280 ret = -ENOMEM;
1281 goto out_ra;
1282 }
1283
1284 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001285 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001286 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001287 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001288 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001289 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001290 }
1291
Chris Mason4cb53002011-05-24 15:35:30 -04001292 if (newer_than) {
1293 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001294 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001295 if (!ret) {
1296 range->start = newer_off;
1297 /*
1298 * we always align our defrag to help keep
1299 * the extents in the file evenly spaced
1300 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001301 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001302 } else
1303 goto out_ra;
1304 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001305 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001306 }
1307 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301308 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001309
Li Zefan2a0f7f52011-10-10 15:43:34 -04001310 /*
1311 * make writeback starts from i, so the defrag range can be
1312 * written sequentially.
1313 */
1314 if (i < inode->i_mapping->writeback_index)
1315 inode->i_mapping->writeback_index = i;
1316
Chris Masonf7f43cc2011-10-11 11:41:40 -04001317 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001318 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001319 /*
1320 * make sure we stop running if someone unmounts
1321 * the FS
1322 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001323 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001324 break;
1325
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001326 if (btrfs_defrag_cancelled(fs_info)) {
1327 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001328 ret = -EAGAIN;
1329 break;
1330 }
1331
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001332 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001333 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001334 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001335 unsigned long next;
1336 /*
1337 * the should_defrag function tells us how much to skip
1338 * bump our counter by the suggested amount
1339 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001340 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001341 i = max(i + 1, next);
1342 continue;
1343 }
Li Zefan008873e2011-09-02 15:57:07 +08001344
1345 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001346 cluster = (PAGE_ALIGN(defrag_end) >>
1347 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001348 cluster = min(cluster, max_cluster);
1349 } else {
1350 cluster = max_cluster;
1351 }
1352
Li Zefan008873e2011-09-02 15:57:07 +08001353 if (i + cluster > ra_index) {
1354 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001355 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001356 page_cache_sync_readahead(inode->i_mapping, ra,
1357 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301358 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001359 }
Chris Mason940100a2010-03-10 10:52:59 -05001360
Al Viro59551022016-01-22 15:40:57 -05001361 inode_lock(inode);
David Sterba1e2ef462017-07-17 20:01:59 +02001362 if (do_compress)
David Sterbaeec63c62017-07-17 19:41:31 +02001363 BTRFS_I(inode)->defrag_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001364 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001365 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001366 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001367 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001368 }
Chris Mason940100a2010-03-10 10:52:59 -05001369
Chris Mason4cb53002011-05-24 15:35:30 -04001370 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001371 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001372 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001373
1374 if (newer_than) {
1375 if (newer_off == (u64)-1)
1376 break;
1377
Liu Boe1f041e12012-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
Li Zefandae7b662009-04-08 15:06:54 +08001460 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001461 if (IS_ERR(vol_args)) {
1462 ret = PTR_ERR(vol_args);
1463 goto out;
1464 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001465
1466 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001467
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001468 sizestr = vol_args->name;
1469 devstr = strchr(sizestr, ':');
1470 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001471 sizestr = devstr + 1;
1472 *devstr = '\0';
1473 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001474 ret = kstrtoull(devstr, 10, &devid);
1475 if (ret)
1476 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001477 if (!devid) {
1478 ret = -EINVAL;
1479 goto out_free;
1480 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001481 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001482 }
Miao Xiedba60f32012-12-21 09:19:51 +00001483
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001484 device = btrfs_find_device(fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001485 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001486 btrfs_info(fs_info, "resizer unable to find device %llu",
1487 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001488 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001489 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001490 }
Miao Xiedba60f32012-12-21 09:19:51 +00001491
Anand Jainebbede42017-12-04 12:54:52 +08001492 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001493 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001494 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001495 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001496 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001497 goto out_free;
1498 }
1499
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001500 if (!strcmp(sizestr, "max"))
1501 new_size = device->bdev->bd_inode->i_size;
1502 else {
1503 if (sizestr[0] == '-') {
1504 mod = -1;
1505 sizestr++;
1506 } else if (sizestr[0] == '+') {
1507 mod = 1;
1508 sizestr++;
1509 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001510 new_size = memparse(sizestr, &retptr);
1511 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001512 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001513 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001514 }
1515 }
1516
Anand Jain401e29c2017-12-04 12:54:55 +08001517 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xiedfd79822012-12-21 09:21:30 +00001518 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001519 goto out_free;
1520 }
1521
Miao Xie7cc8e582014-09-03 21:35:38 +08001522 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001523
1524 if (mod < 0) {
1525 if (new_size > old_size) {
1526 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001527 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001528 }
1529 new_size = old_size - new_size;
1530 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001531 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001532 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001533 goto out_free;
1534 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001535 new_size = old_size + new_size;
1536 }
1537
Byongho Leeee221842015-12-15 01:42:10 +09001538 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001539 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001540 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001541 }
1542 if (new_size > device->bdev->bd_inode->i_size) {
1543 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001544 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001545 }
1546
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001547 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001548
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001549 btrfs_info_in_rcu(fs_info, "new size for %s is %llu",
1550 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001551
1552 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001553 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001554 if (IS_ERR(trans)) {
1555 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001556 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001557 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001558 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001559 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001560 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001561 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001562 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001563
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001564out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001565 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001566out:
David Sterba171938e2017-03-28 14:44:21 +02001567 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001568 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001569 return ret;
1570}
1571
Sage Weil72fd0322010-10-29 15:41:32 -04001572static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
David Sterba52f75f42017-02-14 18:33:53 +01001573 const char *name, unsigned long fd, int subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001574 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001575 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001576{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001577 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001578 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001579
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001580 if (!S_ISDIR(file_inode(file)->i_mode))
1581 return -ENOTDIR;
1582
Liu Boa874a632012-06-29 03:58:46 -06001583 ret = mnt_want_write_file(file);
1584 if (ret)
1585 goto out;
1586
Sage Weil72fd0322010-10-29 15:41:32 -04001587 namelen = strlen(name);
1588 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001589 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001590 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001591 }
1592
Chris Mason16780ca2012-02-20 22:14:55 -05001593 if (name[0] == '.' &&
1594 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1595 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001596 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001597 }
1598
Chris Mason3de45862008-11-17 21:02:50 -05001599 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001600 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001601 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001602 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001603 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001604 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001605 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001606 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001607 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001608 }
1609
Al Viro496ad9a2013-01-23 17:07:38 -05001610 src_inode = file_inode(src.file);
1611 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001612 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001613 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001614 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001615 } else if (!inode_owner_or_capable(src_inode)) {
1616 /*
1617 * Subvolume creation is not restricted, but snapshots
1618 * are limited to own subvolumes only
1619 */
1620 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001621 } else {
1622 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1623 BTRFS_I(src_inode)->root,
1624 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001625 }
Al Viro2903ff02012-08-28 12:52:22 -04001626 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001627 }
Liu Boa874a632012-06-29 03:58:46 -06001628out_drop_write:
1629 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001630out:
Sage Weil72fd0322010-10-29 15:41:32 -04001631 return ret;
1632}
1633
1634static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001635 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001636{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001637 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001638 int ret;
1639
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001640 if (!S_ISDIR(file_inode(file)->i_mode))
1641 return -ENOTDIR;
1642
Li Zefanfa0d2b92010-12-20 15:53:28 +08001643 vol_args = memdup_user(arg, sizeof(*vol_args));
1644 if (IS_ERR(vol_args))
1645 return PTR_ERR(vol_args);
1646 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001647
Li Zefanfa0d2b92010-12-20 15:53:28 +08001648 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001649 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001650 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001651
Li Zefanfa0d2b92010-12-20 15:53:28 +08001652 kfree(vol_args);
1653 return ret;
1654}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001655
Li Zefanfa0d2b92010-12-20 15:53:28 +08001656static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1657 void __user *arg, int subvol)
1658{
1659 struct btrfs_ioctl_vol_args_v2 *vol_args;
1660 int ret;
1661 u64 transid = 0;
1662 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001663 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001664 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001665
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001666 if (!S_ISDIR(file_inode(file)->i_mode))
1667 return -ENOTDIR;
1668
Li Zefanfa0d2b92010-12-20 15:53:28 +08001669 vol_args = memdup_user(arg, sizeof(*vol_args));
1670 if (IS_ERR(vol_args))
1671 return PTR_ERR(vol_args);
1672 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001673
Li Zefanb83cc962010-12-20 16:04:08 +08001674 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001675 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1676 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001677 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001678 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001679 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001680
1681 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1682 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001683 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1684 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001685 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001686 if (vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001687 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001688 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001689 }
1690 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1691 if (IS_ERR(inherit)) {
1692 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001693 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001694 }
1695 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001696
1697 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001698 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001699 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001700 if (ret)
1701 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001702
Dan Carpenterc47ca322014-09-04 14:09:15 +03001703 if (ptr && copy_to_user(arg +
1704 offsetof(struct btrfs_ioctl_vol_args_v2,
1705 transid),
1706 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001707 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001708
1709free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001710 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001711free_args:
1712 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001713 return ret;
1714}
1715
Li Zefan0caa1022010-12-20 16:30:25 +08001716static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1717 void __user *arg)
1718{
Al Viro496ad9a2013-01-23 17:07:38 -05001719 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001720 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001721 struct btrfs_root *root = BTRFS_I(inode)->root;
1722 int ret = 0;
1723 u64 flags = 0;
1724
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001725 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001726 return -EINVAL;
1727
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001728 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001729 if (btrfs_root_readonly(root))
1730 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001731 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001732
1733 if (copy_to_user(arg, &flags, sizeof(flags)))
1734 ret = -EFAULT;
1735
1736 return ret;
1737}
1738
1739static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1740 void __user *arg)
1741{
Al Viro496ad9a2013-01-23 17:07:38 -05001742 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001743 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001744 struct btrfs_root *root = BTRFS_I(inode)->root;
1745 struct btrfs_trans_handle *trans;
1746 u64 root_flags;
1747 u64 flags;
1748 int ret = 0;
1749
David Sterbabd60ea02014-01-16 15:50:22 +01001750 if (!inode_owner_or_capable(inode))
1751 return -EPERM;
1752
Liu Bob9ca0662012-06-29 03:58:49 -06001753 ret = mnt_want_write_file(file);
1754 if (ret)
1755 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001756
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001757 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06001758 ret = -EINVAL;
1759 goto out_drop_write;
1760 }
Li Zefan0caa1022010-12-20 16:30:25 +08001761
Liu Bob9ca0662012-06-29 03:58:49 -06001762 if (copy_from_user(&flags, arg, sizeof(flags))) {
1763 ret = -EFAULT;
1764 goto out_drop_write;
1765 }
Li Zefan0caa1022010-12-20 16:30:25 +08001766
Liu Bob9ca0662012-06-29 03:58:49 -06001767 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1768 ret = -EINVAL;
1769 goto out_drop_write;
1770 }
Li Zefan0caa1022010-12-20 16:30:25 +08001771
Liu Bob9ca0662012-06-29 03:58:49 -06001772 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1773 ret = -EOPNOTSUPP;
1774 goto out_drop_write;
1775 }
Li Zefan0caa1022010-12-20 16:30:25 +08001776
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001777 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001778
1779 /* nothing to do */
1780 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001781 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001782
1783 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001784 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001785 btrfs_set_root_flags(&root->root_item,
1786 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001787 } else {
1788 /*
1789 * Block RO -> RW transition if this subvolume is involved in
1790 * send
1791 */
1792 spin_lock(&root->root_item_lock);
1793 if (root->send_in_progress == 0) {
1794 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001795 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001796 spin_unlock(&root->root_item_lock);
1797 } else {
1798 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001799 btrfs_warn(fs_info,
1800 "Attempt to set subvolume %llu read-write during send",
1801 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01001802 ret = -EPERM;
1803 goto out_drop_sem;
1804 }
1805 }
Li Zefan0caa1022010-12-20 16:30:25 +08001806
1807 trans = btrfs_start_transaction(root, 1);
1808 if (IS_ERR(trans)) {
1809 ret = PTR_ERR(trans);
1810 goto out_reset;
1811 }
1812
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001813 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001814 &root->root_key, &root->root_item);
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001815 if (ret < 0) {
1816 btrfs_end_transaction(trans);
1817 goto out_reset;
1818 }
Li Zefan0caa1022010-12-20 16:30:25 +08001819
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001820 ret = btrfs_commit_transaction(trans);
1821
Li Zefan0caa1022010-12-20 16:30:25 +08001822out_reset:
1823 if (ret)
1824 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001825out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001826 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001827out_drop_write:
1828 mnt_drop_write_file(file);
1829out:
Li Zefan0caa1022010-12-20 16:30:25 +08001830 return ret;
1831}
1832
Chris Masonac8e9812010-02-28 15:39:26 -05001833static noinline int key_in_sk(struct btrfs_key *key,
1834 struct btrfs_ioctl_search_key *sk)
1835{
Chris Masonabc6e132010-03-18 12:10:08 -04001836 struct btrfs_key test;
1837 int ret;
1838
1839 test.objectid = sk->min_objectid;
1840 test.type = sk->min_type;
1841 test.offset = sk->min_offset;
1842
1843 ret = btrfs_comp_cpu_keys(key, &test);
1844 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001845 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001846
1847 test.objectid = sk->max_objectid;
1848 test.type = sk->max_type;
1849 test.offset = sk->max_offset;
1850
1851 ret = btrfs_comp_cpu_keys(key, &test);
1852 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001853 return 0;
1854 return 1;
1855}
1856
Jeff Mahoneydf397562016-06-21 20:18:21 -04001857static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05001858 struct btrfs_key *key,
1859 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001860 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001861 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001862 unsigned long *sk_offset,
1863 int *num_found)
1864{
1865 u64 found_transid;
1866 struct extent_buffer *leaf;
1867 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001868 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001869 unsigned long item_off;
1870 unsigned long item_len;
1871 int nritems;
1872 int i;
1873 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001874 int ret = 0;
1875
1876 leaf = path->nodes[0];
1877 slot = path->slots[0];
1878 nritems = btrfs_header_nritems(leaf);
1879
1880 if (btrfs_header_generation(leaf) > sk->max_transid) {
1881 i = nritems;
1882 goto advance_key;
1883 }
1884 found_transid = btrfs_header_generation(leaf);
1885
1886 for (i = slot; i < nritems; i++) {
1887 item_off = btrfs_item_ptr_offset(leaf, i);
1888 item_len = btrfs_item_size_nr(leaf, i);
1889
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001890 btrfs_item_key_to_cpu(leaf, key, i);
1891 if (!key_in_sk(key, sk))
1892 continue;
1893
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001894 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001895 if (*num_found) {
1896 ret = 1;
1897 goto out;
1898 }
Chris Masonac8e9812010-02-28 15:39:26 -05001899
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001900 /*
1901 * return one empty item back for v1, which does not
1902 * handle -EOVERFLOW
1903 */
1904
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001905 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001906 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001907 ret = -EOVERFLOW;
1908 }
Chris Masonac8e9812010-02-28 15:39:26 -05001909
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001910 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001911 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001912 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001913 }
1914
Chris Masonac8e9812010-02-28 15:39:26 -05001915 sh.objectid = key->objectid;
1916 sh.offset = key->offset;
1917 sh.type = key->type;
1918 sh.len = item_len;
1919 sh.transid = found_transid;
1920
1921 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001922 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1923 ret = -EFAULT;
1924 goto out;
1925 }
1926
Chris Masonac8e9812010-02-28 15:39:26 -05001927 *sk_offset += sizeof(sh);
1928
1929 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001930 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05001931 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001932 if (read_extent_buffer_to_user(leaf, up,
1933 item_off, item_len)) {
1934 ret = -EFAULT;
1935 goto out;
1936 }
1937
Chris Masonac8e9812010-02-28 15:39:26 -05001938 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001939 }
Hugo Millse2156862011-05-14 17:43:41 +00001940 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001941
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001942 if (ret) /* -EOVERFLOW from above */
1943 goto out;
1944
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001945 if (*num_found >= sk->nr_items) {
1946 ret = 1;
1947 goto out;
1948 }
Chris Masonac8e9812010-02-28 15:39:26 -05001949 }
1950advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001951 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001952 test.objectid = sk->max_objectid;
1953 test.type = sk->max_type;
1954 test.offset = sk->max_offset;
1955 if (btrfs_comp_cpu_keys(key, &test) >= 0)
1956 ret = 1;
1957 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04001958 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001959 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04001960 key->offset = 0;
1961 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001962 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04001963 key->offset = 0;
1964 key->type = 0;
1965 key->objectid++;
1966 } else
1967 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001968out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01001969 /*
1970 * 0: all items from this leaf copied, continue with next
1971 * 1: * more items can be copied, but unused buffer is too small
1972 * * all items were found
1973 * Either way, it will stops the loop which iterates to the next
1974 * leaf
1975 * -EOVERFLOW: item was to large for buffer
1976 * -EFAULT: could not copy extent buffer back to userspace
1977 */
Chris Masonac8e9812010-02-28 15:39:26 -05001978 return ret;
1979}
1980
1981static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01001982 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001983 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001984 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05001985{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001986 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05001987 struct btrfs_root *root;
1988 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001989 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05001990 int ret;
1991 int num_found = 0;
1992 unsigned long sk_offset = 0;
1993
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001994 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
1995 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01001996 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001997 }
Gerhard Heift12544442014-01-30 16:23:58 +01001998
Chris Masonac8e9812010-02-28 15:39:26 -05001999 path = btrfs_alloc_path();
2000 if (!path)
2001 return -ENOMEM;
2002
2003 if (sk->tree_id == 0) {
2004 /* search the root of the inode that was passed */
2005 root = BTRFS_I(inode)->root;
2006 } else {
2007 key.objectid = sk->tree_id;
2008 key.type = BTRFS_ROOT_ITEM_KEY;
2009 key.offset = (u64)-1;
2010 root = btrfs_read_fs_root_no_name(info, &key);
2011 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002012 btrfs_free_path(path);
2013 return -ENOENT;
2014 }
2015 }
2016
2017 key.objectid = sk->min_objectid;
2018 key.type = sk->min_type;
2019 key.offset = sk->min_offset;
2020
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302021 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002022 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002023 if (ret != 0) {
2024 if (ret > 0)
2025 ret = 0;
2026 goto err;
2027 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002028 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002029 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002030 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002031 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002032 break;
2033
2034 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002035 if (ret > 0)
2036 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002037err:
2038 sk->nr_items = num_found;
2039 btrfs_free_path(path);
2040 return ret;
2041}
2042
2043static noinline int btrfs_ioctl_tree_search(struct file *file,
2044 void __user *argp)
2045{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002046 struct btrfs_ioctl_search_args __user *uargs;
2047 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002048 struct inode *inode;
2049 int ret;
2050 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002051
2052 if (!capable(CAP_SYS_ADMIN))
2053 return -EPERM;
2054
Gerhard Heiftba346b32014-01-30 16:24:02 +01002055 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002056
Gerhard Heiftba346b32014-01-30 16:24:02 +01002057 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2058 return -EFAULT;
2059
2060 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002061
Al Viro496ad9a2013-01-23 17:07:38 -05002062 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002063 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002064
2065 /*
2066 * In the origin implementation an overflow is handled by returning a
2067 * search header with a len of zero, so reset ret.
2068 */
2069 if (ret == -EOVERFLOW)
2070 ret = 0;
2071
Gerhard Heiftba346b32014-01-30 16:24:02 +01002072 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002073 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002074 return ret;
2075}
2076
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002077static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2078 void __user *argp)
2079{
2080 struct btrfs_ioctl_search_args_v2 __user *uarg;
2081 struct btrfs_ioctl_search_args_v2 args;
2082 struct inode *inode;
2083 int ret;
2084 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002085 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002086
2087 if (!capable(CAP_SYS_ADMIN))
2088 return -EPERM;
2089
2090 /* copy search header and buffer size */
2091 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2092 if (copy_from_user(&args, uarg, sizeof(args)))
2093 return -EFAULT;
2094
2095 buf_size = args.buf_size;
2096
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002097 /* limit result size to 16MB */
2098 if (buf_size > buf_limit)
2099 buf_size = buf_limit;
2100
2101 inode = file_inode(file);
2102 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002103 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002104 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2105 ret = -EFAULT;
2106 else if (ret == -EOVERFLOW &&
2107 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2108 ret = -EFAULT;
2109
Yan, Zheng76dda932009-09-21 16:00:26 -04002110 return ret;
2111}
2112
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002113/*
Chris Masonac8e9812010-02-28 15:39:26 -05002114 * Search INODE_REFs to identify path name of 'dirid' directory
2115 * in a 'tree_id' tree. and sets path name to 'name'.
2116 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002117static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2118 u64 tree_id, u64 dirid, char *name)
2119{
2120 struct btrfs_root *root;
2121 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002122 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002123 int ret = -1;
2124 int slot;
2125 int len;
2126 int total_len = 0;
2127 struct btrfs_inode_ref *iref;
2128 struct extent_buffer *l;
2129 struct btrfs_path *path;
2130
2131 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2132 name[0]='\0';
2133 return 0;
2134 }
2135
2136 path = btrfs_alloc_path();
2137 if (!path)
2138 return -ENOMEM;
2139
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002140 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002141
2142 key.objectid = tree_id;
2143 key.type = BTRFS_ROOT_ITEM_KEY;
2144 key.offset = (u64)-1;
2145 root = btrfs_read_fs_root_no_name(info, &key);
2146 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002147 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002148 ret = -ENOENT;
2149 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002150 }
2151
2152 key.objectid = dirid;
2153 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002154 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002155
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302156 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002157 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2158 if (ret < 0)
2159 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002160 else if (ret > 0) {
2161 ret = btrfs_previous_item(root, path, dirid,
2162 BTRFS_INODE_REF_KEY);
2163 if (ret < 0)
2164 goto out;
2165 else if (ret > 0) {
2166 ret = -ENOENT;
2167 goto out;
2168 }
2169 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002170
2171 l = path->nodes[0];
2172 slot = path->slots[0];
2173 btrfs_item_key_to_cpu(l, &key, slot);
2174
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002175 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2176 len = btrfs_inode_ref_name_len(l, iref);
2177 ptr -= len + 1;
2178 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002179 if (ptr < name) {
2180 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002181 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002182 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002183
2184 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302185 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002186
2187 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2188 break;
2189
David Sterbab3b4aa72011-04-21 01:20:15 +02002190 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002191 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002192 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002193 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002194 }
Li Zefan77906a502011-07-14 03:16:00 +00002195 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302196 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002197 ret = 0;
2198out:
2199 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002200 return ret;
2201}
2202
2203static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2204 void __user *argp)
2205{
2206 struct btrfs_ioctl_ino_lookup_args *args;
2207 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002208 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002209
Julia Lawall2354d082010-10-29 15:14:18 -04002210 args = memdup_user(argp, sizeof(*args));
2211 if (IS_ERR(args))
2212 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002213
Al Viro496ad9a2013-01-23 17:07:38 -05002214 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002215
David Sterba01b810b2015-05-12 19:14:49 +02002216 /*
2217 * Unprivileged query to obtain the containing subvolume root id. The
2218 * path is reset so it's consistent with btrfs_search_path_in_tree.
2219 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002220 if (args->treeid == 0)
2221 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2222
David Sterba01b810b2015-05-12 19:14:49 +02002223 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2224 args->name[0] = 0;
2225 goto out;
2226 }
2227
2228 if (!capable(CAP_SYS_ADMIN)) {
2229 ret = -EPERM;
2230 goto out;
2231 }
2232
Chris Masonac8e9812010-02-28 15:39:26 -05002233 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2234 args->treeid, args->objectid,
2235 args->name);
2236
David Sterba01b810b2015-05-12 19:14:49 +02002237out:
Chris Masonac8e9812010-02-28 15:39:26 -05002238 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2239 ret = -EFAULT;
2240
2241 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002242 return ret;
2243}
2244
Yan, Zheng76dda932009-09-21 16:00:26 -04002245static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2246 void __user *arg)
2247{
Al Viro54563d42013-09-01 15:57:51 -04002248 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002249 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002250 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002251 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002252 struct inode *inode;
2253 struct btrfs_root *root = BTRFS_I(dir)->root;
2254 struct btrfs_root *dest = NULL;
2255 struct btrfs_ioctl_vol_args *vol_args;
Yan, Zheng76dda932009-09-21 16:00:26 -04002256 int namelen;
Yan, Zheng76dda932009-09-21 16:00:26 -04002257 int err = 0;
2258
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002259 if (!S_ISDIR(dir->i_mode))
2260 return -ENOTDIR;
2261
Yan, Zheng76dda932009-09-21 16:00:26 -04002262 vol_args = memdup_user(arg, sizeof(*vol_args));
2263 if (IS_ERR(vol_args))
2264 return PTR_ERR(vol_args);
2265
2266 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2267 namelen = strlen(vol_args->name);
2268 if (strchr(vol_args->name, '/') ||
2269 strncmp(vol_args->name, "..", namelen) == 0) {
2270 err = -EINVAL;
2271 goto out;
2272 }
2273
Al Viroa561be72011-11-23 11:57:51 -05002274 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002275 if (err)
2276 goto out;
2277
David Sterba521e0542014-04-15 16:41:44 +02002278
Al Viro00235412016-05-26 00:05:12 -04002279 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2280 if (err == -EINTR)
2281 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002282 dentry = lookup_one_len(vol_args->name, parent, namelen);
2283 if (IS_ERR(dentry)) {
2284 err = PTR_ERR(dentry);
2285 goto out_unlock_dir;
2286 }
2287
David Howells2b0143b2015-03-17 22:25:59 +00002288 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002289 err = -ENOENT;
2290 goto out_dput;
2291 }
2292
David Howells2b0143b2015-03-17 22:25:59 +00002293 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002294 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302295 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002296 /*
2297 * Regular user. Only allow this with a special mount
2298 * option, when the user has write+exec access to the
2299 * subvol root, and when rmdir(2) would have been
2300 * allowed.
2301 *
2302 * Note that this is _not_ check that the subvol is
2303 * empty or doesn't contain data that we wouldn't
2304 * otherwise be able to delete.
2305 *
2306 * Users who want to delete empty subvols should try
2307 * rmdir(2).
2308 */
2309 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002310 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002311 goto out_dput;
2312
2313 /*
2314 * Do not allow deletion if the parent dir is the same
2315 * as the dir to be deleted. That means the ioctl
2316 * must be called on the dentry referencing the root
2317 * of the subvol, not a random directory contained
2318 * within it.
2319 */
2320 err = -EINVAL;
2321 if (root == dest)
2322 goto out_dput;
2323
2324 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2325 if (err)
2326 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002327 }
2328
Miao Xie5c39da52012-10-22 11:39:53 +00002329 /* check if subvolume may be deleted by a user */
2330 err = btrfs_may_delete(dir, dentry, 1);
2331 if (err)
2332 goto out_dput;
2333
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002334 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002335 err = -EINVAL;
2336 goto out_dput;
2337 }
2338
Al Viro59551022016-01-22 15:40:57 -05002339 inode_lock(inode);
Misono Tomohirof60a2362018-04-18 11:34:52 +09002340 err = btrfs_delete_subvolume(dir, dentry);
Al Viro59551022016-01-22 15:40:57 -05002341 inode_unlock(inode);
Misono Tomohirof60a2362018-04-18 11:34:52 +09002342 if (!err)
Yan, Zheng76dda932009-09-21 16:00:26 -04002343 d_delete(dentry);
Liu Bofa6ac872013-02-20 14:10:23 +00002344
Yan, Zheng76dda932009-09-21 16:00:26 -04002345out_dput:
2346 dput(dentry);
2347out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002348 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002349out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002350 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002351out:
2352 kfree(vol_args);
2353 return err;
2354}
2355
Chris Mason1e701a32010-03-11 09:42:04 -05002356static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002357{
Al Viro496ad9a2013-01-23 17:07:38 -05002358 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002359 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002360 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002361 int ret;
2362
Ilya Dryomov25122d12013-01-20 15:57:57 +02002363 ret = mnt_want_write_file(file);
2364 if (ret)
2365 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002366
Ilya Dryomov25122d12013-01-20 15:57:57 +02002367 if (btrfs_root_readonly(root)) {
2368 ret = -EROFS;
2369 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002370 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002371
2372 switch (inode->i_mode & S_IFMT) {
2373 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002374 if (!capable(CAP_SYS_ADMIN)) {
2375 ret = -EPERM;
2376 goto out;
2377 }
Eric Sandeende78b512013-01-31 18:21:12 +00002378 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002379 break;
2380 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002381 if (!(file->f_mode & FMODE_WRITE)) {
2382 ret = -EINVAL;
2383 goto out;
2384 }
Chris Mason1e701a32010-03-11 09:42:04 -05002385
2386 range = kzalloc(sizeof(*range), GFP_KERNEL);
2387 if (!range) {
2388 ret = -ENOMEM;
2389 goto out;
2390 }
2391
2392 if (argp) {
2393 if (copy_from_user(range, argp,
2394 sizeof(*range))) {
2395 ret = -EFAULT;
2396 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002397 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002398 }
2399 /* compression requires us to start the IO */
2400 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2401 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2402 range->extent_thresh = (u32)-1;
2403 }
2404 } else {
2405 /* the rest are all set to zero by kzalloc */
2406 range->len = (u64)-1;
2407 }
Al Viro496ad9a2013-01-23 17:07:38 -05002408 ret = btrfs_defrag_file(file_inode(file), file,
Anand Jain7c829b72018-03-07 17:29:18 +08002409 range, BTRFS_OLDEST_GENERATION, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04002410 if (ret > 0)
2411 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002412 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002413 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002414 default:
2415 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002416 }
Chris Masone441d542009-01-05 16:57:23 -05002417out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002418 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002419 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002420}
2421
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002422static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002423{
2424 struct btrfs_ioctl_vol_args *vol_args;
2425 int ret;
2426
Chris Masone441d542009-01-05 16:57:23 -05002427 if (!capable(CAP_SYS_ADMIN))
2428 return -EPERM;
2429
David Sterba171938e2017-03-28 14:44:21 +02002430 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
Anand Jaine57138b2013-08-21 11:44:48 +08002431 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002432
Li Zefandae7b662009-04-08 15:06:54 +08002433 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002434 if (IS_ERR(vol_args)) {
2435 ret = PTR_ERR(vol_args);
2436 goto out;
2437 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002438
Mark Fasheh5516e592008-07-24 12:20:14 -04002439 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002440 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002441
Anand Jain43d20762014-07-01 00:58:56 +08002442 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002443 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08002444
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002445 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002446out:
David Sterba171938e2017-03-28 14:44:21 +02002447 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002448 return ret;
2449}
2450
Anand Jain6b526ed2016-02-13 10:01:39 +08002451static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002452{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002453 struct inode *inode = file_inode(file);
2454 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08002455 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002456 int ret;
2457
Chris Masone441d542009-01-05 16:57:23 -05002458 if (!capable(CAP_SYS_ADMIN))
2459 return -EPERM;
2460
Miao Xieda249272012-11-26 08:44:50 +00002461 ret = mnt_want_write_file(file);
2462 if (ret)
2463 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002464
Li Zefandae7b662009-04-08 15:06:54 +08002465 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002466 if (IS_ERR(vol_args)) {
2467 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002468 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002469 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002470
Anand Jain6b526ed2016-02-13 10:01:39 +08002471 /* Check for compatibility reject unknown flags */
David Sterba735654e2016-02-15 18:15:21 +01002472 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED)
2473 return -EOPNOTSUPP;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002474
David Sterba171938e2017-03-28 14:44:21 +02002475 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jain183860f2013-05-17 10:52:45 +00002476 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2477 goto out;
2478 }
2479
David Sterba735654e2016-02-15 18:15:21 +01002480 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002481 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08002482 } else {
2483 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002484 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08002485 }
David Sterba171938e2017-03-28 14:44:21 +02002486 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain183860f2013-05-17 10:52:45 +00002487
Anand Jain6b526ed2016-02-13 10:01:39 +08002488 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01002489 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002490 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08002491 vol_args->devid);
2492 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002493 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08002494 vol_args->name);
2495 }
Anand Jain183860f2013-05-17 10:52:45 +00002496out:
2497 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002498err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002499 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002500 return ret;
2501}
2502
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002503static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2504{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002505 struct inode *inode = file_inode(file);
2506 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002507 struct btrfs_ioctl_vol_args *vol_args;
2508 int ret;
2509
2510 if (!capable(CAP_SYS_ADMIN))
2511 return -EPERM;
2512
2513 ret = mnt_want_write_file(file);
2514 if (ret)
2515 return ret;
2516
David Sterba171938e2017-03-28 14:44:21 +02002517 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002518 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02002519 goto out_drop_write;
2520 }
2521
2522 vol_args = memdup_user(arg, sizeof(*vol_args));
2523 if (IS_ERR(vol_args)) {
2524 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002525 goto out;
2526 }
2527
David Sterba58d7bbf2016-05-04 14:10:47 +02002528 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002529 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002530
2531 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002532 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002533 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02002534out:
David Sterba171938e2017-03-28 14:44:21 +02002535 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
David Sterba58d7bbf2016-05-04 14:10:47 +02002536out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002537 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02002538
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002539 return ret;
2540}
2541
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002542static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
2543 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002544{
Li Zefan027ed2f2011-06-08 08:27:56 +00002545 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002546 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002547 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002548 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002549
Li Zefan027ed2f2011-06-08 08:27:56 +00002550 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2551 if (!fi_args)
2552 return -ENOMEM;
2553
David Sterbad03262c2017-06-16 00:09:21 +02002554 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00002555 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01002556
David Sterbad03262c2017-06-16 00:09:21 +02002557 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002558 if (device->devid > fi_args->max_id)
2559 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002560 }
David Sterbad03262c2017-06-16 00:09:21 +02002561 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002562
David Sterbad03262c2017-06-16 00:09:21 +02002563 memcpy(&fi_args->fsid, fs_info->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07002564 fi_args->nodesize = fs_info->nodesize;
2565 fi_args->sectorsize = fs_info->sectorsize;
2566 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02002567
Li Zefan027ed2f2011-06-08 08:27:56 +00002568 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2569 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002570
Li Zefan027ed2f2011-06-08 08:27:56 +00002571 kfree(fi_args);
2572 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002573}
2574
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002575static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
2576 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002577{
2578 struct btrfs_ioctl_dev_info_args *di_args;
2579 struct btrfs_device *dev;
Jan Schmidt475f6382011-03-11 15:41:01 +01002580 int ret = 0;
2581 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002582
Jan Schmidt475f6382011-03-11 15:41:01 +01002583 di_args = memdup_user(arg, sizeof(*di_args));
2584 if (IS_ERR(di_args))
2585 return PTR_ERR(di_args);
2586
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002587 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002588 s_uuid = di_args->uuid;
2589
David Sterbac5593ca2017-06-16 00:09:21 +02002590 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002591 dev = btrfs_find_device(fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002592
2593 if (!dev) {
2594 ret = -ENODEV;
2595 goto out;
2596 }
2597
2598 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002599 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2600 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002601 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002602 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002603 struct rcu_string *name;
2604
Josef Bacik606686e2012-06-04 14:03:51 -04002605 name = rcu_dereference(dev->name);
Xiongfeng Wang6670d4c2018-01-08 19:51:22 +08002606 strncpy(di_args->path, name->str, sizeof(di_args->path) - 1);
Jim Meyeringa27202f2012-04-26 18:36:56 +02002607 di_args->path[sizeof(di_args->path) - 1] = 0;
2608 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002609 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002610 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002611
2612out:
David Sterbac5593ca2017-06-16 00:09:21 +02002613 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002614 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2615 ret = -EFAULT;
2616
2617 kfree(di_args);
2618 return ret;
2619}
2620
Mark Fashehf4414602015-06-30 14:42:05 -07002621static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002622{
2623 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002624
Mark Fasheh416161d2013-08-06 11:42:51 -07002625 page = grab_cache_page(inode->i_mapping, index);
2626 if (!page)
Filipe Manana31314002016-01-27 18:37:47 +00002627 return ERR_PTR(-ENOMEM);
Mark Fasheh416161d2013-08-06 11:42:51 -07002628
2629 if (!PageUptodate(page)) {
Filipe Manana31314002016-01-27 18:37:47 +00002630 int ret;
2631
2632 ret = btrfs_readpage(NULL, page);
2633 if (ret)
2634 return ERR_PTR(ret);
Mark Fasheh416161d2013-08-06 11:42:51 -07002635 lock_page(page);
2636 if (!PageUptodate(page)) {
2637 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002638 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002639 return ERR_PTR(-EIO);
2640 }
2641 if (page->mapping != inode->i_mapping) {
2642 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002643 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002644 return ERR_PTR(-EAGAIN);
Mark Fasheh416161d2013-08-06 11:42:51 -07002645 }
2646 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002647
2648 return page;
2649}
2650
Mark Fashehf4414602015-06-30 14:42:05 -07002651static int gather_extent_pages(struct inode *inode, struct page **pages,
2652 int num_pages, u64 off)
2653{
2654 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002655 pgoff_t index = off >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002656
2657 for (i = 0; i < num_pages; i++) {
Filipe Manana31314002016-01-27 18:37:47 +00002658again:
Mark Fashehf4414602015-06-30 14:42:05 -07002659 pages[i] = extent_same_get_page(inode, index + i);
Filipe Manana31314002016-01-27 18:37:47 +00002660 if (IS_ERR(pages[i])) {
2661 int err = PTR_ERR(pages[i]);
2662
2663 if (err == -EAGAIN)
2664 goto again;
2665 pages[i] = NULL;
2666 return err;
2667 }
Mark Fashehf4414602015-06-30 14:42:05 -07002668 }
2669 return 0;
2670}
2671
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002672static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2673 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002674{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002675 /*
2676 * Do any pending delalloc/csum calculations on inode, one way or
2677 * another, and lock file content.
2678 * The locking order is:
2679 *
2680 * 1) pages
2681 * 2) range in the inode's io tree
2682 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002683 while (1) {
2684 struct btrfs_ordered_extent *ordered;
2685 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2686 ordered = btrfs_lookup_first_ordered_extent(inode,
2687 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002688 if ((!ordered ||
2689 ordered->file_offset + ordered->len <= off ||
2690 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002691 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002692 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2693 if (ordered)
2694 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002695 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002696 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002697 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2698 if (ordered)
2699 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002700 if (!retry_range_locking)
2701 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002702 btrfs_wait_ordered_range(inode, off, len);
2703 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002704 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002705}
2706
Mark Fashehf4414602015-06-30 14:42:05 -07002707static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002708{
Al Viro59551022016-01-22 15:40:57 -05002709 inode_unlock(inode1);
2710 inode_unlock(inode2);
Mark Fasheh416161d2013-08-06 11:42:51 -07002711}
2712
Mark Fashehf4414602015-06-30 14:42:05 -07002713static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2714{
2715 if (inode1 < inode2)
2716 swap(inode1, inode2);
2717
Al Viro59551022016-01-22 15:40:57 -05002718 inode_lock_nested(inode1, I_MUTEX_PARENT);
2719 inode_lock_nested(inode2, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002720}
2721
2722static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2723 struct inode *inode2, u64 loff2, u64 len)
2724{
2725 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2726 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2727}
2728
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002729static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2730 struct inode *inode2, u64 loff2, u64 len,
2731 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002732{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002733 int ret;
2734
Mark Fasheh416161d2013-08-06 11:42:51 -07002735 if (inode1 < inode2) {
2736 swap(inode1, inode2);
2737 swap(loff1, loff2);
2738 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002739 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2740 if (ret)
2741 return ret;
2742 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2743 if (ret)
2744 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2745 loff1 + len - 1);
2746 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002747}
2748
2749struct cmp_pages {
2750 int num_pages;
2751 struct page **src_pages;
2752 struct page **dst_pages;
2753};
2754
2755static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2756{
2757 int i;
2758 struct page *pg;
2759
2760 for (i = 0; i < cmp->num_pages; i++) {
2761 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002762 if (pg) {
2763 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002764 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002765 }
Mark Fashehf4414602015-06-30 14:42:05 -07002766 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002767 if (pg) {
2768 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002769 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002770 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002771 }
Mark Fashehf4414602015-06-30 14:42:05 -07002772 kfree(cmp->src_pages);
2773 kfree(cmp->dst_pages);
2774}
2775
2776static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2777 struct inode *dst, u64 dst_loff,
2778 u64 len, struct cmp_pages *cmp)
2779{
2780 int ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002781 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002782 struct page **src_pgarr, **dst_pgarr;
2783
2784 /*
2785 * We must gather up all the pages before we initiate our
2786 * extent locking. We use an array for the page pointers. Size
2787 * of the array is bounded by len, which is in turn bounded by
2788 * BTRFS_MAX_DEDUPE_LEN.
2789 */
David Sterba66722f72016-02-11 15:01:38 +01002790 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
2791 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
Mark Fashehf4414602015-06-30 14:42:05 -07002792 if (!src_pgarr || !dst_pgarr) {
2793 kfree(src_pgarr);
2794 kfree(dst_pgarr);
2795 return -ENOMEM;
2796 }
2797 cmp->num_pages = num_pages;
2798 cmp->src_pages = src_pgarr;
2799 cmp->dst_pages = dst_pgarr;
2800
Filipe Mananab1517622017-02-21 17:14:52 +00002801 /*
2802 * If deduping ranges in the same inode, locking rules make it mandatory
2803 * to always lock pages in ascending order to avoid deadlocks with
2804 * concurrent tasks (such as starting writeback/delalloc).
2805 */
2806 if (src == dst && dst_loff < loff) {
2807 swap(src_pgarr, dst_pgarr);
2808 swap(loff, dst_loff);
2809 }
2810
2811 ret = gather_extent_pages(src, src_pgarr, cmp->num_pages, loff);
Mark Fashehf4414602015-06-30 14:42:05 -07002812 if (ret)
2813 goto out;
2814
Filipe Mananab1517622017-02-21 17:14:52 +00002815 ret = gather_extent_pages(dst, dst_pgarr, cmp->num_pages, dst_loff);
Mark Fashehf4414602015-06-30 14:42:05 -07002816
2817out:
2818 if (ret)
2819 btrfs_cmp_data_free(cmp);
Naohiro Aota78ad4ce2017-09-08 17:48:55 +09002820 return ret;
Mark Fasheh416161d2013-08-06 11:42:51 -07002821}
2822
David Sterba1a287cf2017-02-10 20:15:10 +01002823static int btrfs_cmp_data(u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002824{
2825 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07002826 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07002827 struct page *src_page, *dst_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002828 unsigned int cmp_len = PAGE_SIZE;
Mark Fasheh416161d2013-08-06 11:42:51 -07002829 void *addr, *dst_addr;
2830
Mark Fashehf4414602015-06-30 14:42:05 -07002831 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002832 while (len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002833 if (len < PAGE_SIZE)
Mark Fasheh416161d2013-08-06 11:42:51 -07002834 cmp_len = len;
2835
Mark Fashehf4414602015-06-30 14:42:05 -07002836 BUG_ON(i >= cmp->num_pages);
2837
2838 src_page = cmp->src_pages[i];
2839 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002840 ASSERT(PageLocked(src_page));
2841 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07002842
Mark Fasheh416161d2013-08-06 11:42:51 -07002843 addr = kmap_atomic(src_page);
2844 dst_addr = kmap_atomic(dst_page);
2845
2846 flush_dcache_page(src_page);
2847 flush_dcache_page(dst_page);
2848
2849 if (memcmp(addr, dst_addr, cmp_len))
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08002850 ret = -EBADE;
Mark Fasheh416161d2013-08-06 11:42:51 -07002851
2852 kunmap_atomic(addr);
2853 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07002854
2855 if (ret)
2856 break;
2857
Mark Fasheh416161d2013-08-06 11:42:51 -07002858 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07002859 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07002860 }
2861
2862 return ret;
2863}
2864
Mark Fashehe1d227a2015-06-08 15:05:25 -07002865static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
2866 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07002867{
Mark Fashehe1d227a2015-06-08 15:05:25 -07002868 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07002869 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2870
Mark Fashehe1d227a2015-06-08 15:05:25 -07002871 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07002872 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002873
2874 /* if we extend to eof, continue to block boundary */
2875 if (off + len == inode->i_size)
2876 *plen = len = ALIGN(inode->i_size, bs) - off;
2877
Mark Fasheh416161d2013-08-06 11:42:51 -07002878 /* Check that we are block aligned - btrfs_clone() requires this */
2879 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2880 return -EINVAL;
2881
2882 return 0;
2883}
2884
Mark Fashehe1d227a2015-06-08 15:05:25 -07002885static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07002886 struct inode *dst, u64 dst_loff)
2887{
2888 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002889 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07002890 struct cmp_pages cmp;
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002891 bool same_inode = (src == dst);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002892 u64 same_lock_start = 0;
2893 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002894
Filipe Manana113e8282015-03-30 18:26:47 +01002895 if (len == 0)
2896 return 0;
2897
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002898 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05002899 inode_lock(src);
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002900 else
2901 btrfs_double_inode_lock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07002902
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002903 ret = extent_same_check_offsets(src, loff, &len, olen);
2904 if (ret)
2905 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07002906
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002907 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
2908 if (ret)
2909 goto out_unlock;
2910
2911 if (same_inode) {
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002912 /*
2913 * Single inode case wants the same checks, except we
2914 * don't want our length pushed out past i_size as
2915 * comparing that data range makes no sense.
2916 *
2917 * extent_same_check_offsets() will do this for an
2918 * unaligned length at i_size, so catch it here and
2919 * reject the request.
2920 *
2921 * This effectively means we require aligned extents
2922 * for the single-inode case, whereas the other cases
2923 * allow an unaligned length so long as it ends at
2924 * i_size.
2925 */
2926 if (len != olen) {
2927 ret = -EINVAL;
2928 goto out_unlock;
2929 }
2930
2931 /* Check for overlapping ranges */
2932 if (dst_loff + len > loff && dst_loff < loff + len) {
2933 ret = -EINVAL;
2934 goto out_unlock;
2935 }
2936
2937 same_lock_start = min_t(u64, loff, dst_loff);
2938 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002939 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002940
2941 /* don't make the dst file partly checksummed */
2942 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2943 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2944 ret = -EINVAL;
2945 goto out_unlock;
2946 }
2947
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002948again:
Mark Fashehf4414602015-06-30 14:42:05 -07002949 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
2950 if (ret)
2951 goto out_unlock;
2952
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002953 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002954 ret = lock_extent_range(src, same_lock_start, same_lock_len,
2955 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002956 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002957 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
2958 false);
2959 /*
2960 * If one of the inodes has dirty pages in the respective range or
2961 * ordered extents, we need to flush dellaloc and wait for all ordered
2962 * extents in the range. We must unlock the pages and the ranges in the
2963 * io trees to avoid deadlocks when flushing delalloc (requires locking
2964 * pages) and when waiting for ordered extents to complete (they require
2965 * range locking).
2966 */
2967 if (ret == -EAGAIN) {
2968 /*
2969 * Ranges in the io trees already unlocked. Now unlock all
2970 * pages before waiting for all IO to complete.
2971 */
2972 btrfs_cmp_data_free(&cmp);
2973 if (same_inode) {
2974 btrfs_wait_ordered_range(src, same_lock_start,
2975 same_lock_len);
2976 } else {
2977 btrfs_wait_ordered_range(src, loff, len);
2978 btrfs_wait_ordered_range(dst, dst_loff, len);
2979 }
2980 goto again;
2981 }
2982 ASSERT(ret == 0);
2983 if (WARN_ON(ret)) {
2984 /* ranges in the io trees already unlocked */
2985 btrfs_cmp_data_free(&cmp);
2986 return ret;
2987 }
Mark Fashehf4414602015-06-30 14:42:05 -07002988
Mark Fasheh207910d2015-06-30 14:42:04 -07002989 /* pass original length for comparison so we stay within i_size */
David Sterba1a287cf2017-02-10 20:15:10 +01002990 ret = btrfs_cmp_data(olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07002991 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07002992 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07002993
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002994 if (same_inode)
2995 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
2996 same_lock_start + same_lock_len - 1);
2997 else
2998 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07002999
3000 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003001out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003002 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003003 inode_unlock(src);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003004 else
3005 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003006
3007 return ret;
3008}
3009
Byongho Leeee221842015-12-15 01:42:10 +09003010#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003011
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003012ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3013 struct file *dst_file, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003014{
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003015 struct inode *src = file_inode(src_file);
3016 struct inode *dst = file_inode(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003017 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003018 ssize_t res;
Mark Fasheh416161d2013-08-06 11:42:51 -07003019
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003020 if (olen > BTRFS_MAX_DEDUPE_LEN)
3021 olen = BTRFS_MAX_DEDUPE_LEN;
Mark Fasheh416161d2013-08-06 11:42:51 -07003022
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003023 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003024 /*
3025 * Btrfs does not support blocksize < page_size. As a
3026 * result, btrfs_cmp_data() won't correctly handle
3027 * this situation without an update.
3028 */
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003029 return -EINVAL;
Mark Fasheh416161d2013-08-06 11:42:51 -07003030 }
3031
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003032 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3033 if (res)
3034 return res;
3035 return olen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003036}
3037
Filipe Mananaf82a9902014-06-01 01:50:28 +01003038static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3039 struct inode *inode,
3040 u64 endoff,
3041 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003042 const u64 olen,
3043 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003044{
3045 struct btrfs_root *root = BTRFS_I(inode)->root;
3046 int ret;
3047
3048 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003049 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003050 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003051 /*
3052 * We round up to the block size at eof when determining which
3053 * extents to clone above, but shouldn't round up the file size.
3054 */
3055 if (endoff > destoff + olen)
3056 endoff = destoff + olen;
3057 if (endoff > inode->i_size)
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003058 btrfs_i_size_write(BTRFS_I(inode), endoff);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003059
3060 ret = btrfs_update_inode(trans, root, inode);
3061 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003062 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003063 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003064 goto out;
3065 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003066 ret = btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003067out:
3068 return ret;
3069}
3070
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003071static void clone_update_extent_map(struct btrfs_inode *inode,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003072 const struct btrfs_trans_handle *trans,
3073 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003074 const u64 hole_offset,
3075 const u64 hole_len)
3076{
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003077 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01003078 struct extent_map *em;
3079 int ret;
3080
3081 em = alloc_extent_map();
3082 if (!em) {
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003083 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003084 return;
3085 }
3086
Filipe Manana14f59792014-06-29 21:45:40 +01003087 if (path) {
3088 struct btrfs_file_extent_item *fi;
3089
3090 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3091 struct btrfs_file_extent_item);
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003092 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003093 em->generation = -1;
3094 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3095 BTRFS_FILE_EXTENT_INLINE)
3096 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003097 &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003098 } else {
3099 em->start = hole_offset;
3100 em->len = hole_len;
3101 em->ram_bytes = em->len;
3102 em->orig_start = hole_offset;
3103 em->block_start = EXTENT_MAP_HOLE;
3104 em->block_len = 0;
3105 em->orig_block_len = 0;
3106 em->compress_type = BTRFS_COMPRESS_NONE;
3107 em->generation = trans->transid;
3108 }
3109
3110 while (1) {
3111 write_lock(&em_tree->lock);
3112 ret = add_extent_mapping(em_tree, em, 1);
3113 write_unlock(&em_tree->lock);
3114 if (ret != -EEXIST) {
3115 free_extent_map(em);
3116 break;
3117 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003118 btrfs_drop_extent_cache(inode, em->start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003119 em->start + em->len - 1, 0);
3120 }
3121
David Sterbaee39b432014-09-30 01:33:33 +02003122 if (ret)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003123 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003124}
3125
Filipe Manana8039d872015-10-13 15:15:00 +01003126/*
3127 * Make sure we do not end up inserting an inline extent into a file that has
3128 * already other (non-inline) extents. If a file has an inline extent it can
3129 * not have any other extents and the (single) inline extent must start at the
3130 * file offset 0. Failing to respect these rules will lead to file corruption,
3131 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3132 *
3133 * We can have extents that have been already written to disk or we can have
3134 * dirty ranges still in delalloc, in which case the extent maps and items are
3135 * created only when we run delalloc, and the delalloc ranges might fall outside
3136 * the range we are currently locking in the inode's io tree. So we check the
3137 * inode's i_size because of that (i_size updates are done while holding the
3138 * i_mutex, which we are holding here).
3139 * We also check to see if the inode has a size not greater than "datal" but has
3140 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3141 * protected against such concurrent fallocate calls by the i_mutex).
3142 *
3143 * If the file has no extents but a size greater than datal, do not allow the
3144 * copy because we would need turn the inline extent into a non-inline one (even
3145 * with NO_HOLES enabled). If we find our destination inode only has one inline
3146 * extent, just overwrite it with the source inline extent if its size is less
3147 * than the source extent's size, or we could copy the source inline extent's
3148 * data into the destination inode's inline extent if the later is greater then
3149 * the former.
3150 */
David Sterba4a0ab9d2017-02-10 20:18:49 +01003151static int clone_copy_inline_extent(struct inode *dst,
Filipe Manana8039d872015-10-13 15:15:00 +01003152 struct btrfs_trans_handle *trans,
3153 struct btrfs_path *path,
3154 struct btrfs_key *new_key,
3155 const u64 drop_start,
3156 const u64 datal,
3157 const u64 skip,
3158 const u64 size,
3159 char *inline_data)
3160{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003161 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
Filipe Manana8039d872015-10-13 15:15:00 +01003162 struct btrfs_root *root = BTRFS_I(dst)->root;
3163 const u64 aligned_end = ALIGN(new_key->offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003164 fs_info->sectorsize);
Filipe Manana8039d872015-10-13 15:15:00 +01003165 int ret;
3166 struct btrfs_key key;
3167
3168 if (new_key->offset > 0)
3169 return -EOPNOTSUPP;
3170
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003171 key.objectid = btrfs_ino(BTRFS_I(dst));
Filipe Manana8039d872015-10-13 15:15:00 +01003172 key.type = BTRFS_EXTENT_DATA_KEY;
3173 key.offset = 0;
3174 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3175 if (ret < 0) {
3176 return ret;
3177 } else if (ret > 0) {
3178 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3179 ret = btrfs_next_leaf(root, path);
3180 if (ret < 0)
3181 return ret;
3182 else if (ret > 0)
3183 goto copy_inline_extent;
3184 }
3185 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003186 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003187 key.type == BTRFS_EXTENT_DATA_KEY) {
3188 ASSERT(key.offset > 0);
3189 return -EOPNOTSUPP;
3190 }
3191 } else if (i_size_read(dst) <= datal) {
3192 struct btrfs_file_extent_item *ei;
3193 u64 ext_len;
3194
3195 /*
3196 * If the file size is <= datal, make sure there are no other
3197 * extents following (can happen do to an fallocate call with
3198 * the flag FALLOC_FL_KEEP_SIZE).
3199 */
3200 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3201 struct btrfs_file_extent_item);
3202 /*
3203 * If it's an inline extent, it can not have other extents
3204 * following it.
3205 */
3206 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3207 BTRFS_FILE_EXTENT_INLINE)
3208 goto copy_inline_extent;
3209
3210 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3211 if (ext_len > aligned_end)
3212 return -EOPNOTSUPP;
3213
3214 ret = btrfs_next_item(root, path);
3215 if (ret < 0) {
3216 return ret;
3217 } else if (ret == 0) {
3218 btrfs_item_key_to_cpu(path->nodes[0], &key,
3219 path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003220 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003221 key.type == BTRFS_EXTENT_DATA_KEY)
3222 return -EOPNOTSUPP;
3223 }
3224 }
3225
3226copy_inline_extent:
3227 /*
3228 * We have no extent items, or we have an extent at offset 0 which may
3229 * or may not be inlined. All these cases are dealt the same way.
3230 */
3231 if (i_size_read(dst) > datal) {
3232 /*
3233 * If the destination inode has an inline extent...
3234 * This would require copying the data from the source inline
3235 * extent into the beginning of the destination's inline extent.
3236 * But this is really complex, both extents can be compressed
3237 * or just one of them, which would require decompressing and
3238 * re-compressing data (which could increase the new compressed
3239 * size, not allowing the compressed data to fit anymore in an
3240 * inline extent).
3241 * So just don't support this case for now (it should be rare,
3242 * we are not really saving space when cloning inline extents).
3243 */
3244 return -EOPNOTSUPP;
3245 }
3246
3247 btrfs_release_path(path);
3248 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3249 if (ret)
3250 return ret;
3251 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3252 if (ret)
3253 return ret;
3254
3255 if (skip) {
3256 const u32 start = btrfs_file_extent_calc_inline_size(0);
3257
3258 memmove(inline_data + start, inline_data + start + skip, datal);
3259 }
3260
3261 write_extent_buffer(path->nodes[0], inline_data,
3262 btrfs_item_ptr_offset(path->nodes[0],
3263 path->slots[0]),
3264 size);
3265 inode_add_bytes(dst, datal);
3266
3267 return 0;
3268}
3269
Mark Fasheh32b7c682013-08-06 11:42:49 -07003270/**
3271 * btrfs_clone() - clone a range from inode file to another
3272 *
3273 * @src: Inode to clone from
3274 * @inode: Inode to clone to
3275 * @off: Offset within source to start clone from
3276 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003277 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003278 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003279 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003280 */
3281static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003282 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003283 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003284{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003285 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003286 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003287 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003288 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003289 struct btrfs_trans_handle *trans;
3290 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003291 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003292 u32 nritems;
3293 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003294 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003295 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003296 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003297
3298 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07003299 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3300 if (!buf)
3301 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003302
3303 path = btrfs_alloc_path();
3304 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003305 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003306 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003307 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003308
David Sterbae4058b52015-11-27 16:31:35 +01003309 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003310 /* clone data */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003311 key.objectid = btrfs_ino(BTRFS_I(src));
Yan Zhengae01a0a2008-08-04 23:23:47 -04003312 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003313 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003314
3315 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003316 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003317
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003318 /*
3319 * note the key will change type as we walk through the
3320 * tree.
3321 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003322 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003323 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3324 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003325 if (ret < 0)
3326 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003327 /*
3328 * First search, if no extent item that starts at offset off was
3329 * found but the previous item is an extent item, it's possible
3330 * it might overlap our target range, therefore process it.
3331 */
3332 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3333 btrfs_item_key_to_cpu(path->nodes[0], &key,
3334 path->slots[0] - 1);
3335 if (key.type == BTRFS_EXTENT_DATA_KEY)
3336 path->slots[0]--;
3337 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003338
Yan Zhengae01a0a2008-08-04 23:23:47 -04003339 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003340process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003341 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003342 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003343 if (ret < 0)
3344 goto out;
3345 if (ret > 0)
3346 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003347 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003348 }
3349 leaf = path->nodes[0];
3350 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003351
Yan Zhengae01a0a2008-08-04 23:23:47 -04003352 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003353 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003354 key.objectid != btrfs_ino(BTRFS_I(src)))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003355 break;
3356
David Sterba962a2982014-06-04 18:41:45 +02003357 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003358 struct btrfs_file_extent_item *extent;
3359 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003360 u32 size;
3361 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003362 u64 disko = 0, diskl = 0;
3363 u64 datao = 0, datal = 0;
3364 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003365 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003366
Sage Weilc5c9cd42008-11-12 14:32:25 -05003367 extent = btrfs_item_ptr(leaf, slot,
3368 struct btrfs_file_extent_item);
3369 comp = btrfs_file_extent_compression(leaf, extent);
3370 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003371 if (type == BTRFS_FILE_EXTENT_REG ||
3372 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003373 disko = btrfs_file_extent_disk_bytenr(leaf,
3374 extent);
3375 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3376 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003377 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003378 datal = btrfs_file_extent_num_bytes(leaf,
3379 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003380 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3381 /* take upper bound, may be compressed */
3382 datal = btrfs_file_extent_ram_bytes(leaf,
3383 extent);
3384 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003385
Filipe Manana2c463822014-05-31 02:31:05 +01003386 /*
3387 * The first search might have left us at an extent
3388 * item that ends before our target range's start, can
3389 * happen if we have holes and NO_HOLES feature enabled.
3390 */
3391 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003392 path->slots[0]++;
3393 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003394 } else if (key.offset >= off + len) {
3395 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003396 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003397 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003398 size = btrfs_item_size_nr(leaf, slot);
3399 read_extent_buffer(leaf, buf,
3400 btrfs_item_ptr_offset(leaf, slot),
3401 size);
3402
3403 btrfs_release_path(path);
3404 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003405
Zheng Yan31840ae2008-09-23 13:14:14 -04003406 memcpy(&new_key, &key, sizeof(new_key));
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003407 new_key.objectid = btrfs_ino(BTRFS_I(inode));
Li Zefan4d728ec2011-01-26 14:10:43 +08003408 if (off <= key.offset)
3409 new_key.offset = key.offset + destoff - off;
3410 else
3411 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003412
Sage Weilb6f34092011-09-20 14:48:51 -04003413 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003414 * Deal with a hole that doesn't have an extent item
3415 * that represents it (NO_HOLES feature enabled).
3416 * This hole is either in the middle of the cloning
3417 * range or at the beginning (fully overlaps it or
3418 * partially overlaps it).
3419 */
3420 if (new_key.offset != last_dest_end)
3421 drop_start = last_dest_end;
3422 else
3423 drop_start = new_key.offset;
3424
3425 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003426 * 1 - adjusting old extent (we may have to split it)
3427 * 1 - add new extent
3428 * 1 - inode update
3429 */
3430 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003431 if (IS_ERR(trans)) {
3432 ret = PTR_ERR(trans);
3433 goto out;
3434 }
3435
Chris Masonc8a894d2009-06-27 21:07:03 -04003436 if (type == BTRFS_FILE_EXTENT_REG ||
3437 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003438 /*
3439 * a | --- range to clone ---| b
3440 * | ------------- extent ------------- |
3441 */
3442
Antonio Ospite93915582014-06-04 14:03:48 +02003443 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003444 if (key.offset + datal > off + len)
3445 datal = off + len - key.offset;
3446
Antonio Ospite93915582014-06-04 14:03:48 +02003447 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003448 if (off > key.offset) {
3449 datao += off - key.offset;
3450 datal -= off - key.offset;
3451 }
3452
Josef Bacik5dc562c2012-08-17 13:14:17 -04003453 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003454 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003455 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003456 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003457 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003458 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003459 btrfs_abort_transaction(trans,
Jeff Mahoney66642832016-06-10 18:19:25 -04003460 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003461 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003462 goto out;
3463 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003464
Sage Weilc5c9cd42008-11-12 14:32:25 -05003465 ret = btrfs_insert_empty_item(trans, root, path,
3466 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003467 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003468 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003469 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003470 goto out;
3471 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003472
3473 leaf = path->nodes[0];
3474 slot = path->slots[0];
3475 write_extent_buffer(leaf, buf,
3476 btrfs_item_ptr_offset(leaf, slot),
3477 size);
3478
3479 extent = btrfs_item_ptr(leaf, slot,
3480 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003481
Sage Weilc5c9cd42008-11-12 14:32:25 -05003482 /* disko == 0 means it's a hole */
3483 if (!disko)
3484 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003485
3486 btrfs_set_file_extent_offset(leaf, extent,
3487 datao);
3488 btrfs_set_file_extent_num_bytes(leaf, extent,
3489 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003490
Sage Weilc5c9cd42008-11-12 14:32:25 -05003491 if (disko) {
3492 inode_add_bytes(inode, datal);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003493 ret = btrfs_inc_extent_ref(trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003494 root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003495 disko, diskl, 0,
3496 root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003497 btrfs_ino(BTRFS_I(inode)),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003498 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003499 if (ret) {
3500 btrfs_abort_transaction(trans,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003501 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003502 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003503 goto out;
3504
3505 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003506 }
3507 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3508 u64 skip = 0;
3509 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003510
Sage Weilc5c9cd42008-11-12 14:32:25 -05003511 if (off > key.offset) {
3512 skip = off - key.offset;
3513 new_key.offset += skip;
3514 }
Chris Masond3977122009-01-05 21:25:51 -05003515
Liu Boaa42ffd2012-09-18 03:52:23 -06003516 if (key.offset + datal > off + len)
3517 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003518
Sage Weilc5c9cd42008-11-12 14:32:25 -05003519 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003520 ret = -EINVAL;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003521 btrfs_end_transaction(trans);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003522 goto out;
3523 }
3524 size -= skip + trim;
3525 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003526
David Sterba4a0ab9d2017-02-10 20:18:49 +01003527 ret = clone_copy_inline_extent(inode,
Filipe Manana8039d872015-10-13 15:15:00 +01003528 trans, path,
3529 &new_key,
3530 drop_start,
3531 datal,
3532 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003533 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003534 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003535 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003536 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003537 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003538 goto out;
3539 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003540 leaf = path->nodes[0];
3541 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003542 }
3543
Filipe Manana7ffbb592014-06-09 03:48:05 +01003544 /* If we have an implicit hole (NO_HOLES feature). */
3545 if (drop_start < new_key.offset)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003546 clone_update_extent_map(BTRFS_I(inode), trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003547 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003548 new_key.offset - drop_start);
3549
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003550 clone_update_extent_map(BTRFS_I(inode), trans,
3551 path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003552
Sage Weilc5c9cd42008-11-12 14:32:25 -05003553 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003554 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003555
Filipe Manana62e23902014-08-08 02:47:06 +01003556 last_dest_end = ALIGN(new_key.offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003557 fs_info->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003558 ret = clone_finish_inode_update(trans, inode,
3559 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003560 destoff, olen,
3561 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003562 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003563 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003564 if (new_key.offset + datal >= destoff + len)
3565 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003566 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003567 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003568 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003569
3570 if (fatal_signal_pending(current)) {
3571 ret = -EINTR;
3572 goto out;
3573 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003574 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003575 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003576
Filipe Mananaf82a9902014-06-01 01:50:28 +01003577 if (last_dest_end < destoff + len) {
3578 /*
3579 * We have an implicit hole (NO_HOLES feature is enabled) that
3580 * fully or partially overlaps our cloning range at its end.
3581 */
3582 btrfs_release_path(path);
3583
3584 /*
3585 * 1 - remove extent(s)
3586 * 1 - inode update
3587 */
3588 trans = btrfs_start_transaction(root, 2);
3589 if (IS_ERR(trans)) {
3590 ret = PTR_ERR(trans);
3591 goto out;
3592 }
3593 ret = btrfs_drop_extents(trans, root, inode,
3594 last_dest_end, destoff + len, 1);
3595 if (ret) {
3596 if (ret != -EOPNOTSUPP)
Jeff Mahoney66642832016-06-10 18:19:25 -04003597 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003598 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003599 goto out;
3600 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003601 clone_update_extent_map(BTRFS_I(inode), trans, NULL,
3602 last_dest_end,
3603 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003604 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003605 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003606 }
3607
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003608out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003609 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003610 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003611 return ret;
3612}
3613
Zach Brown3db11b22015-11-10 16:53:32 -05003614static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3615 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003616{
Al Viro54563d42013-09-01 15:57:51 -04003617 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003618 struct inode *src = file_inode(file_src);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003619 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003620 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003621 int ret;
3622 u64 len = olen;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003623 u64 bs = fs_info->sb->s_blocksize;
Zach Brown3db11b22015-11-10 16:53:32 -05003624 int same_inode = src == inode;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003625
3626 /*
3627 * TODO:
3628 * - split compressed inline extents. annoying: we need to
3629 * decompress into destination's address_space (the file offset
3630 * may change, so source mapping won't do), then recompress (or
3631 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003632 *
3633 * - split destination inode's inline extents. The inline extents can
3634 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003635 */
3636
Mark Fasheh32b7c682013-08-06 11:42:49 -07003637 if (btrfs_root_readonly(root))
3638 return -EROFS;
3639
Zach Brown3db11b22015-11-10 16:53:32 -05003640 if (file_src->f_path.mnt != file->f_path.mnt ||
3641 src->i_sb != inode->i_sb)
3642 return -EXDEV;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003643
3644 /* don't make the dst file partly checksummed */
3645 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3646 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
Zach Brown3db11b22015-11-10 16:53:32 -05003647 return -EINVAL;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003648
Mark Fasheh32b7c682013-08-06 11:42:49 -07003649 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Zach Brown3db11b22015-11-10 16:53:32 -05003650 return -EISDIR;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003651
3652 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003653 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003654 } else {
Al Viro59551022016-01-22 15:40:57 -05003655 inode_lock(src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003656 }
3657
3658 /* determine range to clone */
3659 ret = -EINVAL;
3660 if (off + len > src->i_size || off + len < off)
3661 goto out_unlock;
3662 if (len == 0)
3663 olen = len = src->i_size - off;
3664 /* if we extend to eof, continue to block boundary */
3665 if (off + len == src->i_size)
3666 len = ALIGN(src->i_size, bs) - off;
3667
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003668 if (len == 0) {
3669 ret = 0;
3670 goto out_unlock;
3671 }
3672
Mark Fasheh32b7c682013-08-06 11:42:49 -07003673 /* verify the end result is block aligned */
3674 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3675 !IS_ALIGNED(destoff, bs))
3676 goto out_unlock;
3677
3678 /* verify if ranges are overlapped within the same file */
3679 if (same_inode) {
3680 if (destoff + len > off && destoff < off + len)
3681 goto out_unlock;
3682 }
3683
3684 if (destoff > inode->i_size) {
3685 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3686 if (ret)
3687 goto out_unlock;
3688 }
3689
Filipe Mananac125b8b2014-05-23 05:03:34 +01003690 /*
3691 * Lock the target range too. Right after we replace the file extent
3692 * items in the fs tree (which now point to the cloned data), we might
3693 * have a worker replace them with extent items relative to a write
3694 * operation that was issued before this clone operation (i.e. confront
3695 * with inode.c:btrfs_finish_ordered_io).
3696 */
3697 if (same_inode) {
3698 u64 lock_start = min_t(u64, off, destoff);
3699 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003700
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003701 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003702 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003703 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3704 true);
3705 }
3706 ASSERT(ret == 0);
3707 if (WARN_ON(ret)) {
3708 /* ranges in the io trees already unlocked */
3709 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003710 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003711
Mark Fasheh1c919a52015-06-30 14:42:08 -07003712 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003713
Filipe Mananac125b8b2014-05-23 05:03:34 +01003714 if (same_inode) {
3715 u64 lock_start = min_t(u64, off, destoff);
3716 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3717
3718 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3719 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003720 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003721 }
3722 /*
3723 * Truncate page cache pages so that future reads will see the cloned
3724 * data immediately and not the previous data.
3725 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303726 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003727 round_down(destoff, PAGE_SIZE),
3728 round_up(destoff + len, PAGE_SIZE) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003729out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003730 if (!same_inode)
3731 btrfs_double_inode_unlock(src, inode);
3732 else
Al Viro59551022016-01-22 15:40:57 -05003733 inode_unlock(src);
Zach Brown3db11b22015-11-10 16:53:32 -05003734 return ret;
3735}
3736
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003737int btrfs_clone_file_range(struct file *src_file, loff_t off,
3738 struct file *dst_file, loff_t destoff, u64 len)
Zach Brown3db11b22015-11-10 16:53:32 -05003739{
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003740 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003741}
3742
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003743static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3744{
Al Viro496ad9a2013-01-23 17:07:38 -05003745 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003746 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003747 struct btrfs_root *root = BTRFS_I(inode)->root;
3748 struct btrfs_root *new_root;
3749 struct btrfs_dir_item *di;
3750 struct btrfs_trans_handle *trans;
3751 struct btrfs_path *path;
3752 struct btrfs_key location;
3753 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003754 u64 objectid = 0;
3755 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003756 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003757
3758 if (!capable(CAP_SYS_ADMIN))
3759 return -EPERM;
3760
Miao Xie3c04ce02012-11-26 08:43:07 +00003761 ret = mnt_want_write_file(file);
3762 if (ret)
3763 return ret;
3764
3765 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3766 ret = -EFAULT;
3767 goto out;
3768 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003769
3770 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303771 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003772
3773 location.objectid = objectid;
3774 location.type = BTRFS_ROOT_ITEM_KEY;
3775 location.offset = (u64)-1;
3776
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003777 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003778 if (IS_ERR(new_root)) {
3779 ret = PTR_ERR(new_root);
3780 goto out;
3781 }
satoru takeuchi6d6d2822017-09-12 22:42:52 +09003782 if (!is_fstree(new_root->objectid)) {
3783 ret = -ENOENT;
3784 goto out;
3785 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003786
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003787 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003788 if (!path) {
3789 ret = -ENOMEM;
3790 goto out;
3791 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003792 path->leave_spinning = 1;
3793
3794 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003795 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003796 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003797 ret = PTR_ERR(trans);
3798 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003799 }
3800
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003801 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3802 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003803 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003804 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003805 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003806 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003807 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003808 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003809 ret = -ENOENT;
3810 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003811 }
3812
3813 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3814 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3815 btrfs_mark_buffer_dirty(path->nodes[0]);
3816 btrfs_free_path(path);
3817
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003818 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003819 btrfs_end_transaction(trans);
Miao Xie3c04ce02012-11-26 08:43:07 +00003820out:
3821 mnt_drop_write_file(file);
3822 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003823}
3824
Su Yuec065f5b12018-04-02 17:24:11 +08003825static void get_block_group_info(struct list_head *groups_list,
3826 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003827{
3828 struct btrfs_block_group_cache *block_group;
3829
3830 space->total_bytes = 0;
3831 space->used_bytes = 0;
3832 space->flags = 0;
3833 list_for_each_entry(block_group, groups_list, list) {
3834 space->flags = block_group->flags;
3835 space->total_bytes += block_group->key.offset;
3836 space->used_bytes +=
3837 btrfs_block_group_used(&block_group->item);
3838 }
3839}
3840
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003841static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
3842 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003843{
3844 struct btrfs_ioctl_space_args space_args;
3845 struct btrfs_ioctl_space_info space;
3846 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003847 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003848 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003849 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01003850 static const u64 types[] = {
3851 BTRFS_BLOCK_GROUP_DATA,
3852 BTRFS_BLOCK_GROUP_SYSTEM,
3853 BTRFS_BLOCK_GROUP_METADATA,
3854 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
3855 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003856 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003857 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003858 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003859 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003860 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003861
3862 if (copy_from_user(&space_args,
3863 (struct btrfs_ioctl_space_args __user *)arg,
3864 sizeof(space_args)))
3865 return -EFAULT;
3866
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003867 for (i = 0; i < num_types; i++) {
3868 struct btrfs_space_info *tmp;
3869
3870 info = NULL;
3871 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003872 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003873 list) {
3874 if (tmp->flags == types[i]) {
3875 info = tmp;
3876 break;
3877 }
3878 }
3879 rcu_read_unlock();
3880
3881 if (!info)
3882 continue;
3883
3884 down_read(&info->groups_sem);
3885 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3886 if (!list_empty(&info->block_groups[c]))
3887 slot_count++;
3888 }
3889 up_read(&info->groups_sem);
3890 }
Josef Bacik1406e432010-01-13 18:19:06 +00003891
David Sterba36523e952014-02-07 14:34:12 +01003892 /*
3893 * Global block reserve, exported as a space_info
3894 */
3895 slot_count++;
3896
Chris Mason7fde62b2010-03-16 15:40:10 -04003897 /* space_slots == 0 means they are asking for a count */
3898 if (space_args.space_slots == 0) {
3899 space_args.total_spaces = slot_count;
3900 goto out;
3901 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003902
Dan Rosenberg51788b12011-02-14 16:04:23 -05003903 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003904
Chris Mason7fde62b2010-03-16 15:40:10 -04003905 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003906
Chris Mason7fde62b2010-03-16 15:40:10 -04003907 /* we generally have at most 6 or so space infos, one for each raid
3908 * level. So, a whole page should be more than enough for everyone
3909 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003910 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04003911 return -ENOMEM;
3912
3913 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01003914 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04003915 if (!dest)
3916 return -ENOMEM;
3917 dest_orig = dest;
3918
3919 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003920 for (i = 0; i < num_types; i++) {
3921 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003922
Dan Rosenberg51788b12011-02-14 16:04:23 -05003923 if (!slot_count)
3924 break;
3925
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003926 info = NULL;
3927 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003928 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003929 list) {
3930 if (tmp->flags == types[i]) {
3931 info = tmp;
3932 break;
3933 }
3934 }
3935 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003936
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003937 if (!info)
3938 continue;
3939 down_read(&info->groups_sem);
3940 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3941 if (!list_empty(&info->block_groups[c])) {
Su Yuec065f5b12018-04-02 17:24:11 +08003942 get_block_group_info(&info->block_groups[c],
3943 &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003944 memcpy(dest, &space, sizeof(space));
3945 dest++;
3946 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003947 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003948 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003949 if (!slot_count)
3950 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003951 }
3952 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003953 }
Josef Bacik1406e432010-01-13 18:19:06 +00003954
David Sterba36523e952014-02-07 14:34:12 +01003955 /*
3956 * Add global block reserve
3957 */
3958 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003959 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01003960
3961 spin_lock(&block_rsv->lock);
3962 space.total_bytes = block_rsv->size;
3963 space.used_bytes = block_rsv->size - block_rsv->reserved;
3964 spin_unlock(&block_rsv->lock);
3965 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3966 memcpy(dest, &space, sizeof(space));
3967 space_args.total_spaces++;
3968 }
3969
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003970 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003971 (arg + sizeof(struct btrfs_ioctl_space_args));
3972
3973 if (copy_to_user(user_dest, dest_orig, alloc_size))
3974 ret = -EFAULT;
3975
3976 kfree(dest_orig);
3977out:
3978 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003979 ret = -EFAULT;
3980
3981 return ret;
3982}
3983
Miao Xie9a8c28b2012-11-26 08:40:43 +00003984static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3985 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003986{
Sage Weil46204592010-10-29 15:41:32 -04003987 struct btrfs_trans_handle *trans;
3988 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003989 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003990
Miao Xied4edf392013-02-20 09:17:06 +00003991 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00003992 if (IS_ERR(trans)) {
3993 if (PTR_ERR(trans) != -ENOENT)
3994 return PTR_ERR(trans);
3995
3996 /* No running transaction, don't bother */
3997 transid = root->fs_info->last_trans_committed;
3998 goto out;
3999 }
Sage Weil46204592010-10-29 15:41:32 -04004000 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004001 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004002 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004003 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004004 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004005 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004006out:
Sage Weil46204592010-10-29 15:41:32 -04004007 if (argp)
4008 if (copy_to_user(argp, &transid, sizeof(transid)))
4009 return -EFAULT;
4010 return 0;
4011}
4012
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004013static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00004014 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004015{
Sage Weil46204592010-10-29 15:41:32 -04004016 u64 transid;
4017
4018 if (argp) {
4019 if (copy_from_user(&transid, argp, sizeof(transid)))
4020 return -EFAULT;
4021 } else {
4022 transid = 0; /* current trans */
4023 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004024 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04004025}
4026
Miao Xieb8e95482012-11-26 08:48:01 +00004027static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004028{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004029 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01004030 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004031 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004032
4033 if (!capable(CAP_SYS_ADMIN))
4034 return -EPERM;
4035
4036 sa = memdup_user(arg, sizeof(*sa));
4037 if (IS_ERR(sa))
4038 return PTR_ERR(sa);
4039
Miao Xieb8e95482012-11-26 08:48:01 +00004040 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4041 ret = mnt_want_write_file(file);
4042 if (ret)
4043 goto out;
4044 }
4045
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004046 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004047 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4048 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004049
4050 if (copy_to_user(arg, sa, sizeof(*sa)))
4051 ret = -EFAULT;
4052
Miao Xieb8e95482012-11-26 08:48:01 +00004053 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4054 mnt_drop_write_file(file);
4055out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004056 kfree(sa);
4057 return ret;
4058}
4059
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004060static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01004061{
4062 if (!capable(CAP_SYS_ADMIN))
4063 return -EPERM;
4064
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004065 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004066}
4067
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004068static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01004069 void __user *arg)
4070{
4071 struct btrfs_ioctl_scrub_args *sa;
4072 int ret;
4073
4074 if (!capable(CAP_SYS_ADMIN))
4075 return -EPERM;
4076
4077 sa = memdup_user(arg, sizeof(*sa));
4078 if (IS_ERR(sa))
4079 return PTR_ERR(sa);
4080
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004081 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01004082
4083 if (copy_to_user(arg, sa, sizeof(*sa)))
4084 ret = -EFAULT;
4085
4086 kfree(sa);
4087 return ret;
4088}
4089
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004090static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06004091 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004092{
4093 struct btrfs_ioctl_get_dev_stats *sa;
4094 int ret;
4095
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004096 sa = memdup_user(arg, sizeof(*sa));
4097 if (IS_ERR(sa))
4098 return PTR_ERR(sa);
4099
David Sterbab27f7c02012-06-22 06:30:39 -06004100 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4101 kfree(sa);
4102 return -EPERM;
4103 }
4104
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004105 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004106
4107 if (copy_to_user(arg, sa, sizeof(*sa)))
4108 ret = -EFAULT;
4109
4110 kfree(sa);
4111 return ret;
4112}
4113
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004114static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4115 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004116{
4117 struct btrfs_ioctl_dev_replace_args *p;
4118 int ret;
4119
4120 if (!capable(CAP_SYS_ADMIN))
4121 return -EPERM;
4122
4123 p = memdup_user(arg, sizeof(*p));
4124 if (IS_ERR(p))
4125 return PTR_ERR(p);
4126
4127 switch (p->cmd) {
4128 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01004129 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004130 ret = -EROFS;
4131 goto out;
4132 }
David Sterba171938e2017-03-28 14:44:21 +02004133 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004134 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004135 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004136 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
David Sterba171938e2017-03-28 14:44:21 +02004137 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004138 }
4139 break;
4140 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004141 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004142 ret = 0;
4143 break;
4144 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Anand Jain17d202b2018-02-12 23:33:30 +08004145 p->result = btrfs_dev_replace_cancel(fs_info);
Anand Jain97282032018-02-12 23:33:29 +08004146 ret = 0;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004147 break;
4148 default:
4149 ret = -EINVAL;
4150 break;
4151 }
4152
4153 if (copy_to_user(arg, p, sizeof(*p)))
4154 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004155out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004156 kfree(p);
4157 return ret;
4158}
4159
Jan Schmidtd7728c92011-07-07 16:48:38 +02004160static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4161{
4162 int ret = 0;
4163 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004164 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004165 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004166 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004167 struct inode_fs_paths *ipath = NULL;
4168 struct btrfs_path *path;
4169
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004170 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004171 return -EPERM;
4172
4173 path = btrfs_alloc_path();
4174 if (!path) {
4175 ret = -ENOMEM;
4176 goto out;
4177 }
4178
4179 ipa = memdup_user(arg, sizeof(*ipa));
4180 if (IS_ERR(ipa)) {
4181 ret = PTR_ERR(ipa);
4182 ipa = NULL;
4183 goto out;
4184 }
4185
4186 size = min_t(u32, ipa->size, 4096);
4187 ipath = init_ipath(size, root, path);
4188 if (IS_ERR(ipath)) {
4189 ret = PTR_ERR(ipath);
4190 ipath = NULL;
4191 goto out;
4192 }
4193
4194 ret = paths_from_inode(ipa->inum, ipath);
4195 if (ret < 0)
4196 goto out;
4197
4198 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004199 rel_ptr = ipath->fspath->val[i] -
4200 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004201 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004202 }
4203
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004204 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
4205 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004206 if (ret) {
4207 ret = -EFAULT;
4208 goto out;
4209 }
4210
4211out:
4212 btrfs_free_path(path);
4213 free_ipath(ipath);
4214 kfree(ipa);
4215
4216 return ret;
4217}
4218
4219static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4220{
4221 struct btrfs_data_container *inodes = ctx;
4222 const size_t c = 3 * sizeof(u64);
4223
4224 if (inodes->bytes_left >= c) {
4225 inodes->bytes_left -= c;
4226 inodes->val[inodes->elem_cnt] = inum;
4227 inodes->val[inodes->elem_cnt + 1] = offset;
4228 inodes->val[inodes->elem_cnt + 2] = root;
4229 inodes->elem_cnt += 3;
4230 } else {
4231 inodes->bytes_missing += c - inodes->bytes_left;
4232 inodes->bytes_left = 0;
4233 inodes->elem_missed += 3;
4234 }
4235
4236 return 0;
4237}
4238
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004239static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004240 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004241{
4242 int ret = 0;
4243 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004244 struct btrfs_ioctl_logical_ino_args *loi;
4245 struct btrfs_data_container *inodes = NULL;
4246 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004247 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004248
4249 if (!capable(CAP_SYS_ADMIN))
4250 return -EPERM;
4251
4252 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304253 if (IS_ERR(loi))
4254 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004255
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004256 if (version == 1) {
4257 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004258 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004259 } else {
4260 /* All reserved bits must be 0 for now */
4261 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
4262 ret = -EINVAL;
4263 goto out_loi;
4264 }
4265 /* Only accept flags we have defined so far */
4266 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
4267 ret = -EINVAL;
4268 goto out_loi;
4269 }
4270 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004271 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004272 }
4273
Jan Schmidtd7728c92011-07-07 16:48:38 +02004274 path = btrfs_alloc_path();
4275 if (!path) {
4276 ret = -ENOMEM;
4277 goto out;
4278 }
4279
Jan Schmidtd7728c92011-07-07 16:48:38 +02004280 inodes = init_data_container(size);
4281 if (IS_ERR(inodes)) {
4282 ret = PTR_ERR(inodes);
4283 inodes = NULL;
4284 goto out;
4285 }
4286
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004287 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004288 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06004289 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004290 ret = -ENOENT;
4291 if (ret < 0)
4292 goto out;
4293
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004294 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4295 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004296 if (ret)
4297 ret = -EFAULT;
4298
4299out:
4300 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004301 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004302out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02004303 kfree(loi);
4304
4305 return ret;
4306}
4307
David Sterba008ef092018-03-21 02:05:27 +01004308void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004309 struct btrfs_ioctl_balance_args *bargs)
4310{
4311 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4312
4313 bargs->flags = bctl->flags;
4314
David Sterba3009a622018-03-21 01:31:04 +01004315 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags))
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004316 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4317 if (atomic_read(&fs_info->balance_pause_req))
4318 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004319 if (atomic_read(&fs_info->balance_cancel_req))
4320 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004321
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004322 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4323 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4324 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004325
David Sterba008ef092018-03-21 02:05:27 +01004326 spin_lock(&fs_info->balance_lock);
4327 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4328 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004329}
4330
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004331static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004332{
Al Viro496ad9a2013-01-23 17:07:38 -05004333 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004334 struct btrfs_fs_info *fs_info = root->fs_info;
4335 struct btrfs_ioctl_balance_args *bargs;
4336 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004337 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004338 int ret;
4339
4340 if (!capable(CAP_SYS_ADMIN))
4341 return -EPERM;
4342
Liu Boe54bfa32012-06-29 03:58:48 -06004343 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004344 if (ret)
4345 return ret;
4346
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004347again:
David Sterba171938e2017-03-28 14:44:21 +02004348 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004349 mutex_lock(&fs_info->balance_mutex);
4350 need_unlock = true;
4351 goto locked;
4352 }
4353
4354 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004355 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004356 * (1) some other op is running
4357 * (2) balance is running
4358 * (3) balance is paused -- special case (think resume)
4359 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004360 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004361 if (fs_info->balance_ctl) {
4362 /* this is either (2) or (3) */
David Sterba3009a622018-03-21 01:31:04 +01004363 if (!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004364 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004365 /*
4366 * Lock released to allow other waiters to continue,
4367 * we'll reexamine the status again.
4368 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004369 mutex_lock(&fs_info->balance_mutex);
4370
4371 if (fs_info->balance_ctl &&
David Sterba3009a622018-03-21 01:31:04 +01004372 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004373 /* this is (3) */
4374 need_unlock = false;
4375 goto locked;
4376 }
4377
4378 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004379 goto again;
4380 } else {
4381 /* this is (2) */
4382 mutex_unlock(&fs_info->balance_mutex);
4383 ret = -EINPROGRESS;
4384 goto out;
4385 }
4386 } else {
4387 /* this is (1) */
4388 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004389 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004390 goto out;
4391 }
4392
4393locked:
David Sterba171938e2017-03-28 14:44:21 +02004394 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004395
4396 if (arg) {
4397 bargs = memdup_user(arg, sizeof(*bargs));
4398 if (IS_ERR(bargs)) {
4399 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004400 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004401 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004402
4403 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4404 if (!fs_info->balance_ctl) {
4405 ret = -ENOTCONN;
4406 goto out_bargs;
4407 }
4408
4409 bctl = fs_info->balance_ctl;
4410 spin_lock(&fs_info->balance_lock);
4411 bctl->flags |= BTRFS_BALANCE_RESUME;
4412 spin_unlock(&fs_info->balance_lock);
4413
4414 goto do_balance;
4415 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004416 } else {
4417 bargs = NULL;
4418 }
4419
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004420 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004421 ret = -EINPROGRESS;
4422 goto out_bargs;
4423 }
4424
David Sterba8d2db782015-11-04 15:38:29 +01004425 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004426 if (!bctl) {
4427 ret = -ENOMEM;
4428 goto out_bargs;
4429 }
4430
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004431 if (arg) {
4432 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4433 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4434 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4435
4436 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004437 } else {
4438 /* balance everything - no filters */
4439 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004440 }
4441
David Sterba8eb93452015-10-12 16:55:54 +02004442 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4443 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004444 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004445 }
4446
Ilya Dryomovde322262012-01-16 22:04:49 +02004447do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004448 /*
David Sterba149196a2018-03-20 20:23:09 +01004449 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP goes to
4450 * btrfs_balance. bctl is freed in reset_balance_state, or, if
4451 * restriper was paused all the way until unmount, in free_fs_info.
4452 * The flag should be cleared after reset_balance_state.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004453 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004454 need_unlock = false;
4455
David Sterba6fcf6e22018-05-07 17:44:03 +02004456 ret = btrfs_balance(fs_info, bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004457 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004458
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004459 if (arg) {
4460 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4461 ret = -EFAULT;
4462 }
4463
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004464out_bctl:
4465 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004466out_bargs:
4467 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004468out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004469 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004470 if (need_unlock)
David Sterba171938e2017-03-28 14:44:21 +02004471 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004472out:
Liu Boe54bfa32012-06-29 03:58:48 -06004473 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004474 return ret;
4475}
4476
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004477static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004478{
4479 if (!capable(CAP_SYS_ADMIN))
4480 return -EPERM;
4481
4482 switch (cmd) {
4483 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004484 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004485 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004486 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004487 }
4488
4489 return -EINVAL;
4490}
4491
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004492static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004493 void __user *arg)
4494{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004495 struct btrfs_ioctl_balance_args *bargs;
4496 int ret = 0;
4497
4498 if (!capable(CAP_SYS_ADMIN))
4499 return -EPERM;
4500
4501 mutex_lock(&fs_info->balance_mutex);
4502 if (!fs_info->balance_ctl) {
4503 ret = -ENOTCONN;
4504 goto out;
4505 }
4506
David Sterba8d2db782015-11-04 15:38:29 +01004507 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004508 if (!bargs) {
4509 ret = -ENOMEM;
4510 goto out;
4511 }
4512
David Sterba008ef092018-03-21 02:05:27 +01004513 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004514
4515 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4516 ret = -EFAULT;
4517
4518 kfree(bargs);
4519out:
4520 mutex_unlock(&fs_info->balance_mutex);
4521 return ret;
4522}
4523
Miao Xie905b0dd2012-11-26 08:50:11 +00004524static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004525{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004526 struct inode *inode = file_inode(file);
4527 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004528 struct btrfs_ioctl_quota_ctl_args *sa;
4529 struct btrfs_trans_handle *trans = NULL;
4530 int ret;
4531 int err;
4532
4533 if (!capable(CAP_SYS_ADMIN))
4534 return -EPERM;
4535
Miao Xie905b0dd2012-11-26 08:50:11 +00004536 ret = mnt_want_write_file(file);
4537 if (ret)
4538 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004539
4540 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004541 if (IS_ERR(sa)) {
4542 ret = PTR_ERR(sa);
4543 goto drop_write;
4544 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004545
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004546 down_write(&fs_info->subvol_sem);
4547 trans = btrfs_start_transaction(fs_info->tree_root, 2);
Jan Schmidt2f232032013-04-25 16:04:51 +00004548 if (IS_ERR(trans)) {
4549 ret = PTR_ERR(trans);
4550 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004551 }
4552
4553 switch (sa->cmd) {
4554 case BTRFS_QUOTA_CTL_ENABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004555 ret = btrfs_quota_enable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004556 break;
4557 case BTRFS_QUOTA_CTL_DISABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004558 ret = btrfs_quota_disable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004559 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004560 default:
4561 ret = -EINVAL;
4562 break;
4563 }
4564
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004565 err = btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00004566 if (err && !ret)
4567 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004568out:
4569 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004570 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004571drop_write:
4572 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004573 return ret;
4574}
4575
Miao Xie905b0dd2012-11-26 08:50:11 +00004576static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004577{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004578 struct inode *inode = file_inode(file);
4579 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4580 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004581 struct btrfs_ioctl_qgroup_assign_args *sa;
4582 struct btrfs_trans_handle *trans;
4583 int ret;
4584 int err;
4585
4586 if (!capable(CAP_SYS_ADMIN))
4587 return -EPERM;
4588
Miao Xie905b0dd2012-11-26 08:50:11 +00004589 ret = mnt_want_write_file(file);
4590 if (ret)
4591 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004592
4593 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004594 if (IS_ERR(sa)) {
4595 ret = PTR_ERR(sa);
4596 goto drop_write;
4597 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004598
4599 trans = btrfs_join_transaction(root);
4600 if (IS_ERR(trans)) {
4601 ret = PTR_ERR(trans);
4602 goto out;
4603 }
4604
Arne Jansen5d13a372011-09-14 15:53:51 +02004605 if (sa->assign) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004606 ret = btrfs_add_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004607 sa->src, sa->dst);
4608 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004609 ret = btrfs_del_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004610 sa->src, sa->dst);
4611 }
4612
Qu Wenruoe082f562015-02-27 16:24:28 +08004613 /* update qgroup status and info */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004614 err = btrfs_run_qgroups(trans, fs_info);
Qu Wenruoe082f562015-02-27 16:24:28 +08004615 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004616 btrfs_handle_fs_error(fs_info, err,
4617 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004618 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004619 if (err && !ret)
4620 ret = err;
4621
4622out:
4623 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004624drop_write:
4625 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004626 return ret;
4627}
4628
Miao Xie905b0dd2012-11-26 08:50:11 +00004629static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004630{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004631 struct inode *inode = file_inode(file);
4632 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4633 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004634 struct btrfs_ioctl_qgroup_create_args *sa;
4635 struct btrfs_trans_handle *trans;
4636 int ret;
4637 int err;
4638
4639 if (!capable(CAP_SYS_ADMIN))
4640 return -EPERM;
4641
Miao Xie905b0dd2012-11-26 08:50:11 +00004642 ret = mnt_want_write_file(file);
4643 if (ret)
4644 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004645
4646 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004647 if (IS_ERR(sa)) {
4648 ret = PTR_ERR(sa);
4649 goto drop_write;
4650 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004651
Miao Xied86e56c2012-11-15 11:35:41 +00004652 if (!sa->qgroupid) {
4653 ret = -EINVAL;
4654 goto out;
4655 }
4656
Arne Jansen5d13a372011-09-14 15:53:51 +02004657 trans = btrfs_join_transaction(root);
4658 if (IS_ERR(trans)) {
4659 ret = PTR_ERR(trans);
4660 goto out;
4661 }
4662
Arne Jansen5d13a372011-09-14 15:53:51 +02004663 if (sa->create) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004664 ret = btrfs_create_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004665 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004666 ret = btrfs_remove_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004667 }
4668
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004669 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004670 if (err && !ret)
4671 ret = err;
4672
4673out:
4674 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004675drop_write:
4676 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004677 return ret;
4678}
4679
Miao Xie905b0dd2012-11-26 08:50:11 +00004680static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004681{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004682 struct inode *inode = file_inode(file);
4683 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4684 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004685 struct btrfs_ioctl_qgroup_limit_args *sa;
4686 struct btrfs_trans_handle *trans;
4687 int ret;
4688 int err;
4689 u64 qgroupid;
4690
4691 if (!capable(CAP_SYS_ADMIN))
4692 return -EPERM;
4693
Miao Xie905b0dd2012-11-26 08:50:11 +00004694 ret = mnt_want_write_file(file);
4695 if (ret)
4696 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004697
4698 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004699 if (IS_ERR(sa)) {
4700 ret = PTR_ERR(sa);
4701 goto drop_write;
4702 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004703
4704 trans = btrfs_join_transaction(root);
4705 if (IS_ERR(trans)) {
4706 ret = PTR_ERR(trans);
4707 goto out;
4708 }
4709
4710 qgroupid = sa->qgroupid;
4711 if (!qgroupid) {
4712 /* take the current subvol as qgroup */
4713 qgroupid = root->root_key.objectid;
4714 }
4715
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004716 ret = btrfs_limit_qgroup(trans, fs_info, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004717
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004718 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004719 if (err && !ret)
4720 ret = err;
4721
4722out:
4723 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004724drop_write:
4725 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004726 return ret;
4727}
4728
Jan Schmidt2f232032013-04-25 16:04:51 +00004729static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4730{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004731 struct inode *inode = file_inode(file);
4732 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004733 struct btrfs_ioctl_quota_rescan_args *qsa;
4734 int ret;
4735
4736 if (!capable(CAP_SYS_ADMIN))
4737 return -EPERM;
4738
4739 ret = mnt_want_write_file(file);
4740 if (ret)
4741 return ret;
4742
4743 qsa = memdup_user(arg, sizeof(*qsa));
4744 if (IS_ERR(qsa)) {
4745 ret = PTR_ERR(qsa);
4746 goto drop_write;
4747 }
4748
4749 if (qsa->flags) {
4750 ret = -EINVAL;
4751 goto out;
4752 }
4753
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004754 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00004755
4756out:
4757 kfree(qsa);
4758drop_write:
4759 mnt_drop_write_file(file);
4760 return ret;
4761}
4762
4763static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4764{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004765 struct inode *inode = file_inode(file);
4766 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004767 struct btrfs_ioctl_quota_rescan_args *qsa;
4768 int ret = 0;
4769
4770 if (!capable(CAP_SYS_ADMIN))
4771 return -EPERM;
4772
David Sterba8d2db782015-11-04 15:38:29 +01004773 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00004774 if (!qsa)
4775 return -ENOMEM;
4776
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004777 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00004778 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004779 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00004780 }
4781
4782 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4783 ret = -EFAULT;
4784
4785 kfree(qsa);
4786 return ret;
4787}
4788
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004789static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4790{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004791 struct inode *inode = file_inode(file);
4792 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004793
4794 if (!capable(CAP_SYS_ADMIN))
4795 return -EPERM;
4796
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004797 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004798}
4799
Hugo Millsabccd002014-01-30 20:17:00 +00004800static long _btrfs_ioctl_set_received_subvol(struct file *file,
4801 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004802{
Al Viro496ad9a2013-01-23 17:07:38 -05004803 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004804 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02004805 struct btrfs_root *root = BTRFS_I(inode)->root;
4806 struct btrfs_root_item *root_item = &root->root_item;
4807 struct btrfs_trans_handle *trans;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004808 struct timespec ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02004809 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004810 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004811
David Sterbabd60ea02014-01-16 15:50:22 +01004812 if (!inode_owner_or_capable(inode))
4813 return -EPERM;
4814
Alexander Block8ea05e32012-07-25 17:35:53 +02004815 ret = mnt_want_write_file(file);
4816 if (ret < 0)
4817 return ret;
4818
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004819 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02004820
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004821 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02004822 ret = -EINVAL;
4823 goto out;
4824 }
4825
4826 if (btrfs_root_readonly(root)) {
4827 ret = -EROFS;
4828 goto out;
4829 }
4830
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004831 /*
4832 * 1 - root item
4833 * 2 - uuid items (received uuid + subvol uuid)
4834 */
4835 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004836 if (IS_ERR(trans)) {
4837 ret = PTR_ERR(trans);
4838 trans = NULL;
4839 goto out;
4840 }
4841
4842 sa->rtransid = trans->transid;
4843 sa->rtime.sec = ct.tv_sec;
4844 sa->rtime.nsec = ct.tv_nsec;
4845
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004846 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4847 BTRFS_UUID_SIZE);
4848 if (received_uuid_changed &&
Nikolay Borisovd87ff752018-03-12 14:48:09 +02004849 !btrfs_is_empty_uuid(root_item->received_uuid)) {
4850 ret = btrfs_uuid_tree_rem(trans, fs_info,
4851 root_item->received_uuid,
4852 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4853 root->root_key.objectid);
4854 if (ret && ret != -ENOENT) {
4855 btrfs_abort_transaction(trans, ret);
4856 btrfs_end_transaction(trans);
4857 goto out;
4858 }
4859 }
Alexander Block8ea05e32012-07-25 17:35:53 +02004860 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4861 btrfs_set_root_stransid(root_item, sa->stransid);
4862 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004863 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4864 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4865 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4866 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004867
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004868 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02004869 &root->root_key, &root->root_item);
4870 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004871 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004872 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004873 }
4874 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004875 ret = btrfs_uuid_tree_add(trans, fs_info, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004876 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4877 root->root_key.objectid);
4878 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004879 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03004880 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004881 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004882 }
4883 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004884 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00004885out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004886 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00004887 mnt_drop_write_file(file);
4888 return ret;
4889}
4890
4891#ifdef CONFIG_64BIT
4892static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4893 void __user *arg)
4894{
4895 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4896 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4897 int ret = 0;
4898
4899 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304900 if (IS_ERR(args32))
4901 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00004902
David Sterba8d2db782015-11-04 15:38:29 +01004903 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004904 if (!args64) {
4905 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004906 goto out;
4907 }
4908
4909 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4910 args64->stransid = args32->stransid;
4911 args64->rtransid = args32->rtransid;
4912 args64->stime.sec = args32->stime.sec;
4913 args64->stime.nsec = args32->stime.nsec;
4914 args64->rtime.sec = args32->rtime.sec;
4915 args64->rtime.nsec = args32->rtime.nsec;
4916 args64->flags = args32->flags;
4917
4918 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4919 if (ret)
4920 goto out;
4921
4922 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4923 args32->stransid = args64->stransid;
4924 args32->rtransid = args64->rtransid;
4925 args32->stime.sec = args64->stime.sec;
4926 args32->stime.nsec = args64->stime.nsec;
4927 args32->rtime.sec = args64->rtime.sec;
4928 args32->rtime.nsec = args64->rtime.nsec;
4929 args32->flags = args64->flags;
4930
4931 ret = copy_to_user(arg, args32, sizeof(*args32));
4932 if (ret)
4933 ret = -EFAULT;
4934
4935out:
4936 kfree(args32);
4937 kfree(args64);
4938 return ret;
4939}
4940#endif
4941
4942static long btrfs_ioctl_set_received_subvol(struct file *file,
4943 void __user *arg)
4944{
4945 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4946 int ret = 0;
4947
4948 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304949 if (IS_ERR(sa))
4950 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00004951
4952 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4953
4954 if (ret)
4955 goto out;
4956
Alexander Block8ea05e32012-07-25 17:35:53 +02004957 ret = copy_to_user(arg, sa, sizeof(*sa));
4958 if (ret)
4959 ret = -EFAULT;
4960
4961out:
4962 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004963 return ret;
4964}
4965
jeff.liu867ab662013-01-05 02:48:01 +00004966static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4967{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004968 struct inode *inode = file_inode(file);
4969 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jaina1b83ac2013-07-19 17:39:32 +08004970 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004971 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004972 char label[BTRFS_LABEL_SIZE];
4973
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004974 spin_lock(&fs_info->super_lock);
4975 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4976 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08004977
4978 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00004979
4980 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004981 btrfs_warn(fs_info,
4982 "label is too long, return the first %zu bytes",
4983 --len);
jeff.liu867ab662013-01-05 02:48:01 +00004984 }
4985
jeff.liu867ab662013-01-05 02:48:01 +00004986 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00004987
4988 return ret ? -EFAULT : 0;
4989}
4990
jeff.liua8bfd4a2013-01-05 02:48:08 +00004991static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4992{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004993 struct inode *inode = file_inode(file);
4994 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4995 struct btrfs_root *root = BTRFS_I(inode)->root;
4996 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00004997 struct btrfs_trans_handle *trans;
4998 char label[BTRFS_LABEL_SIZE];
4999 int ret;
5000
5001 if (!capable(CAP_SYS_ADMIN))
5002 return -EPERM;
5003
5004 if (copy_from_user(label, arg, sizeof(label)))
5005 return -EFAULT;
5006
5007 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005008 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005009 "unable to set label with more than %d bytes",
5010 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005011 return -EINVAL;
5012 }
5013
5014 ret = mnt_want_write_file(file);
5015 if (ret)
5016 return ret;
5017
jeff.liua8bfd4a2013-01-05 02:48:08 +00005018 trans = btrfs_start_transaction(root, 0);
5019 if (IS_ERR(trans)) {
5020 ret = PTR_ERR(trans);
5021 goto out_unlock;
5022 }
5023
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005024 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005025 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005026 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005027 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005028
5029out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005030 mnt_drop_write_file(file);
5031 return ret;
5032}
5033
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005034#define INIT_FEATURE_FLAGS(suffix) \
5035 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5036 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5037 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5038
David Sterbad5131b62016-02-17 15:26:27 +01005039int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005040{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005041 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005042 INIT_FEATURE_FLAGS(SUPP),
5043 INIT_FEATURE_FLAGS(SAFE_SET),
5044 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5045 };
5046
5047 if (copy_to_user(arg, &features, sizeof(features)))
5048 return -EFAULT;
5049
5050 return 0;
5051}
5052
5053static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5054{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005055 struct inode *inode = file_inode(file);
5056 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5057 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005058 struct btrfs_ioctl_feature_flags features;
5059
5060 features.compat_flags = btrfs_super_compat_flags(super_block);
5061 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5062 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5063
5064 if (copy_to_user(arg, &features, sizeof(features)))
5065 return -EFAULT;
5066
5067 return 0;
5068}
5069
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005070static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005071 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005072 u64 change_mask, u64 flags, u64 supported_flags,
5073 u64 safe_set, u64 safe_clear)
5074{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005075 const char *type = btrfs_feature_set_names[set];
5076 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005077 u64 disallowed, unsupported;
5078 u64 set_mask = flags & change_mask;
5079 u64 clear_mask = ~flags & change_mask;
5080
5081 unsupported = set_mask & ~supported_flags;
5082 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005083 names = btrfs_printable_features(set, unsupported);
5084 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005085 btrfs_warn(fs_info,
5086 "this kernel does not support the %s feature bit%s",
5087 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005088 kfree(names);
5089 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005090 btrfs_warn(fs_info,
5091 "this kernel does not support %s bits 0x%llx",
5092 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005093 return -EOPNOTSUPP;
5094 }
5095
5096 disallowed = set_mask & ~safe_set;
5097 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005098 names = btrfs_printable_features(set, disallowed);
5099 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005100 btrfs_warn(fs_info,
5101 "can't set the %s feature bit%s while mounted",
5102 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005103 kfree(names);
5104 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005105 btrfs_warn(fs_info,
5106 "can't set %s bits 0x%llx while mounted",
5107 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005108 return -EPERM;
5109 }
5110
5111 disallowed = clear_mask & ~safe_clear;
5112 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005113 names = btrfs_printable_features(set, disallowed);
5114 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005115 btrfs_warn(fs_info,
5116 "can't clear the %s feature bit%s while mounted",
5117 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005118 kfree(names);
5119 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005120 btrfs_warn(fs_info,
5121 "can't clear %s bits 0x%llx while mounted",
5122 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005123 return -EPERM;
5124 }
5125
5126 return 0;
5127}
5128
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005129#define check_feature(fs_info, change_mask, flags, mask_base) \
5130check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005131 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5132 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5133 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5134
5135static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5136{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005137 struct inode *inode = file_inode(file);
5138 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5139 struct btrfs_root *root = BTRFS_I(inode)->root;
5140 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005141 struct btrfs_ioctl_feature_flags flags[2];
5142 struct btrfs_trans_handle *trans;
5143 u64 newflags;
5144 int ret;
5145
5146 if (!capable(CAP_SYS_ADMIN))
5147 return -EPERM;
5148
5149 if (copy_from_user(flags, arg, sizeof(flags)))
5150 return -EFAULT;
5151
5152 /* Nothing to do */
5153 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5154 !flags[0].incompat_flags)
5155 return 0;
5156
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005157 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005158 flags[1].compat_flags, COMPAT);
5159 if (ret)
5160 return ret;
5161
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005162 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005163 flags[1].compat_ro_flags, COMPAT_RO);
5164 if (ret)
5165 return ret;
5166
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005167 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005168 flags[1].incompat_flags, INCOMPAT);
5169 if (ret)
5170 return ret;
5171
David Sterba7ab19622016-05-04 11:32:00 +02005172 ret = mnt_want_write_file(file);
5173 if (ret)
5174 return ret;
5175
David Sterba8051aa12014-02-07 14:34:04 +01005176 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005177 if (IS_ERR(trans)) {
5178 ret = PTR_ERR(trans);
5179 goto out_drop_write;
5180 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005181
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005182 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005183 newflags = btrfs_super_compat_flags(super_block);
5184 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5185 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5186 btrfs_set_super_compat_flags(super_block, newflags);
5187
5188 newflags = btrfs_super_compat_ro_flags(super_block);
5189 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5190 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5191 btrfs_set_super_compat_ro_flags(super_block, newflags);
5192
5193 newflags = btrfs_super_incompat_flags(super_block);
5194 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5195 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5196 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005197 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005198
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005199 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02005200out_drop_write:
5201 mnt_drop_write_file(file);
5202
5203 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005204}
5205
Josef Bacik2351f432017-09-27 10:43:13 -04005206static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
5207{
5208 struct btrfs_ioctl_send_args *arg;
5209 int ret;
5210
5211 if (compat) {
5212#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5213 struct btrfs_ioctl_send_args_32 args32;
5214
5215 ret = copy_from_user(&args32, argp, sizeof(args32));
5216 if (ret)
5217 return -EFAULT;
5218 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
5219 if (!arg)
5220 return -ENOMEM;
5221 arg->send_fd = args32.send_fd;
5222 arg->clone_sources_count = args32.clone_sources_count;
5223 arg->clone_sources = compat_ptr(args32.clone_sources);
5224 arg->parent_root = args32.parent_root;
5225 arg->flags = args32.flags;
5226 memcpy(arg->reserved, args32.reserved,
5227 sizeof(args32.reserved));
5228#else
5229 return -ENOTTY;
5230#endif
5231 } else {
5232 arg = memdup_user(argp, sizeof(*arg));
5233 if (IS_ERR(arg))
5234 return PTR_ERR(arg);
5235 }
5236 ret = btrfs_ioctl_send(file, arg);
5237 kfree(arg);
5238 return ret;
5239}
5240
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005241long btrfs_ioctl(struct file *file, unsigned int
5242 cmd, unsigned long arg)
5243{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005244 struct inode *inode = file_inode(file);
5245 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5246 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005247 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005248
5249 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005250 case FS_IOC_GETFLAGS:
5251 return btrfs_ioctl_getflags(file, argp);
5252 case FS_IOC_SETFLAGS:
5253 return btrfs_ioctl_setflags(file, argp);
5254 case FS_IOC_GETVERSION:
5255 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005256 case FITRIM:
5257 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005258 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005259 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005260 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005261 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005262 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005263 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005264 case BTRFS_IOC_SUBVOL_CREATE_V2:
5265 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005266 case BTRFS_IOC_SNAP_DESTROY:
5267 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005268 case BTRFS_IOC_SUBVOL_GETFLAGS:
5269 return btrfs_ioctl_subvol_getflags(file, argp);
5270 case BTRFS_IOC_SUBVOL_SETFLAGS:
5271 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005272 case BTRFS_IOC_DEFAULT_SUBVOL:
5273 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005274 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005275 return btrfs_ioctl_defrag(file, NULL);
5276 case BTRFS_IOC_DEFRAG_RANGE:
5277 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005278 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005279 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005280 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005281 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005282 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005283 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005284 case BTRFS_IOC_RM_DEV_V2:
5285 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005286 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005287 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005288 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005289 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005290 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005291 return btrfs_ioctl_balance(file, NULL);
Chris Masonac8e9812010-02-28 15:39:26 -05005292 case BTRFS_IOC_TREE_SEARCH:
5293 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005294 case BTRFS_IOC_TREE_SEARCH_V2:
5295 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005296 case BTRFS_IOC_INO_LOOKUP:
5297 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005298 case BTRFS_IOC_INO_PATHS:
5299 return btrfs_ioctl_ino_to_path(root, argp);
5300 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04005301 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
5302 case BTRFS_IOC_LOGICAL_INO_V2:
5303 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00005304 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005305 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005306 case BTRFS_IOC_SYNC: {
5307 int ret;
5308
Nikolay Borisov82b3e532018-04-23 10:54:13 +03005309 ret = btrfs_start_delalloc_roots(fs_info, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005310 if (ret)
5311 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005312 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005313 /*
5314 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005315 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005316 * processing uncleaned subvols.
5317 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005318 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005319 return ret;
5320 }
Sage Weil46204592010-10-29 15:41:32 -04005321 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005322 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005323 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005324 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005325 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005326 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005327 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005328 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005329 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005330 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005331 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005332 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005333 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005334 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005335 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005336 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005337 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5338 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005339#ifdef CONFIG_64BIT
5340 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5341 return btrfs_ioctl_set_received_subvol_32(file, argp);
5342#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005343 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04005344 return _btrfs_ioctl_send(file, argp, false);
5345#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5346 case BTRFS_IOC_SEND_32:
5347 return _btrfs_ioctl_send(file, argp, true);
5348#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005349 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005350 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005351 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005352 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005353 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005354 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005355 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005356 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005357 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005358 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005359 case BTRFS_IOC_QUOTA_RESCAN:
5360 return btrfs_ioctl_quota_rescan(file, argp);
5361 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5362 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005363 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5364 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005365 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005366 return btrfs_ioctl_dev_replace(fs_info, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005367 case BTRFS_IOC_GET_FSLABEL:
5368 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005369 case BTRFS_IOC_SET_FSLABEL:
5370 return btrfs_ioctl_set_fslabel(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005371 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005372 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005373 case BTRFS_IOC_GET_FEATURES:
5374 return btrfs_ioctl_get_features(file, argp);
5375 case BTRFS_IOC_SET_FEATURES:
5376 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005377 }
5378
5379 return -ENOTTY;
5380}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005381
5382#ifdef CONFIG_COMPAT
5383long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5384{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005385 /*
5386 * These all access 32-bit values anyway so no further
5387 * handling is necessary.
5388 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005389 switch (cmd) {
5390 case FS_IOC32_GETFLAGS:
5391 cmd = FS_IOC_GETFLAGS;
5392 break;
5393 case FS_IOC32_SETFLAGS:
5394 cmd = FS_IOC_SETFLAGS;
5395 break;
5396 case FS_IOC32_GETVERSION:
5397 cmd = FS_IOC_GETVERSION;
5398 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005399 }
5400
5401 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5402}
5403#endif