blob: 8bb278e12db65d78464f59eb927c7dfd9e09dbbc [file] [log] [blame]
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/kernel.h>
20#include <linux/bio.h>
21#include <linux/buffer_head.h>
22#include <linux/file.h>
23#include <linux/fs.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040024#include <linux/fsnotify.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040025#include <linux/pagemap.h>
26#include <linux/highmem.h>
27#include <linux/time.h>
28#include <linux/init.h>
29#include <linux/string.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040030#include <linux/backing-dev.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040031#include <linux/mount.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040032#include <linux/mpage.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040033#include <linux/namei.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040034#include <linux/swap.h>
35#include <linux/writeback.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040036#include <linux/compat.h>
37#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040038#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040039#include <linux/xattr.h>
Yan Zheng7ea394f2008-08-05 13:05:02 -040040#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000042#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020043#include <linux/uuid.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000044#include <linux/btrfs.h>
Mark Fasheh416161d2013-08-06 11:42:51 -070045#include <linux/uaccess.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040046#include "ctree.h"
47#include "disk-io.h"
48#include "transaction.h"
49#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040050#include "print-tree.h"
51#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040052#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080053#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020054#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040055#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020056#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010057#include "dev-replace.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000058#include "props.h"
Jeff Mahoney3b02a682013-11-01 13:07:02 -040059#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070060#include "qgroup.h"
Filipe Manana1ec9a1a2016-02-10 10:42:25 +000061#include "tree-log.h"
Anand Jainebb87652016-03-10 17:26:59 +080062#include "compression.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040063
Hugo Millsabccd002014-01-30 20:17:00 +000064#ifdef CONFIG_64BIT
65/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
66 * structures are incorrect, as the timespec structure from userspace
67 * is 4 bytes too small. We define these alternatives here to teach
68 * the kernel about the 32-bit struct packing.
69 */
70struct btrfs_ioctl_timespec_32 {
71 __u64 sec;
72 __u32 nsec;
73} __attribute__ ((__packed__));
74
75struct btrfs_ioctl_received_subvol_args_32 {
76 char uuid[BTRFS_UUID_SIZE]; /* in */
77 __u64 stransid; /* in */
78 __u64 rtransid; /* out */
79 struct btrfs_ioctl_timespec_32 stime; /* in */
80 struct btrfs_ioctl_timespec_32 rtime; /* out */
81 __u64 flags; /* in */
82 __u64 reserved[16]; /* in */
83} __attribute__ ((__packed__));
84
85#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
86 struct btrfs_ioctl_received_subvol_args_32)
87#endif
88
89
Mark Fasheh416161d2013-08-06 11:42:51 -070090static int btrfs_clone(struct inode *src, struct inode *inode,
Mark Fasheh1c919a52015-06-30 14:42:08 -070091 u64 off, u64 olen, u64 olen_aligned, u64 destoff,
92 int no_time_update);
Mark Fasheh416161d2013-08-06 11:42:51 -070093
Christoph Hellwig6cbff002009-04-17 10:37:41 +020094/* Mask out flags that are inappropriate for the given type of inode. */
95static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
96{
97 if (S_ISDIR(mode))
98 return flags;
99 else if (S_ISREG(mode))
100 return flags & ~FS_DIRSYNC_FL;
101 else
102 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
103}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400104
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200105/*
106 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
107 */
108static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
109{
110 unsigned int iflags = 0;
111
112 if (flags & BTRFS_INODE_SYNC)
113 iflags |= FS_SYNC_FL;
114 if (flags & BTRFS_INODE_IMMUTABLE)
115 iflags |= FS_IMMUTABLE_FL;
116 if (flags & BTRFS_INODE_APPEND)
117 iflags |= FS_APPEND_FL;
118 if (flags & BTRFS_INODE_NODUMP)
119 iflags |= FS_NODUMP_FL;
120 if (flags & BTRFS_INODE_NOATIME)
121 iflags |= FS_NOATIME_FL;
122 if (flags & BTRFS_INODE_DIRSYNC)
123 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000124 if (flags & BTRFS_INODE_NODATACOW)
125 iflags |= FS_NOCOW_FL;
126
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900127 if (flags & BTRFS_INODE_NOCOMPRESS)
Li Zefand0092bd2011-04-15 03:03:06 +0000128 iflags |= FS_NOCOMP_FL;
Satoru Takeuchi13f48dc2016-03-15 09:09:59 +0900129 else if (flags & BTRFS_INODE_COMPRESS)
130 iflags |= FS_COMPR_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200131
132 return iflags;
133}
134
135/*
136 * Update inode->i_flags based on the btrfs internal flags.
137 */
138void btrfs_update_iflags(struct inode *inode)
139{
140 struct btrfs_inode *ip = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100141 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200142
143 if (ip->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100144 new_fl |= S_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200145 if (ip->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100146 new_fl |= S_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200147 if (ip->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100148 new_fl |= S_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200149 if (ip->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100150 new_fl |= S_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200151 if (ip->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100152 new_fl |= S_DIRSYNC;
153
154 set_mask_bits(&inode->i_flags,
155 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
156 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200157}
158
159/*
160 * Inherit flags from the parent inode.
161 *
Josef Bacike27425d2011-09-27 11:01:30 -0400162 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200163 */
164void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
165{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400166 unsigned int flags;
167
168 if (!dir)
169 return;
170
171 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200172
Josef Bacike27425d2011-09-27 11:01:30 -0400173 if (flags & BTRFS_INODE_NOCOMPRESS) {
174 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
175 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
176 } else if (flags & BTRFS_INODE_COMPRESS) {
177 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
178 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
179 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200180
Liu Bo213490b2012-09-11 08:33:50 -0600181 if (flags & BTRFS_INODE_NODATACOW) {
Josef Bacike27425d2011-09-27 11:01:30 -0400182 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
Liu Bo213490b2012-09-11 08:33:50 -0600183 if (S_ISREG(inode->i_mode))
184 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
185 }
Josef Bacike27425d2011-09-27 11:01:30 -0400186
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200187 btrfs_update_iflags(inode);
188}
189
190static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
191{
Al Viro496ad9a2013-01-23 17:07:38 -0500192 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200193 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
194
195 if (copy_to_user(arg, &flags, sizeof(flags)))
196 return -EFAULT;
197 return 0;
198}
199
Liu Bo75e7cb72011-03-22 10:12:20 +0000200static int check_flags(unsigned int flags)
201{
202 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
203 FS_NOATIME_FL | FS_NODUMP_FL | \
204 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000205 FS_NOCOMP_FL | FS_COMPR_FL |
206 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000207 return -EOPNOTSUPP;
208
209 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
210 return -EINVAL;
211
Liu Bo75e7cb72011-03-22 10:12:20 +0000212 return 0;
213}
214
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200215static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
216{
Al Viro496ad9a2013-01-23 17:07:38 -0500217 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200218 struct btrfs_inode *ip = BTRFS_I(inode);
219 struct btrfs_root *root = ip->root;
220 struct btrfs_trans_handle *trans;
221 unsigned int flags, oldflags;
222 int ret;
Li Zefanf062abf02011-12-29 13:36:45 +0800223 u64 ip_oldflags;
224 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600225 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200226
David Sterbabd60ea02014-01-16 15:50:22 +0100227 if (!inode_owner_or_capable(inode))
228 return -EPERM;
229
Li Zefanb83cc962010-12-20 16:04:08 +0800230 if (btrfs_root_readonly(root))
231 return -EROFS;
232
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200233 if (copy_from_user(&flags, arg, sizeof(flags)))
234 return -EFAULT;
235
Liu Bo75e7cb72011-03-22 10:12:20 +0000236 ret = check_flags(flags);
237 if (ret)
238 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200239
Jan Karae7848682012-06-12 16:20:32 +0200240 ret = mnt_want_write_file(file);
241 if (ret)
242 return ret;
243
Al Viro59551022016-01-22 15:40:57 -0500244 inode_lock(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200245
Li Zefanf062abf02011-12-29 13:36:45 +0800246 ip_oldflags = ip->flags;
247 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600248 mode = inode->i_mode;
Li Zefanf062abf02011-12-29 13:36:45 +0800249
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200250 flags = btrfs_mask_flags(inode->i_mode, flags);
251 oldflags = btrfs_flags_to_ioctl(ip->flags);
252 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
253 if (!capable(CAP_LINUX_IMMUTABLE)) {
254 ret = -EPERM;
255 goto out_unlock;
256 }
257 }
258
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200259 if (flags & FS_SYNC_FL)
260 ip->flags |= BTRFS_INODE_SYNC;
261 else
262 ip->flags &= ~BTRFS_INODE_SYNC;
263 if (flags & FS_IMMUTABLE_FL)
264 ip->flags |= BTRFS_INODE_IMMUTABLE;
265 else
266 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
267 if (flags & FS_APPEND_FL)
268 ip->flags |= BTRFS_INODE_APPEND;
269 else
270 ip->flags &= ~BTRFS_INODE_APPEND;
271 if (flags & FS_NODUMP_FL)
272 ip->flags |= BTRFS_INODE_NODUMP;
273 else
274 ip->flags &= ~BTRFS_INODE_NODUMP;
275 if (flags & FS_NOATIME_FL)
276 ip->flags |= BTRFS_INODE_NOATIME;
277 else
278 ip->flags &= ~BTRFS_INODE_NOATIME;
279 if (flags & FS_DIRSYNC_FL)
280 ip->flags |= BTRFS_INODE_DIRSYNC;
281 else
282 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600283 if (flags & FS_NOCOW_FL) {
284 if (S_ISREG(mode)) {
285 /*
286 * It's safe to turn csums off here, no extents exist.
287 * Otherwise we want the flag to reflect the real COW
288 * status of the file and will not set it.
289 */
290 if (inode->i_size == 0)
291 ip->flags |= BTRFS_INODE_NODATACOW
292 | BTRFS_INODE_NODATASUM;
293 } else {
294 ip->flags |= BTRFS_INODE_NODATACOW;
295 }
296 } else {
297 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -0400298 * Revert back under same assumptions as above
David Sterba7e97b8d2012-09-07 05:56:55 -0600299 */
300 if (S_ISREG(mode)) {
301 if (inode->i_size == 0)
302 ip->flags &= ~(BTRFS_INODE_NODATACOW
303 | BTRFS_INODE_NODATASUM);
304 } else {
305 ip->flags &= ~BTRFS_INODE_NODATACOW;
306 }
307 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200308
Liu Bo75e7cb72011-03-22 10:12:20 +0000309 /*
310 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
311 * flag may be changed automatically if compression code won't make
312 * things smaller.
313 */
314 if (flags & FS_NOCOMP_FL) {
315 ip->flags &= ~BTRFS_INODE_COMPRESS;
316 ip->flags |= BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000317
318 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
319 if (ret && ret != -ENODATA)
320 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000321 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000322 const char *comp;
323
Liu Bo75e7cb72011-03-22 10:12:20 +0000324 ip->flags |= BTRFS_INODE_COMPRESS;
325 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000326
327 if (root->fs_info->compress_type == BTRFS_COMPRESS_LZO)
328 comp = "lzo";
329 else
330 comp = "zlib";
331 ret = btrfs_set_prop(inode, "btrfs.compression",
332 comp, strlen(comp), 0);
333 if (ret)
334 goto out_drop;
335
Li Zefanebcb9042011-04-15 03:03:17 +0000336 } else {
Filipe Manana78a017a2014-09-11 11:44:49 +0100337 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
338 if (ret && ret != -ENODATA)
339 goto out_drop;
Li Zefanebcb9042011-04-15 03:03:17 +0000340 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000341 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200342
Li Zefan4da6f1a2011-12-29 13:39:50 +0800343 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf02011-12-29 13:36:45 +0800344 if (IS_ERR(trans)) {
345 ret = PTR_ERR(trans);
346 goto out_drop;
347 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200348
Li Zefan306424cc2011-12-14 20:12:02 -0500349 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400350 inode_inc_iversion(inode);
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700351 inode->i_ctime = current_time(inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200352 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200353
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200354 btrfs_end_transaction(trans, root);
Li Zefanf062abf02011-12-29 13:36:45 +0800355 out_drop:
356 if (ret) {
357 ip->flags = ip_oldflags;
358 inode->i_flags = i_oldflags;
359 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200360
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200361 out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500362 inode_unlock(inode);
Jan Karae7848682012-06-12 16:20:32 +0200363 mnt_drop_write_file(file);
liubo2d4e6f6ad2011-02-24 09:38:16 +0000364 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200365}
366
367static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
368{
Al Viro496ad9a2013-01-23 17:07:38 -0500369 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200370
371 return put_user(inode->i_generation, arg);
372}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400373
Li Dongyangf7039b12011-03-24 10:24:28 +0000374static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
375{
Al Viro54563d42013-09-01 15:57:51 -0400376 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000377 struct btrfs_device *device;
378 struct request_queue *q;
379 struct fstrim_range range;
380 u64 minlen = ULLONG_MAX;
381 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500382 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000383 int ret;
384
385 if (!capable(CAP_SYS_ADMIN))
386 return -EPERM;
387
Xiao Guangrong1f781602011-04-20 10:09:16 +0000388 rcu_read_lock();
389 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
390 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000391 if (!device->bdev)
392 continue;
393 q = bdev_get_queue(device->bdev);
394 if (blk_queue_discard(q)) {
395 num_devices++;
396 minlen = min((u64)q->limits.discard_granularity,
397 minlen);
398 }
399 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000400 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200401
Li Dongyangf7039b12011-03-24 10:24:28 +0000402 if (!num_devices)
403 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000404 if (copy_from_user(&range, arg, sizeof(range)))
405 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000406 if (range.start > total_bytes ||
407 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200408 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000409
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200410 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000411 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500412 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000413 if (ret < 0)
414 return ret;
415
416 if (copy_to_user(arg, &range, sizeof(range)))
417 return -EFAULT;
418
419 return 0;
420}
421
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200422int btrfs_is_empty_uuid(u8 *uuid)
423{
Chris Mason46e0f662013-11-15 12:14:55 +0100424 int i;
425
426 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
427 if (uuid[i])
428 return 0;
429 }
430 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200431}
432
Miao Xied5c12072013-02-28 10:04:33 +0000433static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400434 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400435 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200436 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000437 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400438{
439 struct btrfs_trans_handle *trans;
440 struct btrfs_key key;
David Sterba49a3c4d2016-03-24 17:49:22 +0100441 struct btrfs_root_item *root_item;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400442 struct btrfs_inode_item *inode_item;
443 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000444 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400445 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000446 struct btrfs_block_rsv block_rsv;
Deepa Dinamanic2050a42016-09-14 07:48:06 -0700447 struct timespec cur_time = current_time(dir);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900448 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400449 int ret;
450 int err;
451 u64 objectid;
452 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500453 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000454 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200455 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400456
David Sterba49a3c4d2016-03-24 17:49:22 +0100457 root_item = kzalloc(sizeof(*root_item), GFP_KERNEL);
458 if (!root_item)
459 return -ENOMEM;
460
Li Zefan581bb052011-04-20 10:06:11 +0800461 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400462 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100463 goto fail_free;
Josef Bacik6a912212010-11-20 09:48:00 +0000464
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800465 /*
466 * Don't create subvolume whose level is not zero. Or qgroup will be
Nicholas D Steeves01327612016-05-19 21:18:45 -0400467 * screwed up since it assumes subvolume qgroup's level to be 0.
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800468 */
David Sterba49a3c4d2016-03-24 17:49:22 +0100469 if (btrfs_qgroup_level(objectid)) {
470 ret = -ENOSPC;
471 goto fail_free;
472 }
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800473
Miao Xied5c12072013-02-28 10:04:33 +0000474 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400475 /*
Miao Xied5c12072013-02-28 10:04:33 +0000476 * The same as the snapshot creation, please see the comment
477 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400478 */
Miao Xied5c12072013-02-28 10:04:33 +0000479 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200480 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000481 if (ret)
David Sterba49a3c4d2016-03-24 17:49:22 +0100482 goto fail_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400483
Miao Xied5c12072013-02-28 10:04:33 +0000484 trans = btrfs_start_transaction(root, 0);
485 if (IS_ERR(trans)) {
486 ret = PTR_ERR(trans);
Liu Bode6e8202014-01-09 14:57:06 +0800487 btrfs_subvolume_release_metadata(root, &block_rsv,
488 qgroup_reserved);
David Sterba49a3c4d2016-03-24 17:49:22 +0100489 goto fail_free;
Miao Xied5c12072013-02-28 10:04:33 +0000490 }
491 trans->block_rsv = &block_rsv;
492 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400493
Miao Xie8696c532013-02-07 06:02:44 +0000494 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200495 if (ret)
496 goto fail;
497
David Sterba4d75f8a2014-06-15 01:54:12 +0200498 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400499 if (IS_ERR(leaf)) {
500 ret = PTR_ERR(leaf);
501 goto fail;
502 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400503
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400504 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400505 btrfs_set_header_bytenr(leaf, leaf->start);
506 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400507 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400508 btrfs_set_header_owner(leaf, objectid);
509
Ross Kirk0a4e5582013-09-24 10:12:38 +0100510 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400511 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400512 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +0200513 btrfs_header_chunk_tree_uuid(leaf),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400514 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400515 btrfs_mark_buffer_dirty(leaf);
516
David Sterba49a3c4d2016-03-24 17:49:22 +0100517 inode_item = &root_item->inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800518 btrfs_set_stack_inode_generation(inode_item, 1);
519 btrfs_set_stack_inode_size(inode_item, 3);
520 btrfs_set_stack_inode_nlink(inode_item, 1);
David Sterba707e8a02014-06-04 19:22:26 +0200521 btrfs_set_stack_inode_nbytes(inode_item, root->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800522 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400523
David Sterba49a3c4d2016-03-24 17:49:22 +0100524 btrfs_set_root_flags(root_item, 0);
525 btrfs_set_root_limit(root_item, 0);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800526 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000527
David Sterba49a3c4d2016-03-24 17:49:22 +0100528 btrfs_set_root_bytenr(root_item, leaf->start);
529 btrfs_set_root_generation(root_item, trans->transid);
530 btrfs_set_root_level(root_item, 0);
531 btrfs_set_root_refs(root_item, 1);
532 btrfs_set_root_used(root_item, leaf->len);
533 btrfs_set_root_last_snapshot(root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400534
David Sterba49a3c4d2016-03-24 17:49:22 +0100535 btrfs_set_root_generation_v2(root_item,
536 btrfs_root_generation(root_item));
Alexander Block8ea05e32012-07-25 17:35:53 +0200537 uuid_le_gen(&new_uuid);
David Sterba49a3c4d2016-03-24 17:49:22 +0100538 memcpy(root_item->uuid, new_uuid.b, BTRFS_UUID_SIZE);
539 btrfs_set_stack_timespec_sec(&root_item->otime, cur_time.tv_sec);
540 btrfs_set_stack_timespec_nsec(&root_item->otime, cur_time.tv_nsec);
541 root_item->ctime = root_item->otime;
542 btrfs_set_root_ctransid(root_item, trans->transid);
543 btrfs_set_root_otransid(root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400544
Chris Mason925baed2008-06-25 16:01:30 -0400545 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400546 free_extent_buffer(leaf);
547 leaf = NULL;
548
David Sterba49a3c4d2016-03-24 17:49:22 +0100549 btrfs_set_root_dirid(root_item, new_dirid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400550
551 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400552 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200553 key.type = BTRFS_ROOT_ITEM_KEY;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400554 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
David Sterba49a3c4d2016-03-24 17:49:22 +0100555 root_item);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400556 if (ret)
557 goto fail;
558
Yan, Zheng76dda932009-09-21 16:00:26 -0400559 key.offset = (u64)-1;
560 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100561 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100562 ret = PTR_ERR(new_root);
Jeff Mahoney66642832016-06-10 18:19:25 -0400563 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100564 goto fail;
565 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400566
567 btrfs_record_root_in_trans(trans, new_root);
568
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000569 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700570 if (ret) {
571 /* We potentially lose an unused inode item here */
Jeff Mahoney66642832016-06-10 18:19:25 -0400572 btrfs_abort_transaction(trans, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700573 goto fail;
574 }
575
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530576 mutex_lock(&new_root->objectid_mutex);
577 new_root->highest_objectid = new_dirid;
578 mutex_unlock(&new_root->objectid_mutex);
579
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400580 /*
581 * insert the directory item
582 */
Chris Mason3de45862008-11-17 21:02:50 -0500583 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100584 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400585 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100586 goto fail;
587 }
Chris Mason3de45862008-11-17 21:02:50 -0500588
589 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800590 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500591 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100592 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400593 btrfs_abort_transaction(trans, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400594 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100595 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500596
Yan Zheng52c26172009-01-05 15:43:43 -0500597 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
598 ret = btrfs_update_inode(trans, root, dir);
599 BUG_ON(ret);
600
Chris Mason0660b5a2008-11-17 20:37:39 -0500601 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400602 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800603 btrfs_ino(dir), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500604 BUG_ON(ret);
605
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200606 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
David Sterba49a3c4d2016-03-24 17:49:22 +0100607 root_item->uuid, BTRFS_UUID_KEY_SUBVOL,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200608 objectid);
609 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400610 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200611
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400612fail:
David Sterba49a3c4d2016-03-24 17:49:22 +0100613 kfree(root_item);
Miao Xied5c12072013-02-28 10:04:33 +0000614 trans->block_rsv = NULL;
615 trans->bytes_reserved = 0;
Liu Bode6e8202014-01-09 14:57:06 +0800616 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
617
Sage Weil72fd0322010-10-29 15:41:32 -0400618 if (async_transid) {
619 *async_transid = trans->transid;
620 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000621 if (err)
622 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400623 } else {
624 err = btrfs_commit_transaction(trans, root);
625 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400626 if (err && !ret)
627 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500628
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900629 if (!ret) {
630 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800631 if (IS_ERR(inode))
632 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900633 d_instantiate(dentry, inode);
634 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400635 return ret;
David Sterba49a3c4d2016-03-24 17:49:22 +0100636
637fail_free:
638 kfree(root_item);
639 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400640}
641
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000642static void btrfs_wait_for_no_snapshoting_writes(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +0800643{
644 s64 writers;
645 DEFINE_WAIT(wait);
646
647 do {
648 prepare_to_wait(&root->subv_writers->wait, &wait,
649 TASK_UNINTERRUPTIBLE);
650
651 writers = percpu_counter_sum(&root->subv_writers->counter);
652 if (writers)
653 schedule();
654
655 finish_wait(&root->subv_writers->wait, &wait);
656 } while (writers);
657}
658
Miao Xiee9662f72013-02-28 10:01:15 +0000659static int create_snapshot(struct btrfs_root *root, struct inode *dir,
660 struct dentry *dentry, char *name, int namelen,
661 u64 *async_transid, bool readonly,
662 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400663{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000664 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400665 struct btrfs_pending_snapshot *pending_snapshot;
666 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000667 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400668
Miao Xie27cdeb72014-04-02 19:51:05 +0800669 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400670 return -EINVAL;
671
David Sterbaa1ee7362015-11-10 18:53:56 +0100672 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
673 if (!pending_snapshot)
674 return -ENOMEM;
675
David Sterbab0c0ea62015-11-10 18:54:00 +0100676 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
677 GFP_NOFS);
David Sterba8546b572015-11-10 18:54:03 +0100678 pending_snapshot->path = btrfs_alloc_path();
679 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100680 ret = -ENOMEM;
681 goto free_pending;
682 }
683
Miao Xie8257b2d2014-03-06 13:38:19 +0800684 atomic_inc(&root->will_be_snapshoted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100685 smp_mb__after_atomic();
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000686 btrfs_wait_for_no_snapshoting_writes(root);
Miao Xie8257b2d2014-03-06 13:38:19 +0800687
Miao Xie6a038432013-05-15 07:48:24 +0000688 ret = btrfs_start_delalloc_inodes(root, 0);
689 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100690 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000691
Filipe Manana578def72016-04-26 15:36:38 +0100692 btrfs_wait_ordered_extents(root, -1, 0, (u64)-1);
Miao Xie6a038432013-05-15 07:48:24 +0000693
Miao Xie66d8f3d2012-09-06 04:02:28 -0600694 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
695 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000696 /*
697 * 1 - parent dir inode
698 * 2 - dir entries
699 * 1 - root item
700 * 2 - root ref/backref
701 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200702 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000703 */
704 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200705 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400706 &pending_snapshot->qgroup_reserved,
707 false);
Miao Xied5c12072013-02-28 10:04:33 +0000708 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100709 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000710
Yan, Zhenga22285a2010-05-16 10:48:46 -0400711 pending_snapshot->dentry = dentry;
712 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800713 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000714 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000715 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400716
Miao Xied5c12072013-02-28 10:04:33 +0000717 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400718 if (IS_ERR(trans)) {
719 ret = PTR_ERR(trans);
720 goto fail;
721 }
722
Josef Bacik83515832011-06-14 15:16:14 -0400723 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400724 list_add(&pending_snapshot->list,
725 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400726 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400727 if (async_transid) {
728 *async_transid = trans->transid;
729 ret = btrfs_commit_transaction_async(trans,
730 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000731 if (ret)
732 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400733 } else {
734 ret = btrfs_commit_transaction(trans,
735 root->fs_info->extent_root);
736 }
Miao Xieaec80302013-03-04 09:44:29 +0000737 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400738 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400739
740 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400741 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000742 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400743
Chris Masond3797302014-10-15 13:50:56 -0700744 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
745 if (ret)
746 goto fail;
747
David Howells2b0143b2015-03-17 22:25:59 +0000748 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000749 if (IS_ERR(inode)) {
750 ret = PTR_ERR(inode);
751 goto fail;
752 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900753
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000754 d_instantiate(dentry, inode);
755 ret = 0;
756fail:
Miao Xied5c12072013-02-28 10:04:33 +0000757 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
758 &pending_snapshot->block_rsv,
759 pending_snapshot->qgroup_reserved);
David Sterbaa1ee7362015-11-10 18:53:56 +0100760dec_and_free:
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000761 if (atomic_dec_and_test(&root->will_be_snapshoted))
762 wake_up_atomic_t(&root->will_be_snapshoted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100763free_pending:
764 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100765 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100766 kfree(pending_snapshot);
767
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400768 return ret;
769}
770
Sage Weil4260f7c2010-10-29 15:46:43 -0400771/* copy of may_delete in fs/namei.c()
772 * Check whether we can remove a link victim from directory dir, check
773 * whether the type of victim is right.
774 * 1. We can't do it if dir is read-only (done in permission())
775 * 2. We should have write and exec permissions on dir
776 * 3. We can't remove anything from append-only dir
777 * 4. We can't do anything with immutable dir (done in permission())
778 * 5. If the sticky bit on dir is set we should either
779 * a. be owner of dir, or
780 * b. be owner of victim, or
781 * c. have CAP_FOWNER capability
Nicholas D Steeves01327612016-05-19 21:18:45 -0400782 * 6. If the victim is append-only or immutable we can't do anything with
Sage Weil4260f7c2010-10-29 15:46:43 -0400783 * links pointing to it.
784 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
785 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
786 * 9. We can't remove a root or mountpoint.
787 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
788 * nfs_async_unlink().
789 */
790
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530791static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400792{
793 int error;
794
David Howells2b0143b2015-03-17 22:25:59 +0000795 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400796 return -ENOENT;
797
David Howells2b0143b2015-03-17 22:25:59 +0000798 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400799 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400800
801 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
802 if (error)
803 return error;
804 if (IS_APPEND(dir))
805 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000806 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
807 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400808 return -EPERM;
809 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000810 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400811 return -ENOTDIR;
812 if (IS_ROOT(victim))
813 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000814 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400815 return -EISDIR;
816 if (IS_DEADDIR(dir))
817 return -ENOENT;
818 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
819 return -EBUSY;
820 return 0;
821}
822
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400823/* copy of may_create in fs/namei.c() */
824static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
825{
David Howells2b0143b2015-03-17 22:25:59 +0000826 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400827 return -EEXIST;
828 if (IS_DEADDIR(dir))
829 return -ENOENT;
830 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
831}
832
833/*
834 * Create a new subvolume below @parent. This is largely modeled after
835 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
836 * inside this filesystem so it's quite a bit simpler.
837 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400838static noinline int btrfs_mksubvol(struct path *parent,
839 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400840 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200841 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000842 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400843{
David Howells2b0143b2015-03-17 22:25:59 +0000844 struct inode *dir = d_inode(parent->dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400845 struct dentry *dentry;
846 int error;
847
Al Viro00235412016-05-26 00:05:12 -0400848 error = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
849 if (error == -EINTR)
850 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400851
852 dentry = lookup_one_len(name, parent->dentry, namelen);
853 error = PTR_ERR(dentry);
854 if (IS_ERR(dentry))
855 goto out_unlock;
856
Yan, Zheng76dda932009-09-21 16:00:26 -0400857 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400858 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600859 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400860
Chris Mason9c520572012-12-17 14:26:57 -0500861 /*
862 * even if this name doesn't exist, we may get hash collisions.
863 * check for them now when we can safely fail
864 */
865 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
866 dir->i_ino, name,
867 namelen);
868 if (error)
869 goto out_dput;
870
Yan, Zheng76dda932009-09-21 16:00:26 -0400871 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
872
873 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
874 goto out_up_read;
875
Chris Mason3de45862008-11-17 21:02:50 -0500876 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000877 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200878 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500879 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000880 error = create_subvol(dir, dentry, name, namelen,
881 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500882 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400883 if (!error)
884 fsnotify_mkdir(dir, dentry);
885out_up_read:
886 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400887out_dput:
888 dput(dentry);
889out_unlock:
Al Viro59551022016-01-22 15:40:57 -0500890 inode_unlock(dir);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400891 return error;
892}
893
Chris Mason4cb53002011-05-24 15:35:30 -0400894/*
895 * When we're defragging a range, we don't want to kick it off again
896 * if it is really just waiting for delalloc to send it down.
897 * If we find a nice big extent or delalloc range for the bytes in the
898 * file you want to defrag, we return 0 to let you know to skip this
899 * part of the file
900 */
David Sterbaaab110a2014-07-29 17:32:10 +0200901static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400902{
903 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
904 struct extent_map *em = NULL;
905 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
906 u64 end;
907
908 read_lock(&em_tree->lock);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300909 em = lookup_extent_mapping(em_tree, offset, PAGE_SIZE);
Chris Mason4cb53002011-05-24 15:35:30 -0400910 read_unlock(&em_tree->lock);
911
912 if (em) {
913 end = extent_map_end(em);
914 free_extent_map(em);
915 if (end - offset > thresh)
916 return 0;
917 }
918 /* if we already have a nice delalloc here, just stop */
919 thresh /= 2;
920 end = count_range_bits(io_tree, &offset, offset + thresh,
921 thresh, EXTENT_DELALLOC, 1);
922 if (end >= thresh)
923 return 0;
924 return 1;
925}
926
927/*
928 * helper function to walk through a file and find extents
929 * newer than a specific transid, and smaller than thresh.
930 *
931 * This is used by the defragging code to find new and small
932 * extents
933 */
934static int find_new_extents(struct btrfs_root *root,
935 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200936 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400937{
938 struct btrfs_path *path;
939 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400940 struct extent_buffer *leaf;
941 struct btrfs_file_extent_item *extent;
942 int type;
943 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000944 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400945
946 path = btrfs_alloc_path();
947 if (!path)
948 return -ENOMEM;
949
David Sterbaa4689d22011-05-31 17:08:14 +0000950 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400951 min_key.type = BTRFS_EXTENT_DATA_KEY;
952 min_key.offset = *off;
953
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530954 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100955 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400956 if (ret != 0)
957 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000958process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000959 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400960 goto none;
961 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
962 goto none;
963
964 leaf = path->nodes[0];
965 extent = btrfs_item_ptr(leaf, path->slots[0],
966 struct btrfs_file_extent_item);
967
968 type = btrfs_file_extent_type(leaf, extent);
969 if (type == BTRFS_FILE_EXTENT_REG &&
970 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
971 check_defrag_in_cache(inode, min_key.offset, thresh)) {
972 *off = min_key.offset;
973 btrfs_free_path(path);
974 return 0;
975 }
976
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000977 path->slots[0]++;
978 if (path->slots[0] < btrfs_header_nritems(leaf)) {
979 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
980 goto process_slot;
981 }
982
Chris Mason4cb53002011-05-24 15:35:30 -0400983 if (min_key.offset == (u64)-1)
984 goto none;
985
986 min_key.offset++;
987 btrfs_release_path(path);
988 }
989none:
990 btrfs_free_path(path);
991 return -ENOENT;
992}
993
Li Zefan6c282eb2012-06-11 16:03:35 +0800994static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400995{
996 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500997 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800998 struct extent_map *em;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300999 u64 len = PAGE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -05001000
1001 /*
1002 * hopefully we have this extent in the tree already, try without
1003 * the full extent lock
1004 */
1005 read_lock(&em_tree->lock);
1006 em = lookup_extent_mapping(em_tree, start, len);
1007 read_unlock(&em_tree->lock);
1008
1009 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +00001010 struct extent_state *cached = NULL;
1011 u64 end = start + len - 1;
1012
Chris Mason940100a2010-03-10 10:52:59 -05001013 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +01001014 lock_extent_bits(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -05001015 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +00001016 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -05001017
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +00001018 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001019 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001020 }
1021
Li Zefan6c282eb2012-06-11 16:03:35 +08001022 return em;
1023}
1024
1025static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1026{
1027 struct extent_map *next;
1028 bool ret = true;
1029
1030 /* this is the last extent */
1031 if (em->start + em->len >= i_size_read(inode))
1032 return false;
1033
1034 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001035 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1036 ret = false;
1037 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001038 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001039 ret = false;
1040
1041 free_extent_map(next);
1042 return ret;
1043}
1044
David Sterbaaab110a2014-07-29 17:32:10 +02001045static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001046 u64 *last_len, u64 *skip, u64 *defrag_end,
1047 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001048{
1049 struct extent_map *em;
1050 int ret = 1;
1051 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001052 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001053
1054 /*
1055 * make sure that once we start defragging an extent, we keep on
1056 * defragging it
1057 */
1058 if (start < *defrag_end)
1059 return 1;
1060
1061 *skip = 0;
1062
1063 em = defrag_lookup_extent(inode, start);
1064 if (!em)
1065 return 0;
1066
Chris Mason940100a2010-03-10 10:52:59 -05001067 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001068 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001069 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001070 goto out;
1071 }
1072
Liu Bo4a3560c2015-08-07 16:48:41 +08001073 if (!*defrag_end)
1074 prev_mergeable = false;
1075
Li Zefan6c282eb2012-06-11 16:03:35 +08001076 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001077 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001078 * we hit a real extent, if it is big or the next extent is not a
1079 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001080 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001081 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001082 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001083 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001084out:
Chris Mason940100a2010-03-10 10:52:59 -05001085 /*
1086 * last_len ends up being a counter of how many bytes we've defragged.
1087 * every time we choose not to defrag an extent, we reset *last_len
1088 * so that the next tiny extent will force a defrag.
1089 *
1090 * The end result of this is that tiny extents before a single big
1091 * extent will force at least part of that big extent to be defragged.
1092 */
1093 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001094 *defrag_end = extent_map_end(em);
1095 } else {
1096 *last_len = 0;
1097 *skip = extent_map_end(em);
1098 *defrag_end = 0;
1099 }
1100
1101 free_extent_map(em);
1102 return ret;
1103}
1104
Chris Mason4cb53002011-05-24 15:35:30 -04001105/*
1106 * it doesn't do much good to defrag one or two pages
1107 * at a time. This pulls in a nice chunk of pages
1108 * to COW and defrag.
1109 *
1110 * It also makes sure the delalloc code has enough
1111 * dirty data to avoid making new small extents as part
1112 * of the defrag
1113 *
1114 * It's a good idea to start RA on this range
1115 * before calling this.
1116 */
1117static int cluster_pages_for_defrag(struct inode *inode,
1118 struct page **pages,
1119 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001120 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001121{
Chris Mason4cb53002011-05-24 15:35:30 -04001122 unsigned long file_end;
1123 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001124 u64 page_start;
1125 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001126 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001127 int ret;
1128 int i;
1129 int i_done;
1130 struct btrfs_ordered_extent *ordered;
1131 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001132 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001133 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001134
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001135 file_end = (isize - 1) >> PAGE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001136 if (!isize || start_index > file_end)
1137 return 0;
1138
1139 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001140
1141 ret = btrfs_delalloc_reserve_space(inode,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001142 start_index << PAGE_SHIFT,
1143 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001144 if (ret)
1145 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001146 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001147 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001148
1149 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001150 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001151 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001152again:
Josef Bacika94733d2011-07-11 10:47:06 -04001153 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001154 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001155 if (!page)
1156 break;
1157
Miao Xie600a45e2012-02-16 15:01:24 +08001158 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001159 page_end = page_start + PAGE_SIZE - 1;
Miao Xie600a45e2012-02-16 15:01:24 +08001160 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001161 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001162 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001163 ordered = btrfs_lookup_ordered_extent(inode,
1164 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001165 unlock_extent_cached(tree, page_start, page_end,
1166 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001167 if (!ordered)
1168 break;
1169
1170 unlock_page(page);
1171 btrfs_start_ordered_extent(inode, ordered, 1);
1172 btrfs_put_ordered_extent(ordered);
1173 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001174 /*
1175 * we unlocked the page above, so we need check if
1176 * it was released or not.
1177 */
1178 if (page->mapping != inode->i_mapping) {
1179 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001180 put_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001181 goto again;
1182 }
Miao Xie600a45e2012-02-16 15:01:24 +08001183 }
1184
Chris Mason4cb53002011-05-24 15:35:30 -04001185 if (!PageUptodate(page)) {
1186 btrfs_readpage(NULL, page);
1187 lock_page(page);
1188 if (!PageUptodate(page)) {
1189 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001190 put_page(page);
Chris Mason4cb53002011-05-24 15:35:30 -04001191 ret = -EIO;
1192 break;
1193 }
1194 }
Miao Xie600a45e2012-02-16 15:01:24 +08001195
Miao Xie600a45e2012-02-16 15:01:24 +08001196 if (page->mapping != inode->i_mapping) {
1197 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001198 put_page(page);
Miao Xie600a45e2012-02-16 15:01:24 +08001199 goto again;
1200 }
1201
Chris Mason4cb53002011-05-24 15:35:30 -04001202 pages[i] = page;
1203 i_done++;
1204 }
1205 if (!i_done || ret)
1206 goto out;
1207
1208 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1209 goto out;
1210
1211 /*
1212 * so now we have a nice long stream of locked
1213 * and up to date pages, lets wait on them
1214 */
1215 for (i = 0; i < i_done; i++)
1216 wait_on_page_writeback(pages[i]);
1217
1218 page_start = page_offset(pages[0]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001219 page_end = page_offset(pages[i_done - 1]) + PAGE_SIZE;
Chris Mason4cb53002011-05-24 15:35:30 -04001220
1221 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001222 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001223 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1224 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001225 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1226 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001227
Liu Bo1f12bd02012-03-29 09:57:44 -04001228 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001229 spin_lock(&BTRFS_I(inode)->lock);
1230 BTRFS_I(inode)->outstanding_extents++;
1231 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001232 btrfs_delalloc_release_space(inode,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001233 start_index << PAGE_SHIFT,
1234 (page_cnt - i_done) << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001235 }
1236
1237
Liu Bo9e8a4a82012-09-05 19:10:51 -06001238 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
David Sterba018ed4f2016-04-26 23:54:39 +02001239 &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001240
1241 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1242 page_start, page_end - 1, &cached_state,
1243 GFP_NOFS);
1244
1245 for (i = 0; i < i_done; i++) {
1246 clear_page_dirty_for_io(pages[i]);
1247 ClearPageChecked(pages[i]);
1248 set_page_extent_mapped(pages[i]);
1249 set_page_dirty(pages[i]);
1250 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001251 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001252 }
1253 return i_done;
1254out:
1255 for (i = 0; i < i_done; i++) {
1256 unlock_page(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001257 put_page(pages[i]);
Chris Mason4cb53002011-05-24 15:35:30 -04001258 }
Qu Wenruo7cf5b972015-09-08 17:25:55 +08001259 btrfs_delalloc_release_space(inode,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001260 start_index << PAGE_SHIFT,
1261 page_cnt << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001262 return ret;
1263
1264}
1265
1266int btrfs_defrag_file(struct inode *inode, struct file *file,
1267 struct btrfs_ioctl_defrag_range_args *range,
1268 u64 newer_than, unsigned long max_to_defrag)
1269{
1270 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001271 struct file_ra_state *ra = NULL;
1272 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001273 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001274 u64 last_len = 0;
1275 u64 skip = 0;
1276 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001277 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001278 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001279 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001280 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001281 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001282 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001283 u32 extent_thresh = range->extent_thresh;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001284 unsigned long max_cluster = SZ_256K >> PAGE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001285 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001286 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001287 struct page **pages = NULL;
1288
Liu Bo0abd5b12013-04-16 09:20:28 +00001289 if (isize == 0)
1290 return 0;
1291
1292 if (range->start >= isize)
1293 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001294
1295 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1296 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1297 return -EINVAL;
1298 if (range->compress_type)
1299 compress_type = range->compress_type;
1300 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001301
Liu Bo0abd5b12013-04-16 09:20:28 +00001302 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001303 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001304
Chris Mason4cb53002011-05-24 15:35:30 -04001305 /*
1306 * if we were not given a file, allocate a readahead
1307 * context
1308 */
1309 if (!file) {
1310 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1311 if (!ra)
1312 return -ENOMEM;
1313 file_ra_state_init(ra, inode->i_mapping);
1314 } else {
1315 ra = &file->f_ra;
1316 }
1317
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301318 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001319 GFP_NOFS);
1320 if (!pages) {
1321 ret = -ENOMEM;
1322 goto out_ra;
1323 }
1324
1325 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001326 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001327 last_index = min_t(u64, isize - 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001328 range->start + range->len - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001329 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001330 last_index = (isize - 1) >> PAGE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001331 }
1332
Chris Mason4cb53002011-05-24 15:35:30 -04001333 if (newer_than) {
1334 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001335 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001336 if (!ret) {
1337 range->start = newer_off;
1338 /*
1339 * we always align our defrag to help keep
1340 * the extents in the file evenly spaced
1341 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001342 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001343 } else
1344 goto out_ra;
1345 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001346 i = range->start >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001347 }
1348 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301349 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001350
Li Zefan2a0f7f52011-10-10 15:43:34 -04001351 /*
1352 * make writeback starts from i, so the defrag range can be
1353 * written sequentially.
1354 */
1355 if (i < inode->i_mapping->writeback_index)
1356 inode->i_mapping->writeback_index = i;
1357
Chris Masonf7f43cc2011-10-11 11:41:40 -04001358 while (i <= last_index && defrag_count < max_to_defrag &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001359 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001360 /*
1361 * make sure we stop running if someone unmounts
1362 * the FS
1363 */
1364 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1365 break;
1366
David Sterba210549e2013-02-09 23:38:06 +00001367 if (btrfs_defrag_cancelled(root->fs_info)) {
David Sterbaf14d1042015-10-08 11:37:06 +02001368 btrfs_debug(root->fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001369 ret = -EAGAIN;
1370 break;
1371 }
1372
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001373 if (!should_defrag_range(inode, (u64)i << PAGE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001374 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001375 &defrag_end, range->flags &
1376 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001377 unsigned long next;
1378 /*
1379 * the should_defrag function tells us how much to skip
1380 * bump our counter by the suggested amount
1381 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001382 next = DIV_ROUND_UP(skip, PAGE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001383 i = max(i + 1, next);
1384 continue;
1385 }
Li Zefan008873e2011-09-02 15:57:07 +08001386
1387 if (!newer_than) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001388 cluster = (PAGE_ALIGN(defrag_end) >>
1389 PAGE_SHIFT) - i;
Li Zefan008873e2011-09-02 15:57:07 +08001390 cluster = min(cluster, max_cluster);
1391 } else {
1392 cluster = max_cluster;
1393 }
1394
Li Zefan008873e2011-09-02 15:57:07 +08001395 if (i + cluster > ra_index) {
1396 ra_index = max(i, ra_index);
1397 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1398 cluster);
chandane4826a52015-06-09 17:38:32 +05301399 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001400 }
Chris Mason940100a2010-03-10 10:52:59 -05001401
Al Viro59551022016-01-22 15:40:57 -05001402 inode_lock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001403 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1404 BTRFS_I(inode)->force_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001405 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001406 if (ret < 0) {
Al Viro59551022016-01-22 15:40:57 -05001407 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001408 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001409 }
Chris Mason940100a2010-03-10 10:52:59 -05001410
Chris Mason4cb53002011-05-24 15:35:30 -04001411 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001412 balance_dirty_pages_ratelimited(inode->i_mapping);
Al Viro59551022016-01-22 15:40:57 -05001413 inode_unlock(inode);
Chris Mason4cb53002011-05-24 15:35:30 -04001414
1415 if (newer_than) {
1416 if (newer_off == (u64)-1)
1417 break;
1418
Liu Boe1f041e2012-03-29 09:57:45 -04001419 if (ret > 0)
1420 i += ret;
1421
Chris Mason4cb53002011-05-24 15:35:30 -04001422 newer_off = max(newer_off + 1,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001423 (u64)i << PAGE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001424
Byongho Leeee221842015-12-15 01:42:10 +09001425 ret = find_new_extents(root, inode, newer_than,
1426 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001427 if (!ret) {
1428 range->start = newer_off;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001429 i = (newer_off & new_align) >> PAGE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001430 } else {
1431 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001432 }
Chris Mason4cb53002011-05-24 15:35:30 -04001433 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001434 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001435 i += ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001436 last_len += ret << PAGE_SHIFT;
Li Zefan008873e2011-09-02 15:57:07 +08001437 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001438 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001439 last_len = 0;
1440 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001441 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001442 }
1443
Filipe Mananadec8ef92014-03-01 10:55:54 +00001444 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001445 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001446 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1447 &BTRFS_I(inode)->runtime_flags))
1448 filemap_flush(inode->i_mapping);
1449 }
Chris Mason1e701a32010-03-11 09:42:04 -05001450
1451 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1452 /* the filemap_flush will queue IO into the worker threads, but
1453 * we have to make sure the IO is actually started and that
1454 * ordered extents get created before we return
1455 */
1456 atomic_inc(&root->fs_info->async_submit_draining);
1457 while (atomic_read(&root->fs_info->nr_async_submits) ||
1458 atomic_read(&root->fs_info->async_delalloc_pages)) {
1459 wait_event(root->fs_info->async_submit_wait,
1460 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1461 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1462 }
1463 atomic_dec(&root->fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001464 }
1465
Li Zefan1a419d82010-10-25 15:12:50 +08001466 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001467 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001468 }
1469
Diego Calleja60ccf822011-09-01 16:33:57 +02001470 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001471
Chris Mason4cb53002011-05-24 15:35:30 -04001472out_ra:
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001473 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
Al Viro59551022016-01-22 15:40:57 -05001474 inode_lock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001475 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
Al Viro59551022016-01-22 15:40:57 -05001476 inode_unlock(inode);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001477 }
Chris Mason4cb53002011-05-24 15:35:30 -04001478 if (!file)
1479 kfree(ra);
1480 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001481 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001482}
1483
Miao Xie198605a2012-11-26 08:43:45 +00001484static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001485 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001486{
1487 u64 new_size;
1488 u64 old_size;
1489 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001490 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001491 struct btrfs_ioctl_vol_args *vol_args;
1492 struct btrfs_trans_handle *trans;
1493 struct btrfs_device *device = NULL;
1494 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001495 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001496 char *devstr = NULL;
1497 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001498 int mod = 0;
1499
Chris Masone441d542009-01-05 16:57:23 -05001500 if (!capable(CAP_SYS_ADMIN))
1501 return -EPERM;
1502
Miao Xie198605a2012-11-26 08:43:45 +00001503 ret = mnt_want_write_file(file);
1504 if (ret)
1505 return ret;
1506
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001507 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1508 1)) {
Miao Xie97547672012-12-21 10:38:50 +00001509 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001510 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001511 }
1512
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001513 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001514 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001515 if (IS_ERR(vol_args)) {
1516 ret = PTR_ERR(vol_args);
1517 goto out;
1518 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001519
1520 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001521
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001522 sizestr = vol_args->name;
1523 devstr = strchr(sizestr, ':');
1524 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001525 sizestr = devstr + 1;
1526 *devstr = '\0';
1527 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001528 ret = kstrtoull(devstr, 10, &devid);
1529 if (ret)
1530 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001531 if (!devid) {
1532 ret = -EINVAL;
1533 goto out_free;
1534 }
Frank Holtonefe120a2013-12-20 11:37:06 -05001535 btrfs_info(root->fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001536 }
Miao Xiedba60f32012-12-21 09:19:51 +00001537
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001538 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001539 if (!device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001540 btrfs_info(root->fs_info, "resizer unable to find device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001541 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001542 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001543 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001544 }
Miao Xiedba60f32012-12-21 09:19:51 +00001545
1546 if (!device->writeable) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001547 btrfs_info(root->fs_info,
1548 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001549 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001550 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001551 goto out_free;
1552 }
1553
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001554 if (!strcmp(sizestr, "max"))
1555 new_size = device->bdev->bd_inode->i_size;
1556 else {
1557 if (sizestr[0] == '-') {
1558 mod = -1;
1559 sizestr++;
1560 } else if (sizestr[0] == '+') {
1561 mod = 1;
1562 sizestr++;
1563 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001564 new_size = memparse(sizestr, &retptr);
1565 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001566 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001567 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001568 }
1569 }
1570
Stefan Behrens63a212a2012-11-05 18:29:28 +01001571 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001572 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001573 goto out_free;
1574 }
1575
Miao Xie7cc8e582014-09-03 21:35:38 +08001576 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001577
1578 if (mod < 0) {
1579 if (new_size > old_size) {
1580 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001581 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001582 }
1583 new_size = old_size - new_size;
1584 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001585 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001586 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001587 goto out_free;
1588 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001589 new_size = old_size + new_size;
1590 }
1591
Byongho Leeee221842015-12-15 01:42:10 +09001592 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001593 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001594 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001595 }
1596 if (new_size > device->bdev->bd_inode->i_size) {
1597 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001598 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001599 }
1600
David Sterbab8b93ad2015-01-16 17:26:13 +01001601 new_size = div_u64(new_size, root->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001602 new_size *= root->sectorsize;
1603
David Sterbaecaeb142015-10-08 09:01:03 +02001604 btrfs_info_in_rcu(root->fs_info, "new size for %s is %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001605 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001606
1607 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001608 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001609 if (IS_ERR(trans)) {
1610 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001611 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001612 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001613 ret = btrfs_grow_device(trans, device, new_size);
1614 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001615 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001616 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001617 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001618
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001619out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001620 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001621out:
1622 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001623 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001624 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001625 return ret;
1626}
1627
Sage Weil72fd0322010-10-29 15:41:32 -04001628static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001629 char *name, unsigned long fd, int subvol,
1630 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001631 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001632{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001633 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001634 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001635
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001636 if (!S_ISDIR(file_inode(file)->i_mode))
1637 return -ENOTDIR;
1638
Liu Boa874a632012-06-29 03:58:46 -06001639 ret = mnt_want_write_file(file);
1640 if (ret)
1641 goto out;
1642
Sage Weil72fd0322010-10-29 15:41:32 -04001643 namelen = strlen(name);
1644 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001645 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001646 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001647 }
1648
Chris Mason16780ca2012-02-20 22:14:55 -05001649 if (name[0] == '.' &&
1650 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1651 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001652 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001653 }
1654
Chris Mason3de45862008-11-17 21:02:50 -05001655 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001656 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001657 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001658 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001659 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001660 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001661 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001662 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001663 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001664 }
1665
Al Viro496ad9a2013-01-23 17:07:38 -05001666 src_inode = file_inode(src.file);
1667 if (src_inode->i_sb != file_inode(file)->i_sb) {
Josef Bacikc79b4712016-03-25 10:02:41 -04001668 btrfs_info(BTRFS_I(file_inode(file))->root->fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05001669 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001670 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001671 } else if (!inode_owner_or_capable(src_inode)) {
1672 /*
1673 * Subvolume creation is not restricted, but snapshots
1674 * are limited to own subvolumes only
1675 */
1676 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001677 } else {
1678 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1679 BTRFS_I(src_inode)->root,
1680 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001681 }
Al Viro2903ff02012-08-28 12:52:22 -04001682 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001683 }
Liu Boa874a632012-06-29 03:58:46 -06001684out_drop_write:
1685 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001686out:
Sage Weil72fd0322010-10-29 15:41:32 -04001687 return ret;
1688}
1689
1690static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001691 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001692{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001693 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001694 int ret;
1695
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001696 if (!S_ISDIR(file_inode(file)->i_mode))
1697 return -ENOTDIR;
1698
Li Zefanfa0d2b92010-12-20 15:53:28 +08001699 vol_args = memdup_user(arg, sizeof(*vol_args));
1700 if (IS_ERR(vol_args))
1701 return PTR_ERR(vol_args);
1702 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001703
Li Zefanfa0d2b92010-12-20 15:53:28 +08001704 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001705 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001706 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001707
Li Zefanfa0d2b92010-12-20 15:53:28 +08001708 kfree(vol_args);
1709 return ret;
1710}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001711
Li Zefanfa0d2b92010-12-20 15:53:28 +08001712static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1713 void __user *arg, int subvol)
1714{
1715 struct btrfs_ioctl_vol_args_v2 *vol_args;
1716 int ret;
1717 u64 transid = 0;
1718 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001719 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001720 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001721
Jeff Mahoney325c50e2016-09-21 08:31:29 -04001722 if (!S_ISDIR(file_inode(file)->i_mode))
1723 return -ENOTDIR;
1724
Li Zefanfa0d2b92010-12-20 15:53:28 +08001725 vol_args = memdup_user(arg, sizeof(*vol_args));
1726 if (IS_ERR(vol_args))
1727 return PTR_ERR(vol_args);
1728 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001729
Li Zefanb83cc962010-12-20 16:04:08 +08001730 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001731 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1732 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001733 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001734 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001735 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001736
1737 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1738 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001739 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1740 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001741 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001742 if (vol_args->size > PAGE_SIZE) {
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001743 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001744 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001745 }
1746 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1747 if (IS_ERR(inherit)) {
1748 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001749 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001750 }
1751 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001752
1753 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001754 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001755 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001756 if (ret)
1757 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001758
Dan Carpenterc47ca322014-09-04 14:09:15 +03001759 if (ptr && copy_to_user(arg +
1760 offsetof(struct btrfs_ioctl_vol_args_v2,
1761 transid),
1762 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001763 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001764
1765free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001766 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001767free_args:
1768 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001769 return ret;
1770}
1771
Li Zefan0caa1022010-12-20 16:30:25 +08001772static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1773 void __user *arg)
1774{
Al Viro496ad9a2013-01-23 17:07:38 -05001775 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001776 struct btrfs_root *root = BTRFS_I(inode)->root;
1777 int ret = 0;
1778 u64 flags = 0;
1779
Li Zefan33345d012011-04-20 10:31:50 +08001780 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001781 return -EINVAL;
1782
1783 down_read(&root->fs_info->subvol_sem);
1784 if (btrfs_root_readonly(root))
1785 flags |= BTRFS_SUBVOL_RDONLY;
1786 up_read(&root->fs_info->subvol_sem);
1787
1788 if (copy_to_user(arg, &flags, sizeof(flags)))
1789 ret = -EFAULT;
1790
1791 return ret;
1792}
1793
1794static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1795 void __user *arg)
1796{
Al Viro496ad9a2013-01-23 17:07:38 -05001797 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001798 struct btrfs_root *root = BTRFS_I(inode)->root;
1799 struct btrfs_trans_handle *trans;
1800 u64 root_flags;
1801 u64 flags;
1802 int ret = 0;
1803
David Sterbabd60ea02014-01-16 15:50:22 +01001804 if (!inode_owner_or_capable(inode))
1805 return -EPERM;
1806
Liu Bob9ca0662012-06-29 03:58:49 -06001807 ret = mnt_want_write_file(file);
1808 if (ret)
1809 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001810
Liu Bob9ca0662012-06-29 03:58:49 -06001811 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1812 ret = -EINVAL;
1813 goto out_drop_write;
1814 }
Li Zefan0caa1022010-12-20 16:30:25 +08001815
Liu Bob9ca0662012-06-29 03:58:49 -06001816 if (copy_from_user(&flags, arg, sizeof(flags))) {
1817 ret = -EFAULT;
1818 goto out_drop_write;
1819 }
Li Zefan0caa1022010-12-20 16:30:25 +08001820
Liu Bob9ca0662012-06-29 03:58:49 -06001821 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1822 ret = -EINVAL;
1823 goto out_drop_write;
1824 }
Li Zefan0caa1022010-12-20 16:30:25 +08001825
Liu Bob9ca0662012-06-29 03:58:49 -06001826 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1827 ret = -EOPNOTSUPP;
1828 goto out_drop_write;
1829 }
Li Zefan0caa1022010-12-20 16:30:25 +08001830
1831 down_write(&root->fs_info->subvol_sem);
1832
1833 /* nothing to do */
1834 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001835 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001836
1837 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001838 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001839 btrfs_set_root_flags(&root->root_item,
1840 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001841 } else {
1842 /*
1843 * Block RO -> RW transition if this subvolume is involved in
1844 * send
1845 */
1846 spin_lock(&root->root_item_lock);
1847 if (root->send_in_progress == 0) {
1848 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001849 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001850 spin_unlock(&root->root_item_lock);
1851 } else {
1852 spin_unlock(&root->root_item_lock);
1853 btrfs_warn(root->fs_info,
1854 "Attempt to set subvolume %llu read-write during send",
1855 root->root_key.objectid);
1856 ret = -EPERM;
1857 goto out_drop_sem;
1858 }
1859 }
Li Zefan0caa1022010-12-20 16:30:25 +08001860
1861 trans = btrfs_start_transaction(root, 1);
1862 if (IS_ERR(trans)) {
1863 ret = PTR_ERR(trans);
1864 goto out_reset;
1865 }
1866
Li Zefanb4dc2b82011-02-16 06:06:34 +00001867 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001868 &root->root_key, &root->root_item);
1869
1870 btrfs_commit_transaction(trans, root);
1871out_reset:
1872 if (ret)
1873 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001874out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001875 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001876out_drop_write:
1877 mnt_drop_write_file(file);
1878out:
Li Zefan0caa1022010-12-20 16:30:25 +08001879 return ret;
1880}
1881
Yan, Zheng76dda932009-09-21 16:00:26 -04001882/*
1883 * helper to check if the subvolume references other subvolumes
1884 */
1885static noinline int may_destroy_subvol(struct btrfs_root *root)
1886{
1887 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001888 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001889 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001890 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001891 int ret;
1892
1893 path = btrfs_alloc_path();
1894 if (!path)
1895 return -ENOMEM;
1896
Josef Bacik175a2b82013-08-12 15:36:44 -04001897 /* Make sure this root isn't set as the default subvol */
1898 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1899 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1900 dir_id, "default", 7, 0);
1901 if (di && !IS_ERR(di)) {
1902 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1903 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001904 ret = -EPERM;
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001905 btrfs_err(root->fs_info,
1906 "deleting default subvolume %llu is not allowed",
1907 key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001908 goto out;
1909 }
1910 btrfs_release_path(path);
1911 }
1912
Yan, Zheng76dda932009-09-21 16:00:26 -04001913 key.objectid = root->root_key.objectid;
1914 key.type = BTRFS_ROOT_REF_KEY;
1915 key.offset = (u64)-1;
1916
1917 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1918 &key, path, 0, 0);
1919 if (ret < 0)
1920 goto out;
1921 BUG_ON(ret == 0);
1922
1923 ret = 0;
1924 if (path->slots[0] > 0) {
1925 path->slots[0]--;
1926 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1927 if (key.objectid == root->root_key.objectid &&
1928 key.type == BTRFS_ROOT_REF_KEY)
1929 ret = -ENOTEMPTY;
1930 }
1931out:
1932 btrfs_free_path(path);
1933 return ret;
1934}
1935
Chris Masonac8e9812010-02-28 15:39:26 -05001936static noinline int key_in_sk(struct btrfs_key *key,
1937 struct btrfs_ioctl_search_key *sk)
1938{
Chris Masonabc6e132010-03-18 12:10:08 -04001939 struct btrfs_key test;
1940 int ret;
1941
1942 test.objectid = sk->min_objectid;
1943 test.type = sk->min_type;
1944 test.offset = sk->min_offset;
1945
1946 ret = btrfs_comp_cpu_keys(key, &test);
1947 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001948 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001949
1950 test.objectid = sk->max_objectid;
1951 test.type = sk->max_type;
1952 test.offset = sk->max_offset;
1953
1954 ret = btrfs_comp_cpu_keys(key, &test);
1955 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001956 return 0;
1957 return 1;
1958}
1959
Jeff Mahoneydf397562016-06-21 20:18:21 -04001960static noinline int copy_to_sk(struct btrfs_path *path,
Chris Masonac8e9812010-02-28 15:39:26 -05001961 struct btrfs_key *key,
1962 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001963 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001964 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001965 unsigned long *sk_offset,
1966 int *num_found)
1967{
1968 u64 found_transid;
1969 struct extent_buffer *leaf;
1970 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001971 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001972 unsigned long item_off;
1973 unsigned long item_len;
1974 int nritems;
1975 int i;
1976 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001977 int ret = 0;
1978
1979 leaf = path->nodes[0];
1980 slot = path->slots[0];
1981 nritems = btrfs_header_nritems(leaf);
1982
1983 if (btrfs_header_generation(leaf) > sk->max_transid) {
1984 i = nritems;
1985 goto advance_key;
1986 }
1987 found_transid = btrfs_header_generation(leaf);
1988
1989 for (i = slot; i < nritems; i++) {
1990 item_off = btrfs_item_ptr_offset(leaf, i);
1991 item_len = btrfs_item_size_nr(leaf, i);
1992
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001993 btrfs_item_key_to_cpu(leaf, key, i);
1994 if (!key_in_sk(key, sk))
1995 continue;
1996
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001997 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001998 if (*num_found) {
1999 ret = 1;
2000 goto out;
2001 }
Chris Masonac8e9812010-02-28 15:39:26 -05002002
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002003 /*
2004 * return one empty item back for v1, which does not
2005 * handle -EOVERFLOW
2006 */
2007
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002008 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002009 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002010 ret = -EOVERFLOW;
2011 }
Chris Masonac8e9812010-02-28 15:39:26 -05002012
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002013 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05002014 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002015 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05002016 }
2017
Chris Masonac8e9812010-02-28 15:39:26 -05002018 sh.objectid = key->objectid;
2019 sh.offset = key->offset;
2020 sh.type = key->type;
2021 sh.len = item_len;
2022 sh.transid = found_transid;
2023
2024 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002025 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
2026 ret = -EFAULT;
2027 goto out;
2028 }
2029
Chris Masonac8e9812010-02-28 15:39:26 -05002030 *sk_offset += sizeof(sh);
2031
2032 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002033 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002034 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002035 if (read_extent_buffer_to_user(leaf, up,
2036 item_off, item_len)) {
2037 ret = -EFAULT;
2038 goto out;
2039 }
2040
Chris Masonac8e9812010-02-28 15:39:26 -05002041 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002042 }
Hugo Millse2156862011-05-14 17:43:41 +00002043 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002044
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002045 if (ret) /* -EOVERFLOW from above */
2046 goto out;
2047
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002048 if (*num_found >= sk->nr_items) {
2049 ret = 1;
2050 goto out;
2051 }
Chris Masonac8e9812010-02-28 15:39:26 -05002052 }
2053advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002054 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002055 test.objectid = sk->max_objectid;
2056 test.type = sk->max_type;
2057 test.offset = sk->max_offset;
2058 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2059 ret = 1;
2060 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002061 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002062 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002063 key->offset = 0;
2064 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002065 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002066 key->offset = 0;
2067 key->type = 0;
2068 key->objectid++;
2069 } else
2070 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002071out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002072 /*
2073 * 0: all items from this leaf copied, continue with next
2074 * 1: * more items can be copied, but unused buffer is too small
2075 * * all items were found
2076 * Either way, it will stops the loop which iterates to the next
2077 * leaf
2078 * -EOVERFLOW: item was to large for buffer
2079 * -EFAULT: could not copy extent buffer back to userspace
2080 */
Chris Masonac8e9812010-02-28 15:39:26 -05002081 return ret;
2082}
2083
2084static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002085 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002086 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002087 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002088{
2089 struct btrfs_root *root;
2090 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002091 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002092 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2093 int ret;
2094 int num_found = 0;
2095 unsigned long sk_offset = 0;
2096
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002097 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2098 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002099 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002100 }
Gerhard Heift12544442014-01-30 16:23:58 +01002101
Chris Masonac8e9812010-02-28 15:39:26 -05002102 path = btrfs_alloc_path();
2103 if (!path)
2104 return -ENOMEM;
2105
2106 if (sk->tree_id == 0) {
2107 /* search the root of the inode that was passed */
2108 root = BTRFS_I(inode)->root;
2109 } else {
2110 key.objectid = sk->tree_id;
2111 key.type = BTRFS_ROOT_ITEM_KEY;
2112 key.offset = (u64)-1;
2113 root = btrfs_read_fs_root_no_name(info, &key);
2114 if (IS_ERR(root)) {
Chris Masonac8e9812010-02-28 15:39:26 -05002115 btrfs_free_path(path);
2116 return -ENOENT;
2117 }
2118 }
2119
2120 key.objectid = sk->min_objectid;
2121 key.type = sk->min_type;
2122 key.offset = sk->min_offset;
2123
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302124 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002125 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002126 if (ret != 0) {
2127 if (ret > 0)
2128 ret = 0;
2129 goto err;
2130 }
Jeff Mahoneydf397562016-06-21 20:18:21 -04002131 ret = copy_to_sk(path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002132 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002133 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002134 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002135 break;
2136
2137 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002138 if (ret > 0)
2139 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002140err:
2141 sk->nr_items = num_found;
2142 btrfs_free_path(path);
2143 return ret;
2144}
2145
2146static noinline int btrfs_ioctl_tree_search(struct file *file,
2147 void __user *argp)
2148{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002149 struct btrfs_ioctl_search_args __user *uargs;
2150 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002151 struct inode *inode;
2152 int ret;
2153 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002154
2155 if (!capable(CAP_SYS_ADMIN))
2156 return -EPERM;
2157
Gerhard Heiftba346b32014-01-30 16:24:02 +01002158 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002159
Gerhard Heiftba346b32014-01-30 16:24:02 +01002160 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2161 return -EFAULT;
2162
2163 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002164
Al Viro496ad9a2013-01-23 17:07:38 -05002165 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002166 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002167
2168 /*
2169 * In the origin implementation an overflow is handled by returning a
2170 * search header with a len of zero, so reset ret.
2171 */
2172 if (ret == -EOVERFLOW)
2173 ret = 0;
2174
Gerhard Heiftba346b32014-01-30 16:24:02 +01002175 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002176 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002177 return ret;
2178}
2179
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002180static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2181 void __user *argp)
2182{
2183 struct btrfs_ioctl_search_args_v2 __user *uarg;
2184 struct btrfs_ioctl_search_args_v2 args;
2185 struct inode *inode;
2186 int ret;
2187 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002188 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002189
2190 if (!capable(CAP_SYS_ADMIN))
2191 return -EPERM;
2192
2193 /* copy search header and buffer size */
2194 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2195 if (copy_from_user(&args, uarg, sizeof(args)))
2196 return -EFAULT;
2197
2198 buf_size = args.buf_size;
2199
2200 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2201 return -EOVERFLOW;
2202
2203 /* limit result size to 16MB */
2204 if (buf_size > buf_limit)
2205 buf_size = buf_limit;
2206
2207 inode = file_inode(file);
2208 ret = search_ioctl(inode, &args.key, &buf_size,
2209 (char *)(&uarg->buf[0]));
2210 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2211 ret = -EFAULT;
2212 else if (ret == -EOVERFLOW &&
2213 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2214 ret = -EFAULT;
2215
Yan, Zheng76dda932009-09-21 16:00:26 -04002216 return ret;
2217}
2218
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002219/*
Chris Masonac8e9812010-02-28 15:39:26 -05002220 * Search INODE_REFs to identify path name of 'dirid' directory
2221 * in a 'tree_id' tree. and sets path name to 'name'.
2222 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002223static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2224 u64 tree_id, u64 dirid, char *name)
2225{
2226 struct btrfs_root *root;
2227 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002228 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002229 int ret = -1;
2230 int slot;
2231 int len;
2232 int total_len = 0;
2233 struct btrfs_inode_ref *iref;
2234 struct extent_buffer *l;
2235 struct btrfs_path *path;
2236
2237 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2238 name[0]='\0';
2239 return 0;
2240 }
2241
2242 path = btrfs_alloc_path();
2243 if (!path)
2244 return -ENOMEM;
2245
Chris Masonac8e9812010-02-28 15:39:26 -05002246 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002247
2248 key.objectid = tree_id;
2249 key.type = BTRFS_ROOT_ITEM_KEY;
2250 key.offset = (u64)-1;
2251 root = btrfs_read_fs_root_no_name(info, &key);
2252 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002253 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002254 ret = -ENOENT;
2255 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002256 }
2257
2258 key.objectid = dirid;
2259 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002260 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002261
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302262 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002263 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2264 if (ret < 0)
2265 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002266 else if (ret > 0) {
2267 ret = btrfs_previous_item(root, path, dirid,
2268 BTRFS_INODE_REF_KEY);
2269 if (ret < 0)
2270 goto out;
2271 else if (ret > 0) {
2272 ret = -ENOENT;
2273 goto out;
2274 }
2275 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002276
2277 l = path->nodes[0];
2278 slot = path->slots[0];
2279 btrfs_item_key_to_cpu(l, &key, slot);
2280
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002281 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2282 len = btrfs_inode_ref_name_len(l, iref);
2283 ptr -= len + 1;
2284 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002285 if (ptr < name) {
2286 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002287 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002288 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002289
2290 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302291 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002292
2293 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2294 break;
2295
David Sterbab3b4aa72011-04-21 01:20:15 +02002296 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002297 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002298 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002299 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002300 }
Li Zefan77906a502011-07-14 03:16:00 +00002301 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302302 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002303 ret = 0;
2304out:
2305 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002306 return ret;
2307}
2308
2309static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2310 void __user *argp)
2311{
2312 struct btrfs_ioctl_ino_lookup_args *args;
2313 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002314 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002315
Julia Lawall2354d082010-10-29 15:14:18 -04002316 args = memdup_user(argp, sizeof(*args));
2317 if (IS_ERR(args))
2318 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002319
Al Viro496ad9a2013-01-23 17:07:38 -05002320 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002321
David Sterba01b810b2015-05-12 19:14:49 +02002322 /*
2323 * Unprivileged query to obtain the containing subvolume root id. The
2324 * path is reset so it's consistent with btrfs_search_path_in_tree.
2325 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002326 if (args->treeid == 0)
2327 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2328
David Sterba01b810b2015-05-12 19:14:49 +02002329 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2330 args->name[0] = 0;
2331 goto out;
2332 }
2333
2334 if (!capable(CAP_SYS_ADMIN)) {
2335 ret = -EPERM;
2336 goto out;
2337 }
2338
Chris Masonac8e9812010-02-28 15:39:26 -05002339 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2340 args->treeid, args->objectid,
2341 args->name);
2342
David Sterba01b810b2015-05-12 19:14:49 +02002343out:
Chris Masonac8e9812010-02-28 15:39:26 -05002344 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2345 ret = -EFAULT;
2346
2347 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002348 return ret;
2349}
2350
Yan, Zheng76dda932009-09-21 16:00:26 -04002351static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2352 void __user *arg)
2353{
Al Viro54563d42013-09-01 15:57:51 -04002354 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002355 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002356 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002357 struct inode *inode;
2358 struct btrfs_root *root = BTRFS_I(dir)->root;
2359 struct btrfs_root *dest = NULL;
2360 struct btrfs_ioctl_vol_args *vol_args;
2361 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002362 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002363 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002364 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002365 int namelen;
2366 int ret;
2367 int err = 0;
2368
Jeff Mahoney325c50e2016-09-21 08:31:29 -04002369 if (!S_ISDIR(dir->i_mode))
2370 return -ENOTDIR;
2371
Yan, Zheng76dda932009-09-21 16:00:26 -04002372 vol_args = memdup_user(arg, sizeof(*vol_args));
2373 if (IS_ERR(vol_args))
2374 return PTR_ERR(vol_args);
2375
2376 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2377 namelen = strlen(vol_args->name);
2378 if (strchr(vol_args->name, '/') ||
2379 strncmp(vol_args->name, "..", namelen) == 0) {
2380 err = -EINVAL;
2381 goto out;
2382 }
2383
Al Viroa561be72011-11-23 11:57:51 -05002384 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002385 if (err)
2386 goto out;
2387
David Sterba521e0542014-04-15 16:41:44 +02002388
Al Viro00235412016-05-26 00:05:12 -04002389 err = down_write_killable_nested(&dir->i_rwsem, I_MUTEX_PARENT);
2390 if (err == -EINTR)
2391 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002392 dentry = lookup_one_len(vol_args->name, parent, namelen);
2393 if (IS_ERR(dentry)) {
2394 err = PTR_ERR(dentry);
2395 goto out_unlock_dir;
2396 }
2397
David Howells2b0143b2015-03-17 22:25:59 +00002398 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002399 err = -ENOENT;
2400 goto out_dput;
2401 }
2402
David Howells2b0143b2015-03-17 22:25:59 +00002403 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002404 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302405 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002406 /*
2407 * Regular user. Only allow this with a special mount
2408 * option, when the user has write+exec access to the
2409 * subvol root, and when rmdir(2) would have been
2410 * allowed.
2411 *
2412 * Note that this is _not_ check that the subvol is
2413 * empty or doesn't contain data that we wouldn't
2414 * otherwise be able to delete.
2415 *
2416 * Users who want to delete empty subvols should try
2417 * rmdir(2).
2418 */
2419 err = -EPERM;
Jeff Mahoney3cdde222016-06-09 21:38:35 -04002420 if (!btrfs_test_opt(root->fs_info, USER_SUBVOL_RM_ALLOWED))
Sage Weil4260f7c2010-10-29 15:46:43 -04002421 goto out_dput;
2422
2423 /*
2424 * Do not allow deletion if the parent dir is the same
2425 * as the dir to be deleted. That means the ioctl
2426 * must be called on the dentry referencing the root
2427 * of the subvol, not a random directory contained
2428 * within it.
2429 */
2430 err = -EINVAL;
2431 if (root == dest)
2432 goto out_dput;
2433
2434 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2435 if (err)
2436 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002437 }
2438
Miao Xie5c39da52012-10-22 11:39:53 +00002439 /* check if subvolume may be deleted by a user */
2440 err = btrfs_may_delete(dir, dentry, 1);
2441 if (err)
2442 goto out_dput;
2443
Li Zefan33345d012011-04-20 10:31:50 +08002444 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002445 err = -EINVAL;
2446 goto out_dput;
2447 }
2448
Al Viro59551022016-01-22 15:40:57 -05002449 inode_lock(inode);
David Sterba521e0542014-04-15 16:41:44 +02002450
2451 /*
2452 * Don't allow to delete a subvolume with send in progress. This is
2453 * inside the i_mutex so the error handling that has to drop the bit
2454 * again is not run concurrently.
2455 */
2456 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002457 root_flags = btrfs_root_flags(&dest->root_item);
2458 if (dest->send_in_progress == 0) {
2459 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002460 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2461 spin_unlock(&dest->root_item_lock);
2462 } else {
2463 spin_unlock(&dest->root_item_lock);
2464 btrfs_warn(root->fs_info,
2465 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002466 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002467 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002468 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002469 }
2470
Yan, Zheng76dda932009-09-21 16:00:26 -04002471 down_write(&root->fs_info->subvol_sem);
2472
2473 err = may_destroy_subvol(dest);
2474 if (err)
2475 goto out_up_write;
2476
Miao Xiec58aaad2013-02-28 10:05:36 +00002477 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2478 /*
2479 * One for dir inode, two for dir entries, two for root
2480 * ref/backref.
2481 */
2482 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002483 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002484 if (err)
2485 goto out_up_write;
2486
Yan, Zhenga22285a2010-05-16 10:48:46 -04002487 trans = btrfs_start_transaction(root, 0);
2488 if (IS_ERR(trans)) {
2489 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002490 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002491 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002492 trans->block_rsv = &block_rsv;
2493 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002494
Filipe Manana2be63d52016-02-12 11:34:23 +00002495 btrfs_record_snapshot_destroy(trans, dir);
2496
Yan, Zheng76dda932009-09-21 16:00:26 -04002497 ret = btrfs_unlink_subvol(trans, root, dir,
2498 dest->root_key.objectid,
2499 dentry->d_name.name,
2500 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002501 if (ret) {
2502 err = ret;
Jeff Mahoney66642832016-06-10 18:19:25 -04002503 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002504 goto out_end_trans;
2505 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002506
2507 btrfs_record_root_in_trans(trans, dest);
2508
2509 memset(&dest->root_item.drop_progress, 0,
2510 sizeof(dest->root_item.drop_progress));
2511 dest->root_item.drop_level = 0;
2512 btrfs_set_root_refs(&dest->root_item, 0);
2513
Miao Xie27cdeb72014-04-02 19:51:05 +08002514 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002515 ret = btrfs_insert_orphan_item(trans,
2516 root->fs_info->tree_root,
2517 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002518 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002519 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002520 err = ret;
2521 goto out_end_trans;
2522 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002523 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002524
2525 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2526 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2527 dest->root_key.objectid);
2528 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002529 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002530 err = ret;
2531 goto out_end_trans;
2532 }
2533 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2534 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2535 dest->root_item.received_uuid,
2536 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2537 dest->root_key.objectid);
2538 if (ret && ret != -ENOENT) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002539 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002540 err = ret;
2541 goto out_end_trans;
2542 }
2543 }
2544
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002545out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002546 trans->block_rsv = NULL;
2547 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002548 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002549 if (ret && !err)
2550 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002551 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002552out_release:
2553 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002554out_up_write:
2555 up_write(&root->fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002556 if (err) {
2557 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002558 root_flags = btrfs_root_flags(&dest->root_item);
2559 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002560 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2561 spin_unlock(&dest->root_item_lock);
2562 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002563out_unlock_inode:
Al Viro59551022016-01-22 15:40:57 -05002564 inode_unlock(inode);
Yan, Zheng76dda932009-09-21 16:00:26 -04002565 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002566 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002567 btrfs_invalidate_inodes(dest);
2568 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002569 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002570
2571 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002572 if (dest->ino_cache_inode) {
2573 iput(dest->ino_cache_inode);
2574 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002575 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002576 }
2577out_dput:
2578 dput(dentry);
2579out_unlock_dir:
Al Viro59551022016-01-22 15:40:57 -05002580 inode_unlock(dir);
Al Viro00235412016-05-26 00:05:12 -04002581out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002582 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002583out:
2584 kfree(vol_args);
2585 return err;
2586}
2587
Chris Mason1e701a32010-03-11 09:42:04 -05002588static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002589{
Al Viro496ad9a2013-01-23 17:07:38 -05002590 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002591 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002592 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002593 int ret;
2594
Ilya Dryomov25122d12013-01-20 15:57:57 +02002595 ret = mnt_want_write_file(file);
2596 if (ret)
2597 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002598
Ilya Dryomov25122d12013-01-20 15:57:57 +02002599 if (btrfs_root_readonly(root)) {
2600 ret = -EROFS;
2601 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002602 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002603
2604 switch (inode->i_mode & S_IFMT) {
2605 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002606 if (!capable(CAP_SYS_ADMIN)) {
2607 ret = -EPERM;
2608 goto out;
2609 }
Eric Sandeende78b512013-01-31 18:21:12 +00002610 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002611 if (ret)
2612 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002613 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002614 break;
2615 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002616 if (!(file->f_mode & FMODE_WRITE)) {
2617 ret = -EINVAL;
2618 goto out;
2619 }
Chris Mason1e701a32010-03-11 09:42:04 -05002620
2621 range = kzalloc(sizeof(*range), GFP_KERNEL);
2622 if (!range) {
2623 ret = -ENOMEM;
2624 goto out;
2625 }
2626
2627 if (argp) {
2628 if (copy_from_user(range, argp,
2629 sizeof(*range))) {
2630 ret = -EFAULT;
2631 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002632 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002633 }
2634 /* compression requires us to start the IO */
2635 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2636 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2637 range->extent_thresh = (u32)-1;
2638 }
2639 } else {
2640 /* the rest are all set to zero by kzalloc */
2641 range->len = (u64)-1;
2642 }
Al Viro496ad9a2013-01-23 17:07:38 -05002643 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002644 range, 0, 0);
2645 if (ret > 0)
2646 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002647 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002648 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002649 default:
2650 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002651 }
Chris Masone441d542009-01-05 16:57:23 -05002652out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002653 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002654 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002655}
2656
Christoph Hellwigb2950862008-12-02 09:54:17 -05002657static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002658{
2659 struct btrfs_ioctl_vol_args *vol_args;
2660 int ret;
2661
Chris Masone441d542009-01-05 16:57:23 -05002662 if (!capable(CAP_SYS_ADMIN))
2663 return -EPERM;
2664
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002665 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2666 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002667 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002668 }
2669
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002670 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002671 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002672 if (IS_ERR(vol_args)) {
2673 ret = PTR_ERR(vol_args);
2674 goto out;
2675 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002676
Mark Fasheh5516e592008-07-24 12:20:14 -04002677 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002678 ret = btrfs_init_new_device(root, vol_args->name);
2679
Anand Jain43d20762014-07-01 00:58:56 +08002680 if (!ret)
2681 btrfs_info(root->fs_info, "disk added %s",vol_args->name);
2682
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002683 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002684out:
2685 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002686 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002687 return ret;
2688}
2689
Anand Jain6b526ed2016-02-13 10:01:39 +08002690static long btrfs_ioctl_rm_dev_v2(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002691{
Al Viro496ad9a2013-01-23 17:07:38 -05002692 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jain6b526ed2016-02-13 10:01:39 +08002693 struct btrfs_ioctl_vol_args_v2 *vol_args;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002694 int ret;
2695
Chris Masone441d542009-01-05 16:57:23 -05002696 if (!capable(CAP_SYS_ADMIN))
2697 return -EPERM;
2698
Miao Xieda249272012-11-26 08:44:50 +00002699 ret = mnt_want_write_file(file);
2700 if (ret)
2701 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002702
Li Zefandae7b662009-04-08 15:06:54 +08002703 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002704 if (IS_ERR(vol_args)) {
2705 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002706 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002707 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002708
Anand Jain6b526ed2016-02-13 10:01:39 +08002709 /* Check for compatibility reject unknown flags */
David Sterba735654e2016-02-15 18:15:21 +01002710 if (vol_args->flags & ~BTRFS_VOL_ARG_V2_FLAGS_SUPPORTED)
2711 return -EOPNOTSUPP;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002712
Anand Jain183860f2013-05-17 10:52:45 +00002713 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2714 1)) {
2715 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2716 goto out;
2717 }
2718
2719 mutex_lock(&root->fs_info->volume_mutex);
David Sterba735654e2016-02-15 18:15:21 +01002720 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID) {
Anand Jain6b526ed2016-02-13 10:01:39 +08002721 ret = btrfs_rm_device(root, NULL, vol_args->devid);
2722 } else {
2723 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
2724 ret = btrfs_rm_device(root, vol_args->name, 0);
2725 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002726 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002727 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002728
Anand Jain6b526ed2016-02-13 10:01:39 +08002729 if (!ret) {
David Sterba735654e2016-02-15 18:15:21 +01002730 if (vol_args->flags & BTRFS_DEVICE_SPEC_BY_ID)
Anand Jain6b526ed2016-02-13 10:01:39 +08002731 btrfs_info(root->fs_info, "device deleted: id %llu",
2732 vol_args->devid);
2733 else
2734 btrfs_info(root->fs_info, "device deleted: %s",
2735 vol_args->name);
2736 }
Anand Jain183860f2013-05-17 10:52:45 +00002737out:
2738 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002739err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002740 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002741 return ret;
2742}
2743
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002744static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
2745{
2746 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
2747 struct btrfs_ioctl_vol_args *vol_args;
2748 int ret;
2749
2750 if (!capable(CAP_SYS_ADMIN))
2751 return -EPERM;
2752
2753 ret = mnt_want_write_file(file);
2754 if (ret)
2755 return ret;
2756
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002757 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2758 1)) {
2759 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
David Sterba58d7bbf2016-05-04 14:10:47 +02002760 goto out_drop_write;
2761 }
2762
2763 vol_args = memdup_user(arg, sizeof(*vol_args));
2764 if (IS_ERR(vol_args)) {
2765 ret = PTR_ERR(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002766 goto out;
2767 }
2768
David Sterba58d7bbf2016-05-04 14:10:47 +02002769 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002770 mutex_lock(&root->fs_info->volume_mutex);
Anand Jain6b526ed2016-02-13 10:01:39 +08002771 ret = btrfs_rm_device(root, vol_args->name, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002772 mutex_unlock(&root->fs_info->volume_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002773
2774 if (!ret)
2775 btrfs_info(root->fs_info, "disk deleted %s",vol_args->name);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002776 kfree(vol_args);
David Sterba58d7bbf2016-05-04 14:10:47 +02002777out:
2778 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
2779out_drop_write:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002780 mnt_drop_write_file(file);
David Sterba58d7bbf2016-05-04 14:10:47 +02002781
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002782 return ret;
2783}
2784
Jan Schmidt475f6382011-03-11 15:41:01 +01002785static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2786{
Li Zefan027ed2f2011-06-08 08:27:56 +00002787 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002788 struct btrfs_device *device;
Jan Schmidt475f6382011-03-11 15:41:01 +01002789 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002790 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002791
Li Zefan027ed2f2011-06-08 08:27:56 +00002792 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2793 if (!fi_args)
2794 return -ENOMEM;
2795
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002796 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002797 fi_args->num_devices = fs_devices->num_devices;
2798 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002799
Byongho Leed7641a42015-09-01 23:10:57 +09002800 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002801 if (device->devid > fi_args->max_id)
2802 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002803 }
2804 mutex_unlock(&fs_devices->device_list_mutex);
2805
David Sterba80a773f2014-05-07 18:17:06 +02002806 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2807 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2808 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2809
Li Zefan027ed2f2011-06-08 08:27:56 +00002810 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2811 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002812
Li Zefan027ed2f2011-06-08 08:27:56 +00002813 kfree(fi_args);
2814 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002815}
2816
2817static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2818{
2819 struct btrfs_ioctl_dev_info_args *di_args;
2820 struct btrfs_device *dev;
2821 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2822 int ret = 0;
2823 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002824
Jan Schmidt475f6382011-03-11 15:41:01 +01002825 di_args = memdup_user(arg, sizeof(*di_args));
2826 if (IS_ERR(di_args))
2827 return PTR_ERR(di_args);
2828
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002829 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002830 s_uuid = di_args->uuid;
2831
2832 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002833 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002834
2835 if (!dev) {
2836 ret = -ENODEV;
2837 goto out;
2838 }
2839
2840 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002841 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2842 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002843 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002844 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002845 struct rcu_string *name;
2846
2847 rcu_read_lock();
2848 name = rcu_dereference(dev->name);
2849 strncpy(di_args->path, name->str, sizeof(di_args->path));
2850 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002851 di_args->path[sizeof(di_args->path) - 1] = 0;
2852 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002853 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002854 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002855
2856out:
David Sterba55793c02013-04-26 15:20:23 +00002857 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002858 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2859 ret = -EFAULT;
2860
2861 kfree(di_args);
2862 return ret;
2863}
2864
Mark Fashehf4414602015-06-30 14:42:05 -07002865static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002866{
2867 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002868
Mark Fasheh416161d2013-08-06 11:42:51 -07002869 page = grab_cache_page(inode->i_mapping, index);
2870 if (!page)
Filipe Manana31314002016-01-27 18:37:47 +00002871 return ERR_PTR(-ENOMEM);
Mark Fasheh416161d2013-08-06 11:42:51 -07002872
2873 if (!PageUptodate(page)) {
Filipe Manana31314002016-01-27 18:37:47 +00002874 int ret;
2875
2876 ret = btrfs_readpage(NULL, page);
2877 if (ret)
2878 return ERR_PTR(ret);
Mark Fasheh416161d2013-08-06 11:42:51 -07002879 lock_page(page);
2880 if (!PageUptodate(page)) {
2881 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002882 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002883 return ERR_PTR(-EIO);
2884 }
2885 if (page->mapping != inode->i_mapping) {
2886 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002887 put_page(page);
Filipe Manana31314002016-01-27 18:37:47 +00002888 return ERR_PTR(-EAGAIN);
Mark Fasheh416161d2013-08-06 11:42:51 -07002889 }
2890 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002891
2892 return page;
2893}
2894
Mark Fashehf4414602015-06-30 14:42:05 -07002895static int gather_extent_pages(struct inode *inode, struct page **pages,
2896 int num_pages, u64 off)
2897{
2898 int i;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002899 pgoff_t index = off >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07002900
2901 for (i = 0; i < num_pages; i++) {
Filipe Manana31314002016-01-27 18:37:47 +00002902again:
Mark Fashehf4414602015-06-30 14:42:05 -07002903 pages[i] = extent_same_get_page(inode, index + i);
Filipe Manana31314002016-01-27 18:37:47 +00002904 if (IS_ERR(pages[i])) {
2905 int err = PTR_ERR(pages[i]);
2906
2907 if (err == -EAGAIN)
2908 goto again;
2909 pages[i] = NULL;
2910 return err;
2911 }
Mark Fashehf4414602015-06-30 14:42:05 -07002912 }
2913 return 0;
2914}
2915
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002916static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2917 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002918{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002919 /*
2920 * Do any pending delalloc/csum calculations on inode, one way or
2921 * another, and lock file content.
2922 * The locking order is:
2923 *
2924 * 1) pages
2925 * 2) range in the inode's io tree
2926 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002927 while (1) {
2928 struct btrfs_ordered_extent *ordered;
2929 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2930 ordered = btrfs_lookup_first_ordered_extent(inode,
2931 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002932 if ((!ordered ||
2933 ordered->file_offset + ordered->len <= off ||
2934 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002935 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002936 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2937 if (ordered)
2938 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002939 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002940 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002941 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2942 if (ordered)
2943 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002944 if (!retry_range_locking)
2945 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002946 btrfs_wait_ordered_range(inode, off, len);
2947 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002948 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002949}
2950
Mark Fashehf4414602015-06-30 14:42:05 -07002951static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002952{
Al Viro59551022016-01-22 15:40:57 -05002953 inode_unlock(inode1);
2954 inode_unlock(inode2);
Mark Fasheh416161d2013-08-06 11:42:51 -07002955}
2956
Mark Fashehf4414602015-06-30 14:42:05 -07002957static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2958{
2959 if (inode1 < inode2)
2960 swap(inode1, inode2);
2961
Al Viro59551022016-01-22 15:40:57 -05002962 inode_lock_nested(inode1, I_MUTEX_PARENT);
2963 inode_lock_nested(inode2, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002964}
2965
2966static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2967 struct inode *inode2, u64 loff2, u64 len)
2968{
2969 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2970 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2971}
2972
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002973static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2974 struct inode *inode2, u64 loff2, u64 len,
2975 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002976{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002977 int ret;
2978
Mark Fasheh416161d2013-08-06 11:42:51 -07002979 if (inode1 < inode2) {
2980 swap(inode1, inode2);
2981 swap(loff1, loff2);
2982 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002983 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2984 if (ret)
2985 return ret;
2986 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2987 if (ret)
2988 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2989 loff1 + len - 1);
2990 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002991}
2992
2993struct cmp_pages {
2994 int num_pages;
2995 struct page **src_pages;
2996 struct page **dst_pages;
2997};
2998
2999static void btrfs_cmp_data_free(struct cmp_pages *cmp)
3000{
3001 int i;
3002 struct page *pg;
3003
3004 for (i = 0; i < cmp->num_pages; i++) {
3005 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003006 if (pg) {
3007 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003008 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003009 }
Mark Fashehf4414602015-06-30 14:42:05 -07003010 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003011 if (pg) {
3012 unlock_page(pg);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003013 put_page(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003014 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003015 }
Mark Fashehf4414602015-06-30 14:42:05 -07003016 kfree(cmp->src_pages);
3017 kfree(cmp->dst_pages);
3018}
3019
3020static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
3021 struct inode *dst, u64 dst_loff,
3022 u64 len, struct cmp_pages *cmp)
3023{
3024 int ret;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003025 int num_pages = PAGE_ALIGN(len) >> PAGE_SHIFT;
Mark Fashehf4414602015-06-30 14:42:05 -07003026 struct page **src_pgarr, **dst_pgarr;
3027
3028 /*
3029 * We must gather up all the pages before we initiate our
3030 * extent locking. We use an array for the page pointers. Size
3031 * of the array is bounded by len, which is in turn bounded by
3032 * BTRFS_MAX_DEDUPE_LEN.
3033 */
David Sterba66722f72016-02-11 15:01:38 +01003034 src_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
3035 dst_pgarr = kcalloc(num_pages, sizeof(struct page *), GFP_KERNEL);
Mark Fashehf4414602015-06-30 14:42:05 -07003036 if (!src_pgarr || !dst_pgarr) {
3037 kfree(src_pgarr);
3038 kfree(dst_pgarr);
3039 return -ENOMEM;
3040 }
3041 cmp->num_pages = num_pages;
3042 cmp->src_pages = src_pgarr;
3043 cmp->dst_pages = dst_pgarr;
3044
3045 ret = gather_extent_pages(src, cmp->src_pages, cmp->num_pages, loff);
3046 if (ret)
3047 goto out;
3048
3049 ret = gather_extent_pages(dst, cmp->dst_pages, cmp->num_pages, dst_loff);
3050
3051out:
3052 if (ret)
3053 btrfs_cmp_data_free(cmp);
3054 return 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003055}
3056
3057static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
Mark Fashehf4414602015-06-30 14:42:05 -07003058 u64 dst_loff, u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003059{
3060 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07003061 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07003062 struct page *src_page, *dst_page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003063 unsigned int cmp_len = PAGE_SIZE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003064 void *addr, *dst_addr;
3065
Mark Fashehf4414602015-06-30 14:42:05 -07003066 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003067 while (len) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003068 if (len < PAGE_SIZE)
Mark Fasheh416161d2013-08-06 11:42:51 -07003069 cmp_len = len;
3070
Mark Fashehf4414602015-06-30 14:42:05 -07003071 BUG_ON(i >= cmp->num_pages);
3072
3073 src_page = cmp->src_pages[i];
3074 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003075 ASSERT(PageLocked(src_page));
3076 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07003077
Mark Fasheh416161d2013-08-06 11:42:51 -07003078 addr = kmap_atomic(src_page);
3079 dst_addr = kmap_atomic(dst_page);
3080
3081 flush_dcache_page(src_page);
3082 flush_dcache_page(dst_page);
3083
3084 if (memcmp(addr, dst_addr, cmp_len))
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003085 ret = -EBADE;
Mark Fasheh416161d2013-08-06 11:42:51 -07003086
3087 kunmap_atomic(addr);
3088 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07003089
3090 if (ret)
3091 break;
3092
Mark Fasheh416161d2013-08-06 11:42:51 -07003093 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07003094 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07003095 }
3096
3097 return ret;
3098}
3099
Mark Fashehe1d227a2015-06-08 15:05:25 -07003100static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
3101 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07003102{
Mark Fashehe1d227a2015-06-08 15:05:25 -07003103 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003104 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
3105
Mark Fashehe1d227a2015-06-08 15:05:25 -07003106 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07003107 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003108
3109 /* if we extend to eof, continue to block boundary */
3110 if (off + len == inode->i_size)
3111 *plen = len = ALIGN(inode->i_size, bs) - off;
3112
Mark Fasheh416161d2013-08-06 11:42:51 -07003113 /* Check that we are block aligned - btrfs_clone() requires this */
3114 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
3115 return -EINVAL;
3116
3117 return 0;
3118}
3119
Mark Fashehe1d227a2015-06-08 15:05:25 -07003120static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07003121 struct inode *dst, u64 dst_loff)
3122{
3123 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003124 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07003125 struct cmp_pages cmp;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003126 int same_inode = 0;
3127 u64 same_lock_start = 0;
3128 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003129
Mark Fasheh416161d2013-08-06 11:42:51 -07003130 if (src == dst)
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003131 same_inode = 1;
Mark Fasheh416161d2013-08-06 11:42:51 -07003132
Filipe Manana113e8282015-03-30 18:26:47 +01003133 if (len == 0)
3134 return 0;
3135
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003136 if (same_inode) {
Al Viro59551022016-01-22 15:40:57 -05003137 inode_lock(src);
Mark Fasheh416161d2013-08-06 11:42:51 -07003138
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003139 ret = extent_same_check_offsets(src, loff, &len, olen);
3140 if (ret)
3141 goto out_unlock;
Filipe Mananaf4dfe682016-02-12 14:44:00 +00003142 ret = extent_same_check_offsets(src, dst_loff, &len, olen);
3143 if (ret)
3144 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07003145
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003146 /*
3147 * Single inode case wants the same checks, except we
3148 * don't want our length pushed out past i_size as
3149 * comparing that data range makes no sense.
3150 *
3151 * extent_same_check_offsets() will do this for an
3152 * unaligned length at i_size, so catch it here and
3153 * reject the request.
3154 *
3155 * This effectively means we require aligned extents
3156 * for the single-inode case, whereas the other cases
3157 * allow an unaligned length so long as it ends at
3158 * i_size.
3159 */
3160 if (len != olen) {
3161 ret = -EINVAL;
3162 goto out_unlock;
3163 }
3164
3165 /* Check for overlapping ranges */
3166 if (dst_loff + len > loff && dst_loff < loff + len) {
3167 ret = -EINVAL;
3168 goto out_unlock;
3169 }
3170
3171 same_lock_start = min_t(u64, loff, dst_loff);
3172 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
3173 } else {
3174 btrfs_double_inode_lock(src, dst);
3175
3176 ret = extent_same_check_offsets(src, loff, &len, olen);
3177 if (ret)
3178 goto out_unlock;
3179
3180 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3181 if (ret)
3182 goto out_unlock;
3183 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003184
3185 /* don't make the dst file partly checksummed */
3186 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3187 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3188 ret = -EINVAL;
3189 goto out_unlock;
3190 }
3191
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003192again:
Mark Fashehf4414602015-06-30 14:42:05 -07003193 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3194 if (ret)
3195 goto out_unlock;
3196
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003197 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003198 ret = lock_extent_range(src, same_lock_start, same_lock_len,
3199 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003200 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003201 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
3202 false);
3203 /*
3204 * If one of the inodes has dirty pages in the respective range or
3205 * ordered extents, we need to flush dellaloc and wait for all ordered
3206 * extents in the range. We must unlock the pages and the ranges in the
3207 * io trees to avoid deadlocks when flushing delalloc (requires locking
3208 * pages) and when waiting for ordered extents to complete (they require
3209 * range locking).
3210 */
3211 if (ret == -EAGAIN) {
3212 /*
3213 * Ranges in the io trees already unlocked. Now unlock all
3214 * pages before waiting for all IO to complete.
3215 */
3216 btrfs_cmp_data_free(&cmp);
3217 if (same_inode) {
3218 btrfs_wait_ordered_range(src, same_lock_start,
3219 same_lock_len);
3220 } else {
3221 btrfs_wait_ordered_range(src, loff, len);
3222 btrfs_wait_ordered_range(dst, dst_loff, len);
3223 }
3224 goto again;
3225 }
3226 ASSERT(ret == 0);
3227 if (WARN_ON(ret)) {
3228 /* ranges in the io trees already unlocked */
3229 btrfs_cmp_data_free(&cmp);
3230 return ret;
3231 }
Mark Fashehf4414602015-06-30 14:42:05 -07003232
Mark Fasheh207910d2015-06-30 14:42:04 -07003233 /* pass original length for comparison so we stay within i_size */
Mark Fashehf4414602015-06-30 14:42:05 -07003234 ret = btrfs_cmp_data(src, loff, dst, dst_loff, olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003235 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003236 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003237
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003238 if (same_inode)
3239 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3240 same_lock_start + same_lock_len - 1);
3241 else
3242 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003243
3244 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003245out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003246 if (same_inode)
Al Viro59551022016-01-22 15:40:57 -05003247 inode_unlock(src);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003248 else
3249 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003250
3251 return ret;
3252}
3253
Byongho Leeee221842015-12-15 01:42:10 +09003254#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003255
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003256ssize_t btrfs_dedupe_file_range(struct file *src_file, u64 loff, u64 olen,
3257 struct file *dst_file, u64 dst_loff)
Mark Fasheh416161d2013-08-06 11:42:51 -07003258{
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003259 struct inode *src = file_inode(src_file);
3260 struct inode *dst = file_inode(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003261 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003262 ssize_t res;
Mark Fasheh416161d2013-08-06 11:42:51 -07003263
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003264 if (olen > BTRFS_MAX_DEDUPE_LEN)
3265 olen = BTRFS_MAX_DEDUPE_LEN;
Mark Fasheh416161d2013-08-06 11:42:51 -07003266
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003267 if (WARN_ON_ONCE(bs < PAGE_SIZE)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003268 /*
3269 * Btrfs does not support blocksize < page_size. As a
3270 * result, btrfs_cmp_data() won't correctly handle
3271 * this situation without an update.
3272 */
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003273 return -EINVAL;
Mark Fasheh416161d2013-08-06 11:42:51 -07003274 }
3275
Darrick J. Wong2b3909f2015-12-19 00:56:05 -08003276 res = btrfs_extent_same(src, loff, olen, dst, dst_loff);
3277 if (res)
3278 return res;
3279 return olen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003280}
3281
Filipe Mananaf82a9902014-06-01 01:50:28 +01003282static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3283 struct inode *inode,
3284 u64 endoff,
3285 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003286 const u64 olen,
3287 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003288{
3289 struct btrfs_root *root = BTRFS_I(inode)->root;
3290 int ret;
3291
3292 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003293 if (!no_time_update)
Deepa Dinamanic2050a42016-09-14 07:48:06 -07003294 inode->i_mtime = inode->i_ctime = current_time(inode);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003295 /*
3296 * We round up to the block size at eof when determining which
3297 * extents to clone above, but shouldn't round up the file size.
3298 */
3299 if (endoff > destoff + olen)
3300 endoff = destoff + olen;
3301 if (endoff > inode->i_size)
3302 btrfs_i_size_write(inode, endoff);
3303
3304 ret = btrfs_update_inode(trans, root, inode);
3305 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003306 btrfs_abort_transaction(trans, ret);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003307 btrfs_end_transaction(trans, root);
3308 goto out;
3309 }
3310 ret = btrfs_end_transaction(trans, root);
3311out:
3312 return ret;
3313}
3314
Filipe Manana7ffbb592014-06-09 03:48:05 +01003315static void clone_update_extent_map(struct inode *inode,
3316 const struct btrfs_trans_handle *trans,
3317 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003318 const u64 hole_offset,
3319 const u64 hole_len)
3320{
3321 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3322 struct extent_map *em;
3323 int ret;
3324
3325 em = alloc_extent_map();
3326 if (!em) {
3327 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3328 &BTRFS_I(inode)->runtime_flags);
3329 return;
3330 }
3331
Filipe Manana14f59792014-06-29 21:45:40 +01003332 if (path) {
3333 struct btrfs_file_extent_item *fi;
3334
3335 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3336 struct btrfs_file_extent_item);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003337 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3338 em->generation = -1;
3339 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3340 BTRFS_FILE_EXTENT_INLINE)
3341 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3342 &BTRFS_I(inode)->runtime_flags);
3343 } else {
3344 em->start = hole_offset;
3345 em->len = hole_len;
3346 em->ram_bytes = em->len;
3347 em->orig_start = hole_offset;
3348 em->block_start = EXTENT_MAP_HOLE;
3349 em->block_len = 0;
3350 em->orig_block_len = 0;
3351 em->compress_type = BTRFS_COMPRESS_NONE;
3352 em->generation = trans->transid;
3353 }
3354
3355 while (1) {
3356 write_lock(&em_tree->lock);
3357 ret = add_extent_mapping(em_tree, em, 1);
3358 write_unlock(&em_tree->lock);
3359 if (ret != -EEXIST) {
3360 free_extent_map(em);
3361 break;
3362 }
3363 btrfs_drop_extent_cache(inode, em->start,
3364 em->start + em->len - 1, 0);
3365 }
3366
David Sterbaee39b432014-09-30 01:33:33 +02003367 if (ret)
Filipe Manana7ffbb592014-06-09 03:48:05 +01003368 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3369 &BTRFS_I(inode)->runtime_flags);
3370}
3371
Filipe Manana8039d872015-10-13 15:15:00 +01003372/*
3373 * Make sure we do not end up inserting an inline extent into a file that has
3374 * already other (non-inline) extents. If a file has an inline extent it can
3375 * not have any other extents and the (single) inline extent must start at the
3376 * file offset 0. Failing to respect these rules will lead to file corruption,
3377 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3378 *
3379 * We can have extents that have been already written to disk or we can have
3380 * dirty ranges still in delalloc, in which case the extent maps and items are
3381 * created only when we run delalloc, and the delalloc ranges might fall outside
3382 * the range we are currently locking in the inode's io tree. So we check the
3383 * inode's i_size because of that (i_size updates are done while holding the
3384 * i_mutex, which we are holding here).
3385 * We also check to see if the inode has a size not greater than "datal" but has
3386 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3387 * protected against such concurrent fallocate calls by the i_mutex).
3388 *
3389 * If the file has no extents but a size greater than datal, do not allow the
3390 * copy because we would need turn the inline extent into a non-inline one (even
3391 * with NO_HOLES enabled). If we find our destination inode only has one inline
3392 * extent, just overwrite it with the source inline extent if its size is less
3393 * than the source extent's size, or we could copy the source inline extent's
3394 * data into the destination inode's inline extent if the later is greater then
3395 * the former.
3396 */
3397static int clone_copy_inline_extent(struct inode *src,
3398 struct inode *dst,
3399 struct btrfs_trans_handle *trans,
3400 struct btrfs_path *path,
3401 struct btrfs_key *new_key,
3402 const u64 drop_start,
3403 const u64 datal,
3404 const u64 skip,
3405 const u64 size,
3406 char *inline_data)
3407{
3408 struct btrfs_root *root = BTRFS_I(dst)->root;
3409 const u64 aligned_end = ALIGN(new_key->offset + datal,
3410 root->sectorsize);
3411 int ret;
3412 struct btrfs_key key;
3413
3414 if (new_key->offset > 0)
3415 return -EOPNOTSUPP;
3416
3417 key.objectid = btrfs_ino(dst);
3418 key.type = BTRFS_EXTENT_DATA_KEY;
3419 key.offset = 0;
3420 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3421 if (ret < 0) {
3422 return ret;
3423 } else if (ret > 0) {
3424 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3425 ret = btrfs_next_leaf(root, path);
3426 if (ret < 0)
3427 return ret;
3428 else if (ret > 0)
3429 goto copy_inline_extent;
3430 }
3431 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
3432 if (key.objectid == btrfs_ino(dst) &&
3433 key.type == BTRFS_EXTENT_DATA_KEY) {
3434 ASSERT(key.offset > 0);
3435 return -EOPNOTSUPP;
3436 }
3437 } else if (i_size_read(dst) <= datal) {
3438 struct btrfs_file_extent_item *ei;
3439 u64 ext_len;
3440
3441 /*
3442 * If the file size is <= datal, make sure there are no other
3443 * extents following (can happen do to an fallocate call with
3444 * the flag FALLOC_FL_KEEP_SIZE).
3445 */
3446 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3447 struct btrfs_file_extent_item);
3448 /*
3449 * If it's an inline extent, it can not have other extents
3450 * following it.
3451 */
3452 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3453 BTRFS_FILE_EXTENT_INLINE)
3454 goto copy_inline_extent;
3455
3456 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3457 if (ext_len > aligned_end)
3458 return -EOPNOTSUPP;
3459
3460 ret = btrfs_next_item(root, path);
3461 if (ret < 0) {
3462 return ret;
3463 } else if (ret == 0) {
3464 btrfs_item_key_to_cpu(path->nodes[0], &key,
3465 path->slots[0]);
3466 if (key.objectid == btrfs_ino(dst) &&
3467 key.type == BTRFS_EXTENT_DATA_KEY)
3468 return -EOPNOTSUPP;
3469 }
3470 }
3471
3472copy_inline_extent:
3473 /*
3474 * We have no extent items, or we have an extent at offset 0 which may
3475 * or may not be inlined. All these cases are dealt the same way.
3476 */
3477 if (i_size_read(dst) > datal) {
3478 /*
3479 * If the destination inode has an inline extent...
3480 * This would require copying the data from the source inline
3481 * extent into the beginning of the destination's inline extent.
3482 * But this is really complex, both extents can be compressed
3483 * or just one of them, which would require decompressing and
3484 * re-compressing data (which could increase the new compressed
3485 * size, not allowing the compressed data to fit anymore in an
3486 * inline extent).
3487 * So just don't support this case for now (it should be rare,
3488 * we are not really saving space when cloning inline extents).
3489 */
3490 return -EOPNOTSUPP;
3491 }
3492
3493 btrfs_release_path(path);
3494 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3495 if (ret)
3496 return ret;
3497 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3498 if (ret)
3499 return ret;
3500
3501 if (skip) {
3502 const u32 start = btrfs_file_extent_calc_inline_size(0);
3503
3504 memmove(inline_data + start, inline_data + start + skip, datal);
3505 }
3506
3507 write_extent_buffer(path->nodes[0], inline_data,
3508 btrfs_item_ptr_offset(path->nodes[0],
3509 path->slots[0]),
3510 size);
3511 inode_add_bytes(dst, datal);
3512
3513 return 0;
3514}
3515
Mark Fasheh32b7c682013-08-06 11:42:49 -07003516/**
3517 * btrfs_clone() - clone a range from inode file to another
3518 *
3519 * @src: Inode to clone from
3520 * @inode: Inode to clone to
3521 * @off: Offset within source to start clone from
3522 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003523 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003524 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003525 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003526 */
3527static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003528 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003529 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003530{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003531 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003532 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003533 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003534 struct btrfs_trans_handle *trans;
3535 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003536 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003537 u32 nritems;
3538 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003539 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003540 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003541 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003542
3543 ret = -ENOMEM;
David Sterba15351952016-04-11 18:40:08 +02003544 buf = kmalloc(root->nodesize, GFP_KERNEL | __GFP_NOWARN);
3545 if (!buf) {
3546 buf = vmalloc(root->nodesize);
3547 if (!buf)
3548 return ret;
3549 }
Yan Zhengae01a0a2008-08-04 23:23:47 -04003550
3551 path = btrfs_alloc_path();
3552 if (!path) {
David Sterba15351952016-04-11 18:40:08 +02003553 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003554 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003555 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003556
David Sterbae4058b52015-11-27 16:31:35 +01003557 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003558 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003559 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003560 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003561 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003562
3563 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003564 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003565
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003566 /*
3567 * note the key will change type as we walk through the
3568 * tree.
3569 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003570 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003571 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3572 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003573 if (ret < 0)
3574 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003575 /*
3576 * First search, if no extent item that starts at offset off was
3577 * found but the previous item is an extent item, it's possible
3578 * it might overlap our target range, therefore process it.
3579 */
3580 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3581 btrfs_item_key_to_cpu(path->nodes[0], &key,
3582 path->slots[0] - 1);
3583 if (key.type == BTRFS_EXTENT_DATA_KEY)
3584 path->slots[0]--;
3585 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003586
Yan Zhengae01a0a2008-08-04 23:23:47 -04003587 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003588process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003589 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003590 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003591 if (ret < 0)
3592 goto out;
3593 if (ret > 0)
3594 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003595 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003596 }
3597 leaf = path->nodes[0];
3598 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003599
Yan Zhengae01a0a2008-08-04 23:23:47 -04003600 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003601 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003602 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003603 break;
3604
David Sterba962a2982014-06-04 18:41:45 +02003605 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003606 struct btrfs_file_extent_item *extent;
3607 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003608 u32 size;
3609 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003610 u64 disko = 0, diskl = 0;
3611 u64 datao = 0, datal = 0;
3612 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003613 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003614
Sage Weilc5c9cd42008-11-12 14:32:25 -05003615 extent = btrfs_item_ptr(leaf, slot,
3616 struct btrfs_file_extent_item);
3617 comp = btrfs_file_extent_compression(leaf, extent);
3618 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003619 if (type == BTRFS_FILE_EXTENT_REG ||
3620 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003621 disko = btrfs_file_extent_disk_bytenr(leaf,
3622 extent);
3623 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3624 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003625 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003626 datal = btrfs_file_extent_num_bytes(leaf,
3627 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003628 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3629 /* take upper bound, may be compressed */
3630 datal = btrfs_file_extent_ram_bytes(leaf,
3631 extent);
3632 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003633
Filipe Manana2c463822014-05-31 02:31:05 +01003634 /*
3635 * The first search might have left us at an extent
3636 * item that ends before our target range's start, can
3637 * happen if we have holes and NO_HOLES feature enabled.
3638 */
3639 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003640 path->slots[0]++;
3641 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003642 } else if (key.offset >= off + len) {
3643 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003644 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003645 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003646 size = btrfs_item_size_nr(leaf, slot);
3647 read_extent_buffer(leaf, buf,
3648 btrfs_item_ptr_offset(leaf, slot),
3649 size);
3650
3651 btrfs_release_path(path);
3652 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003653
Zheng Yan31840ae2008-09-23 13:14:14 -04003654 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003655 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003656 if (off <= key.offset)
3657 new_key.offset = key.offset + destoff - off;
3658 else
3659 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003660
Sage Weilb6f34092011-09-20 14:48:51 -04003661 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003662 * Deal with a hole that doesn't have an extent item
3663 * that represents it (NO_HOLES feature enabled).
3664 * This hole is either in the middle of the cloning
3665 * range or at the beginning (fully overlaps it or
3666 * partially overlaps it).
3667 */
3668 if (new_key.offset != last_dest_end)
3669 drop_start = last_dest_end;
3670 else
3671 drop_start = new_key.offset;
3672
3673 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003674 * 1 - adjusting old extent (we may have to split it)
3675 * 1 - add new extent
3676 * 1 - inode update
3677 */
3678 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003679 if (IS_ERR(trans)) {
3680 ret = PTR_ERR(trans);
3681 goto out;
3682 }
3683
Chris Masonc8a894d2009-06-27 21:07:03 -04003684 if (type == BTRFS_FILE_EXTENT_REG ||
3685 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003686 /*
3687 * a | --- range to clone ---| b
3688 * | ------------- extent ------------- |
3689 */
3690
Antonio Ospite93915582014-06-04 14:03:48 +02003691 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003692 if (key.offset + datal > off + len)
3693 datal = off + len - key.offset;
3694
Antonio Ospite93915582014-06-04 14:03:48 +02003695 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003696 if (off > key.offset) {
3697 datao += off - key.offset;
3698 datal -= off - key.offset;
3699 }
3700
Josef Bacik5dc562c2012-08-17 13:14:17 -04003701 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003702 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003703 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003704 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003705 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003706 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003707 btrfs_abort_transaction(trans,
Jeff Mahoney66642832016-06-10 18:19:25 -04003708 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003709 btrfs_end_transaction(trans, root);
3710 goto out;
3711 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003712
Sage Weilc5c9cd42008-11-12 14:32:25 -05003713 ret = btrfs_insert_empty_item(trans, root, path,
3714 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003715 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003716 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003717 btrfs_end_transaction(trans, root);
3718 goto out;
3719 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003720
3721 leaf = path->nodes[0];
3722 slot = path->slots[0];
3723 write_extent_buffer(leaf, buf,
3724 btrfs_item_ptr_offset(leaf, slot),
3725 size);
3726
3727 extent = btrfs_item_ptr(leaf, slot,
3728 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003729
Sage Weilc5c9cd42008-11-12 14:32:25 -05003730 /* disko == 0 means it's a hole */
3731 if (!disko)
3732 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003733
3734 btrfs_set_file_extent_offset(leaf, extent,
3735 datao);
3736 btrfs_set_file_extent_num_bytes(leaf, extent,
3737 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003738
Sage Weilc5c9cd42008-11-12 14:32:25 -05003739 if (disko) {
3740 inode_add_bytes(inode, datal);
3741 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003742 disko, diskl, 0,
3743 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003744 btrfs_ino(inode),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003745 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003746 if (ret) {
3747 btrfs_abort_transaction(trans,
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003748 ret);
3749 btrfs_end_transaction(trans,
3750 root);
3751 goto out;
3752
3753 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003754 }
3755 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3756 u64 skip = 0;
3757 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003758
Sage Weilc5c9cd42008-11-12 14:32:25 -05003759 if (off > key.offset) {
3760 skip = off - key.offset;
3761 new_key.offset += skip;
3762 }
Chris Masond3977122009-01-05 21:25:51 -05003763
Liu Boaa42ffd2012-09-18 03:52:23 -06003764 if (key.offset + datal > off + len)
3765 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003766
Sage Weilc5c9cd42008-11-12 14:32:25 -05003767 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003768 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003769 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003770 goto out;
3771 }
3772 size -= skip + trim;
3773 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003774
Filipe Manana8039d872015-10-13 15:15:00 +01003775 ret = clone_copy_inline_extent(src, inode,
3776 trans, path,
3777 &new_key,
3778 drop_start,
3779 datal,
3780 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003781 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003782 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003783 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003784 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003785 btrfs_end_transaction(trans, root);
3786 goto out;
3787 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003788 leaf = path->nodes[0];
3789 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003790 }
3791
Filipe Manana7ffbb592014-06-09 03:48:05 +01003792 /* If we have an implicit hole (NO_HOLES feature). */
3793 if (drop_start < new_key.offset)
3794 clone_update_extent_map(inode, trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003795 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003796 new_key.offset - drop_start);
3797
Filipe Manana14f59792014-06-29 21:45:40 +01003798 clone_update_extent_map(inode, trans, path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003799
Sage Weilc5c9cd42008-11-12 14:32:25 -05003800 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003801 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003802
Filipe Manana62e23902014-08-08 02:47:06 +01003803 last_dest_end = ALIGN(new_key.offset + datal,
3804 root->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003805 ret = clone_finish_inode_update(trans, inode,
3806 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003807 destoff, olen,
3808 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003809 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003810 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003811 if (new_key.offset + datal >= destoff + len)
3812 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003813 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003814 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003815 key.offset = next_key_min_offset;
Wang Xiaoguang69ae5e42016-10-13 09:23:39 +08003816
3817 if (fatal_signal_pending(current)) {
3818 ret = -EINTR;
3819 goto out;
3820 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003821 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003822 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003823
Filipe Mananaf82a9902014-06-01 01:50:28 +01003824 if (last_dest_end < destoff + len) {
3825 /*
3826 * We have an implicit hole (NO_HOLES feature is enabled) that
3827 * fully or partially overlaps our cloning range at its end.
3828 */
3829 btrfs_release_path(path);
3830
3831 /*
3832 * 1 - remove extent(s)
3833 * 1 - inode update
3834 */
3835 trans = btrfs_start_transaction(root, 2);
3836 if (IS_ERR(trans)) {
3837 ret = PTR_ERR(trans);
3838 goto out;
3839 }
3840 ret = btrfs_drop_extents(trans, root, inode,
3841 last_dest_end, destoff + len, 1);
3842 if (ret) {
3843 if (ret != -EOPNOTSUPP)
Jeff Mahoney66642832016-06-10 18:19:25 -04003844 btrfs_abort_transaction(trans, ret);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003845 btrfs_end_transaction(trans, root);
3846 goto out;
3847 }
Filipe Manana14f59792014-06-29 21:45:40 +01003848 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3849 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003850 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003851 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003852 }
3853
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003854out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003855 btrfs_free_path(path);
David Sterba15351952016-04-11 18:40:08 +02003856 kvfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003857 return ret;
3858}
3859
Zach Brown3db11b22015-11-10 16:53:32 -05003860static noinline int btrfs_clone_files(struct file *file, struct file *file_src,
3861 u64 off, u64 olen, u64 destoff)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003862{
Al Viro54563d42013-09-01 15:57:51 -04003863 struct inode *inode = file_inode(file);
Zach Brown3db11b22015-11-10 16:53:32 -05003864 struct inode *src = file_inode(file_src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003865 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003866 int ret;
3867 u64 len = olen;
3868 u64 bs = root->fs_info->sb->s_blocksize;
Zach Brown3db11b22015-11-10 16:53:32 -05003869 int same_inode = src == inode;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003870
3871 /*
3872 * TODO:
3873 * - split compressed inline extents. annoying: we need to
3874 * decompress into destination's address_space (the file offset
3875 * may change, so source mapping won't do), then recompress (or
3876 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003877 *
3878 * - split destination inode's inline extents. The inline extents can
3879 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003880 */
3881
Mark Fasheh32b7c682013-08-06 11:42:49 -07003882 if (btrfs_root_readonly(root))
3883 return -EROFS;
3884
Zach Brown3db11b22015-11-10 16:53:32 -05003885 if (file_src->f_path.mnt != file->f_path.mnt ||
3886 src->i_sb != inode->i_sb)
3887 return -EXDEV;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003888
3889 /* don't make the dst file partly checksummed */
3890 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3891 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
Zach Brown3db11b22015-11-10 16:53:32 -05003892 return -EINVAL;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003893
Mark Fasheh32b7c682013-08-06 11:42:49 -07003894 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
Zach Brown3db11b22015-11-10 16:53:32 -05003895 return -EISDIR;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003896
3897 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003898 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003899 } else {
Al Viro59551022016-01-22 15:40:57 -05003900 inode_lock(src);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003901 }
3902
3903 /* determine range to clone */
3904 ret = -EINVAL;
3905 if (off + len > src->i_size || off + len < off)
3906 goto out_unlock;
3907 if (len == 0)
3908 olen = len = src->i_size - off;
3909 /* if we extend to eof, continue to block boundary */
3910 if (off + len == src->i_size)
3911 len = ALIGN(src->i_size, bs) - off;
3912
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003913 if (len == 0) {
3914 ret = 0;
3915 goto out_unlock;
3916 }
3917
Mark Fasheh32b7c682013-08-06 11:42:49 -07003918 /* verify the end result is block aligned */
3919 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3920 !IS_ALIGNED(destoff, bs))
3921 goto out_unlock;
3922
3923 /* verify if ranges are overlapped within the same file */
3924 if (same_inode) {
3925 if (destoff + len > off && destoff < off + len)
3926 goto out_unlock;
3927 }
3928
3929 if (destoff > inode->i_size) {
3930 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3931 if (ret)
3932 goto out_unlock;
3933 }
3934
Filipe Mananac125b8b2014-05-23 05:03:34 +01003935 /*
3936 * Lock the target range too. Right after we replace the file extent
3937 * items in the fs tree (which now point to the cloned data), we might
3938 * have a worker replace them with extent items relative to a write
3939 * operation that was issued before this clone operation (i.e. confront
3940 * with inode.c:btrfs_finish_ordered_io).
3941 */
3942 if (same_inode) {
3943 u64 lock_start = min_t(u64, off, destoff);
3944 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003945
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003946 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003947 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003948 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3949 true);
3950 }
3951 ASSERT(ret == 0);
3952 if (WARN_ON(ret)) {
3953 /* ranges in the io trees already unlocked */
3954 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003955 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003956
Mark Fasheh1c919a52015-06-30 14:42:08 -07003957 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003958
Filipe Mananac125b8b2014-05-23 05:03:34 +01003959 if (same_inode) {
3960 u64 lock_start = min_t(u64, off, destoff);
3961 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3962
3963 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3964 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003965 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003966 }
3967 /*
3968 * Truncate page cache pages so that future reads will see the cloned
3969 * data immediately and not the previous data.
3970 */
Chandan Rajendra65bfa652016-01-21 15:56:04 +05303971 truncate_inode_pages_range(&inode->i_data,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003972 round_down(destoff, PAGE_SIZE),
3973 round_up(destoff + len, PAGE_SIZE) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003974out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003975 if (!same_inode)
3976 btrfs_double_inode_unlock(src, inode);
3977 else
Al Viro59551022016-01-22 15:40:57 -05003978 inode_unlock(src);
Zach Brown3db11b22015-11-10 16:53:32 -05003979 return ret;
3980}
3981
3982ssize_t btrfs_copy_file_range(struct file *file_in, loff_t pos_in,
3983 struct file *file_out, loff_t pos_out,
3984 size_t len, unsigned int flags)
3985{
3986 ssize_t ret;
3987
3988 ret = btrfs_clone_files(file_out, file_in, pos_in, len, pos_out);
3989 if (ret == 0)
3990 ret = len;
3991 return ret;
3992}
3993
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003994int btrfs_clone_file_range(struct file *src_file, loff_t off,
3995 struct file *dst_file, loff_t destoff, u64 len)
Zach Brown3db11b22015-11-10 16:53:32 -05003996{
Christoph Hellwig04b38d62015-12-03 12:59:50 +01003997 return btrfs_clone_files(dst_file, src_file, off, len, destoff);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003998}
3999
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004000/*
4001 * there are many ways the trans_start and trans_end ioctls can lead
4002 * to deadlocks. They should only be used by applications that
4003 * basically own the machine, and have a very in depth understanding
4004 * of all the possible deadlocks and enospc problems.
4005 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05004006static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004007{
Al Viro496ad9a2013-01-23 17:07:38 -05004008 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004009 struct btrfs_root *root = BTRFS_I(inode)->root;
4010 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004011 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004012
Sage Weil1ab86ae2009-09-29 18:38:44 -04004013 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04004014 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004015 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004016
4017 ret = -EINPROGRESS;
4018 if (file->private_data)
4019 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004020
Li Zefanb83cc962010-12-20 16:04:08 +08004021 ret = -EROFS;
4022 if (btrfs_root_readonly(root))
4023 goto out;
4024
Al Viroa561be72011-11-23 11:57:51 -05004025 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05004026 if (ret)
4027 goto out;
4028
Josef Bacika4abeea2011-04-11 17:25:13 -04004029 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004030
Sage Weil1ab86ae2009-09-29 18:38:44 -04004031 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004032 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00004033 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04004034 goto out_drop;
4035
4036 file->private_data = trans;
4037 return 0;
4038
4039out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04004040 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05004041 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004042out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004043 return ret;
4044}
4045
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004046static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
4047{
Al Viro496ad9a2013-01-23 17:07:38 -05004048 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004049 struct btrfs_root *root = BTRFS_I(inode)->root;
4050 struct btrfs_root *new_root;
4051 struct btrfs_dir_item *di;
4052 struct btrfs_trans_handle *trans;
4053 struct btrfs_path *path;
4054 struct btrfs_key location;
4055 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004056 u64 objectid = 0;
4057 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00004058 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004059
4060 if (!capable(CAP_SYS_ADMIN))
4061 return -EPERM;
4062
Miao Xie3c04ce02012-11-26 08:43:07 +00004063 ret = mnt_want_write_file(file);
4064 if (ret)
4065 return ret;
4066
4067 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
4068 ret = -EFAULT;
4069 goto out;
4070 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004071
4072 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05304073 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004074
4075 location.objectid = objectid;
4076 location.type = BTRFS_ROOT_ITEM_KEY;
4077 location.offset = (u64)-1;
4078
4079 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00004080 if (IS_ERR(new_root)) {
4081 ret = PTR_ERR(new_root);
4082 goto out;
4083 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004084
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004085 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00004086 if (!path) {
4087 ret = -ENOMEM;
4088 goto out;
4089 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004090 path->leave_spinning = 1;
4091
4092 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004093 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004094 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00004095 ret = PTR_ERR(trans);
4096 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004097 }
4098
David Sterba6c417612011-04-13 15:41:04 +02004099 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004100 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
4101 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00004102 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004103 btrfs_free_path(path);
4104 btrfs_end_transaction(trans, root);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04004105 btrfs_err(new_root->fs_info,
4106 "Umm, you don't have the default diritem, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00004107 ret = -ENOENT;
4108 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004109 }
4110
4111 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4112 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4113 btrfs_mark_buffer_dirty(path->nodes[0]);
4114 btrfs_free_path(path);
4115
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06004116 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004117 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00004118out:
4119 mnt_drop_write_file(file);
4120 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004121}
4122
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004123void btrfs_get_block_group_info(struct list_head *groups_list,
4124 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004125{
4126 struct btrfs_block_group_cache *block_group;
4127
4128 space->total_bytes = 0;
4129 space->used_bytes = 0;
4130 space->flags = 0;
4131 list_for_each_entry(block_group, groups_list, list) {
4132 space->flags = block_group->flags;
4133 space->total_bytes += block_group->key.offset;
4134 space->used_bytes +=
4135 btrfs_block_group_used(&block_group->item);
4136 }
4137}
4138
Eric Sandeen48a3b632013-04-25 20:41:01 +00004139static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004140{
4141 struct btrfs_ioctl_space_args space_args;
4142 struct btrfs_ioctl_space_info space;
4143 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004144 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004145 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004146 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004147 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
4148 BTRFS_BLOCK_GROUP_SYSTEM,
4149 BTRFS_BLOCK_GROUP_METADATA,
4150 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
4151 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004152 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004153 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004154 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004155 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004156
4157 if (copy_from_user(&space_args,
4158 (struct btrfs_ioctl_space_args __user *)arg,
4159 sizeof(space_args)))
4160 return -EFAULT;
4161
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004162 for (i = 0; i < num_types; i++) {
4163 struct btrfs_space_info *tmp;
4164
4165 info = NULL;
4166 rcu_read_lock();
4167 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4168 list) {
4169 if (tmp->flags == types[i]) {
4170 info = tmp;
4171 break;
4172 }
4173 }
4174 rcu_read_unlock();
4175
4176 if (!info)
4177 continue;
4178
4179 down_read(&info->groups_sem);
4180 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4181 if (!list_empty(&info->block_groups[c]))
4182 slot_count++;
4183 }
4184 up_read(&info->groups_sem);
4185 }
Josef Bacik1406e432010-01-13 18:19:06 +00004186
David Sterba36523e952014-02-07 14:34:12 +01004187 /*
4188 * Global block reserve, exported as a space_info
4189 */
4190 slot_count++;
4191
Chris Mason7fde62b2010-03-16 15:40:10 -04004192 /* space_slots == 0 means they are asking for a count */
4193 if (space_args.space_slots == 0) {
4194 space_args.total_spaces = slot_count;
4195 goto out;
4196 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004197
Dan Rosenberg51788b12011-02-14 16:04:23 -05004198 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004199
Chris Mason7fde62b2010-03-16 15:40:10 -04004200 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004201
Chris Mason7fde62b2010-03-16 15:40:10 -04004202 /* we generally have at most 6 or so space infos, one for each raid
4203 * level. So, a whole page should be more than enough for everyone
4204 */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004205 if (alloc_size > PAGE_SIZE)
Chris Mason7fde62b2010-03-16 15:40:10 -04004206 return -ENOMEM;
4207
4208 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01004209 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04004210 if (!dest)
4211 return -ENOMEM;
4212 dest_orig = dest;
4213
4214 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004215 for (i = 0; i < num_types; i++) {
4216 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004217
Dan Rosenberg51788b12011-02-14 16:04:23 -05004218 if (!slot_count)
4219 break;
4220
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004221 info = NULL;
4222 rcu_read_lock();
4223 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4224 list) {
4225 if (tmp->flags == types[i]) {
4226 info = tmp;
4227 break;
4228 }
4229 }
4230 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004231
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004232 if (!info)
4233 continue;
4234 down_read(&info->groups_sem);
4235 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4236 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004237 btrfs_get_block_group_info(
4238 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004239 memcpy(dest, &space, sizeof(space));
4240 dest++;
4241 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004242 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004243 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004244 if (!slot_count)
4245 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004246 }
4247 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004248 }
Josef Bacik1406e432010-01-13 18:19:06 +00004249
David Sterba36523e952014-02-07 14:34:12 +01004250 /*
4251 * Add global block reserve
4252 */
4253 if (slot_count) {
4254 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
4255
4256 spin_lock(&block_rsv->lock);
4257 space.total_bytes = block_rsv->size;
4258 space.used_bytes = block_rsv->size - block_rsv->reserved;
4259 spin_unlock(&block_rsv->lock);
4260 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4261 memcpy(dest, &space, sizeof(space));
4262 space_args.total_spaces++;
4263 }
4264
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004265 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004266 (arg + sizeof(struct btrfs_ioctl_space_args));
4267
4268 if (copy_to_user(user_dest, dest_orig, alloc_size))
4269 ret = -EFAULT;
4270
4271 kfree(dest_orig);
4272out:
4273 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004274 ret = -EFAULT;
4275
4276 return ret;
4277}
4278
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004279/*
4280 * there are many ways the trans_start and trans_end ioctls can lead
4281 * to deadlocks. They should only be used by applications that
4282 * basically own the machine, and have a very in depth understanding
4283 * of all the possible deadlocks and enospc problems.
4284 */
4285long btrfs_ioctl_trans_end(struct file *file)
4286{
Al Viro496ad9a2013-01-23 17:07:38 -05004287 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004288 struct btrfs_root *root = BTRFS_I(inode)->root;
4289 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004290
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004291 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004292 if (!trans)
4293 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004294 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004295
Sage Weil1ab86ae2009-09-29 18:38:44 -04004296 btrfs_end_transaction(trans, root);
4297
Josef Bacika4abeea2011-04-11 17:25:13 -04004298 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004299
Al Viro2a79f172011-12-09 08:06:57 -05004300 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004301 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004302}
4303
Miao Xie9a8c28b2012-11-26 08:40:43 +00004304static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4305 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004306{
Sage Weil46204592010-10-29 15:41:32 -04004307 struct btrfs_trans_handle *trans;
4308 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004309 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004310
Miao Xied4edf392013-02-20 09:17:06 +00004311 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004312 if (IS_ERR(trans)) {
4313 if (PTR_ERR(trans) != -ENOENT)
4314 return PTR_ERR(trans);
4315
4316 /* No running transaction, don't bother */
4317 transid = root->fs_info->last_trans_committed;
4318 goto out;
4319 }
Sage Weil46204592010-10-29 15:41:32 -04004320 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004321 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004322 if (ret) {
4323 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004324 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004325 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004326out:
Sage Weil46204592010-10-29 15:41:32 -04004327 if (argp)
4328 if (copy_to_user(argp, &transid, sizeof(transid)))
4329 return -EFAULT;
4330 return 0;
4331}
4332
Miao Xie9a8c28b2012-11-26 08:40:43 +00004333static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4334 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004335{
Sage Weil46204592010-10-29 15:41:32 -04004336 u64 transid;
4337
4338 if (argp) {
4339 if (copy_from_user(&transid, argp, sizeof(transid)))
4340 return -EFAULT;
4341 } else {
4342 transid = 0; /* current trans */
4343 }
4344 return btrfs_wait_for_commit(root, transid);
4345}
4346
Miao Xieb8e95482012-11-26 08:48:01 +00004347static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004348{
Al Viro496ad9a2013-01-23 17:07:38 -05004349 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004350 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004351 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004352
4353 if (!capable(CAP_SYS_ADMIN))
4354 return -EPERM;
4355
4356 sa = memdup_user(arg, sizeof(*sa));
4357 if (IS_ERR(sa))
4358 return PTR_ERR(sa);
4359
Miao Xieb8e95482012-11-26 08:48:01 +00004360 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4361 ret = mnt_want_write_file(file);
4362 if (ret)
4363 goto out;
4364 }
4365
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004366 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004367 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4368 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004369
4370 if (copy_to_user(arg, sa, sizeof(*sa)))
4371 ret = -EFAULT;
4372
Miao Xieb8e95482012-11-26 08:48:01 +00004373 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4374 mnt_drop_write_file(file);
4375out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004376 kfree(sa);
4377 return ret;
4378}
4379
4380static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4381{
4382 if (!capable(CAP_SYS_ADMIN))
4383 return -EPERM;
4384
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004385 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004386}
4387
4388static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4389 void __user *arg)
4390{
4391 struct btrfs_ioctl_scrub_args *sa;
4392 int ret;
4393
4394 if (!capable(CAP_SYS_ADMIN))
4395 return -EPERM;
4396
4397 sa = memdup_user(arg, sizeof(*sa));
4398 if (IS_ERR(sa))
4399 return PTR_ERR(sa);
4400
4401 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4402
4403 if (copy_to_user(arg, sa, sizeof(*sa)))
4404 ret = -EFAULT;
4405
4406 kfree(sa);
4407 return ret;
4408}
4409
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004410static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004411 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004412{
4413 struct btrfs_ioctl_get_dev_stats *sa;
4414 int ret;
4415
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004416 sa = memdup_user(arg, sizeof(*sa));
4417 if (IS_ERR(sa))
4418 return PTR_ERR(sa);
4419
David Sterbab27f7c02012-06-22 06:30:39 -06004420 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4421 kfree(sa);
4422 return -EPERM;
4423 }
4424
4425 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004426
4427 if (copy_to_user(arg, sa, sizeof(*sa)))
4428 ret = -EFAULT;
4429
4430 kfree(sa);
4431 return ret;
4432}
4433
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004434static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4435{
4436 struct btrfs_ioctl_dev_replace_args *p;
4437 int ret;
4438
4439 if (!capable(CAP_SYS_ADMIN))
4440 return -EPERM;
4441
4442 p = memdup_user(arg, sizeof(*p));
4443 if (IS_ERR(p))
4444 return PTR_ERR(p);
4445
4446 switch (p->cmd) {
4447 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004448 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4449 ret = -EROFS;
4450 goto out;
4451 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004452 if (atomic_xchg(
4453 &root->fs_info->mutually_exclusive_operation_running,
4454 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004455 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004456 } else {
Anand Jainb5255452016-03-24 18:48:14 +08004457 ret = btrfs_dev_replace_by_ioctl(root, p);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004458 atomic_set(
4459 &root->fs_info->mutually_exclusive_operation_running,
4460 0);
4461 }
4462 break;
4463 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4464 btrfs_dev_replace_status(root->fs_info, p);
4465 ret = 0;
4466 break;
4467 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4468 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4469 break;
4470 default:
4471 ret = -EINVAL;
4472 break;
4473 }
4474
4475 if (copy_to_user(arg, p, sizeof(*p)))
4476 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004477out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004478 kfree(p);
4479 return ret;
4480}
4481
Jan Schmidtd7728c92011-07-07 16:48:38 +02004482static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4483{
4484 int ret = 0;
4485 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004486 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004487 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004488 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004489 struct inode_fs_paths *ipath = NULL;
4490 struct btrfs_path *path;
4491
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004492 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004493 return -EPERM;
4494
4495 path = btrfs_alloc_path();
4496 if (!path) {
4497 ret = -ENOMEM;
4498 goto out;
4499 }
4500
4501 ipa = memdup_user(arg, sizeof(*ipa));
4502 if (IS_ERR(ipa)) {
4503 ret = PTR_ERR(ipa);
4504 ipa = NULL;
4505 goto out;
4506 }
4507
4508 size = min_t(u32, ipa->size, 4096);
4509 ipath = init_ipath(size, root, path);
4510 if (IS_ERR(ipath)) {
4511 ret = PTR_ERR(ipath);
4512 ipath = NULL;
4513 goto out;
4514 }
4515
4516 ret = paths_from_inode(ipa->inum, ipath);
4517 if (ret < 0)
4518 goto out;
4519
4520 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004521 rel_ptr = ipath->fspath->val[i] -
4522 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004523 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004524 }
4525
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004526 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4527 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004528 if (ret) {
4529 ret = -EFAULT;
4530 goto out;
4531 }
4532
4533out:
4534 btrfs_free_path(path);
4535 free_ipath(ipath);
4536 kfree(ipa);
4537
4538 return ret;
4539}
4540
4541static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4542{
4543 struct btrfs_data_container *inodes = ctx;
4544 const size_t c = 3 * sizeof(u64);
4545
4546 if (inodes->bytes_left >= c) {
4547 inodes->bytes_left -= c;
4548 inodes->val[inodes->elem_cnt] = inum;
4549 inodes->val[inodes->elem_cnt + 1] = offset;
4550 inodes->val[inodes->elem_cnt + 2] = root;
4551 inodes->elem_cnt += 3;
4552 } else {
4553 inodes->bytes_missing += c - inodes->bytes_left;
4554 inodes->bytes_left = 0;
4555 inodes->elem_missed += 3;
4556 }
4557
4558 return 0;
4559}
4560
4561static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4562 void __user *arg)
4563{
4564 int ret = 0;
4565 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004566 struct btrfs_ioctl_logical_ino_args *loi;
4567 struct btrfs_data_container *inodes = NULL;
4568 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004569
4570 if (!capable(CAP_SYS_ADMIN))
4571 return -EPERM;
4572
4573 loi = memdup_user(arg, sizeof(*loi));
4574 if (IS_ERR(loi)) {
4575 ret = PTR_ERR(loi);
4576 loi = NULL;
4577 goto out;
4578 }
4579
4580 path = btrfs_alloc_path();
4581 if (!path) {
4582 ret = -ENOMEM;
4583 goto out;
4584 }
4585
Byongho Leeee221842015-12-15 01:42:10 +09004586 size = min_t(u32, loi->size, SZ_64K);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004587 inodes = init_data_container(size);
4588 if (IS_ERR(inodes)) {
4589 ret = PTR_ERR(inodes);
4590 inodes = NULL;
4591 goto out;
4592 }
4593
Liu Bodf031f02012-09-07 20:01:29 -06004594 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4595 build_ino_list, inodes);
4596 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004597 ret = -ENOENT;
4598 if (ret < 0)
4599 goto out;
4600
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004601 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4602 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004603 if (ret)
4604 ret = -EFAULT;
4605
4606out:
4607 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004608 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004609 kfree(loi);
4610
4611 return ret;
4612}
4613
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004614void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004615 struct btrfs_ioctl_balance_args *bargs)
4616{
4617 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4618
4619 bargs->flags = bctl->flags;
4620
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004621 if (atomic_read(&fs_info->balance_running))
4622 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4623 if (atomic_read(&fs_info->balance_pause_req))
4624 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004625 if (atomic_read(&fs_info->balance_cancel_req))
4626 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004627
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004628 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4629 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4630 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004631
4632 if (lock) {
4633 spin_lock(&fs_info->balance_lock);
4634 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4635 spin_unlock(&fs_info->balance_lock);
4636 } else {
4637 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4638 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004639}
4640
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004641static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004642{
Al Viro496ad9a2013-01-23 17:07:38 -05004643 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004644 struct btrfs_fs_info *fs_info = root->fs_info;
4645 struct btrfs_ioctl_balance_args *bargs;
4646 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004647 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004648 int ret;
4649
4650 if (!capable(CAP_SYS_ADMIN))
4651 return -EPERM;
4652
Liu Boe54bfa312012-06-29 03:58:48 -06004653 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004654 if (ret)
4655 return ret;
4656
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004657again:
4658 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4659 mutex_lock(&fs_info->volume_mutex);
4660 mutex_lock(&fs_info->balance_mutex);
4661 need_unlock = true;
4662 goto locked;
4663 }
4664
4665 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04004666 * mut. excl. ops lock is locked. Three possibilities:
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004667 * (1) some other op is running
4668 * (2) balance is running
4669 * (3) balance is paused -- special case (think resume)
4670 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004671 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004672 if (fs_info->balance_ctl) {
4673 /* this is either (2) or (3) */
4674 if (!atomic_read(&fs_info->balance_running)) {
4675 mutex_unlock(&fs_info->balance_mutex);
4676 if (!mutex_trylock(&fs_info->volume_mutex))
4677 goto again;
4678 mutex_lock(&fs_info->balance_mutex);
4679
4680 if (fs_info->balance_ctl &&
4681 !atomic_read(&fs_info->balance_running)) {
4682 /* this is (3) */
4683 need_unlock = false;
4684 goto locked;
4685 }
4686
4687 mutex_unlock(&fs_info->balance_mutex);
4688 mutex_unlock(&fs_info->volume_mutex);
4689 goto again;
4690 } else {
4691 /* this is (2) */
4692 mutex_unlock(&fs_info->balance_mutex);
4693 ret = -EINPROGRESS;
4694 goto out;
4695 }
4696 } else {
4697 /* this is (1) */
4698 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004699 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004700 goto out;
4701 }
4702
4703locked:
4704 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004705
4706 if (arg) {
4707 bargs = memdup_user(arg, sizeof(*bargs));
4708 if (IS_ERR(bargs)) {
4709 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004710 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004711 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004712
4713 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4714 if (!fs_info->balance_ctl) {
4715 ret = -ENOTCONN;
4716 goto out_bargs;
4717 }
4718
4719 bctl = fs_info->balance_ctl;
4720 spin_lock(&fs_info->balance_lock);
4721 bctl->flags |= BTRFS_BALANCE_RESUME;
4722 spin_unlock(&fs_info->balance_lock);
4723
4724 goto do_balance;
4725 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004726 } else {
4727 bargs = NULL;
4728 }
4729
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004730 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004731 ret = -EINPROGRESS;
4732 goto out_bargs;
4733 }
4734
David Sterba8d2db782015-11-04 15:38:29 +01004735 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004736 if (!bctl) {
4737 ret = -ENOMEM;
4738 goto out_bargs;
4739 }
4740
4741 bctl->fs_info = fs_info;
4742 if (arg) {
4743 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4744 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4745 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4746
4747 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004748 } else {
4749 /* balance everything - no filters */
4750 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004751 }
4752
David Sterba8eb93452015-10-12 16:55:54 +02004753 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4754 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004755 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004756 }
4757
Ilya Dryomovde322262012-01-16 22:04:49 +02004758do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004759 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004760 * Ownership of bctl and mutually_exclusive_operation_running
4761 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4762 * or, if restriper was paused all the way until unmount, in
4763 * free_fs_info. mutually_exclusive_operation_running is
4764 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004765 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004766 need_unlock = false;
4767
4768 ret = btrfs_balance(bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004769 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004770
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004771 if (arg) {
4772 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4773 ret = -EFAULT;
4774 }
4775
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004776out_bctl:
4777 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004778out_bargs:
4779 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004780out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004781 mutex_unlock(&fs_info->balance_mutex);
4782 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004783 if (need_unlock)
4784 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4785out:
Liu Boe54bfa312012-06-29 03:58:48 -06004786 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004787 return ret;
4788}
4789
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004790static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4791{
4792 if (!capable(CAP_SYS_ADMIN))
4793 return -EPERM;
4794
4795 switch (cmd) {
4796 case BTRFS_BALANCE_CTL_PAUSE:
4797 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004798 case BTRFS_BALANCE_CTL_CANCEL:
4799 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004800 }
4801
4802 return -EINVAL;
4803}
4804
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004805static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4806 void __user *arg)
4807{
4808 struct btrfs_fs_info *fs_info = root->fs_info;
4809 struct btrfs_ioctl_balance_args *bargs;
4810 int ret = 0;
4811
4812 if (!capable(CAP_SYS_ADMIN))
4813 return -EPERM;
4814
4815 mutex_lock(&fs_info->balance_mutex);
4816 if (!fs_info->balance_ctl) {
4817 ret = -ENOTCONN;
4818 goto out;
4819 }
4820
David Sterba8d2db782015-11-04 15:38:29 +01004821 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004822 if (!bargs) {
4823 ret = -ENOMEM;
4824 goto out;
4825 }
4826
4827 update_ioctl_balance_args(fs_info, 1, bargs);
4828
4829 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4830 ret = -EFAULT;
4831
4832 kfree(bargs);
4833out:
4834 mutex_unlock(&fs_info->balance_mutex);
4835 return ret;
4836}
4837
Miao Xie905b0dd2012-11-26 08:50:11 +00004838static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004839{
Al Viro496ad9a2013-01-23 17:07:38 -05004840 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004841 struct btrfs_ioctl_quota_ctl_args *sa;
4842 struct btrfs_trans_handle *trans = NULL;
4843 int ret;
4844 int err;
4845
4846 if (!capable(CAP_SYS_ADMIN))
4847 return -EPERM;
4848
Miao Xie905b0dd2012-11-26 08:50:11 +00004849 ret = mnt_want_write_file(file);
4850 if (ret)
4851 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004852
4853 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004854 if (IS_ERR(sa)) {
4855 ret = PTR_ERR(sa);
4856 goto drop_write;
4857 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004858
Wang Shilong7708f022013-04-07 10:24:57 +00004859 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004860 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4861 if (IS_ERR(trans)) {
4862 ret = PTR_ERR(trans);
4863 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004864 }
4865
4866 switch (sa->cmd) {
4867 case BTRFS_QUOTA_CTL_ENABLE:
4868 ret = btrfs_quota_enable(trans, root->fs_info);
4869 break;
4870 case BTRFS_QUOTA_CTL_DISABLE:
4871 ret = btrfs_quota_disable(trans, root->fs_info);
4872 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004873 default:
4874 ret = -EINVAL;
4875 break;
4876 }
4877
Jan Schmidt2f232032013-04-25 16:04:51 +00004878 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4879 if (err && !ret)
4880 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004881out:
4882 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004883 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004884drop_write:
4885 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004886 return ret;
4887}
4888
Miao Xie905b0dd2012-11-26 08:50:11 +00004889static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004890{
Al Viro496ad9a2013-01-23 17:07:38 -05004891 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004892 struct btrfs_ioctl_qgroup_assign_args *sa;
4893 struct btrfs_trans_handle *trans;
4894 int ret;
4895 int err;
4896
4897 if (!capable(CAP_SYS_ADMIN))
4898 return -EPERM;
4899
Miao Xie905b0dd2012-11-26 08:50:11 +00004900 ret = mnt_want_write_file(file);
4901 if (ret)
4902 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004903
4904 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004905 if (IS_ERR(sa)) {
4906 ret = PTR_ERR(sa);
4907 goto drop_write;
4908 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004909
4910 trans = btrfs_join_transaction(root);
4911 if (IS_ERR(trans)) {
4912 ret = PTR_ERR(trans);
4913 goto out;
4914 }
4915
4916 /* FIXME: check if the IDs really exist */
4917 if (sa->assign) {
4918 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4919 sa->src, sa->dst);
4920 } else {
4921 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4922 sa->src, sa->dst);
4923 }
4924
Qu Wenruoe082f562015-02-27 16:24:28 +08004925 /* update qgroup status and info */
4926 err = btrfs_run_qgroups(trans, root->fs_info);
4927 if (err < 0)
Anand Jainad8403d2016-03-10 12:22:15 +08004928 btrfs_handle_fs_error(root->fs_info, err,
4929 "failed to update qgroup status and info");
Arne Jansen5d13a372011-09-14 15:53:51 +02004930 err = btrfs_end_transaction(trans, root);
4931 if (err && !ret)
4932 ret = err;
4933
4934out:
4935 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004936drop_write:
4937 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004938 return ret;
4939}
4940
Miao Xie905b0dd2012-11-26 08:50:11 +00004941static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004942{
Al Viro496ad9a2013-01-23 17:07:38 -05004943 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004944 struct btrfs_ioctl_qgroup_create_args *sa;
4945 struct btrfs_trans_handle *trans;
4946 int ret;
4947 int err;
4948
4949 if (!capable(CAP_SYS_ADMIN))
4950 return -EPERM;
4951
Miao Xie905b0dd2012-11-26 08:50:11 +00004952 ret = mnt_want_write_file(file);
4953 if (ret)
4954 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004955
4956 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004957 if (IS_ERR(sa)) {
4958 ret = PTR_ERR(sa);
4959 goto drop_write;
4960 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004961
Miao Xied86e56c2012-11-15 11:35:41 +00004962 if (!sa->qgroupid) {
4963 ret = -EINVAL;
4964 goto out;
4965 }
4966
Arne Jansen5d13a372011-09-14 15:53:51 +02004967 trans = btrfs_join_transaction(root);
4968 if (IS_ERR(trans)) {
4969 ret = PTR_ERR(trans);
4970 goto out;
4971 }
4972
4973 /* FIXME: check if the IDs really exist */
4974 if (sa->create) {
Dongsheng Yang4087cf22015-01-18 10:59:23 -05004975 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004976 } else {
4977 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4978 }
4979
4980 err = btrfs_end_transaction(trans, root);
4981 if (err && !ret)
4982 ret = err;
4983
4984out:
4985 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004986drop_write:
4987 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004988 return ret;
4989}
4990
Miao Xie905b0dd2012-11-26 08:50:11 +00004991static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004992{
Al Viro496ad9a2013-01-23 17:07:38 -05004993 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004994 struct btrfs_ioctl_qgroup_limit_args *sa;
4995 struct btrfs_trans_handle *trans;
4996 int ret;
4997 int err;
4998 u64 qgroupid;
4999
5000 if (!capable(CAP_SYS_ADMIN))
5001 return -EPERM;
5002
Miao Xie905b0dd2012-11-26 08:50:11 +00005003 ret = mnt_want_write_file(file);
5004 if (ret)
5005 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02005006
5007 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00005008 if (IS_ERR(sa)) {
5009 ret = PTR_ERR(sa);
5010 goto drop_write;
5011 }
Arne Jansen5d13a372011-09-14 15:53:51 +02005012
5013 trans = btrfs_join_transaction(root);
5014 if (IS_ERR(trans)) {
5015 ret = PTR_ERR(trans);
5016 goto out;
5017 }
5018
5019 qgroupid = sa->qgroupid;
5020 if (!qgroupid) {
5021 /* take the current subvol as qgroup */
5022 qgroupid = root->root_key.objectid;
5023 }
5024
5025 /* FIXME: check if the IDs really exist */
5026 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
5027
5028 err = btrfs_end_transaction(trans, root);
5029 if (err && !ret)
5030 ret = err;
5031
5032out:
5033 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00005034drop_write:
5035 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02005036 return ret;
5037}
5038
Jan Schmidt2f232032013-04-25 16:04:51 +00005039static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
5040{
Al Viro6d0379e2013-06-16 19:32:35 +04005041 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00005042 struct btrfs_ioctl_quota_rescan_args *qsa;
5043 int ret;
5044
5045 if (!capable(CAP_SYS_ADMIN))
5046 return -EPERM;
5047
5048 ret = mnt_want_write_file(file);
5049 if (ret)
5050 return ret;
5051
5052 qsa = memdup_user(arg, sizeof(*qsa));
5053 if (IS_ERR(qsa)) {
5054 ret = PTR_ERR(qsa);
5055 goto drop_write;
5056 }
5057
5058 if (qsa->flags) {
5059 ret = -EINVAL;
5060 goto out;
5061 }
5062
5063 ret = btrfs_qgroup_rescan(root->fs_info);
5064
5065out:
5066 kfree(qsa);
5067drop_write:
5068 mnt_drop_write_file(file);
5069 return ret;
5070}
5071
5072static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
5073{
Al Viro6d0379e2013-06-16 19:32:35 +04005074 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00005075 struct btrfs_ioctl_quota_rescan_args *qsa;
5076 int ret = 0;
5077
5078 if (!capable(CAP_SYS_ADMIN))
5079 return -EPERM;
5080
David Sterba8d2db782015-11-04 15:38:29 +01005081 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00005082 if (!qsa)
5083 return -ENOMEM;
5084
5085 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
5086 qsa->flags = 1;
5087 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
5088 }
5089
5090 if (copy_to_user(arg, qsa, sizeof(*qsa)))
5091 ret = -EFAULT;
5092
5093 kfree(qsa);
5094 return ret;
5095}
5096
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005097static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
5098{
Al Viro54563d42013-09-01 15:57:51 -04005099 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005100
5101 if (!capable(CAP_SYS_ADMIN))
5102 return -EPERM;
5103
Jeff Mahoneyd06f23d2016-08-08 22:08:06 -04005104 return btrfs_qgroup_wait_for_completion(root->fs_info, true);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005105}
5106
Hugo Millsabccd002014-01-30 20:17:00 +00005107static long _btrfs_ioctl_set_received_subvol(struct file *file,
5108 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02005109{
Al Viro496ad9a2013-01-23 17:07:38 -05005110 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02005111 struct btrfs_root *root = BTRFS_I(inode)->root;
5112 struct btrfs_root_item *root_item = &root->root_item;
5113 struct btrfs_trans_handle *trans;
Deepa Dinamanic2050a42016-09-14 07:48:06 -07005114 struct timespec ct = current_time(inode);
Alexander Block8ea05e32012-07-25 17:35:53 +02005115 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005116 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005117
David Sterbabd60ea02014-01-16 15:50:22 +01005118 if (!inode_owner_or_capable(inode))
5119 return -EPERM;
5120
Alexander Block8ea05e32012-07-25 17:35:53 +02005121 ret = mnt_want_write_file(file);
5122 if (ret < 0)
5123 return ret;
5124
5125 down_write(&root->fs_info->subvol_sem);
5126
5127 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
5128 ret = -EINVAL;
5129 goto out;
5130 }
5131
5132 if (btrfs_root_readonly(root)) {
5133 ret = -EROFS;
5134 goto out;
5135 }
5136
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005137 /*
5138 * 1 - root item
5139 * 2 - uuid items (received uuid + subvol uuid)
5140 */
5141 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005142 if (IS_ERR(trans)) {
5143 ret = PTR_ERR(trans);
5144 trans = NULL;
5145 goto out;
5146 }
5147
5148 sa->rtransid = trans->transid;
5149 sa->rtime.sec = ct.tv_sec;
5150 sa->rtime.nsec = ct.tv_nsec;
5151
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005152 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5153 BTRFS_UUID_SIZE);
5154 if (received_uuid_changed &&
5155 !btrfs_is_empty_uuid(root_item->received_uuid))
5156 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
5157 root_item->received_uuid,
5158 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5159 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02005160 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5161 btrfs_set_root_stransid(root_item, sa->stransid);
5162 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005163 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5164 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5165 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5166 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005167
5168 ret = btrfs_update_root(trans, root->fs_info->tree_root,
5169 &root->root_key, &root->root_item);
5170 if (ret < 0) {
5171 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02005172 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005173 }
5174 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
5175 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
5176 sa->uuid,
5177 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5178 root->root_key.objectid);
5179 if (ret < 0 && ret != -EEXIST) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005180 btrfs_abort_transaction(trans, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02005181 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005182 }
5183 }
5184 ret = btrfs_commit_transaction(trans, root);
5185 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04005186 btrfs_abort_transaction(trans, ret);
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005187 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02005188 }
5189
Hugo Millsabccd002014-01-30 20:17:00 +00005190out:
5191 up_write(&root->fs_info->subvol_sem);
5192 mnt_drop_write_file(file);
5193 return ret;
5194}
5195
5196#ifdef CONFIG_64BIT
5197static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5198 void __user *arg)
5199{
5200 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5201 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5202 int ret = 0;
5203
5204 args32 = memdup_user(arg, sizeof(*args32));
5205 if (IS_ERR(args32)) {
5206 ret = PTR_ERR(args32);
5207 args32 = NULL;
5208 goto out;
5209 }
5210
David Sterba8d2db782015-11-04 15:38:29 +01005211 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005212 if (!args64) {
5213 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005214 goto out;
5215 }
5216
5217 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5218 args64->stransid = args32->stransid;
5219 args64->rtransid = args32->rtransid;
5220 args64->stime.sec = args32->stime.sec;
5221 args64->stime.nsec = args32->stime.nsec;
5222 args64->rtime.sec = args32->rtime.sec;
5223 args64->rtime.nsec = args32->rtime.nsec;
5224 args64->flags = args32->flags;
5225
5226 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5227 if (ret)
5228 goto out;
5229
5230 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5231 args32->stransid = args64->stransid;
5232 args32->rtransid = args64->rtransid;
5233 args32->stime.sec = args64->stime.sec;
5234 args32->stime.nsec = args64->stime.nsec;
5235 args32->rtime.sec = args64->rtime.sec;
5236 args32->rtime.nsec = args64->rtime.nsec;
5237 args32->flags = args64->flags;
5238
5239 ret = copy_to_user(arg, args32, sizeof(*args32));
5240 if (ret)
5241 ret = -EFAULT;
5242
5243out:
5244 kfree(args32);
5245 kfree(args64);
5246 return ret;
5247}
5248#endif
5249
5250static long btrfs_ioctl_set_received_subvol(struct file *file,
5251 void __user *arg)
5252{
5253 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5254 int ret = 0;
5255
5256 sa = memdup_user(arg, sizeof(*sa));
5257 if (IS_ERR(sa)) {
5258 ret = PTR_ERR(sa);
5259 sa = NULL;
5260 goto out;
5261 }
5262
5263 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5264
5265 if (ret)
5266 goto out;
5267
Alexander Block8ea05e32012-07-25 17:35:53 +02005268 ret = copy_to_user(arg, sa, sizeof(*sa));
5269 if (ret)
5270 ret = -EFAULT;
5271
5272out:
5273 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005274 return ret;
5275}
5276
jeff.liu867ab662013-01-05 02:48:01 +00005277static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5278{
Al Viro6d0379e2013-06-16 19:32:35 +04005279 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005280 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005281 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005282 char label[BTRFS_LABEL_SIZE];
5283
5284 spin_lock(&root->fs_info->super_lock);
5285 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5286 spin_unlock(&root->fs_info->super_lock);
5287
5288 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005289
5290 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005291 btrfs_warn(root->fs_info,
5292 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00005293 }
5294
jeff.liu867ab662013-01-05 02:48:01 +00005295 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005296
5297 return ret ? -EFAULT : 0;
5298}
5299
jeff.liua8bfd4a2013-01-05 02:48:08 +00005300static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5301{
Al Viro6d0379e2013-06-16 19:32:35 +04005302 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005303 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5304 struct btrfs_trans_handle *trans;
5305 char label[BTRFS_LABEL_SIZE];
5306 int ret;
5307
5308 if (!capable(CAP_SYS_ADMIN))
5309 return -EPERM;
5310
5311 if (copy_from_user(label, arg, sizeof(label)))
5312 return -EFAULT;
5313
5314 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04005315 btrfs_err(root->fs_info,
5316 "unable to set label with more than %d bytes",
5317 BTRFS_LABEL_SIZE - 1);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005318 return -EINVAL;
5319 }
5320
5321 ret = mnt_want_write_file(file);
5322 if (ret)
5323 return ret;
5324
jeff.liua8bfd4a2013-01-05 02:48:08 +00005325 trans = btrfs_start_transaction(root, 0);
5326 if (IS_ERR(trans)) {
5327 ret = PTR_ERR(trans);
5328 goto out_unlock;
5329 }
5330
Anand Jaina1b83ac2013-07-19 17:39:32 +08005331 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005332 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005333 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005334 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005335
5336out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005337 mnt_drop_write_file(file);
5338 return ret;
5339}
5340
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005341#define INIT_FEATURE_FLAGS(suffix) \
5342 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5343 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5344 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5345
David Sterbad5131b62016-02-17 15:26:27 +01005346int btrfs_ioctl_get_supported_features(void __user *arg)
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005347{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005348 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005349 INIT_FEATURE_FLAGS(SUPP),
5350 INIT_FEATURE_FLAGS(SAFE_SET),
5351 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5352 };
5353
5354 if (copy_to_user(arg, &features, sizeof(features)))
5355 return -EFAULT;
5356
5357 return 0;
5358}
5359
5360static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5361{
5362 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5363 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5364 struct btrfs_ioctl_feature_flags features;
5365
5366 features.compat_flags = btrfs_super_compat_flags(super_block);
5367 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5368 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5369
5370 if (copy_to_user(arg, &features, sizeof(features)))
5371 return -EFAULT;
5372
5373 return 0;
5374}
5375
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005376static int check_feature_bits(struct btrfs_root *root,
5377 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005378 u64 change_mask, u64 flags, u64 supported_flags,
5379 u64 safe_set, u64 safe_clear)
5380{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005381 const char *type = btrfs_feature_set_names[set];
5382 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005383 u64 disallowed, unsupported;
5384 u64 set_mask = flags & change_mask;
5385 u64 clear_mask = ~flags & change_mask;
5386
5387 unsupported = set_mask & ~supported_flags;
5388 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005389 names = btrfs_printable_features(set, unsupported);
5390 if (names) {
5391 btrfs_warn(root->fs_info,
5392 "this kernel does not support the %s feature bit%s",
5393 names, strchr(names, ',') ? "s" : "");
5394 kfree(names);
5395 } else
5396 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005397 "this kernel does not support %s bits 0x%llx",
5398 type, unsupported);
5399 return -EOPNOTSUPP;
5400 }
5401
5402 disallowed = set_mask & ~safe_set;
5403 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005404 names = btrfs_printable_features(set, disallowed);
5405 if (names) {
5406 btrfs_warn(root->fs_info,
5407 "can't set the %s feature bit%s while mounted",
5408 names, strchr(names, ',') ? "s" : "");
5409 kfree(names);
5410 } else
5411 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005412 "can't set %s bits 0x%llx while mounted",
5413 type, disallowed);
5414 return -EPERM;
5415 }
5416
5417 disallowed = clear_mask & ~safe_clear;
5418 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005419 names = btrfs_printable_features(set, disallowed);
5420 if (names) {
5421 btrfs_warn(root->fs_info,
5422 "can't clear the %s feature bit%s while mounted",
5423 names, strchr(names, ',') ? "s" : "");
5424 kfree(names);
5425 } else
5426 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005427 "can't clear %s bits 0x%llx while mounted",
5428 type, disallowed);
5429 return -EPERM;
5430 }
5431
5432 return 0;
5433}
5434
5435#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005436check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005437 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5438 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5439 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5440
5441static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5442{
5443 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5444 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5445 struct btrfs_ioctl_feature_flags flags[2];
5446 struct btrfs_trans_handle *trans;
5447 u64 newflags;
5448 int ret;
5449
5450 if (!capable(CAP_SYS_ADMIN))
5451 return -EPERM;
5452
5453 if (copy_from_user(flags, arg, sizeof(flags)))
5454 return -EFAULT;
5455
5456 /* Nothing to do */
5457 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5458 !flags[0].incompat_flags)
5459 return 0;
5460
5461 ret = check_feature(root, flags[0].compat_flags,
5462 flags[1].compat_flags, COMPAT);
5463 if (ret)
5464 return ret;
5465
5466 ret = check_feature(root, flags[0].compat_ro_flags,
5467 flags[1].compat_ro_flags, COMPAT_RO);
5468 if (ret)
5469 return ret;
5470
5471 ret = check_feature(root, flags[0].incompat_flags,
5472 flags[1].incompat_flags, INCOMPAT);
5473 if (ret)
5474 return ret;
5475
David Sterba7ab19622016-05-04 11:32:00 +02005476 ret = mnt_want_write_file(file);
5477 if (ret)
5478 return ret;
5479
David Sterba8051aa12014-02-07 14:34:04 +01005480 trans = btrfs_start_transaction(root, 0);
David Sterba7ab19622016-05-04 11:32:00 +02005481 if (IS_ERR(trans)) {
5482 ret = PTR_ERR(trans);
5483 goto out_drop_write;
5484 }
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005485
5486 spin_lock(&root->fs_info->super_lock);
5487 newflags = btrfs_super_compat_flags(super_block);
5488 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5489 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5490 btrfs_set_super_compat_flags(super_block, newflags);
5491
5492 newflags = btrfs_super_compat_ro_flags(super_block);
5493 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5494 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5495 btrfs_set_super_compat_ro_flags(super_block, newflags);
5496
5497 newflags = btrfs_super_incompat_flags(super_block);
5498 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5499 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5500 btrfs_set_super_incompat_flags(super_block, newflags);
5501 spin_unlock(&root->fs_info->super_lock);
5502
David Sterba7ab19622016-05-04 11:32:00 +02005503 ret = btrfs_commit_transaction(trans, root);
5504out_drop_write:
5505 mnt_drop_write_file(file);
5506
5507 return ret;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005508}
5509
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005510long btrfs_ioctl(struct file *file, unsigned int
5511 cmd, unsigned long arg)
5512{
Al Viro496ad9a2013-01-23 17:07:38 -05005513 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005514 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005515
5516 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005517 case FS_IOC_GETFLAGS:
5518 return btrfs_ioctl_getflags(file, argp);
5519 case FS_IOC_SETFLAGS:
5520 return btrfs_ioctl_setflags(file, argp);
5521 case FS_IOC_GETVERSION:
5522 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005523 case FITRIM:
5524 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005525 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005526 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005527 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005528 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005529 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005530 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005531 case BTRFS_IOC_SUBVOL_CREATE_V2:
5532 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005533 case BTRFS_IOC_SNAP_DESTROY:
5534 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005535 case BTRFS_IOC_SUBVOL_GETFLAGS:
5536 return btrfs_ioctl_subvol_getflags(file, argp);
5537 case BTRFS_IOC_SUBVOL_SETFLAGS:
5538 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005539 case BTRFS_IOC_DEFAULT_SUBVOL:
5540 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005541 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005542 return btrfs_ioctl_defrag(file, NULL);
5543 case BTRFS_IOC_DEFRAG_RANGE:
5544 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005545 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005546 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005547 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005548 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005549 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005550 return btrfs_ioctl_rm_dev(file, argp);
Anand Jain6b526ed2016-02-13 10:01:39 +08005551 case BTRFS_IOC_RM_DEV_V2:
5552 return btrfs_ioctl_rm_dev_v2(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005553 case BTRFS_IOC_FS_INFO:
5554 return btrfs_ioctl_fs_info(root, argp);
5555 case BTRFS_IOC_DEV_INFO:
5556 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005557 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005558 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005559 case BTRFS_IOC_TRANS_START:
5560 return btrfs_ioctl_trans_start(file);
5561 case BTRFS_IOC_TRANS_END:
5562 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005563 case BTRFS_IOC_TREE_SEARCH:
5564 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005565 case BTRFS_IOC_TREE_SEARCH_V2:
5566 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005567 case BTRFS_IOC_INO_LOOKUP:
5568 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005569 case BTRFS_IOC_INO_PATHS:
5570 return btrfs_ioctl_ino_to_path(root, argp);
5571 case BTRFS_IOC_LOGICAL_INO:
5572 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005573 case BTRFS_IOC_SPACE_INFO:
5574 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005575 case BTRFS_IOC_SYNC: {
5576 int ret;
5577
Miao Xie6c255e62014-03-06 13:55:01 +08005578 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005579 if (ret)
5580 return ret;
Al Viroddb52f42014-10-21 20:21:18 -04005581 ret = btrfs_sync_fs(file_inode(file)->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005582 /*
5583 * The transaction thread may want to do more work,
Nicholas D Steeves01327612016-05-19 21:18:45 -04005584 * namely it pokes the cleaner kthread that will start
David Sterba2fad4e82014-07-23 14:39:35 +02005585 * processing uncleaned subvols.
5586 */
5587 wake_up_process(root->fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005588 return ret;
5589 }
Sage Weil46204592010-10-29 15:41:32 -04005590 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005591 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005592 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005593 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005594 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005595 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005596 case BTRFS_IOC_SCRUB_CANCEL:
5597 return btrfs_ioctl_scrub_cancel(root, argp);
5598 case BTRFS_IOC_SCRUB_PROGRESS:
5599 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005600 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005601 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005602 case BTRFS_IOC_BALANCE_CTL:
5603 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005604 case BTRFS_IOC_BALANCE_PROGRESS:
5605 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005606 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5607 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005608#ifdef CONFIG_64BIT
5609 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5610 return btrfs_ioctl_set_received_subvol_32(file, argp);
5611#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005612 case BTRFS_IOC_SEND:
5613 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005614 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005615 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005616 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005617 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005618 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005619 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005620 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005621 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005622 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005623 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005624 case BTRFS_IOC_QUOTA_RESCAN:
5625 return btrfs_ioctl_quota_rescan(file, argp);
5626 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5627 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005628 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5629 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005630 case BTRFS_IOC_DEV_REPLACE:
5631 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005632 case BTRFS_IOC_GET_FSLABEL:
5633 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005634 case BTRFS_IOC_SET_FSLABEL:
5635 return btrfs_ioctl_set_fslabel(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005636 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
David Sterbad5131b62016-02-17 15:26:27 +01005637 return btrfs_ioctl_get_supported_features(argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005638 case BTRFS_IOC_GET_FEATURES:
5639 return btrfs_ioctl_get_features(file, argp);
5640 case BTRFS_IOC_SET_FEATURES:
5641 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005642 }
5643
5644 return -ENOTTY;
5645}
Luke Dashjr4c63c242015-10-29 08:22:21 +00005646
5647#ifdef CONFIG_COMPAT
5648long btrfs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
5649{
5650 switch (cmd) {
5651 case FS_IOC32_GETFLAGS:
5652 cmd = FS_IOC_GETFLAGS;
5653 break;
5654 case FS_IOC32_SETFLAGS:
5655 cmd = FS_IOC_SETFLAGS;
5656 break;
5657 case FS_IOC32_GETVERSION:
5658 cmd = FS_IOC_GETVERSION;
5659 break;
5660 default:
5661 return -ENOIOCTLCMD;
5662 }
5663
5664 return btrfs_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
5665}
5666#endif