blob: ba62dc3d59ec04f84981dd27de38df6614351af0 [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 Sterba1905a0f2018-03-26 18:52:15 +020096static unsigned int btrfs_mask_fsflags_for_type(struct inode *inode,
97 unsigned int flags)
Christoph Hellwig6cbff002009-04-17 10:37:41 +020098{
David Sterba1905a0f2018-03-26 18:52:15 +020099 if (S_ISDIR(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200100 return flags;
David Sterba1905a0f2018-03-26 18:52:15 +0200101 else if (S_ISREG(inode->i_mode))
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200102 return flags & ~FS_DIRSYNC_FL;
103 else
104 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
105}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400106
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200107/*
108 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
109 */
110static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
111{
112 unsigned int iflags = 0;
113
114 if (flags & BTRFS_INODE_SYNC)
115 iflags |= FS_SYNC_FL;
116 if (flags & BTRFS_INODE_IMMUTABLE)
117 iflags |= FS_IMMUTABLE_FL;
118 if (flags & BTRFS_INODE_APPEND)
119 iflags |= FS_APPEND_FL;
120 if (flags & BTRFS_INODE_NODUMP)
121 iflags |= FS_NODUMP_FL;
122 if (flags & BTRFS_INODE_NOATIME)
123 iflags |= FS_NOATIME_FL;
124 if (flags & BTRFS_INODE_DIRSYNC)
125 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000126 if (flags & BTRFS_INODE_NODATACOW)
127 iflags |= FS_NOCOW_FL;
128
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900129 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000130 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900131 else if (flags & BTRFS_INODE_COMPRESS)
132 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200133
134 return iflags;
135}
136
137/*
138 * Update inode->i_flags based on the btrfs internal flags.
139 */
David Sterba7b6a2212018-03-26 18:40:21 +0200140void btrfs_sync_inode_flags_to_i_flags(struct inode *inode)
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200141{
142 struct btrfs_inode *ip = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100143 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200144
145 if (ip->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100146 new_fl |= S_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200147 if (ip->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100148 new_fl |= S_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200149 if (ip->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100150 new_fl |= S_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200151 if (ip->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100152 new_fl |= S_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200153 if (ip->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100154 new_fl |= S_DIRSYNC;
155
156 set_mask_bits(&inode->i_flags,
157 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
158 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200159}
160
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200161static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
162{
Al Viro496ad9a2013-01-23 17:07:38 -0500163 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200164 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
165
166 if (copy_to_user(arg, &flags, sizeof(flags)))
167 return -EFAULT;
168 return 0;
169}
170
David Sterba5ba76ab2018-03-26 18:52:15 +0200171/* Check if @flags are a supported and valid set of FS_*_FL flags */
172static int check_fsflags(unsigned int flags)
Liu Bo75e7cb72011-03-22 10:12:20 +0000173{
174 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
175 FS_NOATIME_FL | FS_NODUMP_FL | \
176 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000177 FS_NOCOMP_FL | FS_COMPR_FL |
178 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000179 return -EOPNOTSUPP;
180
181 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
182 return -EINVAL;
183
Liu Bo75e7cb72011-03-22 10:12:20 +0000184 return 0;
185}
186
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200187static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
188{
Al Viro496ad9a2013-01-23 17:07:38 -0500189 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400190 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200191 struct btrfs_inode *ip = BTRFS_I(inode);
192 struct btrfs_root *root = ip->root;
193 struct btrfs_trans_handle *trans;
194 unsigned int flags, oldflags;
195 int ret;
Li Zefanf062abf02011-12-29 13:36:45 +0800196 u64 ip_oldflags;
197 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600198 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200199
David Sterbabd60ea02014-01-16 15:50:22 +0100200 if (!inode_owner_or_capable(inode))
201 return -EPERM;
202
Li Zefanb83cc962010-12-20 16:04:08 +0800203 if (btrfs_root_readonly(root))
204 return -EROFS;
205
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200206 if (copy_from_user(&flags, arg, sizeof(flags)))
207 return -EFAULT;
208
David Sterba5ba76ab2018-03-26 18:52:15 +0200209 ret = check_fsflags(flags);
Liu Bo75e7cb72011-03-22 10:12:20 +0000210 if (ret)
211 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200212
Jan Karae7848682012-06-12 16:20:32 +0200213 ret = mnt_want_write_file(file);
214 if (ret)
215 return ret;
216
Al Viro59551022016-01-22 15:40:57 -0500217 inode_lock(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200218
Li Zefanf062abf02011-12-29 13:36:45 +0800219 ip_oldflags = ip->flags;
220 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600221 mode = inode->i_mode;
Li Zefanf062abf02011-12-29 13:36:45 +0800222
David Sterba1905a0f2018-03-26 18:52:15 +0200223 flags = btrfs_mask_fsflags_for_type(inode, flags);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200224 oldflags = btrfs_flags_to_ioctl(ip->flags);
225 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
226 if (!capable(CAP_LINUX_IMMUTABLE)) {
227 ret = -EPERM;
228 goto out_unlock;
229 }
230 }
231
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200232 if (flags & FS_SYNC_FL)
233 ip->flags |= BTRFS_INODE_SYNC;
234 else
235 ip->flags &= ~BTRFS_INODE_SYNC;
236 if (flags & FS_IMMUTABLE_FL)
237 ip->flags |= BTRFS_INODE_IMMUTABLE;
238 else
239 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
240 if (flags & FS_APPEND_FL)
241 ip->flags |= BTRFS_INODE_APPEND;
242 else
243 ip->flags &= ~BTRFS_INODE_APPEND;
244 if (flags & FS_NODUMP_FL)
245 ip->flags |= BTRFS_INODE_NODUMP;
246 else
247 ip->flags &= ~BTRFS_INODE_NODUMP;
248 if (flags & FS_NOATIME_FL)
249 ip->flags |= BTRFS_INODE_NOATIME;
250 else
251 ip->flags &= ~BTRFS_INODE_NOATIME;
252 if (flags & FS_DIRSYNC_FL)
253 ip->flags |= BTRFS_INODE_DIRSYNC;
254 else
255 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600256 if (flags & FS_NOCOW_FL) {
257 if (S_ISREG(mode)) {
258 /*
259 * It's safe to turn csums off here, no extents exist.
260 * Otherwise we want the flag to reflect the real COW
261 * status of the file and will not set it.
262 */
263 if (inode->i_size == 0)
264 ip->flags |= BTRFS_INODE_NODATACOW
265 | BTRFS_INODE_NODATASUM;
266 } else {
267 ip->flags |= BTRFS_INODE_NODATACOW;
268 }
269 } else {
270 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400271 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600272 */
273 if (S_ISREG(mode)) {
274 if (inode->i_size == 0)
275 ip->flags &= ~(BTRFS_INODE_NODATACOW
276 | BTRFS_INODE_NODATASUM);
277 } else {
278 ip->flags &= ~BTRFS_INODE_NODATACOW;
279 }
280 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200281
Liu Bo75e7cb72011-03-22 10:12:20 +0000282 /*
283 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
284 * flag may be changed automatically if compression code won't make
285 * things smaller.
286 */
287 if (flags & FS_NOCOMP_FL) {
288 ip->flags &= ~BTRFS_INODE_COMPRESS;
289 ip->flags |= BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000290
291 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
292 if (ret && ret != -ENODATA)
293 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000294 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000295 const char *comp;
296
Liu Bo75e7cb72011-03-22 10:12:20 +0000297 ip->flags |= BTRFS_INODE_COMPRESS;
298 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000299
David Sterba93370502017-10-31 17:32:41 +0100300 comp = btrfs_compress_type2str(fs_info->compress_type);
301 if (!comp || comp[0] == 0)
302 comp = btrfs_compress_type2str(BTRFS_COMPRESS_ZLIB);
303
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000304 ret = btrfs_set_prop(inode, "btrfs.compression",
305 comp, strlen(comp), 0);
306 if (ret)
307 goto out_drop;
308
Li Zefanebcb9042011-04-15 03:03:17 +0000309 } else {
Filipe Manana78a017a2014-09-11 11:44:49 +0100310 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
311 if (ret && ret != -ENODATA)
312 goto out_drop;
Li Zefanebcb9042011-04-15 03:03:17 +0000313 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000314 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200315
Li Zefan4da6f1a2011-12-29 13:39:50 +0800316 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf02011-12-29 13:36:45 +0800317 if (IS_ERR(trans)) {
318 ret = PTR_ERR(trans);
319 goto out_drop;
320 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200321
David Sterba7b6a2212018-03-26 18:40:21 +0200322 btrfs_sync_inode_flags_to_i_flags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400323 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700324 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200325 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200326
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400327 btrfs_end_transaction(trans);
Li Zefanf062abf02011-12-29 13:36:45 +0800328 out_drop:
329 if (ret) {
330 ip->flags = ip_oldflags;
331 inode->i_flags = i_oldflags;
332 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200333
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200334 out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500335 inode_unlock(inode);
Jan Karae7848682012-06-12 16:20:32 +0200336 mnt_drop_write_file(file);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000337 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200338}
339
340static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
341{
Al Viro496ad9a2013-01-23 17:07:38 -0500342 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200343
344 return put_user(inode->i_generation, arg);
345}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400346
Li Dongyangf7039b12011-03-24 10:24:28 +0000347static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
348{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400349 struct inode *inode = file_inode(file);
350 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000351 struct btrfs_device *device;
352 struct request_queue *q;
353 struct fstrim_range range;
354 u64 minlen = ULLONG_MAX;
355 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500356 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000357 int ret;
358
359 if (!capable(CAP_SYS_ADMIN))
360 return -EPERM;
361
Xiao Guangrong1f781602011-04-20 10:09:16 +0000362 rcu_read_lock();
363 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
364 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000365 if (!device->bdev)
366 continue;
367 q = bdev_get_queue(device->bdev);
368 if (blk_queue_discard(q)) {
369 num_devices++;
Seraphime Kirkovski50d04462016-12-15 14:38:28 +0100370 minlen = min_t(u64, q->limits.discard_granularity,
Li Dongyangf7039b12011-03-24 10:24:28 +0000371 minlen);
372 }
373 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000374 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200375
Li Dongyangf7039b12011-03-24 10:24:28 +0000376 if (!num_devices)
377 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000378 if (copy_from_user(&range, arg, sizeof(range)))
379 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000380 if (range.start > total_bytes ||
381 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200382 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000383
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200384 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000385 range.minlen = max(range.minlen, minlen);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400386 ret = btrfs_trim_fs(fs_info, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000387 if (ret < 0)
388 return ret;
389
390 if (copy_to_user(arg, &range, sizeof(range)))
391 return -EFAULT;
392
393 return 0;
394}
395
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200396int btrfs_is_empty_uuid(u8 *uuid)
397{
Chris Mason46e0f662013-11-15 12:14:55 +0100398 int i;
399
400 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
401 if (uuid[i])
402 return 0;
403 }
404 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200405}
406
Miao Xied5c12072013-02-28 10:04:33 +0000407static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400408 struct dentry *dentry,
David Sterba52f75f42017-02-14 18:33:53 +0100409 const char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200410 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000411 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400412{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400413 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400414 struct btrfs_trans_handle *trans;
415 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100416 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400417 struct btrfs_inode_item *inode_item;
418 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000419 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400420 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000421 struct btrfs_block_rsv block_rsv;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700422 struct timespec cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900423 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400424 int ret;
425 int err;
426 u64 objectid;
427 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500428 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000429 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200430 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400431
David Sterba49a3c4d2016-03-24 17:49:22 +0100432 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
433 if (!root_item)
434 return -ENOMEM;
435
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400436 ret = btrfs_find_free_objectid(fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400437 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100438 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000439
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800440 /*
441 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400442 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800443 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100444 if (btrfs_qgroup_level(objectid)) {
445 ret = -ENOSPC;
446 goto fail_free;
447 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800448
Miao Xied5c12072013-02-28 10:04:33 +0000449 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400450 /*
Miao Xied5c12072013-02-28 10:04:33 +0000451 * The same as the snapshot creation, please see the comment
452 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400453 */
Miao Xied5c12072013-02-28 10:04:33 +0000454 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200455 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000456 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100457 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400458
Miao Xied5c12072013-02-28 10:04:33 +0000459 trans = btrfs_start_transaction(root, 0);
460 if (IS_ERR(trans)) {
461 ret = PTR_ERR(trans);
David Sterba7775c812017-02-10 19:18:18 +0100462 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
David Sterba49a3c4d2016-03-24 17:49:22 +0100463 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000464 }
465 trans->block_rsv = &block_rsv;
466 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400467
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400468 ret = btrfs_qgroup_inherit(trans, fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200469 if (ret)
470 goto fail;
471
David Sterba4d75f8a2014-06-15 01:54:12 +0200472 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400473 if (IS_ERR(leaf)) {
474 ret = PTR_ERR(leaf);
475 goto fail;
476 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400477
David Sterbab159fa22016-11-08 18:09:03 +0100478 memzero_extent_buffer(leaf, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400479 btrfs_set_header_bytenr(leaf, leaf->start);
480 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400481 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400482 btrfs_set_header_owner(leaf, objectid);
483
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400484 write_extent_buffer_fsid(leaf, fs_info->fsid);
485 write_extent_buffer_chunk_tree_uuid(leaf, fs_info->chunk_tree_uuid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400486 btrfs_mark_buffer_dirty(leaf);
487
David Sterba49a3c4d2016-03-24 17:49:22 +0100488 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800489 btrfs_set_stack_inode_generation(inode_item, 1);
490 btrfs_set_stack_inode_size(inode_item, 3);
491 btrfs_set_stack_inode_nlink(inode_item, 1);
Jeff Mahoneyda170662016-06-15 09:22:56 -0400492 btrfs_set_stack_inode_nbytes(inode_item,
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400493 fs_info->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800494 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400495
David Sterba49a3c4d2016-03-24 17:49:22 +0100496 btrfs_set_root_flags(root_item, 0);
497 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800498 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000499
David Sterba49a3c4d2016-03-24 17:49:22 +0100500 btrfs_set_root_bytenr(root_item, leaf->start);
501 btrfs_set_root_generation(root_item, trans->transid);
502 btrfs_set_root_level(root_item, 0);
503 btrfs_set_root_refs(root_item, 1);
504 btrfs_set_root_used(root_item, leaf->len);
505 btrfs_set_root_last_snapshot(root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400506
David Sterba49a3c4d2016-03-24 17:49:22 +0100507 btrfs_set_root_generation_v2(root_item,
508 btrfs_root_generation(root_item));
Alexander Block8ea05e32012-07-25 17:35:53 +0200509 uuid_le_gen(&new_uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100510 memcpy(root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
511 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
512 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
513 root_item->ctime = root_item->otime;
514 btrfs_set_root_ctransid(root_item, trans->transid);
515 btrfs_set_root_otransid(root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400516
Chris Mason925baed2008-06-25 16:01:30 -0400517 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400518 free_extent_buffer(leaf);
519 leaf = NULL;
520
David Sterba49a3c4d2016-03-24 17:49:22 +0100521 btrfs_set_root_dirid(root_item, new_dirid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400522
523 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400524 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200525 key.type = BTRFS_ROOT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400526 ret = btrfs_insert_root(trans, fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100527 root_item);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400528 if (ret)
529 goto fail;
530
Yan, Zheng76dda932009-09-21 16:00:26 -0400531 key.offset = (u64)-1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400532 new_root = btrfs_read_fs_root_no_name(fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100533 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100534 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400535 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100536 goto fail;
537 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400538
539 btrfs_record_root_in_trans(trans, new_root);
540
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000541 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700542 if (ret) {
543 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400544 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700545 goto fail;
546 }
547
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530548 mutex_lock(&new_root->objectid_mutex);
549 new_root->highest_objectid = new_dirid;
550 mutex_unlock(&new_root->objectid_mutex);
551
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400552 /*
553 * insert the directory item
554 */
Nikolay Borisov877574e2017-02-20 13:50:33 +0200555 ret = btrfs_set_inode_index(BTRFS_I(dir), &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100556 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400557 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100558 goto fail;
559 }
Chris Mason3de45862008-11-17 21:02:50 -0500560
561 ret = btrfs_insert_dir_item(trans, root,
Nikolay Borisov8e7611c2017-02-20 13:50:31 +0200562 name, namelen, BTRFS_I(dir), &key,
Chris Mason3de45862008-11-17 21:02:50 -0500563 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100564 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400565 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400566 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100567 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500568
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200569 btrfs_i_size_write(BTRFS_I(dir), dir->i_size + namelen * 2);
Yan Zheng52c26172009-01-05 15:43:43 -0500570 ret = btrfs_update_inode(trans, root, dir);
571 BUG_ON(ret);
572
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400573 ret = btrfs_add_root_ref(trans, fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400574 objectid, root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200575 btrfs_ino(BTRFS_I(dir)), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500576 BUG_ON(ret);
577
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400578 ret = btrfs_uuid_tree_add(trans, fs_info, root_item->uuid,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400579 BTRFS_UUID_KEY_SUBVOL, objectid);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200580 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400581 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200582
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400583fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100584 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000585 trans->block_rsv = NULL;
586 trans->bytes_reserved = 0;
David Sterba7775c812017-02-10 19:18:18 +0100587 btrfs_subvolume_release_metadata(fs_info, &block_rsv);
Liu Bode6e8202014-01-09 14:57:06 +0800588
Sage Weil72fd0322010-10-29 15:41:32 -0400589 if (async_transid) {
590 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400591 err = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000592 if (err)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400593 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400594 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400595 err = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400596 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400597 if (err && !ret)
598 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500599
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900600 if (!ret) {
601 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800602 if (IS_ERR(inode))
603 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900604 d_instantiate(dentry, inode);
605 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400606 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100607
608fail_free:
609 kfree(root_item);
610 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400611}
612
Miao Xiee9662f72013-02-28 10:01:15 +0000613static int create_snapshot(struct btrfs_root *root, struct inode *dir,
David Sterba61d7e4c2017-02-10 19:54:06 +0100614 struct dentry *dentry,
Miao Xiee9662f72013-02-28 10:01:15 +0000615 u64 *async_transid, bool readonly,
616 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400617{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400618 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000619 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400620 struct btrfs_pending_snapshot *pending_snapshot;
621 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000622 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400623
Miao Xie27cdeb72014-04-02 19:51:05 +0800624 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400625 return -EINVAL;
626
David Sterba23269bf2017-02-13 11:03:44 +0100627 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_KERNEL);
David Sterbaa1ee7362015-11-10 18:53:56 +0100628 if (!pending_snapshot)
629 return -ENOMEM;
630
David Sterbab0c0ea62015-11-10 18:54:00 +0100631 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
David Sterba23269bf2017-02-13 11:03:44 +0100632 GFP_KERNEL);
David Sterba8546b572015-11-10 18:54:03 +0100633 pending_snapshot->path = btrfs_alloc_path();
634 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100635 ret = -ENOMEM;
636 goto free_pending;
637 }
638
David Sterbaea14b57f2017-06-22 02:19:11 +0200639 atomic_inc(&root->will_be_snapshotted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100640 smp_mb__after_atomic();
Liu Bo45bac0f2017-09-01 16:14:29 -0600641 /* wait for no snapshot writes */
642 wait_event(root->subv_writers->wait,
643 percpu_counter_sum(&root->subv_writers->counter) == 0);
Miao Xie8257b2d2014-03-06 13:38:19 +0800644
Nikolay Borisov76f32e22018-04-23 10:54:14 +0300645 ret = btrfs_start_delalloc_inodes(root);
Miao Xie6a038432013-05-15 07:48:24 +0000646 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100647 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000648
Chris Mason6374e57a2017-06-23 09:48:21 -0700649 btrfs_wait_ordered_extents(root, U64_MAX, 0, (u64)-1);
Miao Xie6a038432013-05-15 07:48:24 +0000650
Miao Xie66d8f3d2012-09-06 04:02:28 -0600651 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
652 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000653 /*
654 * 1 - parent dir inode
655 * 2 - dir entries
656 * 1 - root item
657 * 2 - root ref/backref
658 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200659 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000660 */
661 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200662 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400663 &pending_snapshot->qgroup_reserved,
664 false);
Miao Xied5c12072013-02-28 10:04:33 +0000665 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100666 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000667
Yan, Zhenga22285a2010-05-16 10:48:46 -0400668 pending_snapshot->dentry = dentry;
669 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800670 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000671 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000672 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400673
Miao Xied5c12072013-02-28 10:04:33 +0000674 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400675 if (IS_ERR(trans)) {
676 ret = PTR_ERR(trans);
677 goto fail;
678 }
679
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400680 spin_lock(&fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400681 list_add(&pending_snapshot->list,
682 &trans->transaction->pending_snapshots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400683 spin_unlock(&fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400684 if (async_transid) {
685 *async_transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400686 ret = btrfs_commit_transaction_async(trans, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000687 if (ret)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400688 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400689 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400690 ret = btrfs_commit_transaction(trans);
Sage Weil72fd0322010-10-29 15:41:32 -0400691 }
Miao Xieaec80302013-03-04 09:44:29 +0000692 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400693 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400694
695 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400696 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000697 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400698
Chris Masond3797302014-10-15 13:50:56 -0700699 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
700 if (ret)
701 goto fail;
702
David Howells2b0143b2015-03-17 22:25:59 +0000703 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000704 if (IS_ERR(inode)) {
705 ret = PTR_ERR(inode);
706 goto fail;
707 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900708
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000709 d_instantiate(dentry, inode);
710 ret = 0;
711fail:
David Sterba7775c812017-02-10 19:18:18 +0100712 btrfs_subvolume_release_metadata(fs_info, &pending_snapshot->block_rsv);
David Sterbaa1ee7362015-11-10 18:53:56 +0100713dec_and_free:
David Sterbaea14b57f2017-06-22 02:19:11 +0200714 if (atomic_dec_and_test(&root->will_be_snapshotted))
Peter Zijlstra46259562018-03-15 11:43:08 +0100715 wake_up_var(&root->will_be_snapshotted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100716free_pending:
717 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100718 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100719 kfree(pending_snapshot);
720
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400721 return ret;
722}
723
Sage Weil4260f7c2010-10-29 15:46:43 -0400724/* copy of may_delete in fs/namei.c()
725 * Check whether we can remove a link victim from directory dir, check
726 * whether the type of victim is right.
727 * 1. We can't do it if dir is read-only (done in permission())
728 * 2. We should have write and exec permissions on dir
729 * 3. We can't remove anything from append-only dir
730 * 4. We can't do anything with immutable dir (done in permission())
731 * 5. If the sticky bit on dir is set we should either
732 * a. be owner of dir, or
733 * b. be owner of victim, or
734 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400735 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400736 * links pointing to it.
737 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
738 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
739 * 9. We can't remove a root or mountpoint.
740 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
741 * nfs_async_unlink().
742 */
743
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530744static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400745{
746 int error;
747
David Howells2b0143b2015-03-17 22:25:59 +0000748 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400749 return -ENOENT;
750
David Howells2b0143b2015-03-17 22:25:59 +0000751 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400752 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400753
754 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
755 if (error)
756 return error;
757 if (IS_APPEND(dir))
758 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000759 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
760 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400761 return -EPERM;
762 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000763 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400764 return -ENOTDIR;
765 if (IS_ROOT(victim))
766 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000767 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400768 return -EISDIR;
769 if (IS_DEADDIR(dir))
770 return -ENOENT;
771 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
772 return -EBUSY;
773 return 0;
774}
775
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400776/* copy of may_create in fs/namei.c() */
777static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
778{
David Howells2b0143b2015-03-17 22:25:59 +0000779 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400780 return -EEXIST;
781 if (IS_DEADDIR(dir))
782 return -ENOENT;
783 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
784}
785
786/*
787 * Create a new subvolume below @parent. This is largely modeled after
788 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
789 * inside this filesystem so it's quite a bit simpler.
790 */
Al Viro92872092016-11-20 19:34:31 -0500791static noinline int btrfs_mksubvol(const struct path *parent,
David Sterba52f75f42017-02-14 18:33:53 +0100792 const char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400793 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200794 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000795 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400796{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400797 struct inode *dir = d_inode(parent->dentry);
798 struct btrfs_fs_info *fs_info = btrfs_sb(dir->i_sb);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400799 struct dentry *dentry;
800 int error;
801
Al Viro00235412016-05-26 00:05:12 -0400802 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
803 if (error == -EINTR)
804 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400805
806 dentry = lookup_one_len(name, parent->dentry, namelen);
807 error = PTR_ERR(dentry);
808 if (IS_ERR(dentry))
809 goto out_unlock;
810
Yan, Zheng76dda932009-09-21 16:00:26 -0400811 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400812 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600813 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400814
Chris Mason9c520572012-12-17 14:26:57 -0500815 /*
816 * even if this name doesn't exist, we may get hash collisions.
817 * check for them now when we can safely fail
818 */
819 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
820 dir->i_ino, name,
821 namelen);
822 if (error)
823 goto out_dput;
824
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400825 down_read(&fs_info->subvol_sem);
Yan, Zheng76dda932009-09-21 16:00:26 -0400826
827 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
828 goto out_up_read;
829
Chris Mason3de45862008-11-17 21:02:50 -0500830 if (snap_src) {
David Sterba61d7e4c2017-02-10 19:54:06 +0100831 error = create_snapshot(snap_src, dir, dentry,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200832 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500833 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000834 error = create_subvol(dir, dentry, name, namelen,
835 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500836 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400837 if (!error)
838 fsnotify_mkdir(dir, dentry);
839out_up_read:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400840 up_read(&fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400841out_dput:
842 dput(dentry);
843out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500844 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400845 return error;
846}
847
Chris Mason4cb53002011-05-24 15:35:30 -0400848/*
849 * When we're defragging a range, we don't want to kick it off again
850 * if it is really just waiting for delalloc to send it down.
851 * If we find a nice big extent or delalloc range for the bytes in the
852 * file you want to defrag, we return 0 to let you know to skip this
853 * part of the file
854 */
David Sterbaaab110a2014-07-29 17:32:10 +0200855static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400856{
857 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
858 struct extent_map *em = NULL;
859 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
860 u64 end;
861
862 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300863 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -0400864 read_unlock(&em_tree->lock);
865
866 if (em) {
867 end = extent_map_end(em);
868 free_extent_map(em);
869 if (end - offset > thresh)
870 return 0;
871 }
872 /* if we already have a nice delalloc here, just stop */
873 thresh /= 2;
874 end = count_range_bits(io_tree, &offset, offset + thresh,
875 thresh, EXTENT_DELALLOC, 1);
876 if (end >= thresh)
877 return 0;
878 return 1;
879}
880
881/*
882 * helper function to walk through a file and find extents
883 * newer than a specific transid, and smaller than thresh.
884 *
885 * This is used by the defragging code to find new and small
886 * extents
887 */
888static int find_new_extents(struct btrfs_root *root,
889 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200890 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400891{
892 struct btrfs_path *path;
893 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400894 struct extent_buffer *leaf;
895 struct btrfs_file_extent_item *extent;
896 int type;
897 int ret;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200898 u64 ino = btrfs_ino(BTRFS_I(inode));
Chris Mason4cb53002011-05-24 15:35:30 -0400899
900 path = btrfs_alloc_path();
901 if (!path)
902 return -ENOMEM;
903
David Sterbaa4689d22011-05-31 17:08:14 +0000904 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400905 min_key.type = BTRFS_EXTENT_DATA_KEY;
906 min_key.offset = *off;
907
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530908 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100909 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400910 if (ret != 0)
911 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000912process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000913 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400914 goto none;
915 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
916 goto none;
917
918 leaf = path->nodes[0];
919 extent = btrfs_item_ptr(leaf, path->slots[0],
920 struct btrfs_file_extent_item);
921
922 type = btrfs_file_extent_type(leaf, extent);
923 if (type == BTRFS_FILE_EXTENT_REG &&
924 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
925 check_defrag_in_cache(inode, min_key.offset, thresh)) {
926 *off = min_key.offset;
927 btrfs_free_path(path);
928 return 0;
929 }
930
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000931 path->slots[0]++;
932 if (path->slots[0] < btrfs_header_nritems(leaf)) {
933 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
934 goto process_slot;
935 }
936
Chris Mason4cb53002011-05-24 15:35:30 -0400937 if (min_key.offset == (u64)-1)
938 goto none;
939
940 min_key.offset++;
941 btrfs_release_path(path);
942 }
943none:
944 btrfs_free_path(path);
945 return -ENOENT;
946}
947
Li Zefan6c282eb2012-06-11 16:03:35 +0800948static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400949{
950 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500951 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800952 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300953 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500954
955 /*
956 * hopefully we have this extent in the tree already, try without
957 * the full extent lock
958 */
959 read_lock(&em_tree->lock);
960 em = lookup_extent_mapping(em_tree, start, len);
961 read_unlock(&em_tree->lock);
962
963 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +0000964 struct extent_state *cached = NULL;
965 u64 end = start + len - 1;
966
Chris Mason940100a2010-03-10 10:52:59 -0500967 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +0100968 lock_extent_bits(io_tree, start, end, &cached);
Nikolay Borisovfc4f21b12017-02-20 13:51:06 +0200969 em = btrfs_get_extent(BTRFS_I(inode), NULL, 0, start, len, 0);
David Sterbae43bbe52017-12-12 21:43:52 +0100970 unlock_extent_cached(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -0500971
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +0000972 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +0800973 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -0500974 }
975
Li Zefan6c282eb2012-06-11 16:03:35 +0800976 return em;
977}
978
979static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
980{
981 struct extent_map *next;
982 bool ret = true;
983
984 /* this is the last extent */
985 if (em->start + em->len >= i_size_read(inode))
986 return false;
987
988 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -0700989 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
990 ret = false;
991 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +0900992 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +0800993 ret = false;
994
995 free_extent_map(next);
996 return ret;
997}
998
David Sterbaaab110a2014-07-29 17:32:10 +0200999static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001000 u64 *last_len, u64 *skip, u64 *defrag_end,
1001 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001002{
1003 struct extent_map *em;
1004 int ret = 1;
1005 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001006 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001007
1008 /*
1009 * make sure that once we start defragging an extent, we keep on
1010 * defragging it
1011 */
1012 if (start < *defrag_end)
1013 return 1;
1014
1015 *skip = 0;
1016
1017 em = defrag_lookup_extent(inode, start);
1018 if (!em)
1019 return 0;
1020
Chris Mason940100a2010-03-10 10:52:59 -05001021 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001022 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001023 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001024 goto out;
1025 }
1026
Liu Bo4a3560c2015-08-07 16:48:41 +08001027 if (!*defrag_end)
1028 prev_mergeable = false;
1029
Li Zefan6c282eb2012-06-11 16:03:35 +08001030 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001031 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001032 * we hit a real extent, if it is big or the next extent is not a
1033 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001034 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001035 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001036 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001037 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001038out:
Chris Mason940100a2010-03-10 10:52:59 -05001039 /*
1040 * last_len ends up being a counter of how many bytes we've defragged.
1041 * every time we choose not to defrag an extent, we reset *last_len
1042 * so that the next tiny extent will force a defrag.
1043 *
1044 * The end result of this is that tiny extents before a single big
1045 * extent will force at least part of that big extent to be defragged.
1046 */
1047 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001048 *defrag_end = extent_map_end(em);
1049 } else {
1050 *last_len = 0;
1051 *skip = extent_map_end(em);
1052 *defrag_end = 0;
1053 }
1054
1055 free_extent_map(em);
1056 return ret;
1057}
1058
Chris Mason4cb53002011-05-24 15:35:30 -04001059/*
1060 * it doesn't do much good to defrag one or two pages
1061 * at a time. This pulls in a nice chunk of pages
1062 * to COW and defrag.
1063 *
1064 * It also makes sure the delalloc code has enough
1065 * dirty data to avoid making new small extents as part
1066 * of the defrag
1067 *
1068 * It's a good idea to start RA on this range
1069 * before calling this.
1070 */
1071static int cluster_pages_for_defrag(struct inode *inode,
1072 struct page **pages,
1073 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001074 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001075{
Chris Mason4cb53002011-05-24 15:35:30 -04001076 unsigned long file_end;
1077 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001078 u64 page_start;
1079 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001080 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001081 int ret;
1082 int i;
1083 int i_done;
1084 struct btrfs_ordered_extent *ordered;
1085 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001086 struct extent_io_tree *tree;
Qu Wenruo364ecf32017-02-27 15:10:38 +08001087 struct extent_changeset *data_reserved = NULL;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001088 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001089
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001090 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001091 if (!isize || start_index > file_end)
1092 return 0;
1093
1094 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001095
Qu Wenruo364ecf32017-02-27 15:10:38 +08001096 ret = btrfs_delalloc_reserve_space(inode, &data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001097 start_index << PAGE_SHIFT,
1098 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001099 if (ret)
1100 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001101 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001102 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001103
1104 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001105 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001106 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001107again:
Josef Bacika94733d2011-07-11 10:47:06 -04001108 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001109 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001110 if (!page)
1111 break;
1112
Miao Xie600a45e2012-02-16 15:01:24 +08001113 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001114 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001115 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001116 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001117 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001118 ordered = btrfs_lookup_ordered_extent(inode,
1119 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001120 unlock_extent_cached(tree, page_start, page_end,
David Sterbae43bbe52017-12-12 21:43:52 +01001121 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001122 if (!ordered)
1123 break;
1124
1125 unlock_page(page);
1126 btrfs_start_ordered_extent(inode, ordered, 1);
1127 btrfs_put_ordered_extent(ordered);
1128 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001129 /*
1130 * we unlocked the page above, so we need check if
1131 * it was released or not.
1132 */
1133 if (page->mapping != inode->i_mapping) {
1134 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001135 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001136 goto again;
1137 }
Miao Xie600a45e2012-02-16 15:01:24 +08001138 }
1139
Chris Mason4cb53002011-05-24 15:35:30 -04001140 if (!PageUptodate(page)) {
1141 btrfs_readpage(NULL, page);
1142 lock_page(page);
1143 if (!PageUptodate(page)) {
1144 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001145 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001146 ret = -EIO;
1147 break;
1148 }
1149 }
Miao Xie600a45e2012-02-16 15:01:24 +08001150
Miao Xie600a45e2012-02-16 15:01:24 +08001151 if (page->mapping != inode->i_mapping) {
1152 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001153 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001154 goto again;
1155 }
1156
Chris Mason4cb53002011-05-24 15:35:30 -04001157 pages[i] = page;
1158 i_done++;
1159 }
1160 if (!i_done || ret)
1161 goto out;
1162
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001163 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001164 goto out;
1165
1166 /*
1167 * so now we have a nice long stream of locked
1168 * and up to date pages, lets wait on them
1169 */
1170 for (i = 0; i < i_done; i++)
1171 wait_on_page_writeback(pages[i]);
1172
1173 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001174 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001175
1176 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001177 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001178 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1179 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001180 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001181 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001182
Liu Bo1f12bd02012-03-29 09:57:44 -04001183 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001184 spin_lock(&BTRFS_I(inode)->lock);
1185 BTRFS_I(inode)->outstanding_extents++;
1186 spin_unlock(&BTRFS_I(inode)->lock);
Qu Wenruobc42bda2017-02-27 15:10:39 +08001187 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001188 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001189 (page_cnt - i_done) << PAGE_SHIFT, true);
Chris Mason4cb53002011-05-24 15:35:30 -04001190 }
1191
1192
Liu Bo9e8a4a82012-09-05 19:10:51 -06001193 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001194 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001195
1196 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
David Sterbae43bbe52017-12-12 21:43:52 +01001197 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001198
1199 for (i = 0; i < i_done; i++) {
1200 clear_page_dirty_for_io(pages[i]);
1201 ClearPageChecked(pages[i]);
1202 set_page_extent_mapped(pages[i]);
1203 set_page_dirty(pages[i]);
1204 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001205 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001206 }
Qu Wenruo43b18592017-12-12 15:34:32 +08001207 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT,
1208 false);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001209 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001210 return i_done;
1211out:
1212 for (i = 0; i < i_done; i++) {
1213 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001214 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001215 }
Qu Wenruobc42bda2017-02-27 15:10:39 +08001216 btrfs_delalloc_release_space(inode, data_reserved,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001217 start_index << PAGE_SHIFT,
Qu Wenruo43b18592017-12-12 15:34:32 +08001218 page_cnt << PAGE_SHIFT, true);
1219 btrfs_delalloc_release_extents(BTRFS_I(inode), page_cnt << PAGE_SHIFT,
1220 true);
Qu Wenruo364ecf32017-02-27 15:10:38 +08001221 extent_changeset_free(data_reserved);
Chris Mason4cb53002011-05-24 15:35:30 -04001222 return ret;
1223
1224}
1225
1226int btrfs_defrag_file(struct inode *inode, struct file *file,
1227 struct btrfs_ioctl_defrag_range_args *range,
1228 u64 newer_than, unsigned long max_to_defrag)
1229{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001230 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Chris Mason4cb53002011-05-24 15:35:30 -04001231 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001232 struct file_ra_state *ra = NULL;
1233 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001234 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001235 u64 last_len = 0;
1236 u64 skip = 0;
1237 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001238 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001239 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001240 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001241 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001242 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001243 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001244 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001245 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001246 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001247 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001248 struct page **pages = NULL;
David Sterba1e2ef462017-07-17 20:01:59 +02001249 bool do_compress = range->flags & BTRFS_DEFRAG_RANGE_COMPRESS;
Chris Mason4cb53002011-05-24 15:35:30 -04001250
Liu Bo0abd5b12013-04-16 09:20:28 +00001251 if (isize == 0)
1252 return 0;
1253
1254 if (range->start >= isize)
1255 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001256
David Sterba1e2ef462017-07-17 20:01:59 +02001257 if (do_compress) {
Li Zefan1a419d82010-10-25 15:12:50 +08001258 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1259 return -EINVAL;
1260 if (range->compress_type)
1261 compress_type = range->compress_type;
1262 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001263
Liu Bo0abd5b12013-04-16 09:20:28 +00001264 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001265 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001266
Chris Mason4cb53002011-05-24 15:35:30 -04001267 /*
David Sterba0a52d102017-06-22 03:22:58 +02001268 * If we were not given a file, allocate a readahead context. As
1269 * readahead is just an optimization, defrag will work without it so
1270 * we don't error out.
Chris Mason4cb53002011-05-24 15:35:30 -04001271 */
1272 if (!file) {
David Sterba63e727e2017-06-22 03:13:02 +02001273 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
David Sterba0a52d102017-06-22 03:22:58 +02001274 if (ra)
1275 file_ra_state_init(ra, inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001276 } else {
1277 ra = &file->f_ra;
1278 }
1279
David Sterba63e727e2017-06-22 03:13:02 +02001280 pages = kmalloc_array(max_cluster, sizeof(struct page *), GFP_KERNEL);
Chris Mason4cb53002011-05-24 15:35:30 -04001281 if (!pages) {
1282 ret = -ENOMEM;
1283 goto out_ra;
1284 }
1285
1286 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001287 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001288 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001289 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001290 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001291 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001292 }
1293
Chris Mason4cb53002011-05-24 15:35:30 -04001294 if (newer_than) {
1295 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001296 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001297 if (!ret) {
1298 range->start = newer_off;
1299 /*
1300 * we always align our defrag to help keep
1301 * the extents in the file evenly spaced
1302 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001303 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001304 } else
1305 goto out_ra;
1306 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001307 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001308 }
1309 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301310 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001311
Li Zefan2a0f7f52011-10-10 15:43:34 -04001312 /*
1313 * make writeback starts from i, so the defrag range can be
1314 * written sequentially.
1315 */
1316 if (i < inode->i_mapping->writeback_index)
1317 inode->i_mapping->writeback_index = i;
1318
Chris Masonf7f43cc2011-10-11 11:41:40 -04001319 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001320 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001321 /*
1322 * make sure we stop running if someone unmounts
1323 * the FS
1324 */
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001325 if (!(inode->i_sb->s_flags & SB_ACTIVE))
Chris Mason4cb53002011-05-24 15:35:30 -04001326 break;
1327
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001328 if (btrfs_defrag_cancelled(fs_info)) {
1329 btrfs_debug(fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001330 ret = -EAGAIN;
1331 break;
1332 }
1333
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001334 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001335 extent_thresh, &last_len, &skip,
David Sterba1e2ef462017-07-17 20:01:59 +02001336 &defrag_end, do_compress)){
Chris Mason940100a2010-03-10 10:52:59 -05001337 unsigned long next;
1338 /*
1339 * the should_defrag function tells us how much to skip
1340 * bump our counter by the suggested amount
1341 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001342 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001343 i = max(i + 1, next);
1344 continue;
1345 }
Li Zefan008873e2011-09-02 15:57:07 +08001346
1347 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001348 cluster = (PAGE_ALIGN(defrag_end) >>
1349 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001350 cluster = min(cluster, max_cluster);
1351 } else {
1352 cluster = max_cluster;
1353 }
1354
Li Zefan008873e2011-09-02 15:57:07 +08001355 if (i + cluster > ra_index) {
1356 ra_index = max(i, ra_index);
David Sterba0a52d102017-06-22 03:22:58 +02001357 if (ra)
David Sterbad3c0bab2017-06-22 03:35:28 +02001358 page_cache_sync_readahead(inode->i_mapping, ra,
1359 file, ra_index, cluster);
chandane4826a52015-06-09 17:38:32 +05301360 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001361 }
Chris Mason940100a2010-03-10 10:52:59 -05001362
Al Viro59551022016-01-22 15:40:57 -05001363 inode_lock(inode);
David Sterba1e2ef462017-07-17 20:01:59 +02001364 if (do_compress)
David Sterbaeec63c62017-07-17 19:41:31 +02001365 BTRFS_I(inode)->defrag_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001366 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001367 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001368 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001369 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001370 }
Chris Mason940100a2010-03-10 10:52:59 -05001371
Chris Mason4cb53002011-05-24 15:35:30 -04001372 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001373 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001374 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001375
1376 if (newer_than) {
1377 if (newer_off == (u64)-1)
1378 break;
1379
Liu Boe1f041e2012-03-29 09:57:45 -04001380 if (ret > 0)
1381 i += ret;
1382
Chris Mason4cb53002011-05-24 15:35:30 -04001383 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001384 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001385
Byongho Leeee221842015-12-15 01:42:10 +09001386 ret = find_new_extents(root, inode, newer_than,
1387 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001388 if (!ret) {
1389 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001390 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001391 } else {
1392 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001393 }
Chris Mason4cb53002011-05-24 15:35:30 -04001394 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001395 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001396 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001397 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001398 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001399 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001400 last_len = 0;
1401 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001402 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001403 }
1404
Filipe Mananadec8ef92014-03-01 10:55:54 +00001405 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001406 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001407 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1408 &BTRFS_I(inode)->runtime_flags))
1409 filemap_flush(inode->i_mapping);
1410 }
Chris Mason1e701a32010-03-11 09:42:04 -05001411
Li Zefan1a419d82010-10-25 15:12:50 +08001412 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001413 btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
Nick Terrell5c1aab12017-08-09 19:39:02 -07001414 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) {
1415 btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
Li Zefan1a419d82010-10-25 15:12:50 +08001416 }
1417
Diego Calleja60ccf822011-09-01 16:33:57 +02001418 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001419
Chris Mason4cb53002011-05-24 15:35:30 -04001420out_ra:
David Sterba1e2ef462017-07-17 20:01:59 +02001421 if (do_compress) {
Al Viro59551022016-01-22 15:40:57 -05001422 inode_lock(inode);
David Sterbaeec63c62017-07-17 19:41:31 +02001423 BTRFS_I(inode)->defrag_compress = BTRFS_COMPRESS_NONE;
Al Viro59551022016-01-22 15:40:57 -05001424 inode_unlock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001425 }
Chris Mason4cb53002011-05-24 15:35:30 -04001426 if (!file)
1427 kfree(ra);
1428 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001429 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001430}
1431
Miao Xie198605a2012-11-26 08:43:45 +00001432static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001433 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001434{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001435 struct inode *inode = file_inode(file);
1436 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001437 u64 new_size;
1438 u64 old_size;
1439 u64 devid = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001440 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001441 struct btrfs_ioctl_vol_args *vol_args;
1442 struct btrfs_trans_handle *trans;
1443 struct btrfs_device *device = NULL;
1444 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001445 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001446 char *devstr = NULL;
1447 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001448 int mod = 0;
1449
Chris Masone441d542009-01-05 16:57:23 -05001450 if (!capable(CAP_SYS_ADMIN))
1451 return -EPERM;
1452
Miao Xie198605a2012-11-26 08:43:45 +00001453 ret = mnt_want_write_file(file);
1454 if (ret)
1455 return ret;
1456
David Sterba171938e2017-03-28 14:44:21 +02001457 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Miao Xie97547672012-12-21 10:38:50 +00001458 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001459 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001460 }
1461
Li Zefandae7b662009-04-08 15:06:54 +08001462 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001463 if (IS_ERR(vol_args)) {
1464 ret = PTR_ERR(vol_args);
1465 goto out;
1466 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001467
1468 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001469
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001470 sizestr = vol_args->name;
1471 devstr = strchr(sizestr, ':');
1472 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001473 sizestr = devstr + 1;
1474 *devstr = '\0';
1475 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001476 ret = kstrtoull(devstr, 10, &devid);
1477 if (ret)
1478 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001479 if (!devid) {
1480 ret = -EINVAL;
1481 goto out_free;
1482 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001483 btrfs_info(fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001484 }
Miao Xiedba60f32012-12-21 09:19:51 +00001485
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001486 device = btrfs_find_device(fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001487 if (!device) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001488 btrfs_info(fs_info, "resizer unable to find device %llu",
1489 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001490 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001491 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001492 }
Miao Xiedba60f32012-12-21 09:19:51 +00001493
Anand Jainebbede42017-12-04 12:54:52 +08001494 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001495 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001496 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001497 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001498 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001499 goto out_free;
1500 }
1501
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001502 if (!strcmp(sizestr, "max"))
1503 new_size = device->bdev->bd_inode->i_size;
1504 else {
1505 if (sizestr[0] == '-') {
1506 mod = -1;
1507 sizestr++;
1508 } else if (sizestr[0] == '+') {
1509 mod = 1;
1510 sizestr++;
1511 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001512 new_size = memparse(sizestr, &retptr);
1513 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001514 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001515 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001516 }
1517 }
1518
Anand Jain401e29c2017-12-04 12:54:55 +08001519 if (test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Miao Xiedfd79822012-12-21 09:21:30 +00001520 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001521 goto out_free;
1522 }
1523
Miao Xie7cc8e582014-09-03 21:35:38 +08001524 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001525
1526 if (mod < 0) {
1527 if (new_size > old_size) {
1528 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001529 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001530 }
1531 new_size = old_size - new_size;
1532 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001533 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001534 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001535 goto out_free;
1536 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001537 new_size = old_size + new_size;
1538 }
1539
Byongho Leeee221842015-12-15 01:42:10 +09001540 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001541 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001542 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001543 }
1544 if (new_size > device->bdev->bd_inode->i_size) {
1545 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001546 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001547 }
1548
Nikolay Borisov47f08b92017-07-18 15:39:08 +03001549 new_size = round_down(new_size, fs_info->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001550
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001551 btrfs_info_in_rcu(fs_info, "new size for %s is %llu",
1552 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001553
1554 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001555 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001556 if (IS_ERR(trans)) {
1557 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001558 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001559 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001560 ret = btrfs_grow_device(trans, device, new_size);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04001561 btrfs_commit_transaction(trans);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001562 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001563 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001564 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001565
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001566out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001567 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001568out:
David Sterba171938e2017-03-28 14:44:21 +02001569 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001570 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001571 return ret;
1572}
1573
Sage Weil72fd0322010-10-29 15:41:32 -04001574static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
David Sterba52f75f42017-02-14 18:33:53 +01001575 const char *name, unsigned long fd, int subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001576 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001577 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001578{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001579 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001580 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001581
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001582 if (!S_ISDIR(file_inode(file)->i_mode))
1583 return -ENOTDIR;
1584
Liu Boa874a632012-06-29 03:58:46 -06001585 ret = mnt_want_write_file(file);
1586 if (ret)
1587 goto out;
1588
Sage Weil72fd0322010-10-29 15:41:32 -04001589 namelen = strlen(name);
1590 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001591 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001592 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001593 }
1594
Chris Mason16780ca2012-02-20 22:14:55 -05001595 if (name[0] == '.' &&
1596 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1597 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001598 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001599 }
1600
Chris Mason3de45862008-11-17 21:02:50 -05001601 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001602 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001603 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001604 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001605 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001606 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001607 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001608 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001609 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001610 }
1611
Al Viro496ad9a2013-01-23 17:07:38 -05001612 src_inode = file_inode(src.file);
1613 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001614 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001615 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001616 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001617 } else if (!inode_owner_or_capable(src_inode)) {
1618 /*
1619 * Subvolume creation is not restricted, but snapshots
1620 * are limited to own subvolumes only
1621 */
1622 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001623 } else {
1624 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1625 BTRFS_I(src_inode)->root,
1626 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001627 }
Al Viro2903ff02012-08-28 12:52:22 -04001628 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001629 }
Liu Boa874a632012-06-29 03:58:46 -06001630out_drop_write:
1631 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001632out:
Sage Weil72fd0322010-10-29 15:41:32 -04001633 return ret;
1634}
1635
1636static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001637 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001638{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001639 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001640 int ret;
1641
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001642 if (!S_ISDIR(file_inode(file)->i_mode))
1643 return -ENOTDIR;
1644
Li Zefanfa0d2b92010-12-20 15:53:28 +08001645 vol_args = memdup_user(arg, sizeof(*vol_args));
1646 if (IS_ERR(vol_args))
1647 return PTR_ERR(vol_args);
1648 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001649
Li Zefanfa0d2b92010-12-20 15:53:28 +08001650 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001651 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001652 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001653
Li Zefanfa0d2b92010-12-20 15:53:28 +08001654 kfree(vol_args);
1655 return ret;
1656}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001657
Li Zefanfa0d2b92010-12-20 15:53:28 +08001658static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1659 void __user *arg, int subvol)
1660{
1661 struct btrfs_ioctl_vol_args_v2 *vol_args;
1662 int ret;
1663 u64 transid = 0;
1664 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001665 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001666 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001667
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001668 if (!S_ISDIR(file_inode(file)->i_mode))
1669 return -ENOTDIR;
1670
Li Zefanfa0d2b92010-12-20 15:53:28 +08001671 vol_args = memdup_user(arg, sizeof(*vol_args));
1672 if (IS_ERR(vol_args))
1673 return PTR_ERR(vol_args);
1674 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001675
Li Zefanb83cc962010-12-20 16:04:08 +08001676 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001677 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1678 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001679 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001680 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001681 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001682
1683 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1684 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001685 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1686 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001687 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001688 if (vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001689 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001690 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001691 }
1692 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1693 if (IS_ERR(inherit)) {
1694 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001695 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001696 }
1697 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001698
1699 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001700 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001701 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001702 if (ret)
1703 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001704
Dan Carpenterc47ca322014-09-04 14:09:15 +03001705 if (ptr && copy_to_user(arg +
1706 offsetof(struct btrfs_ioctl_vol_args_v2,
1707 transid),
1708 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001709 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001710
1711free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001712 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001713free_args:
1714 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001715 return ret;
1716}
1717
Li Zefan0caa1022010-12-20 16:30:25 +08001718static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1719 void __user *arg)
1720{
Al Viro496ad9a2013-01-23 17:07:38 -05001721 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001722 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001723 struct btrfs_root *root = BTRFS_I(inode)->root;
1724 int ret = 0;
1725 u64 flags = 0;
1726
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001727 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001728 return -EINVAL;
1729
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001730 down_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001731 if (btrfs_root_readonly(root))
1732 flags |= BTRFS_SUBVOL_RDONLY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001733 up_read(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001734
1735 if (copy_to_user(arg, &flags, sizeof(flags)))
1736 ret = -EFAULT;
1737
1738 return ret;
1739}
1740
1741static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1742 void __user *arg)
1743{
Al Viro496ad9a2013-01-23 17:07:38 -05001744 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001745 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Li Zefan0caa1022010-12-20 16:30:25 +08001746 struct btrfs_root *root = BTRFS_I(inode)->root;
1747 struct btrfs_trans_handle *trans;
1748 u64 root_flags;
1749 u64 flags;
1750 int ret = 0;
1751
David Sterbabd60ea02014-01-16 15:50:22 +01001752 if (!inode_owner_or_capable(inode))
1753 return -EPERM;
1754
Liu Bob9ca0662012-06-29 03:58:49 -06001755 ret = mnt_want_write_file(file);
1756 if (ret)
1757 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001758
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001759 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Liu Bob9ca0662012-06-29 03:58:49 -06001760 ret = -EINVAL;
1761 goto out_drop_write;
1762 }
Li Zefan0caa1022010-12-20 16:30:25 +08001763
Liu Bob9ca0662012-06-29 03:58:49 -06001764 if (copy_from_user(&flags, arg, sizeof(flags))) {
1765 ret = -EFAULT;
1766 goto out_drop_write;
1767 }
Li Zefan0caa1022010-12-20 16:30:25 +08001768
Liu Bob9ca0662012-06-29 03:58:49 -06001769 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1770 ret = -EINVAL;
1771 goto out_drop_write;
1772 }
Li Zefan0caa1022010-12-20 16:30:25 +08001773
Liu Bob9ca0662012-06-29 03:58:49 -06001774 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1775 ret = -EOPNOTSUPP;
1776 goto out_drop_write;
1777 }
Li Zefan0caa1022010-12-20 16:30:25 +08001778
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001779 down_write(&fs_info->subvol_sem);
Li Zefan0caa1022010-12-20 16:30:25 +08001780
1781 /* nothing to do */
1782 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001783 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001784
1785 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001786 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001787 btrfs_set_root_flags(&root->root_item,
1788 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001789 } else {
1790 /*
1791 * Block RO -> RW transition if this subvolume is involved in
1792 * send
1793 */
1794 spin_lock(&root->root_item_lock);
1795 if (root->send_in_progress == 0) {
1796 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001797 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001798 spin_unlock(&root->root_item_lock);
1799 } else {
1800 spin_unlock(&root->root_item_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001801 btrfs_warn(fs_info,
1802 "Attempt to set subvolume %llu read-write during send",
1803 root->root_key.objectid);
David Sterba2c686532013-12-16 17:34:17 +01001804 ret = -EPERM;
1805 goto out_drop_sem;
1806 }
1807 }
Li Zefan0caa1022010-12-20 16:30:25 +08001808
1809 trans = btrfs_start_transaction(root, 1);
1810 if (IS_ERR(trans)) {
1811 ret = PTR_ERR(trans);
1812 goto out_reset;
1813 }
1814
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001815 ret = btrfs_update_root(trans, fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001816 &root->root_key, &root->root_item);
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001817 if (ret < 0) {
1818 btrfs_end_transaction(trans);
1819 goto out_reset;
1820 }
Li Zefan0caa1022010-12-20 16:30:25 +08001821
Nikolay Borisov9417ebc2017-09-28 10:53:17 +03001822 ret = btrfs_commit_transaction(trans);
1823
Li Zefan0caa1022010-12-20 16:30:25 +08001824out_reset:
1825 if (ret)
1826 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001827out_drop_sem:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001828 up_write(&fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001829out_drop_write:
1830 mnt_drop_write_file(file);
1831out:
Li Zefan0caa1022010-12-20 16:30:25 +08001832 return ret;
1833}
1834
Chris Masonac8e9812010-02-28 15:39:26 -05001835static noinline int key_in_sk(struct btrfs_key *key,
1836 struct btrfs_ioctl_search_key *sk)
1837{
Chris Masonabc6e132010-03-18 12:10:08 -04001838 struct btrfs_key test;
1839 int ret;
1840
1841 test.objectid = sk->min_objectid;
1842 test.type = sk->min_type;
1843 test.offset = sk->min_offset;
1844
1845 ret = btrfs_comp_cpu_keys(key, &test);
1846 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001847 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001848
1849 test.objectid = sk->max_objectid;
1850 test.type = sk->max_type;
1851 test.offset = sk->max_offset;
1852
1853 ret = btrfs_comp_cpu_keys(key, &test);
1854 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001855 return 0;
1856 return 1;
1857}
1858
Jeff Mahoneydf397562016-06-21 20:18:21 -04001859static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05001860 struct btrfs_key *key,
1861 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001862 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001863 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001864 unsigned long *sk_offset,
1865 int *num_found)
1866{
1867 u64 found_transid;
1868 struct extent_buffer *leaf;
1869 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001870 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001871 unsigned long item_off;
1872 unsigned long item_len;
1873 int nritems;
1874 int i;
1875 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001876 int ret = 0;
1877
1878 leaf = path->nodes[0];
1879 slot = path->slots[0];
1880 nritems = btrfs_header_nritems(leaf);
1881
1882 if (btrfs_header_generation(leaf) > sk->max_transid) {
1883 i = nritems;
1884 goto advance_key;
1885 }
1886 found_transid = btrfs_header_generation(leaf);
1887
1888 for (i = slot; i < nritems; i++) {
1889 item_off = btrfs_item_ptr_offset(leaf, i);
1890 item_len = btrfs_item_size_nr(leaf, i);
1891
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001892 btrfs_item_key_to_cpu(leaf, key, i);
1893 if (!key_in_sk(key, sk))
1894 continue;
1895
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001896 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001897 if (*num_found) {
1898 ret = 1;
1899 goto out;
1900 }
Chris Masonac8e9812010-02-28 15:39:26 -05001901
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001902 /*
1903 * return one empty item back for v1, which does not
1904 * handle -EOVERFLOW
1905 */
1906
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001907 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001908 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001909 ret = -EOVERFLOW;
1910 }
Chris Masonac8e9812010-02-28 15:39:26 -05001911
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001912 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001913 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001914 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05001915 }
1916
Chris Masonac8e9812010-02-28 15:39:26 -05001917 sh.objectid = key->objectid;
1918 sh.offset = key->offset;
1919 sh.type = key->type;
1920 sh.len = item_len;
1921 sh.transid = found_transid;
1922
1923 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001924 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
1925 ret = -EFAULT;
1926 goto out;
1927 }
1928
Chris Masonac8e9812010-02-28 15:39:26 -05001929 *sk_offset += sizeof(sh);
1930
1931 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01001932 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05001933 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01001934 if (read_extent_buffer_to_user(leaf, up,
1935 item_off, item_len)) {
1936 ret = -EFAULT;
1937 goto out;
1938 }
1939
Chris Masonac8e9812010-02-28 15:39:26 -05001940 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001941 }
Hugo Millse2156862011-05-14 17:43:41 +00001942 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05001943
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001944 if (ret) /* -EOVERFLOW from above */
1945 goto out;
1946
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001947 if (*num_found >= sk->nr_items) {
1948 ret = 1;
1949 goto out;
1950 }
Chris Masonac8e9812010-02-28 15:39:26 -05001951 }
1952advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05001953 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001954 test.objectid = sk->max_objectid;
1955 test.type = sk->max_type;
1956 test.offset = sk->max_offset;
1957 if (btrfs_comp_cpu_keys(key, &test) >= 0)
1958 ret = 1;
1959 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04001960 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001961 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04001962 key->offset = 0;
1963 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001964 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04001965 key->offset = 0;
1966 key->type = 0;
1967 key->objectid++;
1968 } else
1969 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01001970out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01001971 /*
1972 * 0: all items from this leaf copied, continue with next
1973 * 1: * more items can be copied, but unused buffer is too small
1974 * * all items were found
1975 * Either way, it will stops the loop which iterates to the next
1976 * leaf
1977 * -EOVERFLOW: item was to large for buffer
1978 * -EFAULT: could not copy extent buffer back to userspace
1979 */
Chris Masonac8e9812010-02-28 15:39:26 -05001980 return ret;
1981}
1982
1983static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01001984 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001985 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001986 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05001987{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001988 struct btrfs_fs_info *info = btrfs_sb(inode->i_sb);
Chris Masonac8e9812010-02-28 15:39:26 -05001989 struct btrfs_root *root;
1990 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05001991 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05001992 int ret;
1993 int num_found = 0;
1994 unsigned long sk_offset = 0;
1995
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001996 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
1997 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01001998 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001999 }
Gerhard Heift12544442014-01-30 16:23:58 +01002000
Chris Masonac8e9812010-02-28 15:39:26 -05002001 path = btrfs_alloc_path();
2002 if (!path)
2003 return -ENOMEM;
2004
2005 if (sk->tree_id == 0) {
2006 /* search the root of the inode that was passed */
2007 root = BTRFS_I(inode)->root;
2008 } else {
2009 key.objectid = sk->tree_id;
2010 key.type = BTRFS_ROOT_ITEM_KEY;
2011 key.offset = (u64)-1;
2012 root = btrfs_read_fs_root_no_name(info, &key);
2013 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002014 btrfs_free_path(path);
2015 return -ENOENT;
2016 }
2017 }
2018
2019 key.objectid = sk->min_objectid;
2020 key.type = sk->min_type;
2021 key.offset = sk->min_offset;
2022
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302023 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002024 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002025 if (ret != 0) {
2026 if (ret > 0)
2027 ret = 0;
2028 goto err;
2029 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002030 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002031 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002032 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002033 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002034 break;
2035
2036 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002037 if (ret > 0)
2038 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002039err:
2040 sk->nr_items = num_found;
2041 btrfs_free_path(path);
2042 return ret;
2043}
2044
2045static noinline int btrfs_ioctl_tree_search(struct file *file,
2046 void __user *argp)
2047{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002048 struct btrfs_ioctl_search_args __user *uargs;
2049 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002050 struct inode *inode;
2051 int ret;
2052 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002053
2054 if (!capable(CAP_SYS_ADMIN))
2055 return -EPERM;
2056
Gerhard Heiftba346b32014-01-30 16:24:02 +01002057 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002058
Gerhard Heiftba346b32014-01-30 16:24:02 +01002059 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2060 return -EFAULT;
2061
2062 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002063
Al Viro496ad9a2013-01-23 17:07:38 -05002064 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002065 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002066
2067 /*
2068 * In the origin implementation an overflow is handled by returning a
2069 * search header with a len of zero, so reset ret.
2070 */
2071 if (ret == -EOVERFLOW)
2072 ret = 0;
2073
Gerhard Heiftba346b32014-01-30 16:24:02 +01002074 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002075 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002076 return ret;
2077}
2078
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002079static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2080 void __user *argp)
2081{
2082 struct btrfs_ioctl_search_args_v2 __user *uarg;
2083 struct btrfs_ioctl_search_args_v2 args;
2084 struct inode *inode;
2085 int ret;
2086 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002087 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002088
2089 if (!capable(CAP_SYS_ADMIN))
2090 return -EPERM;
2091
2092 /* copy search header and buffer size */
2093 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2094 if (copy_from_user(&args, uarg, sizeof(args)))
2095 return -EFAULT;
2096
2097 buf_size = args.buf_size;
2098
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002099 /* limit result size to 16MB */
2100 if (buf_size > buf_limit)
2101 buf_size = buf_limit;
2102
2103 inode = file_inode(file);
2104 ret = search_ioctl(inode, &args.key, &buf_size,
Omar Sandoval718dc5f2017-08-22 23:46:05 -07002105 (char __user *)(&uarg->buf[0]));
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002106 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2107 ret = -EFAULT;
2108 else if (ret == -EOVERFLOW &&
2109 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2110 ret = -EFAULT;
2111
Yan, Zheng76dda932009-09-21 16:00:26 -04002112 return ret;
2113}
2114
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002115/*
Chris Masonac8e9812010-02-28 15:39:26 -05002116 * Search INODE_REFs to identify path name of 'dirid' directory
2117 * in a 'tree_id' tree. and sets path name to 'name'.
2118 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002119static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2120 u64 tree_id, u64 dirid, char *name)
2121{
2122 struct btrfs_root *root;
2123 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002124 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002125 int ret = -1;
2126 int slot;
2127 int len;
2128 int total_len = 0;
2129 struct btrfs_inode_ref *iref;
2130 struct extent_buffer *l;
2131 struct btrfs_path *path;
2132
2133 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2134 name[0]='\0';
2135 return 0;
2136 }
2137
2138 path = btrfs_alloc_path();
2139 if (!path)
2140 return -ENOMEM;
2141
Nikolay Borisovc8bcbfbd2017-12-01 11:19:42 +02002142 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX - 1];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002143
2144 key.objectid = tree_id;
2145 key.type = BTRFS_ROOT_ITEM_KEY;
2146 key.offset = (u64)-1;
2147 root = btrfs_read_fs_root_no_name(info, &key);
2148 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002149 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002150 ret = -ENOENT;
2151 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002152 }
2153
2154 key.objectid = dirid;
2155 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002156 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002157
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302158 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002159 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2160 if (ret < 0)
2161 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002162 else if (ret > 0) {
2163 ret = btrfs_previous_item(root, path, dirid,
2164 BTRFS_INODE_REF_KEY);
2165 if (ret < 0)
2166 goto out;
2167 else if (ret > 0) {
2168 ret = -ENOENT;
2169 goto out;
2170 }
2171 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002172
2173 l = path->nodes[0];
2174 slot = path->slots[0];
2175 btrfs_item_key_to_cpu(l, &key, slot);
2176
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002177 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2178 len = btrfs_inode_ref_name_len(l, iref);
2179 ptr -= len + 1;
2180 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002181 if (ptr < name) {
2182 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002183 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002184 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002185
2186 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302187 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002188
2189 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2190 break;
2191
David Sterbab3b4aa72011-04-21 01:20:15 +02002192 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002193 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002194 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002195 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002196 }
Li Zefan77906a502011-07-14 03:16:00 +00002197 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302198 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002199 ret = 0;
2200out:
2201 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002202 return ret;
2203}
2204
2205static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2206 void __user *argp)
2207{
2208 struct btrfs_ioctl_ino_lookup_args *args;
2209 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002210 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002211
Julia Lawall2354d08f2010-10-29 15:14:18 -04002212 args = memdup_user(argp, sizeof(*args));
2213 if (IS_ERR(args))
2214 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002215
Al Viro496ad9a2013-01-23 17:07:38 -05002216 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002217
David Sterba01b810b2015-05-12 19:14:49 +02002218 /*
2219 * Unprivileged query to obtain the containing subvolume root id. The
2220 * path is reset so it's consistent with btrfs_search_path_in_tree.
2221 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002222 if (args->treeid == 0)
2223 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2224
David Sterba01b810b2015-05-12 19:14:49 +02002225 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2226 args->name[0] = 0;
2227 goto out;
2228 }
2229
2230 if (!capable(CAP_SYS_ADMIN)) {
2231 ret = -EPERM;
2232 goto out;
2233 }
2234
Chris Masonac8e9812010-02-28 15:39:26 -05002235 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2236 args->treeid, args->objectid,
2237 args->name);
2238
David Sterba01b810b2015-05-12 19:14:49 +02002239out:
Chris Masonac8e9812010-02-28 15:39:26 -05002240 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2241 ret = -EFAULT;
2242
2243 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002244 return ret;
2245}
2246
Yan, Zheng76dda932009-09-21 16:00:26 -04002247static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2248 void __user *arg)
2249{
Al Viro54563d42013-09-01 15:57:51 -04002250 struct dentry *parent = file->f_path.dentry;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002251 struct btrfs_fs_info *fs_info = btrfs_sb(parent->d_sb);
Yan, Zheng76dda932009-09-21 16:00:26 -04002252 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002253 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002254 struct inode *inode;
2255 struct btrfs_root *root = BTRFS_I(dir)->root;
2256 struct btrfs_root *dest = NULL;
2257 struct btrfs_ioctl_vol_args *vol_args;
Yan, Zheng76dda932009-09-21 16:00:26 -04002258 int namelen;
Yan, Zheng76dda932009-09-21 16:00:26 -04002259 int err = 0;
2260
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002261 if (!S_ISDIR(dir->i_mode))
2262 return -ENOTDIR;
2263
Yan, Zheng76dda932009-09-21 16:00:26 -04002264 vol_args = memdup_user(arg, sizeof(*vol_args));
2265 if (IS_ERR(vol_args))
2266 return PTR_ERR(vol_args);
2267
2268 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2269 namelen = strlen(vol_args->name);
2270 if (strchr(vol_args->name, '/') ||
2271 strncmp(vol_args->name, "..", namelen) == 0) {
2272 err = -EINVAL;
2273 goto out;
2274 }
2275
Al Viroa561be72011-11-23 11:57:51 -05002276 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002277 if (err)
2278 goto out;
2279
David Sterba521e0542014-04-15 16:41:44 +02002280
Al Viro00235412016-05-26 00:05:12 -04002281 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2282 if (err == -EINTR)
2283 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002284 dentry = lookup_one_len(vol_args->name, parent, namelen);
2285 if (IS_ERR(dentry)) {
2286 err = PTR_ERR(dentry);
2287 goto out_unlock_dir;
2288 }
2289
David Howells2b0143b2015-03-17 22:25:59 +00002290 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002291 err = -ENOENT;
2292 goto out_dput;
2293 }
2294
David Howells2b0143b2015-03-17 22:25:59 +00002295 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002296 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302297 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002298 /*
2299 * Regular user. Only allow this with a special mount
2300 * option, when the user has write+exec access to the
2301 * subvol root, and when rmdir(2) would have been
2302 * allowed.
2303 *
2304 * Note that this is _not_ check that the subvol is
2305 * empty or doesn't contain data that we wouldn't
2306 * otherwise be able to delete.
2307 *
2308 * Users who want to delete empty subvols should try
2309 * rmdir(2).
2310 */
2311 err = -EPERM;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002312 if (!btrfs_test_opt(fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002313 goto out_dput;
2314
2315 /*
2316 * Do not allow deletion if the parent dir is the same
2317 * as the dir to be deleted. That means the ioctl
2318 * must be called on the dentry referencing the root
2319 * of the subvol, not a random directory contained
2320 * within it.
2321 */
2322 err = -EINVAL;
2323 if (root == dest)
2324 goto out_dput;
2325
2326 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2327 if (err)
2328 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002329 }
2330
Miao Xie5c39da52012-10-22 11:39:53 +00002331 /* check if subvolume may be deleted by a user */
2332 err = btrfs_may_delete(dir, dentry, 1);
2333 if (err)
2334 goto out_dput;
2335
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002336 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002337 err = -EINVAL;
2338 goto out_dput;
2339 }
2340
Al Viro59551022016-01-22 15:40:57 -05002341 inode_lock(inode);
Misono Tomohirof60a2362018-04-18 11:34:52 +09002342 err = btrfs_delete_subvolume(dir, dentry);
Al Viro59551022016-01-22 15:40:57 -05002343 inode_unlock(inode);
Misono Tomohirof60a2362018-04-18 11:34:52 +09002344 if (!err)
Yan, Zheng76dda932009-09-21 16:00:26 -04002345 d_delete(dentry);
Liu Bofa6ac872013-02-20 14:10:23 +00002346
Yan, Zheng76dda932009-09-21 16:00:26 -04002347out_dput:
2348 dput(dentry);
2349out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002350 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002351out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002352 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002353out:
2354 kfree(vol_args);
2355 return err;
2356}
2357
Chris Mason1e701a32010-03-11 09:42:04 -05002358static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002359{
Al Viro496ad9a2013-01-23 17:07:38 -05002360 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002361 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002362 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002363 int ret;
2364
Ilya Dryomov25122d12013-01-20 15:57:57 +02002365 ret = mnt_want_write_file(file);
2366 if (ret)
2367 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002368
Ilya Dryomov25122d12013-01-20 15:57:57 +02002369 if (btrfs_root_readonly(root)) {
2370 ret = -EROFS;
2371 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002372 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002373
2374 switch (inode->i_mode & S_IFMT) {
2375 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002376 if (!capable(CAP_SYS_ADMIN)) {
2377 ret = -EPERM;
2378 goto out;
2379 }
Eric Sandeende78b512013-01-31 18:21:12 +00002380 ret = btrfs_defrag_root(root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002381 break;
2382 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002383 if (!(file->f_mode & FMODE_WRITE)) {
2384 ret = -EINVAL;
2385 goto out;
2386 }
Chris Mason1e701a32010-03-11 09:42:04 -05002387
2388 range = kzalloc(sizeof(*range), GFP_KERNEL);
2389 if (!range) {
2390 ret = -ENOMEM;
2391 goto out;
2392 }
2393
2394 if (argp) {
2395 if (copy_from_user(range, argp,
2396 sizeof(*range))) {
2397 ret = -EFAULT;
2398 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002399 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002400 }
2401 /* compression requires us to start the IO */
2402 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2403 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2404 range->extent_thresh = (u32)-1;
2405 }
2406 } else {
2407 /* the rest are all set to zero by kzalloc */
2408 range->len = (u64)-1;
2409 }
Al Viro496ad9a2013-01-23 17:07:38 -05002410 ret = btrfs_defrag_file(file_inode(file), file,
Anand Jain7c829b72018-03-07 17:29:18 +08002411 range, BTRFS_OLDEST_GENERATION, 0);
Chris Mason4cb53002011-05-24 15:35:30 -04002412 if (ret > 0)
2413 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002414 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002415 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002416 default:
2417 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002418 }
Chris Masone441d542009-01-05 16:57:23 -05002419out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002420 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002421 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002422}
2423
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002424static long btrfs_ioctl_add_dev(struct btrfs_fs_info *fs_info, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002425{
2426 struct btrfs_ioctl_vol_args *vol_args;
2427 int ret;
2428
Chris Masone441d542009-01-05 16:57:23 -05002429 if (!capable(CAP_SYS_ADMIN))
2430 return -EPERM;
2431
David Sterba171938e2017-03-28 14:44:21 +02002432 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags))
Anand Jaine57138b2013-08-21 11:44:48 +08002433 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002434
Li Zefandae7b662009-04-08 15:06:54 +08002435 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002436 if (IS_ERR(vol_args)) {
2437 ret = PTR_ERR(vol_args);
2438 goto out;
2439 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002440
Mark Fasheh5516e592008-07-24 12:20:14 -04002441 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002442 ret = btrfs_init_new_device(fs_info, vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002443
Anand Jain43d20762014-07-01 00:58:56 +08002444 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002445 btrfs_info(fs_info, "disk added %s", vol_args->name);
Anand Jain43d20762014-07-01 00:58:56 +08002446
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002447 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002448out:
David Sterba171938e2017-03-28 14:44:21 +02002449 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002450 return ret;
2451}
2452
Anand Jain6b526ed2016-02-13 10:01:39 +08002453static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002454{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002455 struct inode *inode = file_inode(file);
2456 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jain6b526ed2016-02-13 10:01:39 +08002457 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002458 int ret;
2459
Chris Masone441d542009-01-05 16:57:23 -05002460 if (!capable(CAP_SYS_ADMIN))
2461 return -EPERM;
2462
Miao Xieda249272012-11-26 08:44:50 +00002463 ret = mnt_want_write_file(file);
2464 if (ret)
2465 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002466
Li Zefandae7b662009-04-08 15:06:54 +08002467 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002468 if (IS_ERR(vol_args)) {
2469 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002470 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002471 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002472
Anand Jain6b526ed2016-02-13 10:01:39 +08002473 /* Check for compatibility reject unknown flags */
David Sterba735654e2016-02-15 18:15:21 +01002474 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED)
2475 return -EOPNOTSUPP;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002476
David Sterba171938e2017-03-28 14:44:21 +02002477 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jain183860f2013-05-17 10:52:45 +00002478 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2479 goto out;
2480 }
2481
David Sterba735654e2016-02-15 18:15:21 +01002482 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002483 ret = btrfs_rm_device(fs_info, NULL, vol_args->devid);
Anand Jain6b526ed2016-02-13 10:01:39 +08002484 } else {
2485 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002486 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Anand Jain6b526ed2016-02-13 10:01:39 +08002487 }
David Sterba171938e2017-03-28 14:44:21 +02002488 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Anand Jain183860f2013-05-17 10:52:45 +00002489
Anand Jain6b526ed2016-02-13 10:01:39 +08002490 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01002491 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002492 btrfs_info(fs_info, "device deleted: id %llu",
Anand Jain6b526ed2016-02-13 10:01:39 +08002493 vol_args->devid);
2494 else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002495 btrfs_info(fs_info, "device deleted: %s",
Anand Jain6b526ed2016-02-13 10:01:39 +08002496 vol_args->name);
2497 }
Anand Jain183860f2013-05-17 10:52:45 +00002498out:
2499 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002500err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002501 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002502 return ret;
2503}
2504
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002505static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2506{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002507 struct inode *inode = file_inode(file);
2508 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002509 struct btrfs_ioctl_vol_args *vol_args;
2510 int ret;
2511
2512 if (!capable(CAP_SYS_ADMIN))
2513 return -EPERM;
2514
2515 ret = mnt_want_write_file(file);
2516 if (ret)
2517 return ret;
2518
David Sterba171938e2017-03-28 14:44:21 +02002519 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002520 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02002521 goto out_drop_write;
2522 }
2523
2524 vol_args = memdup_user(arg, sizeof(*vol_args));
2525 if (IS_ERR(vol_args)) {
2526 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002527 goto out;
2528 }
2529
David Sterba58d7bbf2016-05-04 14:10:47 +02002530 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002531 ret = btrfs_rm_device(fs_info, vol_args->name, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002532
2533 if (!ret)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002534 btrfs_info(fs_info, "disk deleted %s", vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002535 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02002536out:
David Sterba171938e2017-03-28 14:44:21 +02002537 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
David Sterba58d7bbf2016-05-04 14:10:47 +02002538out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002539 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02002540
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002541 return ret;
2542}
2543
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002544static long btrfs_ioctl_fs_info(struct btrfs_fs_info *fs_info,
2545 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002546{
Li Zefan027ed2f2011-06-08 08:27:56 +00002547 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002548 struct btrfs_device *device;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002549 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002550 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002551
Li Zefan027ed2f2011-06-08 08:27:56 +00002552 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2553 if (!fi_args)
2554 return -ENOMEM;
2555
David Sterbad03262c2017-06-16 00:09:21 +02002556 rcu_read_lock();
Li Zefan027ed2f2011-06-08 08:27:56 +00002557 fi_args->num_devices = fs_devices->num_devices;
Jan Schmidt475f6382011-03-11 15:41:01 +01002558
David Sterbad03262c2017-06-16 00:09:21 +02002559 list_for_each_entry_rcu(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002560 if (device->devid > fi_args->max_id)
2561 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002562 }
David Sterbad03262c2017-06-16 00:09:21 +02002563 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002564
David Sterbad03262c2017-06-16 00:09:21 +02002565 memcpy(&fi_args->fsid, fs_info->fsid, sizeof(fi_args->fsid));
Omar Sandovalbea7eaf2017-08-22 23:46:00 -07002566 fi_args->nodesize = fs_info->nodesize;
2567 fi_args->sectorsize = fs_info->sectorsize;
2568 fi_args->clone_alignment = fs_info->sectorsize;
David Sterba80a773f2014-05-07 18:17:06 +02002569
Li Zefan027ed2f2011-06-08 08:27:56 +00002570 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2571 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002572
Li Zefan027ed2f2011-06-08 08:27:56 +00002573 kfree(fi_args);
2574 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002575}
2576
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002577static long btrfs_ioctl_dev_info(struct btrfs_fs_info *fs_info,
2578 void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01002579{
2580 struct btrfs_ioctl_dev_info_args *di_args;
2581 struct btrfs_device *dev;
Jan Schmidt475f6382011-03-11 15:41:01 +01002582 int ret = 0;
2583 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002584
Jan Schmidt475f6382011-03-11 15:41:01 +01002585 di_args = memdup_user(arg, sizeof(*di_args));
2586 if (IS_ERR(di_args))
2587 return PTR_ERR(di_args);
2588
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002589 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002590 s_uuid = di_args->uuid;
2591
David Sterbac5593ca2017-06-16 00:09:21 +02002592 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002593 dev = btrfs_find_device(fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002594
2595 if (!dev) {
2596 ret = -ENODEV;
2597 goto out;
2598 }
2599
2600 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002601 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2602 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002603 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002604 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002605 struct rcu_string *name;
2606
Josef Bacik606686e2012-06-04 14:03:51 -04002607 name = rcu_dereference(dev->name);
Xiongfeng Wang6670d4c2018-01-08 19:51:22 +08002608 strncpy(di_args->path, name->str, sizeof(di_args->path) - 1);
Jim Meyeringa27202f2012-04-26 18:36:56 +02002609 di_args->path[sizeof(di_args->path) - 1] = 0;
2610 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002611 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002612 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002613
2614out:
David Sterbac5593ca2017-06-16 00:09:21 +02002615 rcu_read_unlock();
Jan Schmidt475f6382011-03-11 15:41:01 +01002616 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2617 ret = -EFAULT;
2618
2619 kfree(di_args);
2620 return ret;
2621}
2622
Mark Fashehf4414602015-06-30 14:42:05 -07002623static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002624{
2625 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002626
Mark Fasheh416161d2013-08-06 11:42:51 -07002627 page = grab_cache_page(inode->i_mapping, index);
2628 if (!page)
Filipe Manana31314002016-01-27 18:37:47 +00002629 return ERR_PTR(-ENOMEM);
Mark Fasheh416161d2013-08-06 11:42:51 -07002630
2631 if (!PageUptodate(page)) {
Filipe Manana31314002016-01-27 18:37:47 +00002632 int ret;
2633
2634 ret = btrfs_readpage(NULL, page);
2635 if (ret)
2636 return ERR_PTR(ret);
Mark Fasheh416161d2013-08-06 11:42:51 -07002637 lock_page(page);
2638 if (!PageUptodate(page)) {
2639 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002640 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002641 return ERR_PTR(-EIO);
2642 }
2643 if (page->mapping != inode->i_mapping) {
2644 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002645 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002646 return ERR_PTR(-EAGAIN);
Mark Fasheh416161d2013-08-06 11:42:51 -07002647 }
2648 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002649
2650 return page;
2651}
2652
Mark Fashehf4414602015-06-30 14:42:05 -07002653static int gather_extent_pages(struct inode *inode, struct page **pages,
2654 int num_pages, u64 off)
2655{
2656 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002657 pgoff_t index = off >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002658
2659 for (i = 0; i < num_pages; i++) {
Filipe Manana31314002016-01-27 18:37:47 +00002660again:
Mark Fashehf4414602015-06-30 14:42:05 -07002661 pages[i] = extent_same_get_page(inode, index + i);
Filipe Manana31314002016-01-27 18:37:47 +00002662 if (IS_ERR(pages[i])) {
2663 int err = PTR_ERR(pages[i]);
2664
2665 if (err == -EAGAIN)
2666 goto again;
2667 pages[i] = NULL;
2668 return err;
2669 }
Mark Fashehf4414602015-06-30 14:42:05 -07002670 }
2671 return 0;
2672}
2673
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002674static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2675 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002676{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002677 /*
2678 * Do any pending delalloc/csum calculations on inode, one way or
2679 * another, and lock file content.
2680 * The locking order is:
2681 *
2682 * 1) pages
2683 * 2) range in the inode's io tree
2684 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002685 while (1) {
2686 struct btrfs_ordered_extent *ordered;
2687 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2688 ordered = btrfs_lookup_first_ordered_extent(inode,
2689 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002690 if ((!ordered ||
2691 ordered->file_offset + ordered->len <= off ||
2692 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002693 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002694 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2695 if (ordered)
2696 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002697 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002698 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002699 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2700 if (ordered)
2701 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002702 if (!retry_range_locking)
2703 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002704 btrfs_wait_ordered_range(inode, off, len);
2705 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002706 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002707}
2708
Mark Fashehf4414602015-06-30 14:42:05 -07002709static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002710{
Al Viro59551022016-01-22 15:40:57 -05002711 inode_unlock(inode1);
2712 inode_unlock(inode2);
Mark Fasheh416161d2013-08-06 11:42:51 -07002713}
2714
Mark Fashehf4414602015-06-30 14:42:05 -07002715static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2716{
2717 if (inode1 < inode2)
2718 swap(inode1, inode2);
2719
Al Viro59551022016-01-22 15:40:57 -05002720 inode_lock_nested(inode1, I_MUTEX_PARENT);
2721 inode_lock_nested(inode2, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002722}
2723
2724static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2725 struct inode *inode2, u64 loff2, u64 len)
2726{
2727 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2728 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2729}
2730
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002731static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2732 struct inode *inode2, u64 loff2, u64 len,
2733 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002734{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002735 int ret;
2736
Mark Fasheh416161d2013-08-06 11:42:51 -07002737 if (inode1 < inode2) {
2738 swap(inode1, inode2);
2739 swap(loff1, loff2);
2740 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002741 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2742 if (ret)
2743 return ret;
2744 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2745 if (ret)
2746 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2747 loff1 + len - 1);
2748 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002749}
2750
2751struct cmp_pages {
2752 int num_pages;
2753 struct page **src_pages;
2754 struct page **dst_pages;
2755};
2756
2757static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2758{
2759 int i;
2760 struct page *pg;
2761
2762 for (i = 0; i < cmp->num_pages; i++) {
2763 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002764 if (pg) {
2765 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002766 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002767 }
Mark Fashehf4414602015-06-30 14:42:05 -07002768 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002769 if (pg) {
2770 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002771 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002772 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002773 }
Mark Fashehf4414602015-06-30 14:42:05 -07002774 kfree(cmp->src_pages);
2775 kfree(cmp->dst_pages);
2776}
2777
2778static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2779 struct inode *dst, u64 dst_loff,
2780 u64 len, struct cmp_pages *cmp)
2781{
2782 int ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002783 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002784 struct page **src_pgarr, **dst_pgarr;
2785
2786 /*
2787 * We must gather up all the pages before we initiate our
2788 * extent locking. We use an array for the page pointers. Size
2789 * of the array is bounded by len, which is in turn bounded by
2790 * BTRFS_MAX_DEDUPE_LEN.
2791 */
David Sterba66722f72016-02-11 15:01:38 +01002792 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
2793 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
Mark Fashehf4414602015-06-30 14:42:05 -07002794 if (!src_pgarr || !dst_pgarr) {
2795 kfree(src_pgarr);
2796 kfree(dst_pgarr);
2797 return -ENOMEM;
2798 }
2799 cmp->num_pages = num_pages;
2800 cmp->src_pages = src_pgarr;
2801 cmp->dst_pages = dst_pgarr;
2802
Filipe Mananab1517622017-02-21 17:14:52 +00002803 /*
2804 * If deduping ranges in the same inode, locking rules make it mandatory
2805 * to always lock pages in ascending order to avoid deadlocks with
2806 * concurrent tasks (such as starting writeback/delalloc).
2807 */
2808 if (src == dst && dst_loff < loff) {
2809 swap(src_pgarr, dst_pgarr);
2810 swap(loff, dst_loff);
2811 }
2812
2813 ret = gather_extent_pages(src, src_pgarr, cmp->num_pages, loff);
Mark Fashehf4414602015-06-30 14:42:05 -07002814 if (ret)
2815 goto out;
2816
Filipe Mananab1517622017-02-21 17:14:52 +00002817 ret = gather_extent_pages(dst, dst_pgarr, cmp->num_pages, dst_loff);
Mark Fashehf4414602015-06-30 14:42:05 -07002818
2819out:
2820 if (ret)
2821 btrfs_cmp_data_free(cmp);
Naohiro Aota78ad4ce2017-09-08 17:48:55 +09002822 return ret;
Mark Fasheh416161d2013-08-06 11:42:51 -07002823}
2824
David Sterba1a287cf2017-02-10 20:15:10 +01002825static int btrfs_cmp_data(u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002826{
2827 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07002828 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07002829 struct page *src_page, *dst_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002830 unsigned int cmp_len = PAGE_SIZE;
Mark Fasheh416161d2013-08-06 11:42:51 -07002831 void *addr, *dst_addr;
2832
Mark Fashehf4414602015-06-30 14:42:05 -07002833 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002834 while (len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002835 if (len < PAGE_SIZE)
Mark Fasheh416161d2013-08-06 11:42:51 -07002836 cmp_len = len;
2837
Mark Fashehf4414602015-06-30 14:42:05 -07002838 BUG_ON(i >= cmp->num_pages);
2839
2840 src_page = cmp->src_pages[i];
2841 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002842 ASSERT(PageLocked(src_page));
2843 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07002844
Mark Fasheh416161d2013-08-06 11:42:51 -07002845 addr = kmap_atomic(src_page);
2846 dst_addr = kmap_atomic(dst_page);
2847
2848 flush_dcache_page(src_page);
2849 flush_dcache_page(dst_page);
2850
2851 if (memcmp(addr, dst_addr, cmp_len))
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08002852 ret = -EBADE;
Mark Fasheh416161d2013-08-06 11:42:51 -07002853
2854 kunmap_atomic(addr);
2855 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07002856
2857 if (ret)
2858 break;
2859
Mark Fasheh416161d2013-08-06 11:42:51 -07002860 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07002861 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07002862 }
2863
2864 return ret;
2865}
2866
Mark Fashehe1d227a2015-06-08 15:05:25 -07002867static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
2868 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07002869{
Mark Fashehe1d227a2015-06-08 15:05:25 -07002870 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07002871 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
2872
Mark Fashehe1d227a2015-06-08 15:05:25 -07002873 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07002874 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002875
2876 /* if we extend to eof, continue to block boundary */
2877 if (off + len == inode->i_size)
2878 *plen = len = ALIGN(inode->i_size, bs) - off;
2879
Mark Fasheh416161d2013-08-06 11:42:51 -07002880 /* Check that we are block aligned - btrfs_clone() requires this */
2881 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
2882 return -EINVAL;
2883
2884 return 0;
2885}
2886
Mark Fashehe1d227a2015-06-08 15:05:25 -07002887static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07002888 struct inode *dst, u64 dst_loff)
2889{
2890 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07002891 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07002892 struct cmp_pages cmp;
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002893 bool same_inode = (src == dst);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002894 u64 same_lock_start = 0;
2895 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002896
Filipe Manana113e8282015-03-30 18:26:47 +01002897 if (len == 0)
2898 return 0;
2899
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002900 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05002901 inode_lock(src);
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002902 else
2903 btrfs_double_inode_lock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07002904
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002905 ret = extent_same_check_offsets(src, loff, &len, olen);
2906 if (ret)
2907 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07002908
Omar Sandovalfc4badd2017-01-17 23:37:38 -08002909 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
2910 if (ret)
2911 goto out_unlock;
2912
2913 if (same_inode) {
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002914 /*
2915 * Single inode case wants the same checks, except we
2916 * don't want our length pushed out past i_size as
2917 * comparing that data range makes no sense.
2918 *
2919 * extent_same_check_offsets() will do this for an
2920 * unaligned length at i_size, so catch it here and
2921 * reject the request.
2922 *
2923 * This effectively means we require aligned extents
2924 * for the single-inode case, whereas the other cases
2925 * allow an unaligned length so long as it ends at
2926 * i_size.
2927 */
2928 if (len != olen) {
2929 ret = -EINVAL;
2930 goto out_unlock;
2931 }
2932
2933 /* Check for overlapping ranges */
2934 if (dst_loff + len > loff && dst_loff < loff + len) {
2935 ret = -EINVAL;
2936 goto out_unlock;
2937 }
2938
2939 same_lock_start = min_t(u64, loff, dst_loff);
2940 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002941 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002942
2943 /* don't make the dst file partly checksummed */
2944 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
2945 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
2946 ret = -EINVAL;
2947 goto out_unlock;
2948 }
2949
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002950again:
Mark Fashehf4414602015-06-30 14:42:05 -07002951 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
2952 if (ret)
2953 goto out_unlock;
2954
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002955 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002956 ret = lock_extent_range(src, same_lock_start, same_lock_len,
2957 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002958 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002959 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
2960 false);
2961 /*
2962 * If one of the inodes has dirty pages in the respective range or
2963 * ordered extents, we need to flush dellaloc and wait for all ordered
2964 * extents in the range. We must unlock the pages and the ranges in the
2965 * io trees to avoid deadlocks when flushing delalloc (requires locking
2966 * pages) and when waiting for ordered extents to complete (they require
2967 * range locking).
2968 */
2969 if (ret == -EAGAIN) {
2970 /*
2971 * Ranges in the io trees already unlocked. Now unlock all
2972 * pages before waiting for all IO to complete.
2973 */
2974 btrfs_cmp_data_free(&cmp);
2975 if (same_inode) {
2976 btrfs_wait_ordered_range(src, same_lock_start,
2977 same_lock_len);
2978 } else {
2979 btrfs_wait_ordered_range(src, loff, len);
2980 btrfs_wait_ordered_range(dst, dst_loff, len);
2981 }
2982 goto again;
2983 }
2984 ASSERT(ret == 0);
2985 if (WARN_ON(ret)) {
2986 /* ranges in the io trees already unlocked */
2987 btrfs_cmp_data_free(&cmp);
2988 return ret;
2989 }
Mark Fashehf4414602015-06-30 14:42:05 -07002990
Mark Fasheh207910d2015-06-30 14:42:04 -07002991 /* pass original length for comparison so we stay within i_size */
David Sterba1a287cf2017-02-10 20:15:10 +01002992 ret = btrfs_cmp_data(olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07002993 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07002994 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07002995
Mark Fasheh0efa9f42015-06-30 14:42:07 -07002996 if (same_inode)
2997 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
2998 same_lock_start + same_lock_len - 1);
2999 else
3000 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003001
3002 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003003out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003004 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003005 inode_unlock(src);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003006 else
3007 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003008
3009 return ret;
3010}
3011
Byongho Leeee221842015-12-15 01:42:10 +09003012#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003013
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003014ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3015 struct file *dst_file, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003016{
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003017 struct inode *src = file_inode(src_file);
3018 struct inode *dst = file_inode(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003019 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003020 ssize_t res;
Mark Fasheh416161d2013-08-06 11:42:51 -07003021
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003022 if (olen > BTRFS_MAX_DEDUPE_LEN)
3023 olen = BTRFS_MAX_DEDUPE_LEN;
Mark Fasheh416161d2013-08-06 11:42:51 -07003024
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003025 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003026 /*
3027 * Btrfs does not support blocksize < page_size. As a
3028 * result, btrfs_cmp_data() won't correctly handle
3029 * this situation without an update.
3030 */
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003031 return -EINVAL;
Mark Fasheh416161d2013-08-06 11:42:51 -07003032 }
3033
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003034 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3035 if (res)
3036 return res;
3037 return olen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003038}
3039
Filipe Mananaf82a9902014-06-01 01:50:28 +01003040static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3041 struct inode *inode,
3042 u64 endoff,
3043 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003044 const u64 olen,
3045 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003046{
3047 struct btrfs_root *root = BTRFS_I(inode)->root;
3048 int ret;
3049
3050 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003051 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003052 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003053 /*
3054 * We round up to the block size at eof when determining which
3055 * extents to clone above, but shouldn't round up the file size.
3056 */
3057 if (endoff > destoff + olen)
3058 endoff = destoff + olen;
3059 if (endoff > inode->i_size)
Nikolay Borisov6ef06d22017-02-20 13:50:34 +02003060 btrfs_i_size_write(BTRFS_I(inode), endoff);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003061
3062 ret = btrfs_update_inode(trans, root, inode);
3063 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003064 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003065 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003066 goto out;
3067 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003068 ret = btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003069out:
3070 return ret;
3071}
3072
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003073static void clone_update_extent_map(struct btrfs_inode *inode,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003074 const struct btrfs_trans_handle *trans,
3075 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003076 const u64 hole_offset,
3077 const u64 hole_len)
3078{
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003079 struct extent_map_tree *em_tree = &inode->extent_tree;
Filipe Manana7ffbb592014-06-09 03:48:05 +01003080 struct extent_map *em;
3081 int ret;
3082
3083 em = alloc_extent_map();
3084 if (!em) {
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003085 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003086 return;
3087 }
3088
Filipe Manana14f59792014-06-29 21:45:40 +01003089 if (path) {
3090 struct btrfs_file_extent_item *fi;
3091
3092 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3093 struct btrfs_file_extent_item);
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003094 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003095 em->generation = -1;
3096 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3097 BTRFS_FILE_EXTENT_INLINE)
3098 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003099 &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003100 } else {
3101 em->start = hole_offset;
3102 em->len = hole_len;
3103 em->ram_bytes = em->len;
3104 em->orig_start = hole_offset;
3105 em->block_start = EXTENT_MAP_HOLE;
3106 em->block_len = 0;
3107 em->orig_block_len = 0;
3108 em->compress_type = BTRFS_COMPRESS_NONE;
3109 em->generation = trans->transid;
3110 }
3111
3112 while (1) {
3113 write_lock(&em_tree->lock);
3114 ret = add_extent_mapping(em_tree, em, 1);
3115 write_unlock(&em_tree->lock);
3116 if (ret != -EEXIST) {
3117 free_extent_map(em);
3118 break;
3119 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003120 btrfs_drop_extent_cache(inode, em->start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003121 em->start + em->len - 1, 0);
3122 }
3123
David Sterbaee39b432014-09-30 01:33:33 +02003124 if (ret)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003125 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &inode->runtime_flags);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003126}
3127
Filipe Manana8039d872015-10-13 15:15:00 +01003128/*
3129 * Make sure we do not end up inserting an inline extent into a file that has
3130 * already other (non-inline) extents. If a file has an inline extent it can
3131 * not have any other extents and the (single) inline extent must start at the
3132 * file offset 0. Failing to respect these rules will lead to file corruption,
3133 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3134 *
3135 * We can have extents that have been already written to disk or we can have
3136 * dirty ranges still in delalloc, in which case the extent maps and items are
3137 * created only when we run delalloc, and the delalloc ranges might fall outside
3138 * the range we are currently locking in the inode's io tree. So we check the
3139 * inode's i_size because of that (i_size updates are done while holding the
3140 * i_mutex, which we are holding here).
3141 * We also check to see if the inode has a size not greater than "datal" but has
3142 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3143 * protected against such concurrent fallocate calls by the i_mutex).
3144 *
3145 * If the file has no extents but a size greater than datal, do not allow the
3146 * copy because we would need turn the inline extent into a non-inline one (even
3147 * with NO_HOLES enabled). If we find our destination inode only has one inline
3148 * extent, just overwrite it with the source inline extent if its size is less
3149 * than the source extent's size, or we could copy the source inline extent's
3150 * data into the destination inode's inline extent if the later is greater then
3151 * the former.
3152 */
David Sterba4a0ab9d2017-02-10 20:18:49 +01003153static int clone_copy_inline_extent(struct inode *dst,
Filipe Manana8039d872015-10-13 15:15:00 +01003154 struct btrfs_trans_handle *trans,
3155 struct btrfs_path *path,
3156 struct btrfs_key *new_key,
3157 const u64 drop_start,
3158 const u64 datal,
3159 const u64 skip,
3160 const u64 size,
3161 char *inline_data)
3162{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003163 struct btrfs_fs_info *fs_info = btrfs_sb(dst->i_sb);
Filipe Manana8039d872015-10-13 15:15:00 +01003164 struct btrfs_root *root = BTRFS_I(dst)->root;
3165 const u64 aligned_end = ALIGN(new_key->offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003166 fs_info->sectorsize);
Filipe Manana8039d872015-10-13 15:15:00 +01003167 int ret;
3168 struct btrfs_key key;
3169
3170 if (new_key->offset > 0)
3171 return -EOPNOTSUPP;
3172
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003173 key.objectid = btrfs_ino(BTRFS_I(dst));
Filipe Manana8039d872015-10-13 15:15:00 +01003174 key.type = BTRFS_EXTENT_DATA_KEY;
3175 key.offset = 0;
3176 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3177 if (ret < 0) {
3178 return ret;
3179 } else if (ret > 0) {
3180 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3181 ret = btrfs_next_leaf(root, path);
3182 if (ret < 0)
3183 return ret;
3184 else if (ret > 0)
3185 goto copy_inline_extent;
3186 }
3187 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003188 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003189 key.type == BTRFS_EXTENT_DATA_KEY) {
3190 ASSERT(key.offset > 0);
3191 return -EOPNOTSUPP;
3192 }
3193 } else if (i_size_read(dst) <= datal) {
3194 struct btrfs_file_extent_item *ei;
3195 u64 ext_len;
3196
3197 /*
3198 * If the file size is <= datal, make sure there are no other
3199 * extents following (can happen do to an fallocate call with
3200 * the flag FALLOC_FL_KEEP_SIZE).
3201 */
3202 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3203 struct btrfs_file_extent_item);
3204 /*
3205 * If it's an inline extent, it can not have other extents
3206 * following it.
3207 */
3208 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3209 BTRFS_FILE_EXTENT_INLINE)
3210 goto copy_inline_extent;
3211
3212 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3213 if (ext_len > aligned_end)
3214 return -EOPNOTSUPP;
3215
3216 ret = btrfs_next_item(root, path);
3217 if (ret < 0) {
3218 return ret;
3219 } else if (ret == 0) {
3220 btrfs_item_key_to_cpu(path->nodes[0], &key,
3221 path->slots[0]);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003222 if (key.objectid == btrfs_ino(BTRFS_I(dst)) &&
Filipe Manana8039d872015-10-13 15:15:00 +01003223 key.type == BTRFS_EXTENT_DATA_KEY)
3224 return -EOPNOTSUPP;
3225 }
3226 }
3227
3228copy_inline_extent:
3229 /*
3230 * We have no extent items, or we have an extent at offset 0 which may
3231 * or may not be inlined. All these cases are dealt the same way.
3232 */
3233 if (i_size_read(dst) > datal) {
3234 /*
3235 * If the destination inode has an inline extent...
3236 * This would require copying the data from the source inline
3237 * extent into the beginning of the destination's inline extent.
3238 * But this is really complex, both extents can be compressed
3239 * or just one of them, which would require decompressing and
3240 * re-compressing data (which could increase the new compressed
3241 * size, not allowing the compressed data to fit anymore in an
3242 * inline extent).
3243 * So just don't support this case for now (it should be rare,
3244 * we are not really saving space when cloning inline extents).
3245 */
3246 return -EOPNOTSUPP;
3247 }
3248
3249 btrfs_release_path(path);
3250 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3251 if (ret)
3252 return ret;
3253 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3254 if (ret)
3255 return ret;
3256
3257 if (skip) {
3258 const u32 start = btrfs_file_extent_calc_inline_size(0);
3259
3260 memmove(inline_data + start, inline_data + start + skip, datal);
3261 }
3262
3263 write_extent_buffer(path->nodes[0], inline_data,
3264 btrfs_item_ptr_offset(path->nodes[0],
3265 path->slots[0]),
3266 size);
3267 inode_add_bytes(dst, datal);
3268
3269 return 0;
3270}
3271
Mark Fasheh32b7c682013-08-06 11:42:49 -07003272/**
3273 * btrfs_clone() - clone a range from inode file to another
3274 *
3275 * @src: Inode to clone from
3276 * @inode: Inode to clone to
3277 * @off: Offset within source to start clone from
3278 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003279 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003280 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003281 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003282 */
3283static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003284 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003285 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003286{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003287 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003288 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003289 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003290 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003291 struct btrfs_trans_handle *trans;
3292 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003293 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003294 u32 nritems;
3295 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003296 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003297 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003298 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003299
3300 ret = -ENOMEM;
Michal Hocko752ade62017-05-08 15:57:27 -07003301 buf = kvmalloc(fs_info->nodesize, GFP_KERNEL);
3302 if (!buf)
3303 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003304
3305 path = btrfs_alloc_path();
3306 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003307 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003308 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003309 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003310
David Sterbae4058b52015-11-27 16:31:35 +01003311 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003312 /* clone data */
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003313 key.objectid = btrfs_ino(BTRFS_I(src));
Yan Zhengae01a0a2008-08-04 23:23:47 -04003314 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003315 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003316
3317 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003318 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003319
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003320 /*
3321 * note the key will change type as we walk through the
3322 * tree.
3323 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003324 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003325 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3326 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003327 if (ret < 0)
3328 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003329 /*
3330 * First search, if no extent item that starts at offset off was
3331 * found but the previous item is an extent item, it's possible
3332 * it might overlap our target range, therefore process it.
3333 */
3334 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3335 btrfs_item_key_to_cpu(path->nodes[0], &key,
3336 path->slots[0] - 1);
3337 if (key.type == BTRFS_EXTENT_DATA_KEY)
3338 path->slots[0]--;
3339 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003340
Yan Zhengae01a0a2008-08-04 23:23:47 -04003341 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003342process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003343 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003344 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003345 if (ret < 0)
3346 goto out;
3347 if (ret > 0)
3348 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003349 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003350 }
3351 leaf = path->nodes[0];
3352 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003353
Yan Zhengae01a0a2008-08-04 23:23:47 -04003354 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003355 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003356 key.objectid != btrfs_ino(BTRFS_I(src)))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003357 break;
3358
David Sterba962a2982014-06-04 18:41:45 +02003359 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003360 struct btrfs_file_extent_item *extent;
3361 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003362 u32 size;
3363 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003364 u64 disko = 0, diskl = 0;
3365 u64 datao = 0, datal = 0;
3366 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003367 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003368
Sage Weilc5c9cd42008-11-12 14:32:25 -05003369 extent = btrfs_item_ptr(leaf, slot,
3370 struct btrfs_file_extent_item);
3371 comp = btrfs_file_extent_compression(leaf, extent);
3372 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003373 if (type == BTRFS_FILE_EXTENT_REG ||
3374 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003375 disko = btrfs_file_extent_disk_bytenr(leaf,
3376 extent);
3377 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3378 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003379 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003380 datal = btrfs_file_extent_num_bytes(leaf,
3381 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003382 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3383 /* take upper bound, may be compressed */
3384 datal = btrfs_file_extent_ram_bytes(leaf,
3385 extent);
3386 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003387
Filipe Manana2c463822014-05-31 02:31:05 +01003388 /*
3389 * The first search might have left us at an extent
3390 * item that ends before our target range's start, can
3391 * happen if we have holes and NO_HOLES feature enabled.
3392 */
3393 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003394 path->slots[0]++;
3395 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003396 } else if (key.offset >= off + len) {
3397 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003398 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003399 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003400 size = btrfs_item_size_nr(leaf, slot);
3401 read_extent_buffer(leaf, buf,
3402 btrfs_item_ptr_offset(leaf, slot),
3403 size);
3404
3405 btrfs_release_path(path);
3406 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003407
Zheng Yan31840ae2008-09-23 13:14:14 -04003408 memcpy(&new_key, &key, sizeof(new_key));
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003409 new_key.objectid = btrfs_ino(BTRFS_I(inode));
Li Zefan4d728ec2011-01-26 14:10:43 +08003410 if (off <= key.offset)
3411 new_key.offset = key.offset + destoff - off;
3412 else
3413 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003414
Sage Weilb6f34092011-09-20 14:48:51 -04003415 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003416 * Deal with a hole that doesn't have an extent item
3417 * that represents it (NO_HOLES feature enabled).
3418 * This hole is either in the middle of the cloning
3419 * range or at the beginning (fully overlaps it or
3420 * partially overlaps it).
3421 */
3422 if (new_key.offset != last_dest_end)
3423 drop_start = last_dest_end;
3424 else
3425 drop_start = new_key.offset;
3426
3427 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003428 * 1 - adjusting old extent (we may have to split it)
3429 * 1 - add new extent
3430 * 1 - inode update
3431 */
3432 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003433 if (IS_ERR(trans)) {
3434 ret = PTR_ERR(trans);
3435 goto out;
3436 }
3437
Chris Masonc8a894d2009-06-27 21:07:03 -04003438 if (type == BTRFS_FILE_EXTENT_REG ||
3439 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003440 /*
3441 * a | --- range to clone ---| b
3442 * | ------------- extent ------------- |
3443 */
3444
Antonio Ospite93915582014-06-04 14:03:48 +02003445 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003446 if (key.offset + datal > off + len)
3447 datal = off + len - key.offset;
3448
Antonio Ospite93915582014-06-04 14:03:48 +02003449 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003450 if (off > key.offset) {
3451 datao += off - key.offset;
3452 datal -= off - key.offset;
3453 }
3454
Josef Bacik5dc562c2012-08-17 13:14:17 -04003455 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003456 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003457 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003458 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003459 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003460 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003461 btrfs_abort_transaction(trans,
Jeff Mahoney66642832016-06-10 18:19:25 -04003462 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003463 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003464 goto out;
3465 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003466
Sage Weilc5c9cd42008-11-12 14:32:25 -05003467 ret = btrfs_insert_empty_item(trans, root, path,
3468 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003469 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003470 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003471 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003472 goto out;
3473 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003474
3475 leaf = path->nodes[0];
3476 slot = path->slots[0];
3477 write_extent_buffer(leaf, buf,
3478 btrfs_item_ptr_offset(leaf, slot),
3479 size);
3480
3481 extent = btrfs_item_ptr(leaf, slot,
3482 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003483
Sage Weilc5c9cd42008-11-12 14:32:25 -05003484 /* disko == 0 means it's a hole */
3485 if (!disko)
3486 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003487
3488 btrfs_set_file_extent_offset(leaf, extent,
3489 datao);
3490 btrfs_set_file_extent_num_bytes(leaf, extent,
3491 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003492
Sage Weilc5c9cd42008-11-12 14:32:25 -05003493 if (disko) {
3494 inode_add_bytes(inode, datal);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003495 ret = btrfs_inc_extent_ref(trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003496 root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003497 disko, diskl, 0,
3498 root->root_key.objectid,
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02003499 btrfs_ino(BTRFS_I(inode)),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003500 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003501 if (ret) {
3502 btrfs_abort_transaction(trans,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003503 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003504 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003505 goto out;
3506
3507 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003508 }
3509 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3510 u64 skip = 0;
3511 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003512
Sage Weilc5c9cd42008-11-12 14:32:25 -05003513 if (off > key.offset) {
3514 skip = off - key.offset;
3515 new_key.offset += skip;
3516 }
Chris Masond3977122009-01-05 21:25:51 -05003517
Liu Boaa42ffd2012-09-18 03:52:23 -06003518 if (key.offset + datal > off + len)
3519 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003520
Sage Weilc5c9cd42008-11-12 14:32:25 -05003521 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003522 ret = -EINVAL;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003523 btrfs_end_transaction(trans);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003524 goto out;
3525 }
3526 size -= skip + trim;
3527 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003528
David Sterba4a0ab9d2017-02-10 20:18:49 +01003529 ret = clone_copy_inline_extent(inode,
Filipe Manana8039d872015-10-13 15:15:00 +01003530 trans, path,
3531 &new_key,
3532 drop_start,
3533 datal,
3534 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003535 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003536 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003537 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003538 ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003539 btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003540 goto out;
3541 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003542 leaf = path->nodes[0];
3543 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003544 }
3545
Filipe Manana7ffbb592014-06-09 03:48:05 +01003546 /* If we have an implicit hole (NO_HOLES feature). */
3547 if (drop_start < new_key.offset)
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003548 clone_update_extent_map(BTRFS_I(inode), trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003549 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003550 new_key.offset - drop_start);
3551
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003552 clone_update_extent_map(BTRFS_I(inode), trans,
3553 path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003554
Sage Weilc5c9cd42008-11-12 14:32:25 -05003555 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003556 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003557
Filipe Manana62e23902014-08-08 02:47:06 +01003558 last_dest_end = ALIGN(new_key.offset + datal,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003559 fs_info->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003560 ret = clone_finish_inode_update(trans, inode,
3561 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003562 destoff, olen,
3563 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003564 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003565 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003566 if (new_key.offset + datal >= destoff + len)
3567 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003568 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003569 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003570 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003571
3572 if (fatal_signal_pending(current)) {
3573 ret = -EINTR;
3574 goto out;
3575 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003576 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003577 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003578
Filipe Mananaf82a9902014-06-01 01:50:28 +01003579 if (last_dest_end < destoff + len) {
3580 /*
3581 * We have an implicit hole (NO_HOLES feature is enabled) that
3582 * fully or partially overlaps our cloning range at its end.
3583 */
3584 btrfs_release_path(path);
3585
3586 /*
3587 * 1 - remove extent(s)
3588 * 1 - inode update
3589 */
3590 trans = btrfs_start_transaction(root, 2);
3591 if (IS_ERR(trans)) {
3592 ret = PTR_ERR(trans);
3593 goto out;
3594 }
3595 ret = btrfs_drop_extents(trans, root, inode,
3596 last_dest_end, destoff + len, 1);
3597 if (ret) {
3598 if (ret != -EOPNOTSUPP)
Jeff Mahoney66642832016-06-10 18:19:25 -04003599 btrfs_abort_transaction(trans, ret);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003600 btrfs_end_transaction(trans);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003601 goto out;
3602 }
Nikolay Borisova2f392e2017-02-20 13:51:04 +02003603 clone_update_extent_map(BTRFS_I(inode), trans, NULL,
3604 last_dest_end,
3605 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003606 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003607 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003608 }
3609
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003610out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003611 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003612 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003613 return ret;
3614}
3615
Zach Brown3db11b22015-11-10 16:53:32 -05003616static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3617 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003618{
Al Viro54563d42013-09-01 15:57:51 -04003619 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003620 struct inode *src = file_inode(file_src);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003621 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003622 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003623 int ret;
3624 u64 len = olen;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003625 u64 bs = fs_info->sb->s_blocksize;
Zach Brown3db11b22015-11-10 16:53:32 -05003626 int same_inode = src == inode;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003627
3628 /*
3629 * TODO:
3630 * - split compressed inline extents. annoying: we need to
3631 * decompress into destination's address_space (the file offset
3632 * may change, so source mapping won't do), then recompress (or
3633 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003634 *
3635 * - split destination inode's inline extents. The inline extents can
3636 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003637 */
3638
Mark Fasheh32b7c682013-08-06 11:42:49 -07003639 if (btrfs_root_readonly(root))
3640 return -EROFS;
3641
Zach Brown3db11b22015-11-10 16:53:32 -05003642 if (file_src->f_path.mnt != file->f_path.mnt ||
3643 src->i_sb != inode->i_sb)
3644 return -EXDEV;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003645
3646 /* don't make the dst file partly checksummed */
3647 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3648 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
Zach Brown3db11b22015-11-10 16:53:32 -05003649 return -EINVAL;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003650
Mark Fasheh32b7c682013-08-06 11:42:49 -07003651 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Zach Brown3db11b22015-11-10 16:53:32 -05003652 return -EISDIR;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003653
3654 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003655 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003656 } else {
Al Viro59551022016-01-22 15:40:57 -05003657 inode_lock(src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003658 }
3659
3660 /* determine range to clone */
3661 ret = -EINVAL;
3662 if (off + len > src->i_size || off + len < off)
3663 goto out_unlock;
3664 if (len == 0)
3665 olen = len = src->i_size - off;
3666 /* if we extend to eof, continue to block boundary */
3667 if (off + len == src->i_size)
3668 len = ALIGN(src->i_size, bs) - off;
3669
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003670 if (len == 0) {
3671 ret = 0;
3672 goto out_unlock;
3673 }
3674
Mark Fasheh32b7c682013-08-06 11:42:49 -07003675 /* verify the end result is block aligned */
3676 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3677 !IS_ALIGNED(destoff, bs))
3678 goto out_unlock;
3679
3680 /* verify if ranges are overlapped within the same file */
3681 if (same_inode) {
3682 if (destoff + len > off && destoff < off + len)
3683 goto out_unlock;
3684 }
3685
3686 if (destoff > inode->i_size) {
3687 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3688 if (ret)
3689 goto out_unlock;
3690 }
3691
Filipe Mananac125b8b2014-05-23 05:03:34 +01003692 /*
3693 * Lock the target range too. Right after we replace the file extent
3694 * items in the fs tree (which now point to the cloned data), we might
3695 * have a worker replace them with extent items relative to a write
3696 * operation that was issued before this clone operation (i.e. confront
3697 * with inode.c:btrfs_finish_ordered_io).
3698 */
3699 if (same_inode) {
3700 u64 lock_start = min_t(u64, off, destoff);
3701 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003702
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003703 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003704 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003705 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3706 true);
3707 }
3708 ASSERT(ret == 0);
3709 if (WARN_ON(ret)) {
3710 /* ranges in the io trees already unlocked */
3711 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003712 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003713
Mark Fasheh1c919a52015-06-30 14:42:08 -07003714 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003715
Filipe Mananac125b8b2014-05-23 05:03:34 +01003716 if (same_inode) {
3717 u64 lock_start = min_t(u64, off, destoff);
3718 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3719
3720 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3721 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003722 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003723 }
3724 /*
3725 * Truncate page cache pages so that future reads will see the cloned
3726 * data immediately and not the previous data.
3727 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303728 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003729 round_down(destoff, PAGE_SIZE),
3730 round_up(destoff + len, PAGE_SIZE) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003731out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003732 if (!same_inode)
3733 btrfs_double_inode_unlock(src, inode);
3734 else
Al Viro59551022016-01-22 15:40:57 -05003735 inode_unlock(src);
Zach Brown3db11b22015-11-10 16:53:32 -05003736 return ret;
3737}
3738
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003739int btrfs_clone_file_range(struct file *src_file, loff_t off,
3740 struct file *dst_file, loff_t destoff, u64 len)
Zach Brown3db11b22015-11-10 16:53:32 -05003741{
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003742 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003743}
3744
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003745static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
3746{
Al Viro496ad9a2013-01-23 17:07:38 -05003747 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003748 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003749 struct btrfs_root *root = BTRFS_I(inode)->root;
3750 struct btrfs_root *new_root;
3751 struct btrfs_dir_item *di;
3752 struct btrfs_trans_handle *trans;
3753 struct btrfs_path *path;
3754 struct btrfs_key location;
3755 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003756 u64 objectid = 0;
3757 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00003758 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003759
3760 if (!capable(CAP_SYS_ADMIN))
3761 return -EPERM;
3762
Miao Xie3c04ce02012-11-26 08:43:07 +00003763 ret = mnt_want_write_file(file);
3764 if (ret)
3765 return ret;
3766
3767 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
3768 ret = -EFAULT;
3769 goto out;
3770 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003771
3772 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05303773 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003774
3775 location.objectid = objectid;
3776 location.type = BTRFS_ROOT_ITEM_KEY;
3777 location.offset = (u64)-1;
3778
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003779 new_root = btrfs_read_fs_root_no_name(fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00003780 if (IS_ERR(new_root)) {
3781 ret = PTR_ERR(new_root);
3782 goto out;
3783 }
satoru takeuchi6d6d2822017-09-12 22:42:52 +09003784 if (!is_fstree(new_root->objectid)) {
3785 ret = -ENOENT;
3786 goto out;
3787 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003788
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003789 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00003790 if (!path) {
3791 ret = -ENOMEM;
3792 goto out;
3793 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003794 path->leave_spinning = 1;
3795
3796 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00003797 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003798 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00003799 ret = PTR_ERR(trans);
3800 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003801 }
3802
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003803 dir_id = btrfs_super_root_dir(fs_info->super_copy);
3804 di = btrfs_lookup_dir_item(trans, fs_info->tree_root, path,
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003805 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00003806 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003807 btrfs_free_path(path);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003808 btrfs_end_transaction(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003809 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04003810 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00003811 ret = -ENOENT;
3812 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003813 }
3814
3815 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
3816 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
3817 btrfs_mark_buffer_dirty(path->nodes[0]);
3818 btrfs_free_path(path);
3819
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003820 btrfs_set_fs_incompat(fs_info, DEFAULT_SUBVOL);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003821 btrfs_end_transaction(trans);
Miao Xie3c04ce02012-11-26 08:43:07 +00003822out:
3823 mnt_drop_write_file(file);
3824 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00003825}
3826
Su Yuec065f5b12018-04-02 17:24:11 +08003827static void get_block_group_info(struct list_head *groups_list,
3828 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003829{
3830 struct btrfs_block_group_cache *block_group;
3831
3832 space->total_bytes = 0;
3833 space->used_bytes = 0;
3834 space->flags = 0;
3835 list_for_each_entry(block_group, groups_list, list) {
3836 space->flags = block_group->flags;
3837 space->total_bytes += block_group->key.offset;
3838 space->used_bytes +=
3839 btrfs_block_group_used(&block_group->item);
3840 }
3841}
3842
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003843static long btrfs_ioctl_space_info(struct btrfs_fs_info *fs_info,
3844 void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00003845{
3846 struct btrfs_ioctl_space_args space_args;
3847 struct btrfs_ioctl_space_info space;
3848 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04003849 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00003850 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00003851 struct btrfs_space_info *info;
Colin Ian King315d8e92017-09-19 16:01:23 +01003852 static const u64 types[] = {
3853 BTRFS_BLOCK_GROUP_DATA,
3854 BTRFS_BLOCK_GROUP_SYSTEM,
3855 BTRFS_BLOCK_GROUP_METADATA,
3856 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA
3857 };
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003858 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04003859 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00003860 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003861 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003862 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00003863
3864 if (copy_from_user(&space_args,
3865 (struct btrfs_ioctl_space_args __user *)arg,
3866 sizeof(space_args)))
3867 return -EFAULT;
3868
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003869 for (i = 0; i < num_types; i++) {
3870 struct btrfs_space_info *tmp;
3871
3872 info = NULL;
3873 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003874 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003875 list) {
3876 if (tmp->flags == types[i]) {
3877 info = tmp;
3878 break;
3879 }
3880 }
3881 rcu_read_unlock();
3882
3883 if (!info)
3884 continue;
3885
3886 down_read(&info->groups_sem);
3887 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3888 if (!list_empty(&info->block_groups[c]))
3889 slot_count++;
3890 }
3891 up_read(&info->groups_sem);
3892 }
Josef Bacik1406e432010-01-13 18:19:06 +00003893
David Sterba36523e952014-02-07 14:34:12 +01003894 /*
3895 * Global block reserve, exported as a space_info
3896 */
3897 slot_count++;
3898
Chris Mason7fde62b2010-03-16 15:40:10 -04003899 /* space_slots == 0 means they are asking for a count */
3900 if (space_args.space_slots == 0) {
3901 space_args.total_spaces = slot_count;
3902 goto out;
3903 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003904
Dan Rosenberg51788b12011-02-14 16:04:23 -05003905 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003906
Chris Mason7fde62b2010-03-16 15:40:10 -04003907 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003908
Chris Mason7fde62b2010-03-16 15:40:10 -04003909 /* we generally have at most 6 or so space infos, one for each raid
3910 * level. So, a whole page should be more than enough for everyone
3911 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003912 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04003913 return -ENOMEM;
3914
3915 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01003916 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04003917 if (!dest)
3918 return -ENOMEM;
3919 dest_orig = dest;
3920
3921 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003922 for (i = 0; i < num_types; i++) {
3923 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04003924
Dan Rosenberg51788b12011-02-14 16:04:23 -05003925 if (!slot_count)
3926 break;
3927
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003928 info = NULL;
3929 rcu_read_lock();
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003930 list_for_each_entry_rcu(tmp, &fs_info->space_info,
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003931 list) {
3932 if (tmp->flags == types[i]) {
3933 info = tmp;
3934 break;
3935 }
3936 }
3937 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04003938
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003939 if (!info)
3940 continue;
3941 down_read(&info->groups_sem);
3942 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
3943 if (!list_empty(&info->block_groups[c])) {
Su Yuec065f5b12018-04-02 17:24:11 +08003944 get_block_group_info(&info->block_groups[c],
3945 &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003946 memcpy(dest, &space, sizeof(space));
3947 dest++;
3948 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05003949 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003950 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05003951 if (!slot_count)
3952 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04003953 }
3954 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00003955 }
Josef Bacik1406e432010-01-13 18:19:06 +00003956
David Sterba36523e952014-02-07 14:34:12 +01003957 /*
3958 * Add global block reserve
3959 */
3960 if (slot_count) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003961 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
David Sterba36523e952014-02-07 14:34:12 +01003962
3963 spin_lock(&block_rsv->lock);
3964 space.total_bytes = block_rsv->size;
3965 space.used_bytes = block_rsv->size - block_rsv->reserved;
3966 spin_unlock(&block_rsv->lock);
3967 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
3968 memcpy(dest, &space, sizeof(space));
3969 space_args.total_spaces++;
3970 }
3971
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08003972 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04003973 (arg + sizeof(struct btrfs_ioctl_space_args));
3974
3975 if (copy_to_user(user_dest, dest_orig, alloc_size))
3976 ret = -EFAULT;
3977
3978 kfree(dest_orig);
3979out:
3980 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00003981 ret = -EFAULT;
3982
3983 return ret;
3984}
3985
Miao Xie9a8c28b2012-11-26 08:40:43 +00003986static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
3987 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04003988{
Sage Weil46204592010-10-29 15:41:32 -04003989 struct btrfs_trans_handle *trans;
3990 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00003991 int ret;
Sage Weil46204592010-10-29 15:41:32 -04003992
Miao Xied4edf392013-02-20 09:17:06 +00003993 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00003994 if (IS_ERR(trans)) {
3995 if (PTR_ERR(trans) != -ENOENT)
3996 return PTR_ERR(trans);
3997
3998 /* No running transaction, don't bother */
3999 transid = root->fs_info->last_trans_committed;
4000 goto out;
4001 }
Sage Weil46204592010-10-29 15:41:32 -04004002 transid = trans->transid;
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004003 ret = btrfs_commit_transaction_async(trans, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004004 if (ret) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004005 btrfs_end_transaction(trans);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004006 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004007 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004008out:
Sage Weil46204592010-10-29 15:41:32 -04004009 if (argp)
4010 if (copy_to_user(argp, &transid, sizeof(transid)))
4011 return -EFAULT;
4012 return 0;
4013}
4014
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004015static noinline long btrfs_ioctl_wait_sync(struct btrfs_fs_info *fs_info,
Miao Xie9a8c28b2012-11-26 08:40:43 +00004016 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004017{
Sage Weil46204592010-10-29 15:41:32 -04004018 u64 transid;
4019
4020 if (argp) {
4021 if (copy_from_user(&transid, argp, sizeof(transid)))
4022 return -EFAULT;
4023 } else {
4024 transid = 0; /* current trans */
4025 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004026 return btrfs_wait_for_commit(fs_info, transid);
Sage Weil46204592010-10-29 15:41:32 -04004027}
4028
Miao Xieb8e95482012-11-26 08:48:01 +00004029static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004030{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004031 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Jan Schmidt475f6382011-03-11 15:41:01 +01004032 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004033 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004034
4035 if (!capable(CAP_SYS_ADMIN))
4036 return -EPERM;
4037
4038 sa = memdup_user(arg, sizeof(*sa));
4039 if (IS_ERR(sa))
4040 return PTR_ERR(sa);
4041
Miao Xieb8e95482012-11-26 08:48:01 +00004042 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4043 ret = mnt_want_write_file(file);
4044 if (ret)
4045 goto out;
4046 }
4047
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004048 ret = btrfs_scrub_dev(fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004049 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4050 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004051
4052 if (copy_to_user(arg, sa, sizeof(*sa)))
4053 ret = -EFAULT;
4054
Miao Xieb8e95482012-11-26 08:48:01 +00004055 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4056 mnt_drop_write_file(file);
4057out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004058 kfree(sa);
4059 return ret;
4060}
4061
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004062static long btrfs_ioctl_scrub_cancel(struct btrfs_fs_info *fs_info)
Jan Schmidt475f6382011-03-11 15:41:01 +01004063{
4064 if (!capable(CAP_SYS_ADMIN))
4065 return -EPERM;
4066
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004067 return btrfs_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004068}
4069
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004070static long btrfs_ioctl_scrub_progress(struct btrfs_fs_info *fs_info,
Jan Schmidt475f6382011-03-11 15:41:01 +01004071 void __user *arg)
4072{
4073 struct btrfs_ioctl_scrub_args *sa;
4074 int ret;
4075
4076 if (!capable(CAP_SYS_ADMIN))
4077 return -EPERM;
4078
4079 sa = memdup_user(arg, sizeof(*sa));
4080 if (IS_ERR(sa))
4081 return PTR_ERR(sa);
4082
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004083 ret = btrfs_scrub_progress(fs_info, sa->devid, &sa->progress);
Jan Schmidt475f6382011-03-11 15:41:01 +01004084
4085 if (copy_to_user(arg, sa, sizeof(*sa)))
4086 ret = -EFAULT;
4087
4088 kfree(sa);
4089 return ret;
4090}
4091
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004092static long btrfs_ioctl_get_dev_stats(struct btrfs_fs_info *fs_info,
David Sterbab27f7c02012-06-22 06:30:39 -06004093 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004094{
4095 struct btrfs_ioctl_get_dev_stats *sa;
4096 int ret;
4097
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004098 sa = memdup_user(arg, sizeof(*sa));
4099 if (IS_ERR(sa))
4100 return PTR_ERR(sa);
4101
David Sterbab27f7c02012-06-22 06:30:39 -06004102 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4103 kfree(sa);
4104 return -EPERM;
4105 }
4106
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004107 ret = btrfs_get_dev_stats(fs_info, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004108
4109 if (copy_to_user(arg, sa, sizeof(*sa)))
4110 ret = -EFAULT;
4111
4112 kfree(sa);
4113 return ret;
4114}
4115
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004116static long btrfs_ioctl_dev_replace(struct btrfs_fs_info *fs_info,
4117 void __user *arg)
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004118{
4119 struct btrfs_ioctl_dev_replace_args *p;
4120 int ret;
4121
4122 if (!capable(CAP_SYS_ADMIN))
4123 return -EPERM;
4124
4125 p = memdup_user(arg, sizeof(*p));
4126 if (IS_ERR(p))
4127 return PTR_ERR(p);
4128
4129 switch (p->cmd) {
4130 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
David Howellsbc98a422017-07-17 08:45:34 +01004131 if (sb_rdonly(fs_info->sb)) {
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004132 ret = -EROFS;
4133 goto out;
4134 }
David Sterba171938e2017-03-28 14:44:21 +02004135 if (test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004136 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004137 } else {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004138 ret = btrfs_dev_replace_by_ioctl(fs_info, p);
David Sterba171938e2017-03-28 14:44:21 +02004139 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004140 }
4141 break;
4142 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004143 btrfs_dev_replace_status(fs_info, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004144 ret = 0;
4145 break;
4146 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
Anand Jain17d202b2018-02-12 23:33:30 +08004147 p->result = btrfs_dev_replace_cancel(fs_info);
Anand Jain97282032018-02-12 23:33:29 +08004148 ret = 0;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004149 break;
4150 default:
4151 ret = -EINVAL;
4152 break;
4153 }
4154
4155 if (copy_to_user(arg, p, sizeof(*p)))
4156 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004157out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004158 kfree(p);
4159 return ret;
4160}
4161
Jan Schmidtd7728c92011-07-07 16:48:38 +02004162static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4163{
4164 int ret = 0;
4165 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004166 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004167 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004168 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004169 struct inode_fs_paths *ipath = NULL;
4170 struct btrfs_path *path;
4171
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004172 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004173 return -EPERM;
4174
4175 path = btrfs_alloc_path();
4176 if (!path) {
4177 ret = -ENOMEM;
4178 goto out;
4179 }
4180
4181 ipa = memdup_user(arg, sizeof(*ipa));
4182 if (IS_ERR(ipa)) {
4183 ret = PTR_ERR(ipa);
4184 ipa = NULL;
4185 goto out;
4186 }
4187
4188 size = min_t(u32, ipa->size, 4096);
4189 ipath = init_ipath(size, root, path);
4190 if (IS_ERR(ipath)) {
4191 ret = PTR_ERR(ipath);
4192 ipath = NULL;
4193 goto out;
4194 }
4195
4196 ret = paths_from_inode(ipa->inum, ipath);
4197 if (ret < 0)
4198 goto out;
4199
4200 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004201 rel_ptr = ipath->fspath->val[i] -
4202 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004203 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004204 }
4205
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004206 ret = copy_to_user((void __user *)(unsigned long)ipa->fspath,
4207 ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004208 if (ret) {
4209 ret = -EFAULT;
4210 goto out;
4211 }
4212
4213out:
4214 btrfs_free_path(path);
4215 free_ipath(ipath);
4216 kfree(ipa);
4217
4218 return ret;
4219}
4220
4221static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4222{
4223 struct btrfs_data_container *inodes = ctx;
4224 const size_t c = 3 * sizeof(u64);
4225
4226 if (inodes->bytes_left >= c) {
4227 inodes->bytes_left -= c;
4228 inodes->val[inodes->elem_cnt] = inum;
4229 inodes->val[inodes->elem_cnt + 1] = offset;
4230 inodes->val[inodes->elem_cnt + 2] = root;
4231 inodes->elem_cnt += 3;
4232 } else {
4233 inodes->bytes_missing += c - inodes->bytes_left;
4234 inodes->bytes_left = 0;
4235 inodes->elem_missed += 3;
4236 }
4237
4238 return 0;
4239}
4240
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004241static long btrfs_ioctl_logical_to_ino(struct btrfs_fs_info *fs_info,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004242 void __user *arg, int version)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004243{
4244 int ret = 0;
4245 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004246 struct btrfs_ioctl_logical_ino_args *loi;
4247 struct btrfs_data_container *inodes = NULL;
4248 struct btrfs_path *path = NULL;
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004249 bool ignore_offset;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004250
4251 if (!capable(CAP_SYS_ADMIN))
4252 return -EPERM;
4253
4254 loi = memdup_user(arg, sizeof(*loi));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304255 if (IS_ERR(loi))
4256 return PTR_ERR(loi);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004257
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004258 if (version == 1) {
4259 ignore_offset = false;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004260 size = min_t(u32, loi->size, SZ_64K);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004261 } else {
4262 /* All reserved bits must be 0 for now */
4263 if (memchr_inv(loi->reserved, 0, sizeof(loi->reserved))) {
4264 ret = -EINVAL;
4265 goto out_loi;
4266 }
4267 /* Only accept flags we have defined so far */
4268 if (loi->flags & ~(BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET)) {
4269 ret = -EINVAL;
4270 goto out_loi;
4271 }
4272 ignore_offset = loi->flags & BTRFS_LOGICAL_INO_ARGS_IGNORE_OFFSET;
Zygo Blaxellb115e3b2017-09-22 13:58:47 -04004273 size = min_t(u32, loi->size, SZ_16M);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004274 }
4275
Jan Schmidtd7728c92011-07-07 16:48:38 +02004276 path = btrfs_alloc_path();
4277 if (!path) {
4278 ret = -ENOMEM;
4279 goto out;
4280 }
4281
Jan Schmidtd7728c92011-07-07 16:48:38 +02004282 inodes = init_data_container(size);
4283 if (IS_ERR(inodes)) {
4284 ret = PTR_ERR(inodes);
4285 inodes = NULL;
4286 goto out;
4287 }
4288
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004289 ret = iterate_inodes_from_logical(loi->logical, fs_info, path,
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004290 build_ino_list, inodes, ignore_offset);
Liu Bodf031f02012-09-07 20:01:29 -06004291 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004292 ret = -ENOENT;
4293 if (ret < 0)
4294 goto out;
4295
Omar Sandoval718dc5f2017-08-22 23:46:05 -07004296 ret = copy_to_user((void __user *)(unsigned long)loi->inodes, inodes,
4297 size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004298 if (ret)
4299 ret = -EFAULT;
4300
4301out:
4302 btrfs_free_path(path);
David Sterbaf54de062017-05-31 19:32:09 +02004303 kvfree(inodes);
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04004304out_loi:
Jan Schmidtd7728c92011-07-07 16:48:38 +02004305 kfree(loi);
4306
4307 return ret;
4308}
4309
David Sterba008ef092018-03-21 02:05:27 +01004310void btrfs_update_ioctl_balance_args(struct btrfs_fs_info *fs_info,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004311 struct btrfs_ioctl_balance_args *bargs)
4312{
4313 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4314
4315 bargs->flags = bctl->flags;
4316
David Sterba3009a622018-03-21 01:31:04 +01004317 if (test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags))
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004318 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4319 if (atomic_read(&fs_info->balance_pause_req))
4320 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004321 if (atomic_read(&fs_info->balance_cancel_req))
4322 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004323
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004324 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4325 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4326 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004327
David Sterba008ef092018-03-21 02:05:27 +01004328 spin_lock(&fs_info->balance_lock);
4329 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4330 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004331}
4332
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004333static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004334{
Al Viro496ad9a2013-01-23 17:07:38 -05004335 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004336 struct btrfs_fs_info *fs_info = root->fs_info;
4337 struct btrfs_ioctl_balance_args *bargs;
4338 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004339 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004340 int ret;
4341
4342 if (!capable(CAP_SYS_ADMIN))
4343 return -EPERM;
4344
Liu Boe54bfa312012-06-29 03:58:48 -06004345 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004346 if (ret)
4347 return ret;
4348
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004349again:
David Sterba171938e2017-03-28 14:44:21 +02004350 if (!test_and_set_bit(BTRFS_FS_EXCL_OP, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004351 mutex_lock(&fs_info->balance_mutex);
4352 need_unlock = true;
4353 goto locked;
4354 }
4355
4356 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004357 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004358 * (1) some other op is running
4359 * (2) balance is running
4360 * (3) balance is paused -- special case (think resume)
4361 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004362 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004363 if (fs_info->balance_ctl) {
4364 /* this is either (2) or (3) */
David Sterba3009a622018-03-21 01:31:04 +01004365 if (!test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004366 mutex_unlock(&fs_info->balance_mutex);
David Sterbadccdb072018-03-21 00:20:05 +01004367 /*
4368 * Lock released to allow other waiters to continue,
4369 * we'll reexamine the status again.
4370 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004371 mutex_lock(&fs_info->balance_mutex);
4372
4373 if (fs_info->balance_ctl &&
David Sterba3009a622018-03-21 01:31:04 +01004374 !test_bit(BTRFS_FS_BALANCE_RUNNING, &fs_info->flags)) {
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004375 /* this is (3) */
4376 need_unlock = false;
4377 goto locked;
4378 }
4379
4380 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004381 goto again;
4382 } else {
4383 /* this is (2) */
4384 mutex_unlock(&fs_info->balance_mutex);
4385 ret = -EINPROGRESS;
4386 goto out;
4387 }
4388 } else {
4389 /* this is (1) */
4390 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004391 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004392 goto out;
4393 }
4394
4395locked:
David Sterba171938e2017-03-28 14:44:21 +02004396 BUG_ON(!test_bit(BTRFS_FS_EXCL_OP, &fs_info->flags));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004397
4398 if (arg) {
4399 bargs = memdup_user(arg, sizeof(*bargs));
4400 if (IS_ERR(bargs)) {
4401 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004402 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004403 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004404
4405 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4406 if (!fs_info->balance_ctl) {
4407 ret = -ENOTCONN;
4408 goto out_bargs;
4409 }
4410
4411 bctl = fs_info->balance_ctl;
4412 spin_lock(&fs_info->balance_lock);
4413 bctl->flags |= BTRFS_BALANCE_RESUME;
4414 spin_unlock(&fs_info->balance_lock);
4415
4416 goto do_balance;
4417 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004418 } else {
4419 bargs = NULL;
4420 }
4421
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004422 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004423 ret = -EINPROGRESS;
4424 goto out_bargs;
4425 }
4426
David Sterba8d2db782015-11-04 15:38:29 +01004427 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004428 if (!bctl) {
4429 ret = -ENOMEM;
4430 goto out_bargs;
4431 }
4432
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004433 if (arg) {
4434 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4435 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4436 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4437
4438 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004439 } else {
4440 /* balance everything - no filters */
4441 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004442 }
4443
David Sterba8eb93452015-10-12 16:55:54 +02004444 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4445 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004446 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004447 }
4448
Ilya Dryomovde322262012-01-16 22:04:49 +02004449do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004450 /*
David Sterba149196a2018-03-20 20:23:09 +01004451 * Ownership of bctl and filesystem flag BTRFS_FS_EXCL_OP goes to
4452 * btrfs_balance. bctl is freed in reset_balance_state, or, if
4453 * restriper was paused all the way until unmount, in free_fs_info.
4454 * The flag should be cleared after reset_balance_state.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004455 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004456 need_unlock = false;
4457
David Sterba6fcf6e22018-05-07 17:44:03 +02004458 ret = btrfs_balance(fs_info, bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004459 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004460
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004461 if (arg) {
4462 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4463 ret = -EFAULT;
4464 }
4465
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004466out_bctl:
4467 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004468out_bargs:
4469 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004470out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004471 mutex_unlock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004472 if (need_unlock)
David Sterba171938e2017-03-28 14:44:21 +02004473 clear_bit(BTRFS_FS_EXCL_OP, &fs_info->flags);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004474out:
Liu Boe54bfa312012-06-29 03:58:48 -06004475 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004476 return ret;
4477}
4478
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004479static long btrfs_ioctl_balance_ctl(struct btrfs_fs_info *fs_info, int cmd)
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004480{
4481 if (!capable(CAP_SYS_ADMIN))
4482 return -EPERM;
4483
4484 switch (cmd) {
4485 case BTRFS_BALANCE_CTL_PAUSE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004486 return btrfs_pause_balance(fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004487 case BTRFS_BALANCE_CTL_CANCEL:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004488 return btrfs_cancel_balance(fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004489 }
4490
4491 return -EINVAL;
4492}
4493
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004494static long btrfs_ioctl_balance_progress(struct btrfs_fs_info *fs_info,
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004495 void __user *arg)
4496{
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004497 struct btrfs_ioctl_balance_args *bargs;
4498 int ret = 0;
4499
4500 if (!capable(CAP_SYS_ADMIN))
4501 return -EPERM;
4502
4503 mutex_lock(&fs_info->balance_mutex);
4504 if (!fs_info->balance_ctl) {
4505 ret = -ENOTCONN;
4506 goto out;
4507 }
4508
David Sterba8d2db782015-11-04 15:38:29 +01004509 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004510 if (!bargs) {
4511 ret = -ENOMEM;
4512 goto out;
4513 }
4514
David Sterba008ef092018-03-21 02:05:27 +01004515 btrfs_update_ioctl_balance_args(fs_info, bargs);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004516
4517 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4518 ret = -EFAULT;
4519
4520 kfree(bargs);
4521out:
4522 mutex_unlock(&fs_info->balance_mutex);
4523 return ret;
4524}
4525
Miao Xie905b0dd2012-11-26 08:50:11 +00004526static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004527{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004528 struct inode *inode = file_inode(file);
4529 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Arne Jansen5d13a372011-09-14 15:53:51 +02004530 struct btrfs_ioctl_quota_ctl_args *sa;
4531 struct btrfs_trans_handle *trans = NULL;
4532 int ret;
4533 int err;
4534
4535 if (!capable(CAP_SYS_ADMIN))
4536 return -EPERM;
4537
Miao Xie905b0dd2012-11-26 08:50:11 +00004538 ret = mnt_want_write_file(file);
4539 if (ret)
4540 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004541
4542 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004543 if (IS_ERR(sa)) {
4544 ret = PTR_ERR(sa);
4545 goto drop_write;
4546 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004547
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004548 down_write(&fs_info->subvol_sem);
4549 trans = btrfs_start_transaction(fs_info->tree_root, 2);
Jan Schmidt2f232032013-04-25 16:04:51 +00004550 if (IS_ERR(trans)) {
4551 ret = PTR_ERR(trans);
4552 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004553 }
4554
4555 switch (sa->cmd) {
4556 case BTRFS_QUOTA_CTL_ENABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004557 ret = btrfs_quota_enable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004558 break;
4559 case BTRFS_QUOTA_CTL_DISABLE:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004560 ret = btrfs_quota_disable(trans, fs_info);
Arne Jansen5d13a372011-09-14 15:53:51 +02004561 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004562 default:
4563 ret = -EINVAL;
4564 break;
4565 }
4566
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004567 err = btrfs_commit_transaction(trans);
Jan Schmidt2f232032013-04-25 16:04:51 +00004568 if (err && !ret)
4569 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004570out:
4571 kfree(sa);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004572 up_write(&fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004573drop_write:
4574 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004575 return ret;
4576}
4577
Miao Xie905b0dd2012-11-26 08:50:11 +00004578static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004579{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004580 struct inode *inode = file_inode(file);
4581 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4582 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004583 struct btrfs_ioctl_qgroup_assign_args *sa;
4584 struct btrfs_trans_handle *trans;
4585 int ret;
4586 int err;
4587
4588 if (!capable(CAP_SYS_ADMIN))
4589 return -EPERM;
4590
Miao Xie905b0dd2012-11-26 08:50:11 +00004591 ret = mnt_want_write_file(file);
4592 if (ret)
4593 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004594
4595 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004596 if (IS_ERR(sa)) {
4597 ret = PTR_ERR(sa);
4598 goto drop_write;
4599 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004600
4601 trans = btrfs_join_transaction(root);
4602 if (IS_ERR(trans)) {
4603 ret = PTR_ERR(trans);
4604 goto out;
4605 }
4606
Arne Jansen5d13a372011-09-14 15:53:51 +02004607 if (sa->assign) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004608 ret = btrfs_add_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004609 sa->src, sa->dst);
4610 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004611 ret = btrfs_del_qgroup_relation(trans, fs_info,
Arne Jansen5d13a372011-09-14 15:53:51 +02004612 sa->src, sa->dst);
4613 }
4614
Qu Wenruoe082f562015-02-27 16:24:28 +08004615 /* update qgroup status and info */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004616 err = btrfs_run_qgroups(trans, fs_info);
Qu Wenruoe082f562015-02-27 16:24:28 +08004617 if (err < 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004618 btrfs_handle_fs_error(fs_info, err,
4619 "failed to update qgroup status and info");
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004620 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004621 if (err && !ret)
4622 ret = err;
4623
4624out:
4625 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004626drop_write:
4627 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004628 return ret;
4629}
4630
Miao Xie905b0dd2012-11-26 08:50:11 +00004631static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004632{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004633 struct inode *inode = file_inode(file);
4634 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4635 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004636 struct btrfs_ioctl_qgroup_create_args *sa;
4637 struct btrfs_trans_handle *trans;
4638 int ret;
4639 int err;
4640
4641 if (!capable(CAP_SYS_ADMIN))
4642 return -EPERM;
4643
Miao Xie905b0dd2012-11-26 08:50:11 +00004644 ret = mnt_want_write_file(file);
4645 if (ret)
4646 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004647
4648 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004649 if (IS_ERR(sa)) {
4650 ret = PTR_ERR(sa);
4651 goto drop_write;
4652 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004653
Miao Xied86e56c2012-11-15 11:35:41 +00004654 if (!sa->qgroupid) {
4655 ret = -EINVAL;
4656 goto out;
4657 }
4658
Arne Jansen5d13a372011-09-14 15:53:51 +02004659 trans = btrfs_join_transaction(root);
4660 if (IS_ERR(trans)) {
4661 ret = PTR_ERR(trans);
4662 goto out;
4663 }
4664
Arne Jansen5d13a372011-09-14 15:53:51 +02004665 if (sa->create) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004666 ret = btrfs_create_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004667 } else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004668 ret = btrfs_remove_qgroup(trans, fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004669 }
4670
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004671 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004672 if (err && !ret)
4673 ret = err;
4674
4675out:
4676 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004677drop_write:
4678 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004679 return ret;
4680}
4681
Miao Xie905b0dd2012-11-26 08:50:11 +00004682static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004683{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004684 struct inode *inode = file_inode(file);
4685 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4686 struct btrfs_root *root = BTRFS_I(inode)->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004687 struct btrfs_ioctl_qgroup_limit_args *sa;
4688 struct btrfs_trans_handle *trans;
4689 int ret;
4690 int err;
4691 u64 qgroupid;
4692
4693 if (!capable(CAP_SYS_ADMIN))
4694 return -EPERM;
4695
Miao Xie905b0dd2012-11-26 08:50:11 +00004696 ret = mnt_want_write_file(file);
4697 if (ret)
4698 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004699
4700 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004701 if (IS_ERR(sa)) {
4702 ret = PTR_ERR(sa);
4703 goto drop_write;
4704 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004705
4706 trans = btrfs_join_transaction(root);
4707 if (IS_ERR(trans)) {
4708 ret = PTR_ERR(trans);
4709 goto out;
4710 }
4711
4712 qgroupid = sa->qgroupid;
4713 if (!qgroupid) {
4714 /* take the current subvol as qgroup */
4715 qgroupid = root->root_key.objectid;
4716 }
4717
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004718 ret = btrfs_limit_qgroup(trans, fs_info, qgroupid, &sa->lim);
Arne Jansen5d13a372011-09-14 15:53:51 +02004719
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004720 err = btrfs_end_transaction(trans);
Arne Jansen5d13a372011-09-14 15:53:51 +02004721 if (err && !ret)
4722 ret = err;
4723
4724out:
4725 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004726drop_write:
4727 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004728 return ret;
4729}
4730
Jan Schmidt2f232032013-04-25 16:04:51 +00004731static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
4732{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004733 struct inode *inode = file_inode(file);
4734 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004735 struct btrfs_ioctl_quota_rescan_args *qsa;
4736 int ret;
4737
4738 if (!capable(CAP_SYS_ADMIN))
4739 return -EPERM;
4740
4741 ret = mnt_want_write_file(file);
4742 if (ret)
4743 return ret;
4744
4745 qsa = memdup_user(arg, sizeof(*qsa));
4746 if (IS_ERR(qsa)) {
4747 ret = PTR_ERR(qsa);
4748 goto drop_write;
4749 }
4750
4751 if (qsa->flags) {
4752 ret = -EINVAL;
4753 goto out;
4754 }
4755
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004756 ret = btrfs_qgroup_rescan(fs_info);
Jan Schmidt2f232032013-04-25 16:04:51 +00004757
4758out:
4759 kfree(qsa);
4760drop_write:
4761 mnt_drop_write_file(file);
4762 return ret;
4763}
4764
4765static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
4766{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004767 struct inode *inode = file_inode(file);
4768 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt2f232032013-04-25 16:04:51 +00004769 struct btrfs_ioctl_quota_rescan_args *qsa;
4770 int ret = 0;
4771
4772 if (!capable(CAP_SYS_ADMIN))
4773 return -EPERM;
4774
David Sterba8d2db782015-11-04 15:38:29 +01004775 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00004776 if (!qsa)
4777 return -ENOMEM;
4778
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004779 if (fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
Jan Schmidt2f232032013-04-25 16:04:51 +00004780 qsa->flags = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004781 qsa->progress = fs_info->qgroup_rescan_progress.objectid;
Jan Schmidt2f232032013-04-25 16:04:51 +00004782 }
4783
4784 if (copy_to_user(arg, qsa, sizeof(*qsa)))
4785 ret = -EFAULT;
4786
4787 kfree(qsa);
4788 return ret;
4789}
4790
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004791static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
4792{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004793 struct inode *inode = file_inode(file);
4794 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004795
4796 if (!capable(CAP_SYS_ADMIN))
4797 return -EPERM;
4798
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004799 return btrfs_qgroup_wait_for_completion(fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00004800}
4801
Hugo Millsabccd002014-01-30 20:17:00 +00004802static long _btrfs_ioctl_set_received_subvol(struct file *file,
4803 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02004804{
Al Viro496ad9a2013-01-23 17:07:38 -05004805 struct inode *inode = file_inode(file);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004806 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Alexander Block8ea05e32012-07-25 17:35:53 +02004807 struct btrfs_root *root = BTRFS_I(inode)->root;
4808 struct btrfs_root_item *root_item = &root->root_item;
4809 struct btrfs_trans_handle *trans;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07004810 struct timespec ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02004811 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004812 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02004813
David Sterbabd60ea02014-01-16 15:50:22 +01004814 if (!inode_owner_or_capable(inode))
4815 return -EPERM;
4816
Alexander Block8ea05e32012-07-25 17:35:53 +02004817 ret = mnt_want_write_file(file);
4818 if (ret < 0)
4819 return ret;
4820
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004821 down_write(&fs_info->subvol_sem);
Alexander Block8ea05e32012-07-25 17:35:53 +02004822
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02004823 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FIRST_FREE_OBJECTID) {
Alexander Block8ea05e32012-07-25 17:35:53 +02004824 ret = -EINVAL;
4825 goto out;
4826 }
4827
4828 if (btrfs_root_readonly(root)) {
4829 ret = -EROFS;
4830 goto out;
4831 }
4832
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004833 /*
4834 * 1 - root item
4835 * 2 - uuid items (received uuid + subvol uuid)
4836 */
4837 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02004838 if (IS_ERR(trans)) {
4839 ret = PTR_ERR(trans);
4840 trans = NULL;
4841 goto out;
4842 }
4843
4844 sa->rtransid = trans->transid;
4845 sa->rtime.sec = ct.tv_sec;
4846 sa->rtime.nsec = ct.tv_nsec;
4847
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004848 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
4849 BTRFS_UUID_SIZE);
4850 if (received_uuid_changed &&
Nikolay Borisovd87ff752018-03-12 14:48:09 +02004851 !btrfs_is_empty_uuid(root_item->received_uuid)) {
4852 ret = btrfs_uuid_tree_rem(trans, fs_info,
4853 root_item->received_uuid,
4854 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4855 root->root_key.objectid);
4856 if (ret && ret != -ENOENT) {
4857 btrfs_abort_transaction(trans, ret);
4858 btrfs_end_transaction(trans);
4859 goto out;
4860 }
4861 }
Alexander Block8ea05e32012-07-25 17:35:53 +02004862 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
4863 btrfs_set_root_stransid(root_item, sa->stransid);
4864 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08004865 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
4866 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
4867 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
4868 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02004869
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004870 ret = btrfs_update_root(trans, fs_info->tree_root,
Alexander Block8ea05e32012-07-25 17:35:53 +02004871 &root->root_key, &root->root_item);
4872 if (ret < 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004873 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004874 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004875 }
4876 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004877 ret = btrfs_uuid_tree_add(trans, fs_info, sa->uuid,
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004878 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
4879 root->root_key.objectid);
4880 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04004881 btrfs_abort_transaction(trans, ret);
Nikolay Borisovefd38152017-09-28 11:45:26 +03004882 btrfs_end_transaction(trans);
Alexander Block8ea05e32012-07-25 17:35:53 +02004883 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02004884 }
4885 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004886 ret = btrfs_commit_transaction(trans);
Hugo Millsabccd002014-01-30 20:17:00 +00004887out:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004888 up_write(&fs_info->subvol_sem);
Hugo Millsabccd002014-01-30 20:17:00 +00004889 mnt_drop_write_file(file);
4890 return ret;
4891}
4892
4893#ifdef CONFIG_64BIT
4894static long btrfs_ioctl_set_received_subvol_32(struct file *file,
4895 void __user *arg)
4896{
4897 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
4898 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
4899 int ret = 0;
4900
4901 args32 = memdup_user(arg, sizeof(*args32));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304902 if (IS_ERR(args32))
4903 return PTR_ERR(args32);
Hugo Millsabccd002014-01-30 20:17:00 +00004904
David Sterba8d2db782015-11-04 15:38:29 +01004905 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03004906 if (!args64) {
4907 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00004908 goto out;
4909 }
4910
4911 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
4912 args64->stransid = args32->stransid;
4913 args64->rtransid = args32->rtransid;
4914 args64->stime.sec = args32->stime.sec;
4915 args64->stime.nsec = args32->stime.nsec;
4916 args64->rtime.sec = args32->rtime.sec;
4917 args64->rtime.nsec = args32->rtime.nsec;
4918 args64->flags = args32->flags;
4919
4920 ret = _btrfs_ioctl_set_received_subvol(file, args64);
4921 if (ret)
4922 goto out;
4923
4924 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
4925 args32->stransid = args64->stransid;
4926 args32->rtransid = args64->rtransid;
4927 args32->stime.sec = args64->stime.sec;
4928 args32->stime.nsec = args64->stime.nsec;
4929 args32->rtime.sec = args64->rtime.sec;
4930 args32->rtime.nsec = args64->rtime.nsec;
4931 args32->flags = args64->flags;
4932
4933 ret = copy_to_user(arg, args32, sizeof(*args32));
4934 if (ret)
4935 ret = -EFAULT;
4936
4937out:
4938 kfree(args32);
4939 kfree(args64);
4940 return ret;
4941}
4942#endif
4943
4944static long btrfs_ioctl_set_received_subvol(struct file *file,
4945 void __user *arg)
4946{
4947 struct btrfs_ioctl_received_subvol_args *sa = NULL;
4948 int ret = 0;
4949
4950 sa = memdup_user(arg, sizeof(*sa));
Shailendra Verma7b9ea622016-11-10 15:17:41 +05304951 if (IS_ERR(sa))
4952 return PTR_ERR(sa);
Hugo Millsabccd002014-01-30 20:17:00 +00004953
4954 ret = _btrfs_ioctl_set_received_subvol(file, sa);
4955
4956 if (ret)
4957 goto out;
4958
Alexander Block8ea05e32012-07-25 17:35:53 +02004959 ret = copy_to_user(arg, sa, sizeof(*sa));
4960 if (ret)
4961 ret = -EFAULT;
4962
4963out:
4964 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02004965 return ret;
4966}
4967
jeff.liu867ab662013-01-05 02:48:01 +00004968static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
4969{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004970 struct inode *inode = file_inode(file);
4971 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Anand Jaina1b83ac2013-07-19 17:39:32 +08004972 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00004973 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08004974 char label[BTRFS_LABEL_SIZE];
4975
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004976 spin_lock(&fs_info->super_lock);
4977 memcpy(label, fs_info->super_copy->label, BTRFS_LABEL_SIZE);
4978 spin_unlock(&fs_info->super_lock);
Anand Jaina1b83ac2013-07-19 17:39:32 +08004979
4980 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00004981
4982 if (len == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004983 btrfs_warn(fs_info,
4984 "label is too long, return the first %zu bytes",
4985 --len);
jeff.liu867ab662013-01-05 02:48:01 +00004986 }
4987
jeff.liu867ab662013-01-05 02:48:01 +00004988 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00004989
4990 return ret ? -EFAULT : 0;
4991}
4992
jeff.liua8bfd4a2013-01-05 02:48:08 +00004993static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
4994{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004995 struct inode *inode = file_inode(file);
4996 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4997 struct btrfs_root *root = BTRFS_I(inode)->root;
4998 struct btrfs_super_block *super_block = fs_info->super_copy;
jeff.liua8bfd4a2013-01-05 02:48:08 +00004999 struct btrfs_trans_handle *trans;
5000 char label[BTRFS_LABEL_SIZE];
5001 int ret;
5002
5003 if (!capable(CAP_SYS_ADMIN))
5004 return -EPERM;
5005
5006 if (copy_from_user(label, arg, sizeof(label)))
5007 return -EFAULT;
5008
5009 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005010 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005011 "unable to set label with more than %d bytes",
5012 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005013 return -EINVAL;
5014 }
5015
5016 ret = mnt_want_write_file(file);
5017 if (ret)
5018 return ret;
5019
jeff.liua8bfd4a2013-01-05 02:48:08 +00005020 trans = btrfs_start_transaction(root, 0);
5021 if (IS_ERR(trans)) {
5022 ret = PTR_ERR(trans);
5023 goto out_unlock;
5024 }
5025
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005026 spin_lock(&fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005027 strcpy(super_block->label, label);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005028 spin_unlock(&fs_info->super_lock);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005029 ret = btrfs_commit_transaction(trans);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005030
5031out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005032 mnt_drop_write_file(file);
5033 return ret;
5034}
5035
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005036#define INIT_FEATURE_FLAGS(suffix) \
5037 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5038 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5039 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5040
David Sterbad5131b62016-02-17 15:26:27 +01005041int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005042{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005043 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005044 INIT_FEATURE_FLAGS(SUPP),
5045 INIT_FEATURE_FLAGS(SAFE_SET),
5046 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5047 };
5048
5049 if (copy_to_user(arg, &features, sizeof(features)))
5050 return -EFAULT;
5051
5052 return 0;
5053}
5054
5055static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5056{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005057 struct inode *inode = file_inode(file);
5058 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5059 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005060 struct btrfs_ioctl_feature_flags features;
5061
5062 features.compat_flags = btrfs_super_compat_flags(super_block);
5063 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5064 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5065
5066 if (copy_to_user(arg, &features, sizeof(features)))
5067 return -EFAULT;
5068
5069 return 0;
5070}
5071
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005072static int check_feature_bits(struct btrfs_fs_info *fs_info,
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005073 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005074 u64 change_mask, u64 flags, u64 supported_flags,
5075 u64 safe_set, u64 safe_clear)
5076{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005077 const char *type = btrfs_feature_set_names[set];
5078 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005079 u64 disallowed, unsupported;
5080 u64 set_mask = flags & change_mask;
5081 u64 clear_mask = ~flags & change_mask;
5082
5083 unsupported = set_mask & ~supported_flags;
5084 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005085 names = btrfs_printable_features(set, unsupported);
5086 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005087 btrfs_warn(fs_info,
5088 "this kernel does not support the %s feature bit%s",
5089 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005090 kfree(names);
5091 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005092 btrfs_warn(fs_info,
5093 "this kernel does not support %s bits 0x%llx",
5094 type, unsupported);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005095 return -EOPNOTSUPP;
5096 }
5097
5098 disallowed = set_mask & ~safe_set;
5099 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005100 names = btrfs_printable_features(set, disallowed);
5101 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005102 btrfs_warn(fs_info,
5103 "can't set the %s feature bit%s while mounted",
5104 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005105 kfree(names);
5106 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005107 btrfs_warn(fs_info,
5108 "can't set %s bits 0x%llx while mounted",
5109 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005110 return -EPERM;
5111 }
5112
5113 disallowed = clear_mask & ~safe_clear;
5114 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005115 names = btrfs_printable_features(set, disallowed);
5116 if (names) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005117 btrfs_warn(fs_info,
5118 "can't clear the %s feature bit%s while mounted",
5119 names, strchr(names, ',') ? "s" : "");
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005120 kfree(names);
5121 } else
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005122 btrfs_warn(fs_info,
5123 "can't clear %s bits 0x%llx while mounted",
5124 type, disallowed);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005125 return -EPERM;
5126 }
5127
5128 return 0;
5129}
5130
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005131#define check_feature(fs_info, change_mask, flags, mask_base) \
5132check_feature_bits(fs_info, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005133 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5134 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5135 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5136
5137static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5138{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005139 struct inode *inode = file_inode(file);
5140 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5141 struct btrfs_root *root = BTRFS_I(inode)->root;
5142 struct btrfs_super_block *super_block = fs_info->super_copy;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005143 struct btrfs_ioctl_feature_flags flags[2];
5144 struct btrfs_trans_handle *trans;
5145 u64 newflags;
5146 int ret;
5147
5148 if (!capable(CAP_SYS_ADMIN))
5149 return -EPERM;
5150
5151 if (copy_from_user(flags, arg, sizeof(flags)))
5152 return -EFAULT;
5153
5154 /* Nothing to do */
5155 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5156 !flags[0].incompat_flags)
5157 return 0;
5158
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005159 ret = check_feature(fs_info, flags[0].compat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005160 flags[1].compat_flags, COMPAT);
5161 if (ret)
5162 return ret;
5163
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005164 ret = check_feature(fs_info, flags[0].compat_ro_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005165 flags[1].compat_ro_flags, COMPAT_RO);
5166 if (ret)
5167 return ret;
5168
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005169 ret = check_feature(fs_info, flags[0].incompat_flags,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005170 flags[1].incompat_flags, INCOMPAT);
5171 if (ret)
5172 return ret;
5173
David Sterba7ab19622016-05-04 11:32:00 +02005174 ret = mnt_want_write_file(file);
5175 if (ret)
5176 return ret;
5177
David Sterba8051aa12014-02-07 14:34:04 +01005178 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005179 if (IS_ERR(trans)) {
5180 ret = PTR_ERR(trans);
5181 goto out_drop_write;
5182 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005183
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005184 spin_lock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005185 newflags = btrfs_super_compat_flags(super_block);
5186 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5187 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5188 btrfs_set_super_compat_flags(super_block, newflags);
5189
5190 newflags = btrfs_super_compat_ro_flags(super_block);
5191 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5192 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5193 btrfs_set_super_compat_ro_flags(super_block, newflags);
5194
5195 newflags = btrfs_super_incompat_flags(super_block);
5196 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5197 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5198 btrfs_set_super_incompat_flags(super_block, newflags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005199 spin_unlock(&fs_info->super_lock);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005200
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005201 ret = btrfs_commit_transaction(trans);
David Sterba7ab19622016-05-04 11:32:00 +02005202out_drop_write:
5203 mnt_drop_write_file(file);
5204
5205 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005206}
5207
Josef Bacik2351f432017-09-27 10:43:13 -04005208static int _btrfs_ioctl_send(struct file *file, void __user *argp, bool compat)
5209{
5210 struct btrfs_ioctl_send_args *arg;
5211 int ret;
5212
5213 if (compat) {
5214#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5215 struct btrfs_ioctl_send_args_32 args32;
5216
5217 ret = copy_from_user(&args32, argp, sizeof(args32));
5218 if (ret)
5219 return -EFAULT;
5220 arg = kzalloc(sizeof(*arg), GFP_KERNEL);
5221 if (!arg)
5222 return -ENOMEM;
5223 arg->send_fd = args32.send_fd;
5224 arg->clone_sources_count = args32.clone_sources_count;
5225 arg->clone_sources = compat_ptr(args32.clone_sources);
5226 arg->parent_root = args32.parent_root;
5227 arg->flags = args32.flags;
5228 memcpy(arg->reserved, args32.reserved,
5229 sizeof(args32.reserved));
5230#else
5231 return -ENOTTY;
5232#endif
5233 } else {
5234 arg = memdup_user(argp, sizeof(*arg));
5235 if (IS_ERR(arg))
5236 return PTR_ERR(arg);
5237 }
5238 ret = btrfs_ioctl_send(file, arg);
5239 kfree(arg);
5240 return ret;
5241}
5242
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005243long btrfs_ioctl(struct file *file, unsigned int
5244 cmd, unsigned long arg)
5245{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005246 struct inode *inode = file_inode(file);
5247 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5248 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005249 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005250
5251 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005252 case FS_IOC_GETFLAGS:
5253 return btrfs_ioctl_getflags(file, argp);
5254 case FS_IOC_SETFLAGS:
5255 return btrfs_ioctl_setflags(file, argp);
5256 case FS_IOC_GETVERSION:
5257 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005258 case FITRIM:
5259 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005260 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005261 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005262 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005263 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005264 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005265 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005266 case BTRFS_IOC_SUBVOL_CREATE_V2:
5267 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005268 case BTRFS_IOC_SNAP_DESTROY:
5269 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005270 case BTRFS_IOC_SUBVOL_GETFLAGS:
5271 return btrfs_ioctl_subvol_getflags(file, argp);
5272 case BTRFS_IOC_SUBVOL_SETFLAGS:
5273 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005274 case BTRFS_IOC_DEFAULT_SUBVOL:
5275 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005276 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005277 return btrfs_ioctl_defrag(file, NULL);
5278 case BTRFS_IOC_DEFRAG_RANGE:
5279 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005280 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005281 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005282 case BTRFS_IOC_ADD_DEV:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005283 return btrfs_ioctl_add_dev(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005284 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005285 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005286 case BTRFS_IOC_RM_DEV_V2:
5287 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005288 case BTRFS_IOC_FS_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005289 return btrfs_ioctl_fs_info(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005290 case BTRFS_IOC_DEV_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005291 return btrfs_ioctl_dev_info(fs_info, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005292 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005293 return btrfs_ioctl_balance(file, NULL);
Chris Masonac8e9812010-02-28 15:39:26 -05005294 case BTRFS_IOC_TREE_SEARCH:
5295 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005296 case BTRFS_IOC_TREE_SEARCH_V2:
5297 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005298 case BTRFS_IOC_INO_LOOKUP:
5299 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005300 case BTRFS_IOC_INO_PATHS:
5301 return btrfs_ioctl_ino_to_path(root, argp);
5302 case BTRFS_IOC_LOGICAL_INO:
Zygo Blaxelld24a67b2017-09-22 13:58:46 -04005303 return btrfs_ioctl_logical_to_ino(fs_info, argp, 1);
5304 case BTRFS_IOC_LOGICAL_INO_V2:
5305 return btrfs_ioctl_logical_to_ino(fs_info, argp, 2);
Josef Bacik1406e432010-01-13 18:19:06 +00005306 case BTRFS_IOC_SPACE_INFO:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005307 return btrfs_ioctl_space_info(fs_info, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005308 case BTRFS_IOC_SYNC: {
5309 int ret;
5310
Nikolay Borisov82b3e532018-04-23 10:54:13 +03005311 ret = btrfs_start_delalloc_roots(fs_info, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005312 if (ret)
5313 return ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005314 ret = btrfs_sync_fs(inode->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005315 /*
5316 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005317 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005318 * processing uncleaned subvols.
5319 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005320 wake_up_process(fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005321 return ret;
5322 }
Sage Weil46204592010-10-29 15:41:32 -04005323 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005324 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005325 case BTRFS_IOC_WAIT_SYNC:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005326 return btrfs_ioctl_wait_sync(fs_info, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005327 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005328 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005329 case BTRFS_IOC_SCRUB_CANCEL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005330 return btrfs_ioctl_scrub_cancel(fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01005331 case BTRFS_IOC_SCRUB_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005332 return btrfs_ioctl_scrub_progress(fs_info, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005333 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005334 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005335 case BTRFS_IOC_BALANCE_CTL:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005336 return btrfs_ioctl_balance_ctl(fs_info, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005337 case BTRFS_IOC_BALANCE_PROGRESS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005338 return btrfs_ioctl_balance_progress(fs_info, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005339 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5340 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005341#ifdef CONFIG_64BIT
5342 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5343 return btrfs_ioctl_set_received_subvol_32(file, argp);
5344#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005345 case BTRFS_IOC_SEND:
Josef Bacik2351f432017-09-27 10:43:13 -04005346 return _btrfs_ioctl_send(file, argp, false);
5347#if defined(CONFIG_64BIT) && defined(CONFIG_COMPAT)
5348 case BTRFS_IOC_SEND_32:
5349 return _btrfs_ioctl_send(file, argp, true);
5350#endif
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005351 case BTRFS_IOC_GET_DEV_STATS:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005352 return btrfs_ioctl_get_dev_stats(fs_info, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005353 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005354 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005355 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005356 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005357 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005358 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005359 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005360 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005361 case BTRFS_IOC_QUOTA_RESCAN:
5362 return btrfs_ioctl_quota_rescan(file, argp);
5363 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5364 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005365 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5366 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005367 case BTRFS_IOC_DEV_REPLACE:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005368 return btrfs_ioctl_dev_replace(fs_info, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005369 case BTRFS_IOC_GET_FSLABEL:
5370 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005371 case BTRFS_IOC_SET_FSLABEL:
5372 return btrfs_ioctl_set_fslabel(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005373 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005374 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005375 case BTRFS_IOC_GET_FEATURES:
5376 return btrfs_ioctl_get_features(file, argp);
5377 case BTRFS_IOC_SET_FEATURES:
5378 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005379 }
5380
5381 return -ENOTTY;
5382}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005383
5384#ifdef CONFIG_COMPAT
5385long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5386{
Jeff Mahoney2a362242017-02-06 19:39:09 -05005387 /*
5388 * These all access 32-bit values anyway so no further
5389 * handling is necessary.
5390 */
Luke Dashjr4c63c242015-10-29 08:22:21 +00005391 switch (cmd) {
5392 case FS_IOC32_GETFLAGS:
5393 cmd = FS_IOC_GETFLAGS;
5394 break;
5395 case FS_IOC32_SETFLAGS:
5396 cmd = FS_IOC_SETFLAGS;
5397 break;
5398 case FS_IOC32_GETVERSION:
5399 cmd = FS_IOC_GETVERSION;
5400 break;
Luke Dashjr4c63c242015-10-29 08:22:21 +00005401 }
5402
5403 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5404}
5405#endif