blob: 1d6767c4c0923893a821f20c33be4a122fa6ef50 [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>
36#include <linux/statfs.h>
37#include <linux/compat.h>
38#include <linux/bit_spinlock.h>
Christoph Hellwigcb8e7092008-10-09 13:39:39 -040039#include <linux/security.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040040#include <linux/xattr.h>
Yan Zheng7ea394f2008-08-05 13:05:02 -040041#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Li Dongyangf7039b12011-03-24 10:24:28 +000043#include <linux/blkdev.h>
Alexander Block8ea05e32012-07-25 17:35:53 +020044#include <linux/uuid.h>
Filipe Brandenburger55e301f2013-01-29 06:04:50 +000045#include <linux/btrfs.h>
Mark Fasheh416161d2013-08-06 11:42:51 -070046#include <linux/uaccess.h>
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040047#include "ctree.h"
48#include "disk-io.h"
49#include "transaction.h"
50#include "btrfs_inode.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040051#include "print-tree.h"
52#include "volumes.h"
Chris Mason925baed2008-06-25 16:01:30 -040053#include "locking.h"
Li Zefan581bb052011-04-20 10:06:11 +080054#include "inode-map.h"
Jan Schmidtd7728c92011-07-07 16:48:38 +020055#include "backref.h"
Josef Bacik606686e2012-06-04 14:03:51 -040056#include "rcu-string.h"
Alexander Block31db9f72012-07-25 23:19:24 +020057#include "send.h"
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +010058#include "dev-replace.h"
Filipe David Borba Manana63541922014-01-07 11:47:46 +000059#include "props.h"
Jeff Mahoney3b02a682013-11-01 13:07:02 -040060#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070061#include "qgroup.h"
Christoph Hellwigf46b5a62008-06-11 21:53:53 -040062
Hugo Millsabccd002014-01-30 20:17:00 +000063#ifdef CONFIG_64BIT
64/* If we have a 32-bit userspace and 64-bit kernel, then the UAPI
65 * structures are incorrect, as the timespec structure from userspace
66 * is 4 bytes too small. We define these alternatives here to teach
67 * the kernel about the 32-bit struct packing.
68 */
69struct btrfs_ioctl_timespec_32 {
70 __u64 sec;
71 __u32 nsec;
72} __attribute__ ((__packed__));
73
74struct btrfs_ioctl_received_subvol_args_32 {
75 char uuid[BTRFS_UUID_SIZE]; /* in */
76 __u64 stransid; /* in */
77 __u64 rtransid; /* out */
78 struct btrfs_ioctl_timespec_32 stime; /* in */
79 struct btrfs_ioctl_timespec_32 rtime; /* out */
80 __u64 flags; /* in */
81 __u64 reserved[16]; /* in */
82} __attribute__ ((__packed__));
83
84#define BTRFS_IOC_SET_RECEIVED_SUBVOL_32 _IOWR(BTRFS_IOCTL_MAGIC, 37, \
85 struct btrfs_ioctl_received_subvol_args_32)
86#endif
87
88
Mark Fasheh416161d2013-08-06 11:42:51 -070089static int btrfs_clone(struct inode *src, struct inode *inode,
Mark Fasheh1c919a52015-06-30 14:42:08 -070090 u64 off, u64 olen, u64 olen_aligned, u64 destoff,
91 int no_time_update);
Mark Fasheh416161d2013-08-06 11:42:51 -070092
Christoph Hellwig6cbff002009-04-17 10:37:41 +020093/* Mask out flags that are inappropriate for the given type of inode. */
94static inline __u32 btrfs_mask_flags(umode_t mode, __u32 flags)
95{
96 if (S_ISDIR(mode))
97 return flags;
98 else if (S_ISREG(mode))
99 return flags & ~FS_DIRSYNC_FL;
100 else
101 return flags & (FS_NODUMP_FL | FS_NOATIME_FL);
102}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400103
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200104/*
105 * Export inode flags to the format expected by the FS_IOC_GETFLAGS ioctl.
106 */
107static unsigned int btrfs_flags_to_ioctl(unsigned int flags)
108{
109 unsigned int iflags = 0;
110
111 if (flags & BTRFS_INODE_SYNC)
112 iflags |= FS_SYNC_FL;
113 if (flags & BTRFS_INODE_IMMUTABLE)
114 iflags |= FS_IMMUTABLE_FL;
115 if (flags & BTRFS_INODE_APPEND)
116 iflags |= FS_APPEND_FL;
117 if (flags & BTRFS_INODE_NODUMP)
118 iflags |= FS_NODUMP_FL;
119 if (flags & BTRFS_INODE_NOATIME)
120 iflags |= FS_NOATIME_FL;
121 if (flags & BTRFS_INODE_DIRSYNC)
122 iflags |= FS_DIRSYNC_FL;
Li Zefand0092bd2011-04-15 03:03:06 +0000123 if (flags & BTRFS_INODE_NODATACOW)
124 iflags |= FS_NOCOW_FL;
125
126 if ((flags & BTRFS_INODE_COMPRESS) && !(flags & BTRFS_INODE_NOCOMPRESS))
127 iflags |= FS_COMPR_FL;
128 else if (flags & BTRFS_INODE_NOCOMPRESS)
129 iflags |= FS_NOCOMP_FL;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200130
131 return iflags;
132}
133
134/*
135 * Update inode->i_flags based on the btrfs internal flags.
136 */
137void btrfs_update_iflags(struct inode *inode)
138{
139 struct btrfs_inode *ip = BTRFS_I(inode);
Filipe Manana3cc79392014-06-25 22:36:02 +0100140 unsigned int new_fl = 0;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200141
142 if (ip->flags & BTRFS_INODE_SYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100143 new_fl |= S_SYNC;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200144 if (ip->flags & BTRFS_INODE_IMMUTABLE)
Filipe Manana3cc79392014-06-25 22:36:02 +0100145 new_fl |= S_IMMUTABLE;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200146 if (ip->flags & BTRFS_INODE_APPEND)
Filipe Manana3cc79392014-06-25 22:36:02 +0100147 new_fl |= S_APPEND;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200148 if (ip->flags & BTRFS_INODE_NOATIME)
Filipe Manana3cc79392014-06-25 22:36:02 +0100149 new_fl |= S_NOATIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200150 if (ip->flags & BTRFS_INODE_DIRSYNC)
Filipe Manana3cc79392014-06-25 22:36:02 +0100151 new_fl |= S_DIRSYNC;
152
153 set_mask_bits(&inode->i_flags,
154 S_SYNC | S_APPEND | S_IMMUTABLE | S_NOATIME | S_DIRSYNC,
155 new_fl);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200156}
157
158/*
159 * Inherit flags from the parent inode.
160 *
Josef Bacike27425d2011-09-27 11:01:30 -0400161 * Currently only the compression flags and the cow flags are inherited.
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200162 */
163void btrfs_inherit_iflags(struct inode *inode, struct inode *dir)
164{
Chris Mason0b4dcea2009-06-11 11:13:35 -0400165 unsigned int flags;
166
167 if (!dir)
168 return;
169
170 flags = BTRFS_I(dir)->flags;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200171
Josef Bacike27425d2011-09-27 11:01:30 -0400172 if (flags & BTRFS_INODE_NOCOMPRESS) {
173 BTRFS_I(inode)->flags &= ~BTRFS_INODE_COMPRESS;
174 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
175 } else if (flags & BTRFS_INODE_COMPRESS) {
176 BTRFS_I(inode)->flags &= ~BTRFS_INODE_NOCOMPRESS;
177 BTRFS_I(inode)->flags |= BTRFS_INODE_COMPRESS;
178 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200179
Liu Bo213490b2012-09-11 08:33:50 -0600180 if (flags & BTRFS_INODE_NODATACOW) {
Josef Bacike27425d2011-09-27 11:01:30 -0400181 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW;
Liu Bo213490b2012-09-11 08:33:50 -0600182 if (S_ISREG(inode->i_mode))
183 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
184 }
Josef Bacike27425d2011-09-27 11:01:30 -0400185
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200186 btrfs_update_iflags(inode);
187}
188
189static int btrfs_ioctl_getflags(struct file *file, void __user *arg)
190{
Al Viro496ad9a2013-01-23 17:07:38 -0500191 struct btrfs_inode *ip = BTRFS_I(file_inode(file));
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200192 unsigned int flags = btrfs_flags_to_ioctl(ip->flags);
193
194 if (copy_to_user(arg, &flags, sizeof(flags)))
195 return -EFAULT;
196 return 0;
197}
198
Liu Bo75e7cb72011-03-22 10:12:20 +0000199static int check_flags(unsigned int flags)
200{
201 if (flags & ~(FS_IMMUTABLE_FL | FS_APPEND_FL | \
202 FS_NOATIME_FL | FS_NODUMP_FL | \
203 FS_SYNC_FL | FS_DIRSYNC_FL | \
Li Zefane1e8fb62011-04-15 03:02:49 +0000204 FS_NOCOMP_FL | FS_COMPR_FL |
205 FS_NOCOW_FL))
Liu Bo75e7cb72011-03-22 10:12:20 +0000206 return -EOPNOTSUPP;
207
208 if ((flags & FS_NOCOMP_FL) && (flags & FS_COMPR_FL))
209 return -EINVAL;
210
Liu Bo75e7cb72011-03-22 10:12:20 +0000211 return 0;
212}
213
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200214static int btrfs_ioctl_setflags(struct file *file, void __user *arg)
215{
Al Viro496ad9a2013-01-23 17:07:38 -0500216 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200217 struct btrfs_inode *ip = BTRFS_I(inode);
218 struct btrfs_root *root = ip->root;
219 struct btrfs_trans_handle *trans;
220 unsigned int flags, oldflags;
221 int ret;
Li Zefanf062abf2011-12-29 13:36:45 +0800222 u64 ip_oldflags;
223 unsigned int i_oldflags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600224 umode_t mode;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200225
David Sterbabd60ea02014-01-16 15:50:22 +0100226 if (!inode_owner_or_capable(inode))
227 return -EPERM;
228
Li Zefanb83cc962010-12-20 16:04:08 +0800229 if (btrfs_root_readonly(root))
230 return -EROFS;
231
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200232 if (copy_from_user(&flags, arg, sizeof(flags)))
233 return -EFAULT;
234
Liu Bo75e7cb72011-03-22 10:12:20 +0000235 ret = check_flags(flags);
236 if (ret)
237 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200238
Jan Karae7848682012-06-12 16:20:32 +0200239 ret = mnt_want_write_file(file);
240 if (ret)
241 return ret;
242
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200243 mutex_lock(&inode->i_mutex);
244
Li Zefanf062abf2011-12-29 13:36:45 +0800245 ip_oldflags = ip->flags;
246 i_oldflags = inode->i_flags;
David Sterba7e97b8d2012-09-07 05:56:55 -0600247 mode = inode->i_mode;
Li Zefanf062abf2011-12-29 13:36:45 +0800248
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200249 flags = btrfs_mask_flags(inode->i_mode, flags);
250 oldflags = btrfs_flags_to_ioctl(ip->flags);
251 if ((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) {
252 if (!capable(CAP_LINUX_IMMUTABLE)) {
253 ret = -EPERM;
254 goto out_unlock;
255 }
256 }
257
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200258 if (flags & FS_SYNC_FL)
259 ip->flags |= BTRFS_INODE_SYNC;
260 else
261 ip->flags &= ~BTRFS_INODE_SYNC;
262 if (flags & FS_IMMUTABLE_FL)
263 ip->flags |= BTRFS_INODE_IMMUTABLE;
264 else
265 ip->flags &= ~BTRFS_INODE_IMMUTABLE;
266 if (flags & FS_APPEND_FL)
267 ip->flags |= BTRFS_INODE_APPEND;
268 else
269 ip->flags &= ~BTRFS_INODE_APPEND;
270 if (flags & FS_NODUMP_FL)
271 ip->flags |= BTRFS_INODE_NODUMP;
272 else
273 ip->flags &= ~BTRFS_INODE_NODUMP;
274 if (flags & FS_NOATIME_FL)
275 ip->flags |= BTRFS_INODE_NOATIME;
276 else
277 ip->flags &= ~BTRFS_INODE_NOATIME;
278 if (flags & FS_DIRSYNC_FL)
279 ip->flags |= BTRFS_INODE_DIRSYNC;
280 else
281 ip->flags &= ~BTRFS_INODE_DIRSYNC;
David Sterba7e97b8d2012-09-07 05:56:55 -0600282 if (flags & FS_NOCOW_FL) {
283 if (S_ISREG(mode)) {
284 /*
285 * It's safe to turn csums off here, no extents exist.
286 * Otherwise we want the flag to reflect the real COW
287 * status of the file and will not set it.
288 */
289 if (inode->i_size == 0)
290 ip->flags |= BTRFS_INODE_NODATACOW
291 | BTRFS_INODE_NODATASUM;
292 } else {
293 ip->flags |= BTRFS_INODE_NODATACOW;
294 }
295 } else {
296 /*
297 * Revert back under same assuptions as above
298 */
299 if (S_ISREG(mode)) {
300 if (inode->i_size == 0)
301 ip->flags &= ~(BTRFS_INODE_NODATACOW
302 | BTRFS_INODE_NODATASUM);
303 } else {
304 ip->flags &= ~BTRFS_INODE_NODATACOW;
305 }
306 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200307
Liu Bo75e7cb72011-03-22 10:12:20 +0000308 /*
309 * The COMPRESS flag can only be changed by users, while the NOCOMPRESS
310 * flag may be changed automatically if compression code won't make
311 * things smaller.
312 */
313 if (flags & FS_NOCOMP_FL) {
314 ip->flags &= ~BTRFS_INODE_COMPRESS;
315 ip->flags |= BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000316
317 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
318 if (ret && ret != -ENODATA)
319 goto out_drop;
Liu Bo75e7cb72011-03-22 10:12:20 +0000320 } else if (flags & FS_COMPR_FL) {
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000321 const char *comp;
322
Liu Bo75e7cb72011-03-22 10:12:20 +0000323 ip->flags |= BTRFS_INODE_COMPRESS;
324 ip->flags &= ~BTRFS_INODE_NOCOMPRESS;
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000325
326 if (root->fs_info->compress_type == BTRFS_COMPRESS_LZO)
327 comp = "lzo";
328 else
329 comp = "zlib";
330 ret = btrfs_set_prop(inode, "btrfs.compression",
331 comp, strlen(comp), 0);
332 if (ret)
333 goto out_drop;
334
Li Zefanebcb9042011-04-15 03:03:17 +0000335 } else {
Filipe Manana78a017a2014-09-11 11:44:49 +0100336 ret = btrfs_set_prop(inode, "btrfs.compression", NULL, 0, 0);
337 if (ret && ret != -ENODATA)
338 goto out_drop;
Li Zefanebcb9042011-04-15 03:03:17 +0000339 ip->flags &= ~(BTRFS_INODE_COMPRESS | BTRFS_INODE_NOCOMPRESS);
Liu Bo75e7cb72011-03-22 10:12:20 +0000340 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200341
Li Zefan4da6f1a2011-12-29 13:39:50 +0800342 trans = btrfs_start_transaction(root, 1);
Li Zefanf062abf2011-12-29 13:36:45 +0800343 if (IS_ERR(trans)) {
344 ret = PTR_ERR(trans);
345 goto out_drop;
346 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200347
Li Zefan306424cc2011-12-14 20:12:02 -0500348 btrfs_update_iflags(inode);
Josef Bacik0c4d2d92012-04-05 15:03:02 -0400349 inode_inc_iversion(inode);
Li Zefan306424cc2011-12-14 20:12:02 -0500350 inode->i_ctime = CURRENT_TIME;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200351 ret = btrfs_update_inode(trans, root, inode);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200352
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200353 btrfs_end_transaction(trans, root);
Li Zefanf062abf2011-12-29 13:36:45 +0800354 out_drop:
355 if (ret) {
356 ip->flags = ip_oldflags;
357 inode->i_flags = i_oldflags;
358 }
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200359
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200360 out_unlock:
361 mutex_unlock(&inode->i_mutex);
Jan Karae7848682012-06-12 16:20:32 +0200362 mnt_drop_write_file(file);
liubo2d4e6f62011-02-24 09:38:16 +0000363 return ret;
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200364}
365
366static int btrfs_ioctl_getversion(struct file *file, int __user *arg)
367{
Al Viro496ad9a2013-01-23 17:07:38 -0500368 struct inode *inode = file_inode(file);
Christoph Hellwig6cbff002009-04-17 10:37:41 +0200369
370 return put_user(inode->i_generation, arg);
371}
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400372
Li Dongyangf7039b12011-03-24 10:24:28 +0000373static noinline int btrfs_ioctl_fitrim(struct file *file, void __user *arg)
374{
Al Viro54563d42013-09-01 15:57:51 -0400375 struct btrfs_fs_info *fs_info = btrfs_sb(file_inode(file)->i_sb);
Li Dongyangf7039b12011-03-24 10:24:28 +0000376 struct btrfs_device *device;
377 struct request_queue *q;
378 struct fstrim_range range;
379 u64 minlen = ULLONG_MAX;
380 u64 num_devices = 0;
Al Viro815745c2011-11-17 15:40:49 -0500381 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +0000382 int ret;
383
384 if (!capable(CAP_SYS_ADMIN))
385 return -EPERM;
386
Xiao Guangrong1f781602011-04-20 10:09:16 +0000387 rcu_read_lock();
388 list_for_each_entry_rcu(device, &fs_info->fs_devices->devices,
389 dev_list) {
Li Dongyangf7039b12011-03-24 10:24:28 +0000390 if (!device->bdev)
391 continue;
392 q = bdev_get_queue(device->bdev);
393 if (blk_queue_discard(q)) {
394 num_devices++;
395 minlen = min((u64)q->limits.discard_granularity,
396 minlen);
397 }
398 }
Xiao Guangrong1f781602011-04-20 10:09:16 +0000399 rcu_read_unlock();
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200400
Li Dongyangf7039b12011-03-24 10:24:28 +0000401 if (!num_devices)
402 return -EOPNOTSUPP;
Li Dongyangf7039b12011-03-24 10:24:28 +0000403 if (copy_from_user(&range, arg, sizeof(range)))
404 return -EFAULT;
Lukas Czernere515c182012-10-16 09:34:36 +0000405 if (range.start > total_bytes ||
406 range.len < fs_info->sb->s_blocksize)
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200407 return -EINVAL;
Li Dongyangf7039b12011-03-24 10:24:28 +0000408
Lukas Czernerf4c697e2011-09-05 16:34:54 +0200409 range.len = min(range.len, total_bytes - range.start);
Li Dongyangf7039b12011-03-24 10:24:28 +0000410 range.minlen = max(range.minlen, minlen);
Al Viro815745c2011-11-17 15:40:49 -0500411 ret = btrfs_trim_fs(fs_info->tree_root, &range);
Li Dongyangf7039b12011-03-24 10:24:28 +0000412 if (ret < 0)
413 return ret;
414
415 if (copy_to_user(arg, &range, sizeof(range)))
416 return -EFAULT;
417
418 return 0;
419}
420
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200421int btrfs_is_empty_uuid(u8 *uuid)
422{
Chris Mason46e0f662013-11-15 12:14:55 +0100423 int i;
424
425 for (i = 0; i < BTRFS_UUID_SIZE; i++) {
426 if (uuid[i])
427 return 0;
428 }
429 return 1;
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200430}
431
Miao Xied5c12072013-02-28 10:04:33 +0000432static noinline int create_subvol(struct inode *dir,
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400433 struct dentry *dentry,
Sage Weil72fd0322010-10-29 15:41:32 -0400434 char *name, int namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200435 u64 *async_transid,
Miao Xie8696c532013-02-07 06:02:44 +0000436 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400437{
438 struct btrfs_trans_handle *trans;
439 struct btrfs_key key;
440 struct btrfs_root_item root_item;
441 struct btrfs_inode_item *inode_item;
442 struct extent_buffer *leaf;
Miao Xied5c12072013-02-28 10:04:33 +0000443 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400444 struct btrfs_root *new_root;
Miao Xied5c12072013-02-28 10:04:33 +0000445 struct btrfs_block_rsv block_rsv;
Alexander Block8ea05e32012-07-25 17:35:53 +0200446 struct timespec cur_time = CURRENT_TIME;
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900447 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400448 int ret;
449 int err;
450 u64 objectid;
451 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Mason3de45862008-11-17 21:02:50 -0500452 u64 index = 0;
Miao Xied5c12072013-02-28 10:04:33 +0000453 u64 qgroup_reserved;
Alexander Block8ea05e32012-07-25 17:35:53 +0200454 uuid_le new_uuid;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400455
Li Zefan581bb052011-04-20 10:06:11 +0800456 ret = btrfs_find_free_objectid(root->fs_info->tree_root, &objectid);
Al Viro2fbe8c82011-07-16 21:38:06 -0400457 if (ret)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400458 return ret;
Josef Bacik6a912212010-11-20 09:48:00 +0000459
Qu Wenruoe09fe2d2015-02-27 16:24:23 +0800460 /*
461 * Don't create subvolume whose level is not zero. Or qgroup will be
462 * screwed up since it assume subvolme qgroup's level to be 0.
463 */
464 if (btrfs_qgroup_level(objectid))
465 return -ENOSPC;
466
Miao Xied5c12072013-02-28 10:04:33 +0000467 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik9ed74f22009-09-11 16:12:44 -0400468 /*
Miao Xied5c12072013-02-28 10:04:33 +0000469 * The same as the snapshot creation, please see the comment
470 * of create_snapshot().
Josef Bacik9ed74f22009-09-11 16:12:44 -0400471 */
Miao Xied5c12072013-02-28 10:04:33 +0000472 ret = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200473 8, &qgroup_reserved, false);
Miao Xied5c12072013-02-28 10:04:33 +0000474 if (ret)
475 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400476
Miao Xied5c12072013-02-28 10:04:33 +0000477 trans = btrfs_start_transaction(root, 0);
478 if (IS_ERR(trans)) {
479 ret = PTR_ERR(trans);
Liu Bode6e8202014-01-09 14:57:06 +0800480 btrfs_subvolume_release_metadata(root, &block_rsv,
481 qgroup_reserved);
482 return ret;
Miao Xied5c12072013-02-28 10:04:33 +0000483 }
484 trans->block_rsv = &block_rsv;
485 trans->bytes_reserved = block_rsv.size;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400486
Miao Xie8696c532013-02-07 06:02:44 +0000487 ret = btrfs_qgroup_inherit(trans, root->fs_info, 0, objectid, inherit);
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200488 if (ret)
489 goto fail;
490
David Sterba4d75f8a2014-06-15 01:54:12 +0200491 leaf = btrfs_alloc_tree_block(trans, root, 0, objectid, NULL, 0, 0, 0);
Josef Bacik8e8a1e32008-07-24 12:17:14 -0400492 if (IS_ERR(leaf)) {
493 ret = PTR_ERR(leaf);
494 goto fail;
495 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400496
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400497 memset_extent_buffer(leaf, 0, 0, sizeof(struct btrfs_header));
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400498 btrfs_set_header_bytenr(leaf, leaf->start);
499 btrfs_set_header_generation(leaf, trans->transid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400500 btrfs_set_header_backref_rev(leaf, BTRFS_MIXED_BACKREF_REV);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400501 btrfs_set_header_owner(leaf, objectid);
502
Ross Kirk0a4e5582013-09-24 10:12:38 +0100503 write_extent_buffer(leaf, root->fs_info->fsid, btrfs_header_fsid(),
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400504 BTRFS_FSID_SIZE);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400505 write_extent_buffer(leaf, root->fs_info->chunk_tree_uuid,
Geert Uytterhoevenb308bc22013-08-20 13:20:15 +0200506 btrfs_header_chunk_tree_uuid(leaf),
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400507 BTRFS_UUID_SIZE);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400508 btrfs_mark_buffer_dirty(leaf);
509
Alexander Block8ea05e32012-07-25 17:35:53 +0200510 memset(&root_item, 0, sizeof(root_item));
511
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400512 inode_item = &root_item.inode;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800513 btrfs_set_stack_inode_generation(inode_item, 1);
514 btrfs_set_stack_inode_size(inode_item, 3);
515 btrfs_set_stack_inode_nlink(inode_item, 1);
David Sterba707e8a02014-06-04 19:22:26 +0200516 btrfs_set_stack_inode_nbytes(inode_item, root->nodesize);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800517 btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400518
Qu Wenruo3cae2102013-07-16 11:19:18 +0800519 btrfs_set_root_flags(&root_item, 0);
520 btrfs_set_root_limit(&root_item, 0);
521 btrfs_set_stack_inode_flags(inode_item, BTRFS_INODE_ROOT_ITEM_INIT);
Li Zefan08fe4db2011-03-28 02:01:25 +0000522
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400523 btrfs_set_root_bytenr(&root_item, leaf->start);
Yan Zheng84234f32008-10-29 14:49:05 -0400524 btrfs_set_root_generation(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400525 btrfs_set_root_level(&root_item, 0);
526 btrfs_set_root_refs(&root_item, 1);
Yan, Zheng86b9f2e2009-11-12 09:36:50 +0000527 btrfs_set_root_used(&root_item, leaf->len);
Yan Zheng80ff3852008-10-30 14:20:02 -0400528 btrfs_set_root_last_snapshot(&root_item, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400529
Alexander Block8ea05e32012-07-25 17:35:53 +0200530 btrfs_set_root_generation_v2(&root_item,
531 btrfs_root_generation(&root_item));
532 uuid_le_gen(&new_uuid);
533 memcpy(root_item.uuid, new_uuid.b, BTRFS_UUID_SIZE);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800534 btrfs_set_stack_timespec_sec(&root_item.otime, cur_time.tv_sec);
535 btrfs_set_stack_timespec_nsec(&root_item.otime, cur_time.tv_nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +0200536 root_item.ctime = root_item.otime;
537 btrfs_set_root_ctransid(&root_item, trans->transid);
538 btrfs_set_root_otransid(&root_item, trans->transid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400539
Chris Mason925baed2008-06-25 16:01:30 -0400540 btrfs_tree_unlock(leaf);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400541 free_extent_buffer(leaf);
542 leaf = NULL;
543
544 btrfs_set_root_dirid(&root_item, new_dirid);
545
546 key.objectid = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400547 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +0200548 key.type = BTRFS_ROOT_ITEM_KEY;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400549 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
550 &root_item);
551 if (ret)
552 goto fail;
553
Yan, Zheng76dda932009-09-21 16:00:26 -0400554 key.offset = (u64)-1;
555 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100556 if (IS_ERR(new_root)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100557 ret = PTR_ERR(new_root);
David Sterba6d13f542015-04-24 19:12:01 +0200558 btrfs_abort_transaction(trans, root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100559 goto fail;
560 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400561
562 btrfs_record_root_in_trans(trans, new_root);
563
Filipe David Borba Manana63541922014-01-07 11:47:46 +0000564 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid);
Mark Fashehce598972011-07-26 11:32:23 -0700565 if (ret) {
566 /* We potentially lose an unused inode item here */
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100567 btrfs_abort_transaction(trans, root, ret);
Mark Fashehce598972011-07-26 11:32:23 -0700568 goto fail;
569 }
570
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530571 mutex_lock(&new_root->objectid_mutex);
572 new_root->highest_objectid = new_dirid;
573 mutex_unlock(&new_root->objectid_mutex);
574
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400575 /*
576 * insert the directory item
577 */
Chris Mason3de45862008-11-17 21:02:50 -0500578 ret = btrfs_set_inode_index(dir, &index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100579 if (ret) {
580 btrfs_abort_transaction(trans, root, ret);
581 goto fail;
582 }
Chris Mason3de45862008-11-17 21:02:50 -0500583
584 ret = btrfs_insert_dir_item(trans, root,
Miao Xie16cdcec2011-04-22 18:12:22 +0800585 name, namelen, dir, &key,
Chris Mason3de45862008-11-17 21:02:50 -0500586 BTRFS_FT_DIR, index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100587 if (ret) {
588 btrfs_abort_transaction(trans, root, ret);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400589 goto fail;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100590 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500591
Yan Zheng52c26172009-01-05 15:43:43 -0500592 btrfs_i_size_write(dir, dir->i_size + namelen * 2);
593 ret = btrfs_update_inode(trans, root, dir);
594 BUG_ON(ret);
595
Chris Mason0660b5a2008-11-17 20:37:39 -0500596 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400597 objectid, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800598 btrfs_ino(dir), index, name, namelen);
Chris Mason0660b5a2008-11-17 20:37:39 -0500599 BUG_ON(ret);
600
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200601 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
602 root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
603 objectid);
604 if (ret)
605 btrfs_abort_transaction(trans, root, ret);
606
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400607fail:
Miao Xied5c12072013-02-28 10:04:33 +0000608 trans->block_rsv = NULL;
609 trans->bytes_reserved = 0;
Liu Bode6e8202014-01-09 14:57:06 +0800610 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
611
Sage Weil72fd0322010-10-29 15:41:32 -0400612 if (async_transid) {
613 *async_transid = trans->transid;
614 err = btrfs_commit_transaction_async(trans, root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000615 if (err)
616 err = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400617 } else {
618 err = btrfs_commit_transaction(trans, root);
619 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400620 if (err && !ret)
621 ret = err;
Chris Mason1a65e242013-02-06 12:06:02 -0500622
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900623 if (!ret) {
624 inode = btrfs_lookup_dentry(dir, dentry);
Liu Bode6e8202014-01-09 14:57:06 +0800625 if (IS_ERR(inode))
626 return PTR_ERR(inode);
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900627 d_instantiate(dentry, inode);
628 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400629 return ret;
630}
631
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000632static void btrfs_wait_for_no_snapshoting_writes(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +0800633{
634 s64 writers;
635 DEFINE_WAIT(wait);
636
637 do {
638 prepare_to_wait(&root->subv_writers->wait, &wait,
639 TASK_UNINTERRUPTIBLE);
640
641 writers = percpu_counter_sum(&root->subv_writers->counter);
642 if (writers)
643 schedule();
644
645 finish_wait(&root->subv_writers->wait, &wait);
646 } while (writers);
647}
648
Miao Xiee9662f72013-02-28 10:01:15 +0000649static int create_snapshot(struct btrfs_root *root, struct inode *dir,
650 struct dentry *dentry, char *name, int namelen,
651 u64 *async_transid, bool readonly,
652 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400653{
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000654 struct inode *inode;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400655 struct btrfs_pending_snapshot *pending_snapshot;
656 struct btrfs_trans_handle *trans;
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000657 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400658
Miao Xie27cdeb72014-04-02 19:51:05 +0800659 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400660 return -EINVAL;
661
David Sterbaa1ee7362015-11-10 18:53:56 +0100662 pending_snapshot = kzalloc(sizeof(*pending_snapshot), GFP_NOFS);
663 if (!pending_snapshot)
664 return -ENOMEM;
665
David Sterbab0c0ea62015-11-10 18:54:00 +0100666 pending_snapshot->root_item = kzalloc(sizeof(struct btrfs_root_item),
667 GFP_NOFS);
David Sterba8546b572015-11-10 18:54:03 +0100668 pending_snapshot->path = btrfs_alloc_path();
669 if (!pending_snapshot->root_item || !pending_snapshot->path) {
David Sterbab0c0ea62015-11-10 18:54:00 +0100670 ret = -ENOMEM;
671 goto free_pending;
672 }
673
Miao Xie8257b2d2014-03-06 13:38:19 +0800674 atomic_inc(&root->will_be_snapshoted);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100675 smp_mb__after_atomic();
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000676 btrfs_wait_for_no_snapshoting_writes(root);
Miao Xie8257b2d2014-03-06 13:38:19 +0800677
Miao Xie6a038432013-05-15 07:48:24 +0000678 ret = btrfs_start_delalloc_inodes(root, 0);
679 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100680 goto dec_and_free;
Miao Xie6a038432013-05-15 07:48:24 +0000681
Miao Xieb0244192013-11-04 23:13:25 +0800682 btrfs_wait_ordered_extents(root, -1);
Miao Xie6a038432013-05-15 07:48:24 +0000683
Miao Xie66d8f3d2012-09-06 04:02:28 -0600684 btrfs_init_block_rsv(&pending_snapshot->block_rsv,
685 BTRFS_BLOCK_RSV_TEMP);
Miao Xied5c12072013-02-28 10:04:33 +0000686 /*
687 * 1 - parent dir inode
688 * 2 - dir entries
689 * 1 - root item
690 * 2 - root ref/backref
691 * 1 - root of snapshot
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200692 * 1 - UUID item
Miao Xied5c12072013-02-28 10:04:33 +0000693 */
694 ret = btrfs_subvolume_reserve_metadata(BTRFS_I(dir)->root,
Stefan Behrensdd5f9612013-08-15 17:11:20 +0200695 &pending_snapshot->block_rsv, 8,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -0400696 &pending_snapshot->qgroup_reserved,
697 false);
Miao Xied5c12072013-02-28 10:04:33 +0000698 if (ret)
David Sterbaa1ee7362015-11-10 18:53:56 +0100699 goto dec_and_free;
Miao Xied5c12072013-02-28 10:04:33 +0000700
Yan, Zhenga22285a2010-05-16 10:48:46 -0400701 pending_snapshot->dentry = dentry;
702 pending_snapshot->root = root;
Li Zefanb83cc962010-12-20 16:04:08 +0800703 pending_snapshot->readonly = readonly;
Miao Xiee9662f72013-02-28 10:01:15 +0000704 pending_snapshot->dir = dir;
Miao Xie8696c532013-02-07 06:02:44 +0000705 pending_snapshot->inherit = inherit;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400706
Miao Xied5c12072013-02-28 10:04:33 +0000707 trans = btrfs_start_transaction(root, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400708 if (IS_ERR(trans)) {
709 ret = PTR_ERR(trans);
710 goto fail;
711 }
712
Josef Bacik83515832011-06-14 15:16:14 -0400713 spin_lock(&root->fs_info->trans_lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400714 list_add(&pending_snapshot->list,
715 &trans->transaction->pending_snapshots);
Josef Bacik83515832011-06-14 15:16:14 -0400716 spin_unlock(&root->fs_info->trans_lock);
Sage Weil72fd0322010-10-29 15:41:32 -0400717 if (async_transid) {
718 *async_transid = trans->transid;
719 ret = btrfs_commit_transaction_async(trans,
720 root->fs_info->extent_root, 1);
Miao Xie00d71c92013-03-04 09:45:06 +0000721 if (ret)
722 ret = btrfs_commit_transaction(trans, root);
Sage Weil72fd0322010-10-29 15:41:32 -0400723 } else {
724 ret = btrfs_commit_transaction(trans,
725 root->fs_info->extent_root);
726 }
Miao Xieaec80302013-03-04 09:44:29 +0000727 if (ret)
Josef Bacikc37b2b62012-10-22 15:51:44 -0400728 goto fail;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400729
730 ret = pending_snapshot->error;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400731 if (ret)
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000732 goto fail;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400733
Chris Masond3797302014-10-15 13:50:56 -0700734 ret = btrfs_orphan_cleanup(pending_snapshot->snap);
735 if (ret)
736 goto fail;
737
David Howells2b0143b2015-03-17 22:25:59 +0000738 inode = btrfs_lookup_dentry(d_inode(dentry->d_parent), dentry);
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000739 if (IS_ERR(inode)) {
740 ret = PTR_ERR(inode);
741 goto fail;
742 }
Tsutomu Itoh5662344b32013-12-13 09:51:42 +0900743
Yan, Zheng2e4bfab2009-11-12 09:37:02 +0000744 d_instantiate(dentry, inode);
745 ret = 0;
746fail:
Miao Xied5c12072013-02-28 10:04:33 +0000747 btrfs_subvolume_release_metadata(BTRFS_I(dir)->root,
748 &pending_snapshot->block_rsv,
749 pending_snapshot->qgroup_reserved);
David Sterbaa1ee7362015-11-10 18:53:56 +0100750dec_and_free:
Filipe Manana9ea24bb2014-10-29 11:57:59 +0000751 if (atomic_dec_and_test(&root->will_be_snapshoted))
752 wake_up_atomic_t(&root->will_be_snapshoted);
David Sterbab0c0ea62015-11-10 18:54:00 +0100753free_pending:
754 kfree(pending_snapshot->root_item);
David Sterba8546b572015-11-10 18:54:03 +0100755 btrfs_free_path(pending_snapshot->path);
David Sterbaa1ee7362015-11-10 18:53:56 +0100756 kfree(pending_snapshot);
757
Christoph Hellwigf46b5a62008-06-11 21:53:53 -0400758 return ret;
759}
760
Sage Weil4260f7c2010-10-29 15:46:43 -0400761/* copy of may_delete in fs/namei.c()
762 * Check whether we can remove a link victim from directory dir, check
763 * whether the type of victim is right.
764 * 1. We can't do it if dir is read-only (done in permission())
765 * 2. We should have write and exec permissions on dir
766 * 3. We can't remove anything from append-only dir
767 * 4. We can't do anything with immutable dir (done in permission())
768 * 5. If the sticky bit on dir is set we should either
769 * a. be owner of dir, or
770 * b. be owner of victim, or
771 * c. have CAP_FOWNER capability
772 * 6. If the victim is append-only or immutable we can't do antyhing with
773 * links pointing to it.
774 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
775 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
776 * 9. We can't remove a root or mountpoint.
777 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
778 * nfs_async_unlink().
779 */
780
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530781static int btrfs_may_delete(struct inode *dir, struct dentry *victim, int isdir)
Sage Weil4260f7c2010-10-29 15:46:43 -0400782{
783 int error;
784
David Howells2b0143b2015-03-17 22:25:59 +0000785 if (d_really_is_negative(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400786 return -ENOENT;
787
David Howells2b0143b2015-03-17 22:25:59 +0000788 BUG_ON(d_inode(victim->d_parent) != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -0400789 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Sage Weil4260f7c2010-10-29 15:46:43 -0400790
791 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
792 if (error)
793 return error;
794 if (IS_APPEND(dir))
795 return -EPERM;
David Howells2b0143b2015-03-17 22:25:59 +0000796 if (check_sticky(dir, d_inode(victim)) || IS_APPEND(d_inode(victim)) ||
797 IS_IMMUTABLE(d_inode(victim)) || IS_SWAPFILE(d_inode(victim)))
Sage Weil4260f7c2010-10-29 15:46:43 -0400798 return -EPERM;
799 if (isdir) {
David Howellse36cb0b2015-01-29 12:02:35 +0000800 if (!d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400801 return -ENOTDIR;
802 if (IS_ROOT(victim))
803 return -EBUSY;
David Howellse36cb0b2015-01-29 12:02:35 +0000804 } else if (d_is_dir(victim))
Sage Weil4260f7c2010-10-29 15:46:43 -0400805 return -EISDIR;
806 if (IS_DEADDIR(dir))
807 return -ENOENT;
808 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
809 return -EBUSY;
810 return 0;
811}
812
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400813/* copy of may_create in fs/namei.c() */
814static inline int btrfs_may_create(struct inode *dir, struct dentry *child)
815{
David Howells2b0143b2015-03-17 22:25:59 +0000816 if (d_really_is_positive(child))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400817 return -EEXIST;
818 if (IS_DEADDIR(dir))
819 return -ENOENT;
820 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
821}
822
823/*
824 * Create a new subvolume below @parent. This is largely modeled after
825 * sys_mkdirat and vfs_mkdir, but we only do a single component lookup
826 * inside this filesystem so it's quite a bit simpler.
827 */
Yan, Zheng76dda932009-09-21 16:00:26 -0400828static noinline int btrfs_mksubvol(struct path *parent,
829 char *name, int namelen,
Sage Weil72fd0322010-10-29 15:41:32 -0400830 struct btrfs_root *snap_src,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200831 u64 *async_transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +0000832 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400833{
David Howells2b0143b2015-03-17 22:25:59 +0000834 struct inode *dir = d_inode(parent->dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400835 struct dentry *dentry;
836 int error;
837
David Sterba5c50c9b2013-03-22 18:12:51 +0000838 error = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
839 if (error == -EINTR)
840 return error;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400841
842 dentry = lookup_one_len(name, parent->dentry, namelen);
843 error = PTR_ERR(dentry);
844 if (IS_ERR(dentry))
845 goto out_unlock;
846
847 error = -EEXIST;
David Howells2b0143b2015-03-17 22:25:59 +0000848 if (d_really_is_positive(dentry))
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400849 goto out_dput;
850
Yan, Zheng76dda932009-09-21 16:00:26 -0400851 error = btrfs_may_create(dir, dentry);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400852 if (error)
Liu Boa874a632012-06-29 03:58:46 -0600853 goto out_dput;
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400854
Chris Mason9c520572012-12-17 14:26:57 -0500855 /*
856 * even if this name doesn't exist, we may get hash collisions.
857 * check for them now when we can safely fail
858 */
859 error = btrfs_check_dir_item_collision(BTRFS_I(dir)->root,
860 dir->i_ino, name,
861 namelen);
862 if (error)
863 goto out_dput;
864
Yan, Zheng76dda932009-09-21 16:00:26 -0400865 down_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
866
867 if (btrfs_root_refs(&BTRFS_I(dir)->root->root_item) == 0)
868 goto out_up_read;
869
Chris Mason3de45862008-11-17 21:02:50 -0500870 if (snap_src) {
Miao Xiee9662f72013-02-28 10:01:15 +0000871 error = create_snapshot(snap_src, dir, dentry, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +0200872 async_transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500873 } else {
Miao Xied5c12072013-02-28 10:04:33 +0000874 error = create_subvol(dir, dentry, name, namelen,
875 async_transid, inherit);
Chris Mason3de45862008-11-17 21:02:50 -0500876 }
Yan, Zheng76dda932009-09-21 16:00:26 -0400877 if (!error)
878 fsnotify_mkdir(dir, dentry);
879out_up_read:
880 up_read(&BTRFS_I(dir)->root->fs_info->subvol_sem);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400881out_dput:
882 dput(dentry);
883out_unlock:
Yan, Zheng76dda932009-09-21 16:00:26 -0400884 mutex_unlock(&dir->i_mutex);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -0400885 return error;
886}
887
Chris Mason4cb53002011-05-24 15:35:30 -0400888/*
889 * When we're defragging a range, we don't want to kick it off again
890 * if it is really just waiting for delalloc to send it down.
891 * If we find a nice big extent or delalloc range for the bytes in the
892 * file you want to defrag, we return 0 to let you know to skip this
893 * part of the file
894 */
David Sterbaaab110a2014-07-29 17:32:10 +0200895static int check_defrag_in_cache(struct inode *inode, u64 offset, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400896{
897 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
898 struct extent_map *em = NULL;
899 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
900 u64 end;
901
902 read_lock(&em_tree->lock);
903 em = lookup_extent_mapping(em_tree, offset, PAGE_CACHE_SIZE);
904 read_unlock(&em_tree->lock);
905
906 if (em) {
907 end = extent_map_end(em);
908 free_extent_map(em);
909 if (end - offset > thresh)
910 return 0;
911 }
912 /* if we already have a nice delalloc here, just stop */
913 thresh /= 2;
914 end = count_range_bits(io_tree, &offset, offset + thresh,
915 thresh, EXTENT_DELALLOC, 1);
916 if (end >= thresh)
917 return 0;
918 return 1;
919}
920
921/*
922 * helper function to walk through a file and find extents
923 * newer than a specific transid, and smaller than thresh.
924 *
925 * This is used by the defragging code to find new and small
926 * extents
927 */
928static int find_new_extents(struct btrfs_root *root,
929 struct inode *inode, u64 newer_than,
David Sterbaaab110a2014-07-29 17:32:10 +0200930 u64 *off, u32 thresh)
Chris Mason4cb53002011-05-24 15:35:30 -0400931{
932 struct btrfs_path *path;
933 struct btrfs_key min_key;
Chris Mason4cb53002011-05-24 15:35:30 -0400934 struct extent_buffer *leaf;
935 struct btrfs_file_extent_item *extent;
936 int type;
937 int ret;
David Sterbaa4689d22011-05-31 17:08:14 +0000938 u64 ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400939
940 path = btrfs_alloc_path();
941 if (!path)
942 return -ENOMEM;
943
David Sterbaa4689d22011-05-31 17:08:14 +0000944 min_key.objectid = ino;
Chris Mason4cb53002011-05-24 15:35:30 -0400945 min_key.type = BTRFS_EXTENT_DATA_KEY;
946 min_key.offset = *off;
947
Dulshani Gunawardhana67871252013-10-31 10:33:04 +0530948 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +0100949 ret = btrfs_search_forward(root, &min_key, path, newer_than);
Chris Mason4cb53002011-05-24 15:35:30 -0400950 if (ret != 0)
951 goto none;
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000952process_slot:
David Sterbaa4689d22011-05-31 17:08:14 +0000953 if (min_key.objectid != ino)
Chris Mason4cb53002011-05-24 15:35:30 -0400954 goto none;
955 if (min_key.type != BTRFS_EXTENT_DATA_KEY)
956 goto none;
957
958 leaf = path->nodes[0];
959 extent = btrfs_item_ptr(leaf, path->slots[0],
960 struct btrfs_file_extent_item);
961
962 type = btrfs_file_extent_type(leaf, extent);
963 if (type == BTRFS_FILE_EXTENT_REG &&
964 btrfs_file_extent_num_bytes(leaf, extent) < thresh &&
965 check_defrag_in_cache(inode, min_key.offset, thresh)) {
966 *off = min_key.offset;
967 btrfs_free_path(path);
968 return 0;
969 }
970
Filipe Mananaf094c9bd2014-03-12 01:28:24 +0000971 path->slots[0]++;
972 if (path->slots[0] < btrfs_header_nritems(leaf)) {
973 btrfs_item_key_to_cpu(leaf, &min_key, path->slots[0]);
974 goto process_slot;
975 }
976
Chris Mason4cb53002011-05-24 15:35:30 -0400977 if (min_key.offset == (u64)-1)
978 goto none;
979
980 min_key.offset++;
981 btrfs_release_path(path);
982 }
983none:
984 btrfs_free_path(path);
985 return -ENOENT;
986}
987
Li Zefan6c282eb2012-06-11 16:03:35 +0800988static struct extent_map *defrag_lookup_extent(struct inode *inode, u64 start)
Liu Bo17ce6ef2012-03-29 09:57:45 -0400989{
990 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason940100a2010-03-10 10:52:59 -0500991 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Li Zefan6c282eb2012-06-11 16:03:35 +0800992 struct extent_map *em;
993 u64 len = PAGE_CACHE_SIZE;
Chris Mason940100a2010-03-10 10:52:59 -0500994
995 /*
996 * hopefully we have this extent in the tree already, try without
997 * the full extent lock
998 */
999 read_lock(&em_tree->lock);
1000 em = lookup_extent_mapping(em_tree, start, len);
1001 read_unlock(&em_tree->lock);
1002
1003 if (!em) {
Filipe Manana308d9802014-03-11 13:56:15 +00001004 struct extent_state *cached = NULL;
1005 u64 end = start + len - 1;
1006
Chris Mason940100a2010-03-10 10:52:59 -05001007 /* get the big lock and read metadata off disk */
David Sterbaff13db42015-12-03 14:30:40 +01001008 lock_extent_bits(io_tree, start, end, &cached);
Chris Mason940100a2010-03-10 10:52:59 -05001009 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
Filipe Manana308d9802014-03-11 13:56:15 +00001010 unlock_extent_cached(io_tree, start, end, &cached, GFP_NOFS);
Chris Mason940100a2010-03-10 10:52:59 -05001011
Dan Carpenter6cf8bfb2010-03-20 11:22:10 +00001012 if (IS_ERR(em))
Li Zefan6c282eb2012-06-11 16:03:35 +08001013 return NULL;
Chris Mason940100a2010-03-10 10:52:59 -05001014 }
1015
Li Zefan6c282eb2012-06-11 16:03:35 +08001016 return em;
1017}
1018
1019static bool defrag_check_next_extent(struct inode *inode, struct extent_map *em)
1020{
1021 struct extent_map *next;
1022 bool ret = true;
1023
1024 /* this is the last extent */
1025 if (em->start + em->len >= i_size_read(inode))
1026 return false;
1027
1028 next = defrag_lookup_extent(inode, em->start + em->len);
Chris Masone9512d72014-08-26 13:55:54 -07001029 if (!next || next->block_start >= EXTENT_MAP_LAST_BYTE)
1030 ret = false;
1031 else if ((em->block_start + em->block_len == next->block_start) &&
Byongho Leeee221842015-12-15 01:42:10 +09001032 (em->block_len > SZ_128K && next->block_len > SZ_128K))
Li Zefan6c282eb2012-06-11 16:03:35 +08001033 ret = false;
1034
1035 free_extent_map(next);
1036 return ret;
1037}
1038
David Sterbaaab110a2014-07-29 17:32:10 +02001039static int should_defrag_range(struct inode *inode, u64 start, u32 thresh,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001040 u64 *last_len, u64 *skip, u64 *defrag_end,
1041 int compress)
Li Zefan6c282eb2012-06-11 16:03:35 +08001042{
1043 struct extent_map *em;
1044 int ret = 1;
1045 bool next_mergeable = true;
Liu Bo4a3560c2015-08-07 16:48:41 +08001046 bool prev_mergeable = true;
Li Zefan6c282eb2012-06-11 16:03:35 +08001047
1048 /*
1049 * make sure that once we start defragging an extent, we keep on
1050 * defragging it
1051 */
1052 if (start < *defrag_end)
1053 return 1;
1054
1055 *skip = 0;
1056
1057 em = defrag_lookup_extent(inode, start);
1058 if (!em)
1059 return 0;
1060
Chris Mason940100a2010-03-10 10:52:59 -05001061 /* this will cover holes, and inline extents */
Liu Bo17ce6ef2012-03-29 09:57:45 -04001062 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
Chris Mason940100a2010-03-10 10:52:59 -05001063 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001064 goto out;
1065 }
1066
Liu Bo4a3560c2015-08-07 16:48:41 +08001067 if (!*defrag_end)
1068 prev_mergeable = false;
1069
Li Zefan6c282eb2012-06-11 16:03:35 +08001070 next_mergeable = defrag_check_next_extent(inode, em);
Chris Mason940100a2010-03-10 10:52:59 -05001071 /*
Li Zefan6c282eb2012-06-11 16:03:35 +08001072 * we hit a real extent, if it is big or the next extent is not a
1073 * real extent, don't bother defragging it
Chris Mason940100a2010-03-10 10:52:59 -05001074 */
Andrew Mahonea43a2112012-06-19 21:08:32 -04001075 if (!compress && (*last_len == 0 || *last_len >= thresh) &&
Liu Bo4a3560c2015-08-07 16:48:41 +08001076 (em->len >= thresh || (!next_mergeable && !prev_mergeable)))
Chris Mason940100a2010-03-10 10:52:59 -05001077 ret = 0;
Liu Bo17ce6ef2012-03-29 09:57:45 -04001078out:
Chris Mason940100a2010-03-10 10:52:59 -05001079 /*
1080 * last_len ends up being a counter of how many bytes we've defragged.
1081 * every time we choose not to defrag an extent, we reset *last_len
1082 * so that the next tiny extent will force a defrag.
1083 *
1084 * The end result of this is that tiny extents before a single big
1085 * extent will force at least part of that big extent to be defragged.
1086 */
1087 if (ret) {
Chris Mason940100a2010-03-10 10:52:59 -05001088 *defrag_end = extent_map_end(em);
1089 } else {
1090 *last_len = 0;
1091 *skip = extent_map_end(em);
1092 *defrag_end = 0;
1093 }
1094
1095 free_extent_map(em);
1096 return ret;
1097}
1098
Chris Mason4cb53002011-05-24 15:35:30 -04001099/*
1100 * it doesn't do much good to defrag one or two pages
1101 * at a time. This pulls in a nice chunk of pages
1102 * to COW and defrag.
1103 *
1104 * It also makes sure the delalloc code has enough
1105 * dirty data to avoid making new small extents as part
1106 * of the defrag
1107 *
1108 * It's a good idea to start RA on this range
1109 * before calling this.
1110 */
1111static int cluster_pages_for_defrag(struct inode *inode,
1112 struct page **pages,
1113 unsigned long start_index,
Justin Maggardc41570c2014-01-21 11:18:29 -08001114 unsigned long num_pages)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001115{
Chris Mason4cb53002011-05-24 15:35:30 -04001116 unsigned long file_end;
1117 u64 isize = i_size_read(inode);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001118 u64 page_start;
1119 u64 page_end;
Liu Bo1f12bd02012-03-29 09:57:44 -04001120 u64 page_cnt;
Chris Mason4cb53002011-05-24 15:35:30 -04001121 int ret;
1122 int i;
1123 int i_done;
1124 struct btrfs_ordered_extent *ordered;
1125 struct extent_state *cached_state = NULL;
Miao Xie600a45e2012-02-16 15:01:24 +08001126 struct extent_io_tree *tree;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001127 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason4cb53002011-05-24 15:35:30 -04001128
Chris Mason4cb53002011-05-24 15:35:30 -04001129 file_end = (isize - 1) >> PAGE_CACHE_SHIFT;
Liu Bo1f12bd02012-03-29 09:57:44 -04001130 if (!isize || start_index > file_end)
1131 return 0;
1132
1133 page_cnt = min_t(u64, (u64)num_pages, (u64)file_end - start_index + 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001134
1135 ret = btrfs_delalloc_reserve_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08001136 start_index << PAGE_CACHE_SHIFT,
1137 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001138 if (ret)
1139 return ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001140 i_done = 0;
Miao Xie600a45e2012-02-16 15:01:24 +08001141 tree = &BTRFS_I(inode)->io_tree;
Chris Mason4cb53002011-05-24 15:35:30 -04001142
1143 /* step one, lock all the pages */
Liu Bo1f12bd02012-03-29 09:57:44 -04001144 for (i = 0; i < page_cnt; i++) {
Chris Mason4cb53002011-05-24 15:35:30 -04001145 struct page *page;
Miao Xie600a45e2012-02-16 15:01:24 +08001146again:
Josef Bacika94733d2011-07-11 10:47:06 -04001147 page = find_or_create_page(inode->i_mapping,
Miao Xie600a45e2012-02-16 15:01:24 +08001148 start_index + i, mask);
Chris Mason4cb53002011-05-24 15:35:30 -04001149 if (!page)
1150 break;
1151
Miao Xie600a45e2012-02-16 15:01:24 +08001152 page_start = page_offset(page);
1153 page_end = page_start + PAGE_CACHE_SIZE - 1;
1154 while (1) {
Filipe Manana308d9802014-03-11 13:56:15 +00001155 lock_extent_bits(tree, page_start, page_end,
David Sterbaff13db42015-12-03 14:30:40 +01001156 &cached_state);
Miao Xie600a45e2012-02-16 15:01:24 +08001157 ordered = btrfs_lookup_ordered_extent(inode,
1158 page_start);
Filipe Manana308d9802014-03-11 13:56:15 +00001159 unlock_extent_cached(tree, page_start, page_end,
1160 &cached_state, GFP_NOFS);
Miao Xie600a45e2012-02-16 15:01:24 +08001161 if (!ordered)
1162 break;
1163
1164 unlock_page(page);
1165 btrfs_start_ordered_extent(inode, ordered, 1);
1166 btrfs_put_ordered_extent(ordered);
1167 lock_page(page);
Liu Bo1f12bd02012-03-29 09:57:44 -04001168 /*
1169 * we unlocked the page above, so we need check if
1170 * it was released or not.
1171 */
1172 if (page->mapping != inode->i_mapping) {
1173 unlock_page(page);
1174 page_cache_release(page);
1175 goto again;
1176 }
Miao Xie600a45e2012-02-16 15:01:24 +08001177 }
1178
Chris Mason4cb53002011-05-24 15:35:30 -04001179 if (!PageUptodate(page)) {
1180 btrfs_readpage(NULL, page);
1181 lock_page(page);
1182 if (!PageUptodate(page)) {
1183 unlock_page(page);
1184 page_cache_release(page);
1185 ret = -EIO;
1186 break;
1187 }
1188 }
Miao Xie600a45e2012-02-16 15:01:24 +08001189
Miao Xie600a45e2012-02-16 15:01:24 +08001190 if (page->mapping != inode->i_mapping) {
1191 unlock_page(page);
1192 page_cache_release(page);
1193 goto again;
1194 }
1195
Chris Mason4cb53002011-05-24 15:35:30 -04001196 pages[i] = page;
1197 i_done++;
1198 }
1199 if (!i_done || ret)
1200 goto out;
1201
1202 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1203 goto out;
1204
1205 /*
1206 * so now we have a nice long stream of locked
1207 * and up to date pages, lets wait on them
1208 */
1209 for (i = 0; i < i_done; i++)
1210 wait_on_page_writeback(pages[i]);
1211
1212 page_start = page_offset(pages[0]);
1213 page_end = page_offset(pages[i_done - 1]) + PAGE_CACHE_SIZE;
1214
1215 lock_extent_bits(&BTRFS_I(inode)->io_tree,
David Sterbaff13db42015-12-03 14:30:40 +01001216 page_start, page_end - 1, &cached_state);
Chris Mason4cb53002011-05-24 15:35:30 -04001217 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start,
1218 page_end - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001219 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG, 0, 0,
1220 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001221
Liu Bo1f12bd02012-03-29 09:57:44 -04001222 if (i_done != page_cnt) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001223 spin_lock(&BTRFS_I(inode)->lock);
1224 BTRFS_I(inode)->outstanding_extents++;
1225 spin_unlock(&BTRFS_I(inode)->lock);
Chris Mason4cb53002011-05-24 15:35:30 -04001226 btrfs_delalloc_release_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08001227 start_index << PAGE_CACHE_SHIFT,
1228 (page_cnt - i_done) << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001229 }
1230
1231
Liu Bo9e8a4a82012-09-05 19:10:51 -06001232 set_extent_defrag(&BTRFS_I(inode)->io_tree, page_start, page_end - 1,
1233 &cached_state, GFP_NOFS);
Chris Mason4cb53002011-05-24 15:35:30 -04001234
1235 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1236 page_start, page_end - 1, &cached_state,
1237 GFP_NOFS);
1238
1239 for (i = 0; i < i_done; i++) {
1240 clear_page_dirty_for_io(pages[i]);
1241 ClearPageChecked(pages[i]);
1242 set_page_extent_mapped(pages[i]);
1243 set_page_dirty(pages[i]);
1244 unlock_page(pages[i]);
1245 page_cache_release(pages[i]);
1246 }
1247 return i_done;
1248out:
1249 for (i = 0; i < i_done; i++) {
1250 unlock_page(pages[i]);
1251 page_cache_release(pages[i]);
1252 }
Qu Wenruo7cf5b972015-09-08 17:25:55 +08001253 btrfs_delalloc_release_space(inode,
Qu Wenruodf480632015-09-08 17:25:54 +08001254 start_index << PAGE_CACHE_SHIFT,
1255 page_cnt << PAGE_CACHE_SHIFT);
Chris Mason4cb53002011-05-24 15:35:30 -04001256 return ret;
1257
1258}
1259
1260int btrfs_defrag_file(struct inode *inode, struct file *file,
1261 struct btrfs_ioctl_defrag_range_args *range,
1262 u64 newer_than, unsigned long max_to_defrag)
1263{
1264 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason4cb53002011-05-24 15:35:30 -04001265 struct file_ra_state *ra = NULL;
1266 unsigned long last_index;
Li Zefan151a31b2011-09-02 15:56:39 +08001267 u64 isize = i_size_read(inode);
Chris Mason940100a2010-03-10 10:52:59 -05001268 u64 last_len = 0;
1269 u64 skip = 0;
1270 u64 defrag_end = 0;
Chris Mason4cb53002011-05-24 15:35:30 -04001271 u64 newer_off = range->start;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001272 unsigned long i;
Li Zefan008873e2011-09-02 15:57:07 +08001273 unsigned long ra_index = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001274 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -04001275 int defrag_count = 0;
Li Zefan1a419d82010-10-25 15:12:50 +08001276 int compress_type = BTRFS_COMPRESS_ZLIB;
David Sterbaaab110a2014-07-29 17:32:10 +02001277 u32 extent_thresh = range->extent_thresh;
Byongho Leeee221842015-12-15 01:42:10 +09001278 unsigned long max_cluster = SZ_256K >> PAGE_CACHE_SHIFT;
Justin Maggardc41570c2014-01-21 11:18:29 -08001279 unsigned long cluster = max_cluster;
Byongho Leeee221842015-12-15 01:42:10 +09001280 u64 new_align = ~((u64)SZ_128K - 1);
Chris Mason4cb53002011-05-24 15:35:30 -04001281 struct page **pages = NULL;
1282
Liu Bo0abd5b12013-04-16 09:20:28 +00001283 if (isize == 0)
1284 return 0;
1285
1286 if (range->start >= isize)
1287 return -EINVAL;
Li Zefan1a419d82010-10-25 15:12:50 +08001288
1289 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1290 if (range->compress_type > BTRFS_COMPRESS_TYPES)
1291 return -EINVAL;
1292 if (range->compress_type)
1293 compress_type = range->compress_type;
1294 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001295
Liu Bo0abd5b12013-04-16 09:20:28 +00001296 if (extent_thresh == 0)
Byongho Leeee221842015-12-15 01:42:10 +09001297 extent_thresh = SZ_256K;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001298
Chris Mason4cb53002011-05-24 15:35:30 -04001299 /*
1300 * if we were not given a file, allocate a readahead
1301 * context
1302 */
1303 if (!file) {
1304 ra = kzalloc(sizeof(*ra), GFP_NOFS);
1305 if (!ra)
1306 return -ENOMEM;
1307 file_ra_state_init(ra, inode->i_mapping);
1308 } else {
1309 ra = &file->f_ra;
1310 }
1311
Dulshani Gunawardhanad9b0d9b2013-10-31 10:32:18 +05301312 pages = kmalloc_array(max_cluster, sizeof(struct page *),
Chris Mason4cb53002011-05-24 15:35:30 -04001313 GFP_NOFS);
1314 if (!pages) {
1315 ret = -ENOMEM;
1316 goto out_ra;
1317 }
1318
1319 /* find the last page to defrag */
Chris Mason1e701a32010-03-11 09:42:04 -05001320 if (range->start + range->len > range->start) {
Li Zefan151a31b2011-09-02 15:56:39 +08001321 last_index = min_t(u64, isize - 1,
Chris Mason1e701a32010-03-11 09:42:04 -05001322 range->start + range->len - 1) >> PAGE_CACHE_SHIFT;
1323 } else {
Li Zefan151a31b2011-09-02 15:56:39 +08001324 last_index = (isize - 1) >> PAGE_CACHE_SHIFT;
Chris Mason1e701a32010-03-11 09:42:04 -05001325 }
1326
Chris Mason4cb53002011-05-24 15:35:30 -04001327 if (newer_than) {
1328 ret = find_new_extents(root, inode, newer_than,
Byongho Leeee221842015-12-15 01:42:10 +09001329 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001330 if (!ret) {
1331 range->start = newer_off;
1332 /*
1333 * we always align our defrag to help keep
1334 * the extents in the file evenly spaced
1335 */
1336 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001337 } else
1338 goto out_ra;
1339 } else {
1340 i = range->start >> PAGE_CACHE_SHIFT;
1341 }
1342 if (!max_to_defrag)
chandan070034b2015-06-09 10:35:11 +05301343 max_to_defrag = last_index - i + 1;
Chris Mason4cb53002011-05-24 15:35:30 -04001344
Li Zefan2a0f7f52011-10-10 15:43:34 -04001345 /*
1346 * make writeback starts from i, so the defrag range can be
1347 * written sequentially.
1348 */
1349 if (i < inode->i_mapping->writeback_index)
1350 inode->i_mapping->writeback_index = i;
1351
Chris Masonf7f43cc2011-10-11 11:41:40 -04001352 while (i <= last_index && defrag_count < max_to_defrag &&
David Sterbaed6078f2014-06-05 01:59:57 +02001353 (i < DIV_ROUND_UP(i_size_read(inode), PAGE_CACHE_SIZE))) {
Chris Mason4cb53002011-05-24 15:35:30 -04001354 /*
1355 * make sure we stop running if someone unmounts
1356 * the FS
1357 */
1358 if (!(inode->i_sb->s_flags & MS_ACTIVE))
1359 break;
1360
David Sterba210549e2013-02-09 23:38:06 +00001361 if (btrfs_defrag_cancelled(root->fs_info)) {
David Sterbaf14d1042015-10-08 11:37:06 +02001362 btrfs_debug(root->fs_info, "defrag_file cancelled");
David Sterba210549e2013-02-09 23:38:06 +00001363 ret = -EAGAIN;
1364 break;
1365 }
1366
Liu Bo66c26892012-03-29 09:57:45 -04001367 if (!should_defrag_range(inode, (u64)i << PAGE_CACHE_SHIFT,
Li Zefan6c282eb2012-06-11 16:03:35 +08001368 extent_thresh, &last_len, &skip,
Andrew Mahonea43a2112012-06-19 21:08:32 -04001369 &defrag_end, range->flags &
1370 BTRFS_DEFRAG_RANGE_COMPRESS)) {
Chris Mason940100a2010-03-10 10:52:59 -05001371 unsigned long next;
1372 /*
1373 * the should_defrag function tells us how much to skip
1374 * bump our counter by the suggested amount
1375 */
David Sterbaed6078f2014-06-05 01:59:57 +02001376 next = DIV_ROUND_UP(skip, PAGE_CACHE_SIZE);
Chris Mason940100a2010-03-10 10:52:59 -05001377 i = max(i + 1, next);
1378 continue;
1379 }
Li Zefan008873e2011-09-02 15:57:07 +08001380
1381 if (!newer_than) {
1382 cluster = (PAGE_CACHE_ALIGN(defrag_end) >>
1383 PAGE_CACHE_SHIFT) - i;
1384 cluster = min(cluster, max_cluster);
1385 } else {
1386 cluster = max_cluster;
1387 }
1388
Li Zefan008873e2011-09-02 15:57:07 +08001389 if (i + cluster > ra_index) {
1390 ra_index = max(i, ra_index);
1391 btrfs_force_ra(inode->i_mapping, ra, file, ra_index,
1392 cluster);
chandane4826a52015-06-09 17:38:32 +05301393 ra_index += cluster;
Li Zefan008873e2011-09-02 15:57:07 +08001394 }
Chris Mason940100a2010-03-10 10:52:59 -05001395
Liu Boecb8bea2012-03-29 09:57:44 -04001396 mutex_lock(&inode->i_mutex);
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001397 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)
1398 BTRFS_I(inode)->force_compress = compress_type;
Li Zefan008873e2011-09-02 15:57:07 +08001399 ret = cluster_pages_for_defrag(inode, pages, i, cluster);
Liu Boecb8bea2012-03-29 09:57:44 -04001400 if (ret < 0) {
1401 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001402 goto out_ra;
Liu Boecb8bea2012-03-29 09:57:44 -04001403 }
Chris Mason940100a2010-03-10 10:52:59 -05001404
Chris Mason4cb53002011-05-24 15:35:30 -04001405 defrag_count += ret;
Namjae Jeond0e1d662012-12-11 16:00:21 -08001406 balance_dirty_pages_ratelimited(inode->i_mapping);
Liu Boecb8bea2012-03-29 09:57:44 -04001407 mutex_unlock(&inode->i_mutex);
Chris Mason4cb53002011-05-24 15:35:30 -04001408
1409 if (newer_than) {
1410 if (newer_off == (u64)-1)
1411 break;
1412
Liu Boe1f041e2012-03-29 09:57:45 -04001413 if (ret > 0)
1414 i += ret;
1415
Chris Mason4cb53002011-05-24 15:35:30 -04001416 newer_off = max(newer_off + 1,
1417 (u64)i << PAGE_CACHE_SHIFT);
1418
Byongho Leeee221842015-12-15 01:42:10 +09001419 ret = find_new_extents(root, inode, newer_than,
1420 &newer_off, SZ_64K);
Chris Mason4cb53002011-05-24 15:35:30 -04001421 if (!ret) {
1422 range->start = newer_off;
1423 i = (newer_off & new_align) >> PAGE_CACHE_SHIFT;
Chris Mason4cb53002011-05-24 15:35:30 -04001424 } else {
1425 break;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001426 }
Chris Mason4cb53002011-05-24 15:35:30 -04001427 } else {
Li Zefan008873e2011-09-02 15:57:07 +08001428 if (ret > 0) {
Li Zefancbcc8322011-09-02 15:56:25 +08001429 i += ret;
Li Zefan008873e2011-09-02 15:57:07 +08001430 last_len += ret << PAGE_CACHE_SHIFT;
1431 } else {
Li Zefancbcc8322011-09-02 15:56:25 +08001432 i++;
Li Zefan008873e2011-09-02 15:57:07 +08001433 last_len = 0;
1434 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001435 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001436 }
1437
Filipe Mananadec8ef92014-03-01 10:55:54 +00001438 if ((range->flags & BTRFS_DEFRAG_RANGE_START_IO)) {
Chris Mason1e701a32010-03-11 09:42:04 -05001439 filemap_flush(inode->i_mapping);
Filipe Mananadec8ef92014-03-01 10:55:54 +00001440 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1441 &BTRFS_I(inode)->runtime_flags))
1442 filemap_flush(inode->i_mapping);
1443 }
Chris Mason1e701a32010-03-11 09:42:04 -05001444
1445 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
1446 /* the filemap_flush will queue IO into the worker threads, but
1447 * we have to make sure the IO is actually started and that
1448 * ordered extents get created before we return
1449 */
1450 atomic_inc(&root->fs_info->async_submit_draining);
1451 while (atomic_read(&root->fs_info->nr_async_submits) ||
1452 atomic_read(&root->fs_info->async_delalloc_pages)) {
1453 wait_event(root->fs_info->async_submit_wait,
1454 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
1455 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
1456 }
1457 atomic_dec(&root->fs_info->async_submit_draining);
Chris Mason1e701a32010-03-11 09:42:04 -05001458 }
1459
Li Zefan1a419d82010-10-25 15:12:50 +08001460 if (range->compress_type == BTRFS_COMPRESS_LZO) {
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06001461 btrfs_set_fs_incompat(root->fs_info, COMPRESS_LZO);
Li Zefan1a419d82010-10-25 15:12:50 +08001462 }
1463
Diego Calleja60ccf822011-09-01 16:33:57 +02001464 ret = defrag_count;
Chris Mason940100a2010-03-10 10:52:59 -05001465
Chris Mason4cb53002011-05-24 15:35:30 -04001466out_ra:
Filipe David Borba Manana633085c2013-08-16 15:23:33 +01001467 if (range->flags & BTRFS_DEFRAG_RANGE_COMPRESS) {
1468 mutex_lock(&inode->i_mutex);
1469 BTRFS_I(inode)->force_compress = BTRFS_COMPRESS_NONE;
1470 mutex_unlock(&inode->i_mutex);
1471 }
Chris Mason4cb53002011-05-24 15:35:30 -04001472 if (!file)
1473 kfree(ra);
1474 kfree(pages);
Chris Mason940100a2010-03-10 10:52:59 -05001475 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001476}
1477
Miao Xie198605a2012-11-26 08:43:45 +00001478static noinline int btrfs_ioctl_resize(struct file *file,
Yan, Zheng76dda932009-09-21 16:00:26 -04001479 void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001480{
1481 u64 new_size;
1482 u64 old_size;
1483 u64 devid = 1;
Al Viro496ad9a2013-01-23 17:07:38 -05001484 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001485 struct btrfs_ioctl_vol_args *vol_args;
1486 struct btrfs_trans_handle *trans;
1487 struct btrfs_device *device = NULL;
1488 char *sizestr;
Gui Hecheng9a40f122014-03-31 18:03:25 +08001489 char *retptr;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001490 char *devstr = NULL;
1491 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001492 int mod = 0;
1493
Chris Masone441d542009-01-05 16:57:23 -05001494 if (!capable(CAP_SYS_ADMIN))
1495 return -EPERM;
1496
Miao Xie198605a2012-11-26 08:43:45 +00001497 ret = mnt_want_write_file(file);
1498 if (ret)
1499 return ret;
1500
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001501 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
1502 1)) {
Miao Xie97547672012-12-21 10:38:50 +00001503 mnt_drop_write_file(file);
Anand Jaine57138b2013-08-21 11:44:48 +08001504 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001505 }
1506
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001507 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08001508 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001509 if (IS_ERR(vol_args)) {
1510 ret = PTR_ERR(vol_args);
1511 goto out;
1512 }
Mark Fasheh5516e592008-07-24 12:20:14 -04001513
1514 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001515
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001516 sizestr = vol_args->name;
1517 devstr = strchr(sizestr, ':');
1518 if (devstr) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001519 sizestr = devstr + 1;
1520 *devstr = '\0';
1521 devstr = vol_args->name;
ZhangZhen58dfae62014-05-13 16:36:08 +08001522 ret = kstrtoull(devstr, 10, &devid);
1523 if (ret)
1524 goto out_free;
Miao Xiedfd79822012-12-21 09:21:30 +00001525 if (!devid) {
1526 ret = -EINVAL;
1527 goto out_free;
1528 }
Frank Holtonefe120a2013-12-20 11:37:06 -05001529 btrfs_info(root->fs_info, "resizing devid %llu", devid);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001530 }
Miao Xiedba60f32012-12-21 09:19:51 +00001531
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01001532 device = btrfs_find_device(root->fs_info, devid, NULL, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001533 if (!device) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001534 btrfs_info(root->fs_info, "resizer unable to find device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001535 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001536 ret = -ENODEV;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001537 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001538 }
Miao Xiedba60f32012-12-21 09:19:51 +00001539
1540 if (!device->writeable) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001541 btrfs_info(root->fs_info,
1542 "resizer unable to apply on readonly device %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001543 devid);
Miao Xiedfd79822012-12-21 09:21:30 +00001544 ret = -EPERM;
Liu Bo4e42ae12012-06-14 02:23:19 -06001545 goto out_free;
1546 }
1547
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001548 if (!strcmp(sizestr, "max"))
1549 new_size = device->bdev->bd_inode->i_size;
1550 else {
1551 if (sizestr[0] == '-') {
1552 mod = -1;
1553 sizestr++;
1554 } else if (sizestr[0] == '+') {
1555 mod = 1;
1556 sizestr++;
1557 }
Gui Hecheng9a40f122014-03-31 18:03:25 +08001558 new_size = memparse(sizestr, &retptr);
1559 if (*retptr != '\0' || new_size == 0) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001560 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001561 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001562 }
1563 }
1564
Stefan Behrens63a212a2012-11-05 18:29:28 +01001565 if (device->is_tgtdev_for_dev_replace) {
Miao Xiedfd79822012-12-21 09:21:30 +00001566 ret = -EPERM;
Stefan Behrens63a212a2012-11-05 18:29:28 +01001567 goto out_free;
1568 }
1569
Miao Xie7cc8e582014-09-03 21:35:38 +08001570 old_size = btrfs_device_get_total_bytes(device);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001571
1572 if (mod < 0) {
1573 if (new_size > old_size) {
1574 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001575 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001576 }
1577 new_size = old_size - new_size;
1578 } else if (mod > 0) {
Wenliang Faneb8052e2013-12-20 15:28:56 +08001579 if (new_size > ULLONG_MAX - old_size) {
Gui Hecheng902c68a2014-05-29 09:19:58 +08001580 ret = -ERANGE;
Wenliang Faneb8052e2013-12-20 15:28:56 +08001581 goto out_free;
1582 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001583 new_size = old_size + new_size;
1584 }
1585
Byongho Leeee221842015-12-15 01:42:10 +09001586 if (new_size < SZ_256M) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001587 ret = -EINVAL;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001588 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001589 }
1590 if (new_size > device->bdev->bd_inode->i_size) {
1591 ret = -EFBIG;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001592 goto out_free;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001593 }
1594
David Sterbab8b93ad2015-01-16 17:26:13 +01001595 new_size = div_u64(new_size, root->sectorsize);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001596 new_size *= root->sectorsize;
1597
David Sterbaecaeb142015-10-08 09:01:03 +02001598 btrfs_info_in_rcu(root->fs_info, "new size for %s is %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001599 rcu_str_deref(device->name), new_size);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001600
1601 if (new_size > old_size) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04001602 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001603 if (IS_ERR(trans)) {
1604 ret = PTR_ERR(trans);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001605 goto out_free;
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00001606 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001607 ret = btrfs_grow_device(trans, device, new_size);
1608 btrfs_commit_transaction(trans, root);
Mike Fleetwoodece7d202011-11-18 18:55:01 +00001609 } else if (new_size < old_size) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001610 ret = btrfs_shrink_device(device, new_size);
jeff.liu0253f402012-10-27 12:06:39 +00001611 } /* equal, nothing need to do */
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001612
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001613out_free:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001614 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02001615out:
1616 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01001617 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Ilya Dryomov18f39c42013-01-20 15:57:57 +02001618 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001619 return ret;
1620}
1621
Sage Weil72fd0322010-10-29 15:41:32 -04001622static noinline int btrfs_ioctl_snap_create_transid(struct file *file,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001623 char *name, unsigned long fd, int subvol,
1624 u64 *transid, bool readonly,
Miao Xie8696c532013-02-07 06:02:44 +00001625 struct btrfs_qgroup_inherit *inherit)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001626{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001627 int namelen;
Chris Mason3de45862008-11-17 21:02:50 -05001628 int ret = 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001629
Liu Boa874a632012-06-29 03:58:46 -06001630 ret = mnt_want_write_file(file);
1631 if (ret)
1632 goto out;
1633
Sage Weil72fd0322010-10-29 15:41:32 -04001634 namelen = strlen(name);
1635 if (strchr(name, '/')) {
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001636 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001637 goto out_drop_write;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001638 }
1639
Chris Mason16780ca2012-02-20 22:14:55 -05001640 if (name[0] == '.' &&
1641 (namelen == 1 || (name[1] == '.' && namelen == 2))) {
1642 ret = -EEXIST;
Liu Boa874a632012-06-29 03:58:46 -06001643 goto out_drop_write;
Chris Mason16780ca2012-02-20 22:14:55 -05001644 }
1645
Chris Mason3de45862008-11-17 21:02:50 -05001646 if (subvol) {
Sage Weil72fd0322010-10-29 15:41:32 -04001647 ret = btrfs_mksubvol(&file->f_path, name, namelen,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001648 NULL, transid, readonly, inherit);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001649 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001650 struct fd src = fdget(fd);
Chris Mason3de45862008-11-17 21:02:50 -05001651 struct inode *src_inode;
Al Viro2903ff02012-08-28 12:52:22 -04001652 if (!src.file) {
Chris Mason3de45862008-11-17 21:02:50 -05001653 ret = -EINVAL;
Liu Boa874a632012-06-29 03:58:46 -06001654 goto out_drop_write;
Chris Mason3de45862008-11-17 21:02:50 -05001655 }
1656
Al Viro496ad9a2013-01-23 17:07:38 -05001657 src_inode = file_inode(src.file);
1658 if (src_inode->i_sb != file_inode(file)->i_sb) {
Frank Holtonefe120a2013-12-20 11:37:06 -05001659 btrfs_info(BTRFS_I(src_inode)->root->fs_info,
1660 "Snapshot src from another FS");
Kusanagi Kouichi23ad5b12014-01-30 16:32:02 +09001661 ret = -EXDEV;
David Sterbad0242062014-01-15 18:15:52 +01001662 } else if (!inode_owner_or_capable(src_inode)) {
1663 /*
1664 * Subvolume creation is not restricted, but snapshots
1665 * are limited to own subvolumes only
1666 */
1667 ret = -EPERM;
Al Viroecd18812012-08-26 21:20:24 -04001668 } else {
1669 ret = btrfs_mksubvol(&file->f_path, name, namelen,
1670 BTRFS_I(src_inode)->root,
1671 transid, readonly, inherit);
Chris Mason3de45862008-11-17 21:02:50 -05001672 }
Al Viro2903ff02012-08-28 12:52:22 -04001673 fdput(src);
Christoph Hellwigcb8e7092008-10-09 13:39:39 -04001674 }
Liu Boa874a632012-06-29 03:58:46 -06001675out_drop_write:
1676 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001677out:
Sage Weil72fd0322010-10-29 15:41:32 -04001678 return ret;
1679}
1680
1681static noinline int btrfs_ioctl_snap_create(struct file *file,
Li Zefanfa0d2b92010-12-20 15:53:28 +08001682 void __user *arg, int subvol)
Sage Weil72fd0322010-10-29 15:41:32 -04001683{
Li Zefanfa0d2b92010-12-20 15:53:28 +08001684 struct btrfs_ioctl_vol_args *vol_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001685 int ret;
1686
Li Zefanfa0d2b92010-12-20 15:53:28 +08001687 vol_args = memdup_user(arg, sizeof(*vol_args));
1688 if (IS_ERR(vol_args))
1689 return PTR_ERR(vol_args);
1690 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Sage Weil72fd0322010-10-29 15:41:32 -04001691
Li Zefanfa0d2b92010-12-20 15:53:28 +08001692 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Li Zefanb83cc962010-12-20 16:04:08 +08001693 vol_args->fd, subvol,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001694 NULL, false, NULL);
Li Zefanfdfb1e42010-12-10 06:41:56 +00001695
Li Zefanfa0d2b92010-12-20 15:53:28 +08001696 kfree(vol_args);
1697 return ret;
1698}
Li Zefanfdfb1e42010-12-10 06:41:56 +00001699
Li Zefanfa0d2b92010-12-20 15:53:28 +08001700static noinline int btrfs_ioctl_snap_create_v2(struct file *file,
1701 void __user *arg, int subvol)
1702{
1703 struct btrfs_ioctl_vol_args_v2 *vol_args;
1704 int ret;
1705 u64 transid = 0;
1706 u64 *ptr = NULL;
Li Zefanb83cc962010-12-20 16:04:08 +08001707 bool readonly = false;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001708 struct btrfs_qgroup_inherit *inherit = NULL;
Li Zefanfdfb1e42010-12-10 06:41:56 +00001709
Li Zefanfa0d2b92010-12-20 15:53:28 +08001710 vol_args = memdup_user(arg, sizeof(*vol_args));
1711 if (IS_ERR(vol_args))
1712 return PTR_ERR(vol_args);
1713 vol_args->name[BTRFS_SUBVOL_NAME_MAX] = '\0';
Sage Weil75eaa0e2010-12-10 00:36:28 +00001714
Li Zefanb83cc962010-12-20 16:04:08 +08001715 if (vol_args->flags &
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001716 ~(BTRFS_SUBVOL_CREATE_ASYNC | BTRFS_SUBVOL_RDONLY |
1717 BTRFS_SUBVOL_QGROUP_INHERIT)) {
Li Zefanb83cc962010-12-20 16:04:08 +08001718 ret = -EOPNOTSUPP;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001719 goto free_args;
Sage Weil72fd0322010-10-29 15:41:32 -04001720 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001721
1722 if (vol_args->flags & BTRFS_SUBVOL_CREATE_ASYNC)
1723 ptr = &transid;
Li Zefanb83cc962010-12-20 16:04:08 +08001724 if (vol_args->flags & BTRFS_SUBVOL_RDONLY)
1725 readonly = true;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001726 if (vol_args->flags & BTRFS_SUBVOL_QGROUP_INHERIT) {
1727 if (vol_args->size > PAGE_CACHE_SIZE) {
1728 ret = -EINVAL;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001729 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001730 }
1731 inherit = memdup_user(vol_args->qgroup_inherit, vol_args->size);
1732 if (IS_ERR(inherit)) {
1733 ret = PTR_ERR(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001734 goto free_args;
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001735 }
1736 }
Li Zefanfa0d2b92010-12-20 15:53:28 +08001737
1738 ret = btrfs_ioctl_snap_create_transid(file, vol_args->name,
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001739 vol_args->fd, subvol, ptr,
Miao Xie8696c532013-02-07 06:02:44 +00001740 readonly, inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001741 if (ret)
1742 goto free_inherit;
Li Zefanfa0d2b92010-12-20 15:53:28 +08001743
Dan Carpenterc47ca322014-09-04 14:09:15 +03001744 if (ptr && copy_to_user(arg +
1745 offsetof(struct btrfs_ioctl_vol_args_v2,
1746 transid),
1747 ptr, sizeof(*ptr)))
Li Zefanfa0d2b92010-12-20 15:53:28 +08001748 ret = -EFAULT;
Dan Carpenterc47ca322014-09-04 14:09:15 +03001749
1750free_inherit:
Arne Jansen6f72c7e2011-09-14 15:58:21 +02001751 kfree(inherit);
Dan Carpenterc47ca322014-09-04 14:09:15 +03001752free_args:
1753 kfree(vol_args);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04001754 return ret;
1755}
1756
Li Zefan0caa1022010-12-20 16:30:25 +08001757static noinline int btrfs_ioctl_subvol_getflags(struct file *file,
1758 void __user *arg)
1759{
Al Viro496ad9a2013-01-23 17:07:38 -05001760 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001761 struct btrfs_root *root = BTRFS_I(inode)->root;
1762 int ret = 0;
1763 u64 flags = 0;
1764
Li Zefan33345d012011-04-20 10:31:50 +08001765 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID)
Li Zefan0caa1022010-12-20 16:30:25 +08001766 return -EINVAL;
1767
1768 down_read(&root->fs_info->subvol_sem);
1769 if (btrfs_root_readonly(root))
1770 flags |= BTRFS_SUBVOL_RDONLY;
1771 up_read(&root->fs_info->subvol_sem);
1772
1773 if (copy_to_user(arg, &flags, sizeof(flags)))
1774 ret = -EFAULT;
1775
1776 return ret;
1777}
1778
1779static noinline int btrfs_ioctl_subvol_setflags(struct file *file,
1780 void __user *arg)
1781{
Al Viro496ad9a2013-01-23 17:07:38 -05001782 struct inode *inode = file_inode(file);
Li Zefan0caa1022010-12-20 16:30:25 +08001783 struct btrfs_root *root = BTRFS_I(inode)->root;
1784 struct btrfs_trans_handle *trans;
1785 u64 root_flags;
1786 u64 flags;
1787 int ret = 0;
1788
David Sterbabd60ea02014-01-16 15:50:22 +01001789 if (!inode_owner_or_capable(inode))
1790 return -EPERM;
1791
Liu Bob9ca0662012-06-29 03:58:49 -06001792 ret = mnt_want_write_file(file);
1793 if (ret)
1794 goto out;
Li Zefan0caa1022010-12-20 16:30:25 +08001795
Liu Bob9ca0662012-06-29 03:58:49 -06001796 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
1797 ret = -EINVAL;
1798 goto out_drop_write;
1799 }
Li Zefan0caa1022010-12-20 16:30:25 +08001800
Liu Bob9ca0662012-06-29 03:58:49 -06001801 if (copy_from_user(&flags, arg, sizeof(flags))) {
1802 ret = -EFAULT;
1803 goto out_drop_write;
1804 }
Li Zefan0caa1022010-12-20 16:30:25 +08001805
Liu Bob9ca0662012-06-29 03:58:49 -06001806 if (flags & BTRFS_SUBVOL_CREATE_ASYNC) {
1807 ret = -EINVAL;
1808 goto out_drop_write;
1809 }
Li Zefan0caa1022010-12-20 16:30:25 +08001810
Liu Bob9ca0662012-06-29 03:58:49 -06001811 if (flags & ~BTRFS_SUBVOL_RDONLY) {
1812 ret = -EOPNOTSUPP;
1813 goto out_drop_write;
1814 }
Li Zefan0caa1022010-12-20 16:30:25 +08001815
1816 down_write(&root->fs_info->subvol_sem);
1817
1818 /* nothing to do */
1819 if (!!(flags & BTRFS_SUBVOL_RDONLY) == btrfs_root_readonly(root))
Liu Bob9ca0662012-06-29 03:58:49 -06001820 goto out_drop_sem;
Li Zefan0caa1022010-12-20 16:30:25 +08001821
1822 root_flags = btrfs_root_flags(&root->root_item);
David Sterba2c686532013-12-16 17:34:17 +01001823 if (flags & BTRFS_SUBVOL_RDONLY) {
Li Zefan0caa1022010-12-20 16:30:25 +08001824 btrfs_set_root_flags(&root->root_item,
1825 root_flags | BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001826 } else {
1827 /*
1828 * Block RO -> RW transition if this subvolume is involved in
1829 * send
1830 */
1831 spin_lock(&root->root_item_lock);
1832 if (root->send_in_progress == 0) {
1833 btrfs_set_root_flags(&root->root_item,
Li Zefan0caa1022010-12-20 16:30:25 +08001834 root_flags & ~BTRFS_ROOT_SUBVOL_RDONLY);
David Sterba2c686532013-12-16 17:34:17 +01001835 spin_unlock(&root->root_item_lock);
1836 } else {
1837 spin_unlock(&root->root_item_lock);
1838 btrfs_warn(root->fs_info,
1839 "Attempt to set subvolume %llu read-write during send",
1840 root->root_key.objectid);
1841 ret = -EPERM;
1842 goto out_drop_sem;
1843 }
1844 }
Li Zefan0caa1022010-12-20 16:30:25 +08001845
1846 trans = btrfs_start_transaction(root, 1);
1847 if (IS_ERR(trans)) {
1848 ret = PTR_ERR(trans);
1849 goto out_reset;
1850 }
1851
Li Zefanb4dc2b82011-02-16 06:06:34 +00001852 ret = btrfs_update_root(trans, root->fs_info->tree_root,
Li Zefan0caa1022010-12-20 16:30:25 +08001853 &root->root_key, &root->root_item);
1854
1855 btrfs_commit_transaction(trans, root);
1856out_reset:
1857 if (ret)
1858 btrfs_set_root_flags(&root->root_item, root_flags);
Liu Bob9ca0662012-06-29 03:58:49 -06001859out_drop_sem:
Li Zefan0caa1022010-12-20 16:30:25 +08001860 up_write(&root->fs_info->subvol_sem);
Liu Bob9ca0662012-06-29 03:58:49 -06001861out_drop_write:
1862 mnt_drop_write_file(file);
1863out:
Li Zefan0caa1022010-12-20 16:30:25 +08001864 return ret;
1865}
1866
Yan, Zheng76dda932009-09-21 16:00:26 -04001867/*
1868 * helper to check if the subvolume references other subvolumes
1869 */
1870static noinline int may_destroy_subvol(struct btrfs_root *root)
1871{
1872 struct btrfs_path *path;
Josef Bacik175a2b82013-08-12 15:36:44 -04001873 struct btrfs_dir_item *di;
Yan, Zheng76dda932009-09-21 16:00:26 -04001874 struct btrfs_key key;
Josef Bacik175a2b82013-08-12 15:36:44 -04001875 u64 dir_id;
Yan, Zheng76dda932009-09-21 16:00:26 -04001876 int ret;
1877
1878 path = btrfs_alloc_path();
1879 if (!path)
1880 return -ENOMEM;
1881
Josef Bacik175a2b82013-08-12 15:36:44 -04001882 /* Make sure this root isn't set as the default subvol */
1883 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
1884 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root, path,
1885 dir_id, "default", 7, 0);
1886 if (di && !IS_ERR(di)) {
1887 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &key);
1888 if (key.objectid == root->root_key.objectid) {
Guangyu Sun72de6b52014-03-11 11:24:18 -07001889 ret = -EPERM;
1890 btrfs_err(root->fs_info, "deleting default subvolume "
1891 "%llu is not allowed", key.objectid);
Josef Bacik175a2b82013-08-12 15:36:44 -04001892 goto out;
1893 }
1894 btrfs_release_path(path);
1895 }
1896
Yan, Zheng76dda932009-09-21 16:00:26 -04001897 key.objectid = root->root_key.objectid;
1898 key.type = BTRFS_ROOT_REF_KEY;
1899 key.offset = (u64)-1;
1900
1901 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
1902 &key, path, 0, 0);
1903 if (ret < 0)
1904 goto out;
1905 BUG_ON(ret == 0);
1906
1907 ret = 0;
1908 if (path->slots[0] > 0) {
1909 path->slots[0]--;
1910 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1911 if (key.objectid == root->root_key.objectid &&
1912 key.type == BTRFS_ROOT_REF_KEY)
1913 ret = -ENOTEMPTY;
1914 }
1915out:
1916 btrfs_free_path(path);
1917 return ret;
1918}
1919
Chris Masonac8e9812010-02-28 15:39:26 -05001920static noinline int key_in_sk(struct btrfs_key *key,
1921 struct btrfs_ioctl_search_key *sk)
1922{
Chris Masonabc6e132010-03-18 12:10:08 -04001923 struct btrfs_key test;
1924 int ret;
1925
1926 test.objectid = sk->min_objectid;
1927 test.type = sk->min_type;
1928 test.offset = sk->min_offset;
1929
1930 ret = btrfs_comp_cpu_keys(key, &test);
1931 if (ret < 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001932 return 0;
Chris Masonabc6e132010-03-18 12:10:08 -04001933
1934 test.objectid = sk->max_objectid;
1935 test.type = sk->max_type;
1936 test.offset = sk->max_offset;
1937
1938 ret = btrfs_comp_cpu_keys(key, &test);
1939 if (ret > 0)
Chris Masonac8e9812010-02-28 15:39:26 -05001940 return 0;
1941 return 1;
1942}
1943
1944static noinline int copy_to_sk(struct btrfs_root *root,
1945 struct btrfs_path *path,
1946 struct btrfs_key *key,
1947 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001948 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01001949 char __user *ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05001950 unsigned long *sk_offset,
1951 int *num_found)
1952{
1953 u64 found_transid;
1954 struct extent_buffer *leaf;
1955 struct btrfs_ioctl_search_header sh;
Naohiro Aotadd81d452015-06-30 11:25:43 +09001956 struct btrfs_key test;
Chris Masonac8e9812010-02-28 15:39:26 -05001957 unsigned long item_off;
1958 unsigned long item_len;
1959 int nritems;
1960 int i;
1961 int slot;
Chris Masonac8e9812010-02-28 15:39:26 -05001962 int ret = 0;
1963
1964 leaf = path->nodes[0];
1965 slot = path->slots[0];
1966 nritems = btrfs_header_nritems(leaf);
1967
1968 if (btrfs_header_generation(leaf) > sk->max_transid) {
1969 i = nritems;
1970 goto advance_key;
1971 }
1972 found_transid = btrfs_header_generation(leaf);
1973
1974 for (i = slot; i < nritems; i++) {
1975 item_off = btrfs_item_ptr_offset(leaf, i);
1976 item_len = btrfs_item_size_nr(leaf, i);
1977
Gabriel de Perthuis03b71c62013-05-06 17:40:18 +00001978 btrfs_item_key_to_cpu(leaf, key, i);
1979 if (!key_in_sk(key, sk))
1980 continue;
1981
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001982 if (sizeof(sh) + item_len > *buf_size) {
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001983 if (*num_found) {
1984 ret = 1;
1985 goto out;
1986 }
Chris Masonac8e9812010-02-28 15:39:26 -05001987
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001988 /*
1989 * return one empty item back for v1, which does not
1990 * handle -EOVERFLOW
1991 */
1992
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001993 *buf_size = sizeof(sh) + item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05001994 item_len = 0;
Gerhard Heift8f5f6172014-01-30 16:23:59 +01001995 ret = -EOVERFLOW;
1996 }
Chris Masonac8e9812010-02-28 15:39:26 -05001997
Gerhard Heift9b6e8172014-01-30 16:24:00 +01001998 if (sizeof(sh) + item_len + *sk_offset > *buf_size) {
Chris Masonac8e9812010-02-28 15:39:26 -05001999 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002000 goto out;
Chris Masonac8e9812010-02-28 15:39:26 -05002001 }
2002
Chris Masonac8e9812010-02-28 15:39:26 -05002003 sh.objectid = key->objectid;
2004 sh.offset = key->offset;
2005 sh.type = key->type;
2006 sh.len = item_len;
2007 sh.transid = found_transid;
2008
2009 /* copy search result header */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002010 if (copy_to_user(ubuf + *sk_offset, &sh, sizeof(sh))) {
2011 ret = -EFAULT;
2012 goto out;
2013 }
2014
Chris Masonac8e9812010-02-28 15:39:26 -05002015 *sk_offset += sizeof(sh);
2016
2017 if (item_len) {
Gerhard Heiftba346b32014-01-30 16:24:02 +01002018 char __user *up = ubuf + *sk_offset;
Chris Masonac8e9812010-02-28 15:39:26 -05002019 /* copy the item */
Gerhard Heiftba346b32014-01-30 16:24:02 +01002020 if (read_extent_buffer_to_user(leaf, up,
2021 item_off, item_len)) {
2022 ret = -EFAULT;
2023 goto out;
2024 }
2025
Chris Masonac8e9812010-02-28 15:39:26 -05002026 *sk_offset += item_len;
Chris Masonac8e9812010-02-28 15:39:26 -05002027 }
Hugo Millse2156862011-05-14 17:43:41 +00002028 (*num_found)++;
Chris Masonac8e9812010-02-28 15:39:26 -05002029
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002030 if (ret) /* -EOVERFLOW from above */
2031 goto out;
2032
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002033 if (*num_found >= sk->nr_items) {
2034 ret = 1;
2035 goto out;
2036 }
Chris Masonac8e9812010-02-28 15:39:26 -05002037 }
2038advance_key:
Chris Masonac8e9812010-02-28 15:39:26 -05002039 ret = 0;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002040 test.objectid = sk->max_objectid;
2041 test.type = sk->max_type;
2042 test.offset = sk->max_offset;
2043 if (btrfs_comp_cpu_keys(key, &test) >= 0)
2044 ret = 1;
2045 else if (key->offset < (u64)-1)
Chris Masonabc6e132010-03-18 12:10:08 -04002046 key->offset++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002047 else if (key->type < (u8)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002048 key->offset = 0;
2049 key->type++;
Naohiro Aotadd81d452015-06-30 11:25:43 +09002050 } else if (key->objectid < (u64)-1) {
Chris Masonabc6e132010-03-18 12:10:08 -04002051 key->offset = 0;
2052 key->type = 0;
2053 key->objectid++;
2054 } else
2055 ret = 1;
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002056out:
Gerhard Heiftba346b32014-01-30 16:24:02 +01002057 /*
2058 * 0: all items from this leaf copied, continue with next
2059 * 1: * more items can be copied, but unused buffer is too small
2060 * * all items were found
2061 * Either way, it will stops the loop which iterates to the next
2062 * leaf
2063 * -EOVERFLOW: item was to large for buffer
2064 * -EFAULT: could not copy extent buffer back to userspace
2065 */
Chris Masonac8e9812010-02-28 15:39:26 -05002066 return ret;
2067}
2068
2069static noinline int search_ioctl(struct inode *inode,
Gerhard Heift12544442014-01-30 16:23:58 +01002070 struct btrfs_ioctl_search_key *sk,
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002071 size_t *buf_size,
Gerhard Heiftba346b32014-01-30 16:24:02 +01002072 char __user *ubuf)
Chris Masonac8e9812010-02-28 15:39:26 -05002073{
2074 struct btrfs_root *root;
2075 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002076 struct btrfs_path *path;
Chris Masonac8e9812010-02-28 15:39:26 -05002077 struct btrfs_fs_info *info = BTRFS_I(inode)->root->fs_info;
2078 int ret;
2079 int num_found = 0;
2080 unsigned long sk_offset = 0;
2081
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002082 if (*buf_size < sizeof(struct btrfs_ioctl_search_header)) {
2083 *buf_size = sizeof(struct btrfs_ioctl_search_header);
Gerhard Heift12544442014-01-30 16:23:58 +01002084 return -EOVERFLOW;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002085 }
Gerhard Heift12544442014-01-30 16:23:58 +01002086
Chris Masonac8e9812010-02-28 15:39:26 -05002087 path = btrfs_alloc_path();
2088 if (!path)
2089 return -ENOMEM;
2090
2091 if (sk->tree_id == 0) {
2092 /* search the root of the inode that was passed */
2093 root = BTRFS_I(inode)->root;
2094 } else {
2095 key.objectid = sk->tree_id;
2096 key.type = BTRFS_ROOT_ITEM_KEY;
2097 key.offset = (u64)-1;
2098 root = btrfs_read_fs_root_no_name(info, &key);
2099 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002100 btrfs_err(info, "could not find root %llu",
Chris Masonac8e9812010-02-28 15:39:26 -05002101 sk->tree_id);
2102 btrfs_free_path(path);
2103 return -ENOENT;
2104 }
2105 }
2106
2107 key.objectid = sk->min_objectid;
2108 key.type = sk->min_type;
2109 key.offset = sk->min_offset;
2110
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302111 while (1) {
Filipe David Borba Manana6174d3c2013-10-01 16:13:42 +01002112 ret = btrfs_search_forward(root, &key, path, sk->min_transid);
Chris Masonac8e9812010-02-28 15:39:26 -05002113 if (ret != 0) {
2114 if (ret > 0)
2115 ret = 0;
2116 goto err;
2117 }
Gerhard Heiftba346b32014-01-30 16:24:02 +01002118 ret = copy_to_sk(root, path, &key, sk, buf_size, ubuf,
Chris Masonac8e9812010-02-28 15:39:26 -05002119 &sk_offset, &num_found);
David Sterbab3b4aa72011-04-21 01:20:15 +02002120 btrfs_release_path(path);
Gerhard Heift25c9bc22014-01-30 16:23:57 +01002121 if (ret)
Chris Masonac8e9812010-02-28 15:39:26 -05002122 break;
2123
2124 }
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002125 if (ret > 0)
2126 ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002127err:
2128 sk->nr_items = num_found;
2129 btrfs_free_path(path);
2130 return ret;
2131}
2132
2133static noinline int btrfs_ioctl_tree_search(struct file *file,
2134 void __user *argp)
2135{
Gerhard Heiftba346b32014-01-30 16:24:02 +01002136 struct btrfs_ioctl_search_args __user *uargs;
2137 struct btrfs_ioctl_search_key sk;
Gerhard Heift9b6e8172014-01-30 16:24:00 +01002138 struct inode *inode;
2139 int ret;
2140 size_t buf_size;
Chris Masonac8e9812010-02-28 15:39:26 -05002141
2142 if (!capable(CAP_SYS_ADMIN))
2143 return -EPERM;
2144
Gerhard Heiftba346b32014-01-30 16:24:02 +01002145 uargs = (struct btrfs_ioctl_search_args __user *)argp;
Chris Masonac8e9812010-02-28 15:39:26 -05002146
Gerhard Heiftba346b32014-01-30 16:24:02 +01002147 if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
2148 return -EFAULT;
2149
2150 buf_size = sizeof(uargs->buf);
Chris Masonac8e9812010-02-28 15:39:26 -05002151
Al Viro496ad9a2013-01-23 17:07:38 -05002152 inode = file_inode(file);
Gerhard Heiftba346b32014-01-30 16:24:02 +01002153 ret = search_ioctl(inode, &sk, &buf_size, uargs->buf);
Gerhard Heift8f5f6172014-01-30 16:23:59 +01002154
2155 /*
2156 * In the origin implementation an overflow is handled by returning a
2157 * search header with a len of zero, so reset ret.
2158 */
2159 if (ret == -EOVERFLOW)
2160 ret = 0;
2161
Gerhard Heiftba346b32014-01-30 16:24:02 +01002162 if (ret == 0 && copy_to_user(&uargs->key, &sk, sizeof(sk)))
Chris Masonac8e9812010-02-28 15:39:26 -05002163 ret = -EFAULT;
Chris Masonac8e9812010-02-28 15:39:26 -05002164 return ret;
2165}
2166
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002167static noinline int btrfs_ioctl_tree_search_v2(struct file *file,
2168 void __user *argp)
2169{
2170 struct btrfs_ioctl_search_args_v2 __user *uarg;
2171 struct btrfs_ioctl_search_args_v2 args;
2172 struct inode *inode;
2173 int ret;
2174 size_t buf_size;
Byongho Leeee221842015-12-15 01:42:10 +09002175 const size_t buf_limit = SZ_16M;
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01002176
2177 if (!capable(CAP_SYS_ADMIN))
2178 return -EPERM;
2179
2180 /* copy search header and buffer size */
2181 uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
2182 if (copy_from_user(&args, uarg, sizeof(args)))
2183 return -EFAULT;
2184
2185 buf_size = args.buf_size;
2186
2187 if (buf_size < sizeof(struct btrfs_ioctl_search_header))
2188 return -EOVERFLOW;
2189
2190 /* limit result size to 16MB */
2191 if (buf_size > buf_limit)
2192 buf_size = buf_limit;
2193
2194 inode = file_inode(file);
2195 ret = search_ioctl(inode, &args.key, &buf_size,
2196 (char *)(&uarg->buf[0]));
2197 if (ret == 0 && copy_to_user(&uarg->key, &args.key, sizeof(args.key)))
2198 ret = -EFAULT;
2199 else if (ret == -EOVERFLOW &&
2200 copy_to_user(&uarg->buf_size, &buf_size, sizeof(buf_size)))
2201 ret = -EFAULT;
2202
Yan, Zheng76dda932009-09-21 16:00:26 -04002203 return ret;
2204}
2205
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002206/*
Chris Masonac8e9812010-02-28 15:39:26 -05002207 * Search INODE_REFs to identify path name of 'dirid' directory
2208 * in a 'tree_id' tree. and sets path name to 'name'.
2209 */
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002210static noinline int btrfs_search_path_in_tree(struct btrfs_fs_info *info,
2211 u64 tree_id, u64 dirid, char *name)
2212{
2213 struct btrfs_root *root;
2214 struct btrfs_key key;
Chris Masonac8e9812010-02-28 15:39:26 -05002215 char *ptr;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002216 int ret = -1;
2217 int slot;
2218 int len;
2219 int total_len = 0;
2220 struct btrfs_inode_ref *iref;
2221 struct extent_buffer *l;
2222 struct btrfs_path *path;
2223
2224 if (dirid == BTRFS_FIRST_FREE_OBJECTID) {
2225 name[0]='\0';
2226 return 0;
2227 }
2228
2229 path = btrfs_alloc_path();
2230 if (!path)
2231 return -ENOMEM;
2232
Chris Masonac8e9812010-02-28 15:39:26 -05002233 ptr = &name[BTRFS_INO_LOOKUP_PATH_MAX];
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002234
2235 key.objectid = tree_id;
2236 key.type = BTRFS_ROOT_ITEM_KEY;
2237 key.offset = (u64)-1;
2238 root = btrfs_read_fs_root_no_name(info, &key);
2239 if (IS_ERR(root)) {
David Sterbaf14d1042015-10-08 11:37:06 +02002240 btrfs_err(info, "could not find root %llu", tree_id);
Chris Mason8ad6fca2010-03-18 12:23:10 -04002241 ret = -ENOENT;
2242 goto out;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002243 }
2244
2245 key.objectid = dirid;
2246 key.type = BTRFS_INODE_REF_KEY;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002247 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002248
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302249 while (1) {
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002250 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2251 if (ret < 0)
2252 goto out;
Filipe David Borba Manana18674c62013-08-14 03:00:21 +01002253 else if (ret > 0) {
2254 ret = btrfs_previous_item(root, path, dirid,
2255 BTRFS_INODE_REF_KEY);
2256 if (ret < 0)
2257 goto out;
2258 else if (ret > 0) {
2259 ret = -ENOENT;
2260 goto out;
2261 }
2262 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002263
2264 l = path->nodes[0];
2265 slot = path->slots[0];
2266 btrfs_item_key_to_cpu(l, &key, slot);
2267
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002268 iref = btrfs_item_ptr(l, slot, struct btrfs_inode_ref);
2269 len = btrfs_inode_ref_name_len(l, iref);
2270 ptr -= len + 1;
2271 total_len += len + 1;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002272 if (ptr < name) {
2273 ret = -ENAMETOOLONG;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002274 goto out;
Filipe David Borba Mananaa696cf32013-08-14 03:00:20 +01002275 }
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002276
2277 *(ptr + len) = '/';
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302278 read_extent_buffer(l, ptr, (unsigned long)(iref + 1), len);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002279
2280 if (key.offset == BTRFS_FIRST_FREE_OBJECTID)
2281 break;
2282
David Sterbab3b4aa72011-04-21 01:20:15 +02002283 btrfs_release_path(path);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002284 key.objectid = key.offset;
Chris Mason8ad6fca2010-03-18 12:23:10 -04002285 key.offset = (u64)-1;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002286 dirid = key.objectid;
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002287 }
Li Zefan77906a502011-07-14 03:16:00 +00002288 memmove(name, ptr, total_len);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302289 name[total_len] = '\0';
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002290 ret = 0;
2291out:
2292 btrfs_free_path(path);
Chris Masonac8e9812010-02-28 15:39:26 -05002293 return ret;
2294}
2295
2296static noinline int btrfs_ioctl_ino_lookup(struct file *file,
2297 void __user *argp)
2298{
2299 struct btrfs_ioctl_ino_lookup_args *args;
2300 struct inode *inode;
David Sterba01b810b2015-05-12 19:14:49 +02002301 int ret = 0;
Chris Masonac8e9812010-02-28 15:39:26 -05002302
Julia Lawall2354d082010-10-29 15:14:18 -04002303 args = memdup_user(argp, sizeof(*args));
2304 if (IS_ERR(args))
2305 return PTR_ERR(args);
Dan Carpenterc2b96922010-03-20 11:24:15 +00002306
Al Viro496ad9a2013-01-23 17:07:38 -05002307 inode = file_inode(file);
Chris Masonac8e9812010-02-28 15:39:26 -05002308
David Sterba01b810b2015-05-12 19:14:49 +02002309 /*
2310 * Unprivileged query to obtain the containing subvolume root id. The
2311 * path is reset so it's consistent with btrfs_search_path_in_tree.
2312 */
Chris Mason1b53ac42010-03-18 12:17:05 -04002313 if (args->treeid == 0)
2314 args->treeid = BTRFS_I(inode)->root->root_key.objectid;
2315
David Sterba01b810b2015-05-12 19:14:49 +02002316 if (args->objectid == BTRFS_FIRST_FREE_OBJECTID) {
2317 args->name[0] = 0;
2318 goto out;
2319 }
2320
2321 if (!capable(CAP_SYS_ADMIN)) {
2322 ret = -EPERM;
2323 goto out;
2324 }
2325
Chris Masonac8e9812010-02-28 15:39:26 -05002326 ret = btrfs_search_path_in_tree(BTRFS_I(inode)->root->fs_info,
2327 args->treeid, args->objectid,
2328 args->name);
2329
David Sterba01b810b2015-05-12 19:14:49 +02002330out:
Chris Masonac8e9812010-02-28 15:39:26 -05002331 if (ret == 0 && copy_to_user(argp, args, sizeof(*args)))
2332 ret = -EFAULT;
2333
2334 kfree(args);
TARUISI Hiroaki98d377a2009-11-18 05:42:14 +00002335 return ret;
2336}
2337
Yan, Zheng76dda932009-09-21 16:00:26 -04002338static noinline int btrfs_ioctl_snap_destroy(struct file *file,
2339 void __user *arg)
2340{
Al Viro54563d42013-09-01 15:57:51 -04002341 struct dentry *parent = file->f_path.dentry;
Yan, Zheng76dda932009-09-21 16:00:26 -04002342 struct dentry *dentry;
David Howells2b0143b2015-03-17 22:25:59 +00002343 struct inode *dir = d_inode(parent);
Yan, Zheng76dda932009-09-21 16:00:26 -04002344 struct inode *inode;
2345 struct btrfs_root *root = BTRFS_I(dir)->root;
2346 struct btrfs_root *dest = NULL;
2347 struct btrfs_ioctl_vol_args *vol_args;
2348 struct btrfs_trans_handle *trans;
Miao Xiec58aaad2013-02-28 10:05:36 +00002349 struct btrfs_block_rsv block_rsv;
David Sterba521e0542014-04-15 16:41:44 +02002350 u64 root_flags;
Miao Xiec58aaad2013-02-28 10:05:36 +00002351 u64 qgroup_reserved;
Yan, Zheng76dda932009-09-21 16:00:26 -04002352 int namelen;
2353 int ret;
2354 int err = 0;
2355
Yan, Zheng76dda932009-09-21 16:00:26 -04002356 vol_args = memdup_user(arg, sizeof(*vol_args));
2357 if (IS_ERR(vol_args))
2358 return PTR_ERR(vol_args);
2359
2360 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
2361 namelen = strlen(vol_args->name);
2362 if (strchr(vol_args->name, '/') ||
2363 strncmp(vol_args->name, "..", namelen) == 0) {
2364 err = -EINVAL;
2365 goto out;
2366 }
2367
Al Viroa561be72011-11-23 11:57:51 -05002368 err = mnt_want_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002369 if (err)
2370 goto out;
2371
David Sterba521e0542014-04-15 16:41:44 +02002372
David Sterba5c50c9b2013-03-22 18:12:51 +00002373 err = mutex_lock_killable_nested(&dir->i_mutex, I_MUTEX_PARENT);
2374 if (err == -EINTR)
David Sterbae43f9982013-12-06 17:51:32 +01002375 goto out_drop_write;
Yan, Zheng76dda932009-09-21 16:00:26 -04002376 dentry = lookup_one_len(vol_args->name, parent, namelen);
2377 if (IS_ERR(dentry)) {
2378 err = PTR_ERR(dentry);
2379 goto out_unlock_dir;
2380 }
2381
David Howells2b0143b2015-03-17 22:25:59 +00002382 if (d_really_is_negative(dentry)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002383 err = -ENOENT;
2384 goto out_dput;
2385 }
2386
David Howells2b0143b2015-03-17 22:25:59 +00002387 inode = d_inode(dentry);
Sage Weil4260f7c2010-10-29 15:46:43 -04002388 dest = BTRFS_I(inode)->root;
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302389 if (!capable(CAP_SYS_ADMIN)) {
Sage Weil4260f7c2010-10-29 15:46:43 -04002390 /*
2391 * Regular user. Only allow this with a special mount
2392 * option, when the user has write+exec access to the
2393 * subvol root, and when rmdir(2) would have been
2394 * allowed.
2395 *
2396 * Note that this is _not_ check that the subvol is
2397 * empty or doesn't contain data that we wouldn't
2398 * otherwise be able to delete.
2399 *
2400 * Users who want to delete empty subvols should try
2401 * rmdir(2).
2402 */
2403 err = -EPERM;
2404 if (!btrfs_test_opt(root, USER_SUBVOL_RM_ALLOWED))
2405 goto out_dput;
2406
2407 /*
2408 * Do not allow deletion if the parent dir is the same
2409 * as the dir to be deleted. That means the ioctl
2410 * must be called on the dentry referencing the root
2411 * of the subvol, not a random directory contained
2412 * within it.
2413 */
2414 err = -EINVAL;
2415 if (root == dest)
2416 goto out_dput;
2417
2418 err = inode_permission(inode, MAY_WRITE | MAY_EXEC);
2419 if (err)
2420 goto out_dput;
Sage Weil4260f7c2010-10-29 15:46:43 -04002421 }
2422
Miao Xie5c39da52012-10-22 11:39:53 +00002423 /* check if subvolume may be deleted by a user */
2424 err = btrfs_may_delete(dir, dentry, 1);
2425 if (err)
2426 goto out_dput;
2427
Li Zefan33345d012011-04-20 10:31:50 +08002428 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
Yan, Zheng76dda932009-09-21 16:00:26 -04002429 err = -EINVAL;
2430 goto out_dput;
2431 }
2432
Yan, Zheng76dda932009-09-21 16:00:26 -04002433 mutex_lock(&inode->i_mutex);
David Sterba521e0542014-04-15 16:41:44 +02002434
2435 /*
2436 * Don't allow to delete a subvolume with send in progress. This is
2437 * inside the i_mutex so the error handling that has to drop the bit
2438 * again is not run concurrently.
2439 */
2440 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002441 root_flags = btrfs_root_flags(&dest->root_item);
2442 if (dest->send_in_progress == 0) {
2443 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002444 root_flags | BTRFS_ROOT_SUBVOL_DEAD);
2445 spin_unlock(&dest->root_item_lock);
2446 } else {
2447 spin_unlock(&dest->root_item_lock);
2448 btrfs_warn(root->fs_info,
2449 "Attempt to delete subvolume %llu during send",
Filipe Mananac55bfa62014-05-25 03:55:44 +01002450 dest->root_key.objectid);
David Sterba521e0542014-04-15 16:41:44 +02002451 err = -EPERM;
Omar Sandoval909e26d2015-04-10 14:20:40 -07002452 goto out_unlock_inode;
David Sterba521e0542014-04-15 16:41:44 +02002453 }
2454
Yan, Zheng76dda932009-09-21 16:00:26 -04002455 down_write(&root->fs_info->subvol_sem);
2456
2457 err = may_destroy_subvol(dest);
2458 if (err)
2459 goto out_up_write;
2460
Miao Xiec58aaad2013-02-28 10:05:36 +00002461 btrfs_init_block_rsv(&block_rsv, BTRFS_BLOCK_RSV_TEMP);
2462 /*
2463 * One for dir inode, two for dir entries, two for root
2464 * ref/backref.
2465 */
2466 err = btrfs_subvolume_reserve_metadata(root, &block_rsv,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04002467 5, &qgroup_reserved, true);
Miao Xiec58aaad2013-02-28 10:05:36 +00002468 if (err)
2469 goto out_up_write;
2470
Yan, Zhenga22285a2010-05-16 10:48:46 -04002471 trans = btrfs_start_transaction(root, 0);
2472 if (IS_ERR(trans)) {
2473 err = PTR_ERR(trans);
Miao Xiec58aaad2013-02-28 10:05:36 +00002474 goto out_release;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002475 }
Miao Xiec58aaad2013-02-28 10:05:36 +00002476 trans->block_rsv = &block_rsv;
2477 trans->bytes_reserved = block_rsv.size;
Yan, Zhenga22285a2010-05-16 10:48:46 -04002478
Yan, Zheng76dda932009-09-21 16:00:26 -04002479 ret = btrfs_unlink_subvol(trans, root, dir,
2480 dest->root_key.objectid,
2481 dentry->d_name.name,
2482 dentry->d_name.len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002483 if (ret) {
2484 err = ret;
2485 btrfs_abort_transaction(trans, root, ret);
2486 goto out_end_trans;
2487 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002488
2489 btrfs_record_root_in_trans(trans, dest);
2490
2491 memset(&dest->root_item.drop_progress, 0,
2492 sizeof(dest->root_item.drop_progress));
2493 dest->root_item.drop_level = 0;
2494 btrfs_set_root_refs(&dest->root_item, 0);
2495
Miao Xie27cdeb72014-04-02 19:51:05 +08002496 if (!test_and_set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &dest->state)) {
Yan, Zhengd68fc572010-05-16 10:49:58 -04002497 ret = btrfs_insert_orphan_item(trans,
2498 root->fs_info->tree_root,
2499 dest->root_key.objectid);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002500 if (ret) {
2501 btrfs_abort_transaction(trans, root, ret);
2502 err = ret;
2503 goto out_end_trans;
2504 }
Yan, Zhengd68fc572010-05-16 10:49:58 -04002505 }
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002506
2507 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2508 dest->root_item.uuid, BTRFS_UUID_KEY_SUBVOL,
2509 dest->root_key.objectid);
2510 if (ret && ret != -ENOENT) {
2511 btrfs_abort_transaction(trans, root, ret);
2512 err = ret;
2513 goto out_end_trans;
2514 }
2515 if (!btrfs_is_empty_uuid(dest->root_item.received_uuid)) {
2516 ret = btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
2517 dest->root_item.received_uuid,
2518 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
2519 dest->root_key.objectid);
2520 if (ret && ret != -ENOENT) {
2521 btrfs_abort_transaction(trans, root, ret);
2522 err = ret;
2523 goto out_end_trans;
2524 }
2525 }
2526
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002527out_end_trans:
Miao Xiec58aaad2013-02-28 10:05:36 +00002528 trans->block_rsv = NULL;
2529 trans->bytes_reserved = 0;
Sage Weil531cb132010-10-29 15:41:32 -04002530 ret = btrfs_end_transaction(trans, root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002531 if (ret && !err)
2532 err = ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04002533 inode->i_flags |= S_DEAD;
Miao Xiec58aaad2013-02-28 10:05:36 +00002534out_release:
2535 btrfs_subvolume_release_metadata(root, &block_rsv, qgroup_reserved);
Yan, Zheng76dda932009-09-21 16:00:26 -04002536out_up_write:
2537 up_write(&root->fs_info->subvol_sem);
David Sterba521e0542014-04-15 16:41:44 +02002538 if (err) {
2539 spin_lock(&dest->root_item_lock);
Filipe Mananac55bfa62014-05-25 03:55:44 +01002540 root_flags = btrfs_root_flags(&dest->root_item);
2541 btrfs_set_root_flags(&dest->root_item,
David Sterba521e0542014-04-15 16:41:44 +02002542 root_flags & ~BTRFS_ROOT_SUBVOL_DEAD);
2543 spin_unlock(&dest->root_item_lock);
2544 }
Omar Sandoval909e26d2015-04-10 14:20:40 -07002545out_unlock_inode:
Yan, Zheng76dda932009-09-21 16:00:26 -04002546 mutex_unlock(&inode->i_mutex);
2547 if (!err) {
Omar Sandoval64ad6c42015-06-02 17:31:00 -07002548 d_invalidate(dentry);
Yan, Zheng76dda932009-09-21 16:00:26 -04002549 btrfs_invalidate_inodes(dest);
2550 d_delete(dentry);
David Sterba61155aa2014-04-15 16:42:03 +02002551 ASSERT(dest->send_in_progress == 0);
Liu Bofa6ac872013-02-20 14:10:23 +00002552
2553 /* the last ref */
David Sterba57cdc8d2014-02-05 02:37:48 +01002554 if (dest->ino_cache_inode) {
2555 iput(dest->ino_cache_inode);
2556 dest->ino_cache_inode = NULL;
Liu Bofa6ac872013-02-20 14:10:23 +00002557 }
Yan, Zheng76dda932009-09-21 16:00:26 -04002558 }
2559out_dput:
2560 dput(dentry);
2561out_unlock_dir:
2562 mutex_unlock(&dir->i_mutex);
David Sterbae43f9982013-12-06 17:51:32 +01002563out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05002564 mnt_drop_write_file(file);
Yan, Zheng76dda932009-09-21 16:00:26 -04002565out:
2566 kfree(vol_args);
2567 return err;
2568}
2569
Chris Mason1e701a32010-03-11 09:42:04 -05002570static int btrfs_ioctl_defrag(struct file *file, void __user *argp)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002571{
Al Viro496ad9a2013-01-23 17:07:38 -05002572 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002573 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1e701a32010-03-11 09:42:04 -05002574 struct btrfs_ioctl_defrag_range_args *range;
Yan Zhengc146afa2008-11-12 14:34:12 -05002575 int ret;
2576
Ilya Dryomov25122d12013-01-20 15:57:57 +02002577 ret = mnt_want_write_file(file);
2578 if (ret)
2579 return ret;
Li Zefanb83cc962010-12-20 16:04:08 +08002580
Ilya Dryomov25122d12013-01-20 15:57:57 +02002581 if (btrfs_root_readonly(root)) {
2582 ret = -EROFS;
2583 goto out;
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002584 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002585
2586 switch (inode->i_mode & S_IFMT) {
2587 case S_IFDIR:
Chris Masone441d542009-01-05 16:57:23 -05002588 if (!capable(CAP_SYS_ADMIN)) {
2589 ret = -EPERM;
2590 goto out;
2591 }
Eric Sandeende78b512013-01-31 18:21:12 +00002592 ret = btrfs_defrag_root(root);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002593 if (ret)
2594 goto out;
Eric Sandeende78b512013-01-31 18:21:12 +00002595 ret = btrfs_defrag_root(root->fs_info->extent_root);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002596 break;
2597 case S_IFREG:
Chris Masone441d542009-01-05 16:57:23 -05002598 if (!(file->f_mode & FMODE_WRITE)) {
2599 ret = -EINVAL;
2600 goto out;
2601 }
Chris Mason1e701a32010-03-11 09:42:04 -05002602
2603 range = kzalloc(sizeof(*range), GFP_KERNEL);
2604 if (!range) {
2605 ret = -ENOMEM;
2606 goto out;
2607 }
2608
2609 if (argp) {
2610 if (copy_from_user(range, argp,
2611 sizeof(*range))) {
2612 ret = -EFAULT;
2613 kfree(range);
Dan Carpenter683be162010-03-20 11:24:48 +00002614 goto out;
Chris Mason1e701a32010-03-11 09:42:04 -05002615 }
2616 /* compression requires us to start the IO */
2617 if ((range->flags & BTRFS_DEFRAG_RANGE_COMPRESS)) {
2618 range->flags |= BTRFS_DEFRAG_RANGE_START_IO;
2619 range->extent_thresh = (u32)-1;
2620 }
2621 } else {
2622 /* the rest are all set to zero by kzalloc */
2623 range->len = (u64)-1;
2624 }
Al Viro496ad9a2013-01-23 17:07:38 -05002625 ret = btrfs_defrag_file(file_inode(file), file,
Chris Mason4cb53002011-05-24 15:35:30 -04002626 range, 0, 0);
2627 if (ret > 0)
2628 ret = 0;
Chris Mason1e701a32010-03-11 09:42:04 -05002629 kfree(range);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002630 break;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04002631 default:
2632 ret = -EINVAL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002633 }
Chris Masone441d542009-01-05 16:57:23 -05002634out:
Ilya Dryomov25122d12013-01-20 15:57:57 +02002635 mnt_drop_write_file(file);
Chris Masone441d542009-01-05 16:57:23 -05002636 return ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002637}
2638
Christoph Hellwigb2950862008-12-02 09:54:17 -05002639static long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002640{
2641 struct btrfs_ioctl_vol_args *vol_args;
2642 int ret;
2643
Chris Masone441d542009-01-05 16:57:23 -05002644 if (!capable(CAP_SYS_ADMIN))
2645 return -EPERM;
2646
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002647 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2648 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08002649 return BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002650 }
2651
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002652 mutex_lock(&root->fs_info->volume_mutex);
Li Zefandae7b662009-04-08 15:06:54 +08002653 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002654 if (IS_ERR(vol_args)) {
2655 ret = PTR_ERR(vol_args);
2656 goto out;
2657 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002658
Mark Fasheh5516e592008-07-24 12:20:14 -04002659 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002660 ret = btrfs_init_new_device(root, vol_args->name);
2661
Anand Jain43d20762014-07-01 00:58:56 +08002662 if (!ret)
2663 btrfs_info(root->fs_info, "disk added %s",vol_args->name);
2664
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002665 kfree(vol_args);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002666out:
2667 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002668 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002669 return ret;
2670}
2671
Miao Xieda249272012-11-26 08:44:50 +00002672static long btrfs_ioctl_rm_dev(struct file *file, void __user *arg)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002673{
Al Viro496ad9a2013-01-23 17:07:38 -05002674 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002675 struct btrfs_ioctl_vol_args *vol_args;
2676 int ret;
2677
Chris Masone441d542009-01-05 16:57:23 -05002678 if (!capable(CAP_SYS_ADMIN))
2679 return -EPERM;
2680
Miao Xieda249272012-11-26 08:44:50 +00002681 ret = mnt_want_write_file(file);
2682 if (ret)
2683 return ret;
Yan Zhengc146afa2008-11-12 14:34:12 -05002684
Li Zefandae7b662009-04-08 15:06:54 +08002685 vol_args = memdup_user(arg, sizeof(*vol_args));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002686 if (IS_ERR(vol_args)) {
2687 ret = PTR_ERR(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002688 goto err_drop;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002689 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002690
Mark Fasheh5516e592008-07-24 12:20:14 -04002691 vol_args->name[BTRFS_PATH_NAME_MAX] = '\0';
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002692
Anand Jain183860f2013-05-17 10:52:45 +00002693 if (atomic_xchg(&root->fs_info->mutually_exclusive_operation_running,
2694 1)) {
2695 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
2696 goto out;
2697 }
2698
2699 mutex_lock(&root->fs_info->volume_mutex);
2700 ret = btrfs_rm_device(root, vol_args->name);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02002701 mutex_unlock(&root->fs_info->volume_mutex);
Stefan Behrens5ac00ad2012-11-05 17:54:08 +01002702 atomic_set(&root->fs_info->mutually_exclusive_operation_running, 0);
Anand Jain183860f2013-05-17 10:52:45 +00002703
Anand Jainec95d492014-07-01 00:58:57 +08002704 if (!ret)
2705 btrfs_info(root->fs_info, "disk deleted %s",vol_args->name);
2706
Anand Jain183860f2013-05-17 10:52:45 +00002707out:
2708 kfree(vol_args);
Dan Carpenterc47ca322014-09-04 14:09:15 +03002709err_drop:
Ilya Dryomov4ac20c72013-01-20 15:57:57 +02002710 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002711 return ret;
2712}
2713
Jan Schmidt475f6382011-03-11 15:41:01 +01002714static long btrfs_ioctl_fs_info(struct btrfs_root *root, void __user *arg)
2715{
Li Zefan027ed2f2011-06-08 08:27:56 +00002716 struct btrfs_ioctl_fs_info_args *fi_args;
Jan Schmidt475f6382011-03-11 15:41:01 +01002717 struct btrfs_device *device;
Jan Schmidt475f6382011-03-11 15:41:01 +01002718 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
Li Zefan027ed2f2011-06-08 08:27:56 +00002719 int ret = 0;
Jan Schmidt475f6382011-03-11 15:41:01 +01002720
Li Zefan027ed2f2011-06-08 08:27:56 +00002721 fi_args = kzalloc(sizeof(*fi_args), GFP_KERNEL);
2722 if (!fi_args)
2723 return -ENOMEM;
2724
Filipe David Borba Mananaf7171752013-08-12 20:56:58 +01002725 mutex_lock(&fs_devices->device_list_mutex);
Li Zefan027ed2f2011-06-08 08:27:56 +00002726 fi_args->num_devices = fs_devices->num_devices;
2727 memcpy(&fi_args->fsid, root->fs_info->fsid, sizeof(fi_args->fsid));
Jan Schmidt475f6382011-03-11 15:41:01 +01002728
Byongho Leed7641a42015-09-01 23:10:57 +09002729 list_for_each_entry(device, &fs_devices->devices, dev_list) {
Li Zefan027ed2f2011-06-08 08:27:56 +00002730 if (device->devid > fi_args->max_id)
2731 fi_args->max_id = device->devid;
Jan Schmidt475f6382011-03-11 15:41:01 +01002732 }
2733 mutex_unlock(&fs_devices->device_list_mutex);
2734
David Sterba80a773f2014-05-07 18:17:06 +02002735 fi_args->nodesize = root->fs_info->super_copy->nodesize;
2736 fi_args->sectorsize = root->fs_info->super_copy->sectorsize;
2737 fi_args->clone_alignment = root->fs_info->super_copy->sectorsize;
2738
Li Zefan027ed2f2011-06-08 08:27:56 +00002739 if (copy_to_user(arg, fi_args, sizeof(*fi_args)))
2740 ret = -EFAULT;
Jan Schmidt475f6382011-03-11 15:41:01 +01002741
Li Zefan027ed2f2011-06-08 08:27:56 +00002742 kfree(fi_args);
2743 return ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01002744}
2745
2746static long btrfs_ioctl_dev_info(struct btrfs_root *root, void __user *arg)
2747{
2748 struct btrfs_ioctl_dev_info_args *di_args;
2749 struct btrfs_device *dev;
2750 struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
2751 int ret = 0;
2752 char *s_uuid = NULL;
Jan Schmidt475f6382011-03-11 15:41:01 +01002753
Jan Schmidt475f6382011-03-11 15:41:01 +01002754 di_args = memdup_user(arg, sizeof(*di_args));
2755 if (IS_ERR(di_args))
2756 return PTR_ERR(di_args);
2757
Stefan Behrensdd5f9612013-08-15 17:11:20 +02002758 if (!btrfs_is_empty_uuid(di_args->uuid))
Jan Schmidt475f6382011-03-11 15:41:01 +01002759 s_uuid = di_args->uuid;
2760
2761 mutex_lock(&fs_devices->device_list_mutex);
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01002762 dev = btrfs_find_device(root->fs_info, di_args->devid, s_uuid, NULL);
Jan Schmidt475f6382011-03-11 15:41:01 +01002763
2764 if (!dev) {
2765 ret = -ENODEV;
2766 goto out;
2767 }
2768
2769 di_args->devid = dev->devid;
Miao Xie7cc8e582014-09-03 21:35:38 +08002770 di_args->bytes_used = btrfs_device_get_bytes_used(dev);
2771 di_args->total_bytes = btrfs_device_get_total_bytes(dev);
Jan Schmidt475f6382011-03-11 15:41:01 +01002772 memcpy(di_args->uuid, dev->uuid, sizeof(di_args->uuid));
Jim Meyeringa27202f2012-04-26 18:36:56 +02002773 if (dev->name) {
Josef Bacik606686e2012-06-04 14:03:51 -04002774 struct rcu_string *name;
2775
2776 rcu_read_lock();
2777 name = rcu_dereference(dev->name);
2778 strncpy(di_args->path, name->str, sizeof(di_args->path));
2779 rcu_read_unlock();
Jim Meyeringa27202f2012-04-26 18:36:56 +02002780 di_args->path[sizeof(di_args->path) - 1] = 0;
2781 } else {
Stefan Behrens99ba55a2012-03-19 16:17:22 +01002782 di_args->path[0] = '\0';
Jim Meyeringa27202f2012-04-26 18:36:56 +02002783 }
Jan Schmidt475f6382011-03-11 15:41:01 +01002784
2785out:
David Sterba55793c02013-04-26 15:20:23 +00002786 mutex_unlock(&fs_devices->device_list_mutex);
Jan Schmidt475f6382011-03-11 15:41:01 +01002787 if (ret == 0 && copy_to_user(arg, di_args, sizeof(*di_args)))
2788 ret = -EFAULT;
2789
2790 kfree(di_args);
2791 return ret;
2792}
2793
Mark Fashehf4414602015-06-30 14:42:05 -07002794static struct page *extent_same_get_page(struct inode *inode, pgoff_t index)
Mark Fasheh416161d2013-08-06 11:42:51 -07002795{
2796 struct page *page;
Mark Fasheh416161d2013-08-06 11:42:51 -07002797 struct extent_io_tree *tree = &BTRFS_I(inode)->io_tree;
2798
Mark Fasheh416161d2013-08-06 11:42:51 -07002799 page = grab_cache_page(inode->i_mapping, index);
2800 if (!page)
2801 return NULL;
2802
2803 if (!PageUptodate(page)) {
2804 if (extent_read_full_page_nolock(tree, page, btrfs_get_extent,
2805 0))
2806 return NULL;
2807 lock_page(page);
2808 if (!PageUptodate(page)) {
2809 unlock_page(page);
2810 page_cache_release(page);
2811 return NULL;
2812 }
2813 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002814
2815 return page;
2816}
2817
Mark Fashehf4414602015-06-30 14:42:05 -07002818static int gather_extent_pages(struct inode *inode, struct page **pages,
2819 int num_pages, u64 off)
2820{
2821 int i;
2822 pgoff_t index = off >> PAGE_CACHE_SHIFT;
2823
2824 for (i = 0; i < num_pages; i++) {
2825 pages[i] = extent_same_get_page(inode, index + i);
2826 if (!pages[i])
2827 return -ENOMEM;
2828 }
2829 return 0;
2830}
2831
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002832static int lock_extent_range(struct inode *inode, u64 off, u64 len,
2833 bool retry_range_locking)
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002834{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002835 /*
2836 * Do any pending delalloc/csum calculations on inode, one way or
2837 * another, and lock file content.
2838 * The locking order is:
2839 *
2840 * 1) pages
2841 * 2) range in the inode's io tree
2842 */
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002843 while (1) {
2844 struct btrfs_ordered_extent *ordered;
2845 lock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2846 ordered = btrfs_lookup_first_ordered_extent(inode,
2847 off + len - 1);
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002848 if ((!ordered ||
2849 ordered->file_offset + ordered->len <= off ||
2850 ordered->file_offset >= off + len) &&
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002851 !test_range_bit(&BTRFS_I(inode)->io_tree, off,
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002852 off + len - 1, EXTENT_DELALLOC, 0, NULL)) {
2853 if (ordered)
2854 btrfs_put_ordered_extent(ordered);
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002855 break;
Filipe Mananaff5df9b2014-05-30 17:56:24 +01002856 }
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002857 unlock_extent(&BTRFS_I(inode)->io_tree, off, off + len - 1);
2858 if (ordered)
2859 btrfs_put_ordered_extent(ordered);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002860 if (!retry_range_locking)
2861 return -EAGAIN;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002862 btrfs_wait_ordered_range(inode, off, len);
2863 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002864 return 0;
Mark Fasheh77fe20dc2013-08-06 11:42:48 -07002865}
2866
Mark Fashehf4414602015-06-30 14:42:05 -07002867static void btrfs_double_inode_unlock(struct inode *inode1, struct inode *inode2)
Mark Fasheh416161d2013-08-06 11:42:51 -07002868{
Mark Fasheh416161d2013-08-06 11:42:51 -07002869 mutex_unlock(&inode1->i_mutex);
2870 mutex_unlock(&inode2->i_mutex);
2871}
2872
Mark Fashehf4414602015-06-30 14:42:05 -07002873static void btrfs_double_inode_lock(struct inode *inode1, struct inode *inode2)
2874{
2875 if (inode1 < inode2)
2876 swap(inode1, inode2);
2877
2878 mutex_lock_nested(&inode1->i_mutex, I_MUTEX_PARENT);
Mark Fasheh293a8482015-06-30 14:42:06 -07002879 mutex_lock_nested(&inode2->i_mutex, I_MUTEX_CHILD);
Mark Fashehf4414602015-06-30 14:42:05 -07002880}
2881
2882static void btrfs_double_extent_unlock(struct inode *inode1, u64 loff1,
2883 struct inode *inode2, u64 loff2, u64 len)
2884{
2885 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1, loff1 + len - 1);
2886 unlock_extent(&BTRFS_I(inode2)->io_tree, loff2, loff2 + len - 1);
2887}
2888
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002889static int btrfs_double_extent_lock(struct inode *inode1, u64 loff1,
2890 struct inode *inode2, u64 loff2, u64 len,
2891 bool retry_range_locking)
Mark Fasheh416161d2013-08-06 11:42:51 -07002892{
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002893 int ret;
2894
Mark Fasheh416161d2013-08-06 11:42:51 -07002895 if (inode1 < inode2) {
2896 swap(inode1, inode2);
2897 swap(loff1, loff2);
2898 }
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002899 ret = lock_extent_range(inode1, loff1, len, retry_range_locking);
2900 if (ret)
2901 return ret;
2902 ret = lock_extent_range(inode2, loff2, len, retry_range_locking);
2903 if (ret)
2904 unlock_extent(&BTRFS_I(inode1)->io_tree, loff1,
2905 loff1 + len - 1);
2906 return ret;
Mark Fashehf4414602015-06-30 14:42:05 -07002907}
2908
2909struct cmp_pages {
2910 int num_pages;
2911 struct page **src_pages;
2912 struct page **dst_pages;
2913};
2914
2915static void btrfs_cmp_data_free(struct cmp_pages *cmp)
2916{
2917 int i;
2918 struct page *pg;
2919
2920 for (i = 0; i < cmp->num_pages; i++) {
2921 pg = cmp->src_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002922 if (pg) {
2923 unlock_page(pg);
Mark Fashehf4414602015-06-30 14:42:05 -07002924 page_cache_release(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002925 }
Mark Fashehf4414602015-06-30 14:42:05 -07002926 pg = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002927 if (pg) {
2928 unlock_page(pg);
Mark Fashehf4414602015-06-30 14:42:05 -07002929 page_cache_release(pg);
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002930 }
Mark Fasheh416161d2013-08-06 11:42:51 -07002931 }
Mark Fashehf4414602015-06-30 14:42:05 -07002932 kfree(cmp->src_pages);
2933 kfree(cmp->dst_pages);
2934}
2935
2936static int btrfs_cmp_data_prepare(struct inode *src, u64 loff,
2937 struct inode *dst, u64 dst_loff,
2938 u64 len, struct cmp_pages *cmp)
2939{
2940 int ret;
2941 int num_pages = PAGE_CACHE_ALIGN(len) >> PAGE_CACHE_SHIFT;
2942 struct page **src_pgarr, **dst_pgarr;
2943
2944 /*
2945 * We must gather up all the pages before we initiate our
2946 * extent locking. We use an array for the page pointers. Size
2947 * of the array is bounded by len, which is in turn bounded by
2948 * BTRFS_MAX_DEDUPE_LEN.
2949 */
2950 src_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2951 dst_pgarr = kzalloc(num_pages * sizeof(struct page *), GFP_NOFS);
2952 if (!src_pgarr || !dst_pgarr) {
2953 kfree(src_pgarr);
2954 kfree(dst_pgarr);
2955 return -ENOMEM;
2956 }
2957 cmp->num_pages = num_pages;
2958 cmp->src_pages = src_pgarr;
2959 cmp->dst_pages = dst_pgarr;
2960
2961 ret = gather_extent_pages(src, cmp->src_pages, cmp->num_pages, loff);
2962 if (ret)
2963 goto out;
2964
2965 ret = gather_extent_pages(dst, cmp->dst_pages, cmp->num_pages, dst_loff);
2966
2967out:
2968 if (ret)
2969 btrfs_cmp_data_free(cmp);
2970 return 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002971}
2972
2973static int btrfs_cmp_data(struct inode *src, u64 loff, struct inode *dst,
Mark Fashehf4414602015-06-30 14:42:05 -07002974 u64 dst_loff, u64 len, struct cmp_pages *cmp)
Mark Fasheh416161d2013-08-06 11:42:51 -07002975{
2976 int ret = 0;
Mark Fashehf4414602015-06-30 14:42:05 -07002977 int i;
Mark Fasheh416161d2013-08-06 11:42:51 -07002978 struct page *src_page, *dst_page;
2979 unsigned int cmp_len = PAGE_CACHE_SIZE;
2980 void *addr, *dst_addr;
2981
Mark Fashehf4414602015-06-30 14:42:05 -07002982 i = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07002983 while (len) {
2984 if (len < PAGE_CACHE_SIZE)
2985 cmp_len = len;
2986
Mark Fashehf4414602015-06-30 14:42:05 -07002987 BUG_ON(i >= cmp->num_pages);
2988
2989 src_page = cmp->src_pages[i];
2990 dst_page = cmp->dst_pages[i];
Filipe Mananae0bd70c2016-01-27 10:20:58 +00002991 ASSERT(PageLocked(src_page));
2992 ASSERT(PageLocked(dst_page));
Mark Fashehf4414602015-06-30 14:42:05 -07002993
Mark Fasheh416161d2013-08-06 11:42:51 -07002994 addr = kmap_atomic(src_page);
2995 dst_addr = kmap_atomic(dst_page);
2996
2997 flush_dcache_page(src_page);
2998 flush_dcache_page(dst_page);
2999
3000 if (memcmp(addr, dst_addr, cmp_len))
3001 ret = BTRFS_SAME_DATA_DIFFERS;
3002
3003 kunmap_atomic(addr);
3004 kunmap_atomic(dst_addr);
Mark Fasheh416161d2013-08-06 11:42:51 -07003005
3006 if (ret)
3007 break;
3008
Mark Fasheh416161d2013-08-06 11:42:51 -07003009 len -= cmp_len;
Mark Fashehf4414602015-06-30 14:42:05 -07003010 i++;
Mark Fasheh416161d2013-08-06 11:42:51 -07003011 }
3012
3013 return ret;
3014}
3015
Mark Fashehe1d227a2015-06-08 15:05:25 -07003016static int extent_same_check_offsets(struct inode *inode, u64 off, u64 *plen,
3017 u64 olen)
Mark Fasheh416161d2013-08-06 11:42:51 -07003018{
Mark Fashehe1d227a2015-06-08 15:05:25 -07003019 u64 len = *plen;
Mark Fasheh416161d2013-08-06 11:42:51 -07003020 u64 bs = BTRFS_I(inode)->root->fs_info->sb->s_blocksize;
3021
Mark Fashehe1d227a2015-06-08 15:05:25 -07003022 if (off + olen > inode->i_size || off + olen < off)
Mark Fasheh416161d2013-08-06 11:42:51 -07003023 return -EINVAL;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003024
3025 /* if we extend to eof, continue to block boundary */
3026 if (off + len == inode->i_size)
3027 *plen = len = ALIGN(inode->i_size, bs) - off;
3028
Mark Fasheh416161d2013-08-06 11:42:51 -07003029 /* Check that we are block aligned - btrfs_clone() requires this */
3030 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs))
3031 return -EINVAL;
3032
3033 return 0;
3034}
3035
Mark Fashehe1d227a2015-06-08 15:05:25 -07003036static int btrfs_extent_same(struct inode *src, u64 loff, u64 olen,
Mark Fasheh416161d2013-08-06 11:42:51 -07003037 struct inode *dst, u64 dst_loff)
3038{
3039 int ret;
Mark Fashehe1d227a2015-06-08 15:05:25 -07003040 u64 len = olen;
Mark Fashehf4414602015-06-30 14:42:05 -07003041 struct cmp_pages cmp;
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003042 int same_inode = 0;
3043 u64 same_lock_start = 0;
3044 u64 same_lock_len = 0;
Mark Fasheh416161d2013-08-06 11:42:51 -07003045
Mark Fasheh416161d2013-08-06 11:42:51 -07003046 if (src == dst)
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003047 same_inode = 1;
Mark Fasheh416161d2013-08-06 11:42:51 -07003048
Filipe Manana113e8282015-03-30 18:26:47 +01003049 if (len == 0)
3050 return 0;
3051
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003052 if (same_inode) {
3053 mutex_lock(&src->i_mutex);
Mark Fasheh416161d2013-08-06 11:42:51 -07003054
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003055 ret = extent_same_check_offsets(src, loff, &len, olen);
3056 if (ret)
3057 goto out_unlock;
Mark Fasheh416161d2013-08-06 11:42:51 -07003058
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003059 /*
3060 * Single inode case wants the same checks, except we
3061 * don't want our length pushed out past i_size as
3062 * comparing that data range makes no sense.
3063 *
3064 * extent_same_check_offsets() will do this for an
3065 * unaligned length at i_size, so catch it here and
3066 * reject the request.
3067 *
3068 * This effectively means we require aligned extents
3069 * for the single-inode case, whereas the other cases
3070 * allow an unaligned length so long as it ends at
3071 * i_size.
3072 */
3073 if (len != olen) {
3074 ret = -EINVAL;
3075 goto out_unlock;
3076 }
3077
3078 /* Check for overlapping ranges */
3079 if (dst_loff + len > loff && dst_loff < loff + len) {
3080 ret = -EINVAL;
3081 goto out_unlock;
3082 }
3083
3084 same_lock_start = min_t(u64, loff, dst_loff);
3085 same_lock_len = max_t(u64, loff, dst_loff) + len - same_lock_start;
3086 } else {
3087 btrfs_double_inode_lock(src, dst);
3088
3089 ret = extent_same_check_offsets(src, loff, &len, olen);
3090 if (ret)
3091 goto out_unlock;
3092
3093 ret = extent_same_check_offsets(dst, dst_loff, &len, olen);
3094 if (ret)
3095 goto out_unlock;
3096 }
Mark Fasheh416161d2013-08-06 11:42:51 -07003097
3098 /* don't make the dst file partly checksummed */
3099 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3100 (BTRFS_I(dst)->flags & BTRFS_INODE_NODATASUM)) {
3101 ret = -EINVAL;
3102 goto out_unlock;
3103 }
3104
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003105again:
Mark Fashehf4414602015-06-30 14:42:05 -07003106 ret = btrfs_cmp_data_prepare(src, loff, dst, dst_loff, olen, &cmp);
3107 if (ret)
3108 goto out_unlock;
3109
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003110 if (same_inode)
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003111 ret = lock_extent_range(src, same_lock_start, same_lock_len,
3112 false);
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003113 else
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003114 ret = btrfs_double_extent_lock(src, loff, dst, dst_loff, len,
3115 false);
3116 /*
3117 * If one of the inodes has dirty pages in the respective range or
3118 * ordered extents, we need to flush dellaloc and wait for all ordered
3119 * extents in the range. We must unlock the pages and the ranges in the
3120 * io trees to avoid deadlocks when flushing delalloc (requires locking
3121 * pages) and when waiting for ordered extents to complete (they require
3122 * range locking).
3123 */
3124 if (ret == -EAGAIN) {
3125 /*
3126 * Ranges in the io trees already unlocked. Now unlock all
3127 * pages before waiting for all IO to complete.
3128 */
3129 btrfs_cmp_data_free(&cmp);
3130 if (same_inode) {
3131 btrfs_wait_ordered_range(src, same_lock_start,
3132 same_lock_len);
3133 } else {
3134 btrfs_wait_ordered_range(src, loff, len);
3135 btrfs_wait_ordered_range(dst, dst_loff, len);
3136 }
3137 goto again;
3138 }
3139 ASSERT(ret == 0);
3140 if (WARN_ON(ret)) {
3141 /* ranges in the io trees already unlocked */
3142 btrfs_cmp_data_free(&cmp);
3143 return ret;
3144 }
Mark Fashehf4414602015-06-30 14:42:05 -07003145
Mark Fasheh207910d2015-06-30 14:42:04 -07003146 /* pass original length for comparison so we stay within i_size */
Mark Fashehf4414602015-06-30 14:42:05 -07003147 ret = btrfs_cmp_data(src, loff, dst, dst_loff, olen, &cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003148 if (ret == 0)
Mark Fasheh1c919a52015-06-30 14:42:08 -07003149 ret = btrfs_clone(src, dst, loff, olen, len, dst_loff, 1);
Mark Fasheh416161d2013-08-06 11:42:51 -07003150
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003151 if (same_inode)
3152 unlock_extent(&BTRFS_I(src)->io_tree, same_lock_start,
3153 same_lock_start + same_lock_len - 1);
3154 else
3155 btrfs_double_extent_unlock(src, loff, dst, dst_loff, len);
Mark Fashehf4414602015-06-30 14:42:05 -07003156
3157 btrfs_cmp_data_free(&cmp);
Mark Fasheh416161d2013-08-06 11:42:51 -07003158out_unlock:
Mark Fasheh0efa9f42015-06-30 14:42:07 -07003159 if (same_inode)
3160 mutex_unlock(&src->i_mutex);
3161 else
3162 btrfs_double_inode_unlock(src, dst);
Mark Fasheh416161d2013-08-06 11:42:51 -07003163
3164 return ret;
3165}
3166
Byongho Leeee221842015-12-15 01:42:10 +09003167#define BTRFS_MAX_DEDUPE_LEN SZ_16M
Mark Fasheh416161d2013-08-06 11:42:51 -07003168
3169static long btrfs_ioctl_file_extent_same(struct file *file,
Al Viro1c1c8742013-12-11 23:07:51 -05003170 struct btrfs_ioctl_same_args __user *argp)
Mark Fasheh416161d2013-08-06 11:42:51 -07003171{
Filipe Manana497b4052015-07-03 08:36:11 +01003172 struct btrfs_ioctl_same_args *same = NULL;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003173 struct btrfs_ioctl_same_extent_info *info;
Al Viro1c1c8742013-12-11 23:07:51 -05003174 struct inode *src = file_inode(file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003175 u64 off;
3176 u64 len;
3177 int i;
3178 int ret;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003179 unsigned long size;
Mark Fasheh416161d2013-08-06 11:42:51 -07003180 u64 bs = BTRFS_I(src)->root->fs_info->sb->s_blocksize;
3181 bool is_admin = capable(CAP_SYS_ADMIN);
Al Viro1c1c8742013-12-11 23:07:51 -05003182 u16 count;
Mark Fasheh416161d2013-08-06 11:42:51 -07003183
3184 if (!(file->f_mode & FMODE_READ))
3185 return -EINVAL;
3186
3187 ret = mnt_want_write_file(file);
3188 if (ret)
3189 return ret;
3190
Al Viro1c1c8742013-12-11 23:07:51 -05003191 if (get_user(count, &argp->dest_count)) {
Mark Fasheh416161d2013-08-06 11:42:51 -07003192 ret = -EFAULT;
3193 goto out;
3194 }
3195
Al Viro1c1c8742013-12-11 23:07:51 -05003196 size = offsetof(struct btrfs_ioctl_same_args __user, info[count]);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003197
Al Viro1c1c8742013-12-11 23:07:51 -05003198 same = memdup_user(argp, size);
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003199
Geyslan G. Bem229eed42013-10-14 12:18:25 -03003200 if (IS_ERR(same)) {
3201 ret = PTR_ERR(same);
Filipe Manana497b4052015-07-03 08:36:11 +01003202 same = NULL;
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003203 goto out;
3204 }
3205
3206 off = same->logical_offset;
3207 len = same->length;
Mark Fasheh416161d2013-08-06 11:42:51 -07003208
3209 /*
3210 * Limit the total length we will dedupe for each operation.
3211 * This is intended to bound the total time spent in this
3212 * ioctl to something sane.
3213 */
3214 if (len > BTRFS_MAX_DEDUPE_LEN)
3215 len = BTRFS_MAX_DEDUPE_LEN;
3216
3217 if (WARN_ON_ONCE(bs < PAGE_CACHE_SIZE)) {
3218 /*
3219 * Btrfs does not support blocksize < page_size. As a
3220 * result, btrfs_cmp_data() won't correctly handle
3221 * this situation without an update.
3222 */
3223 ret = -EINVAL;
3224 goto out;
3225 }
3226
3227 ret = -EISDIR;
3228 if (S_ISDIR(src->i_mode))
3229 goto out;
3230
3231 ret = -EACCES;
3232 if (!S_ISREG(src->i_mode))
3233 goto out;
3234
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003235 /* pre-format output fields to sane values */
Al Viro1c1c8742013-12-11 23:07:51 -05003236 for (i = 0; i < count; i++) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003237 same->info[i].bytes_deduped = 0ULL;
3238 same->info[i].status = 0;
3239 }
3240
Al Viro1c1c8742013-12-11 23:07:51 -05003241 for (i = 0, info = same->info; i < count; i++, info++) {
3242 struct inode *dst;
3243 struct fd dst_file = fdget(info->fd);
3244 if (!dst_file.file) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003245 info->status = -EBADF;
Al Viro1c1c8742013-12-11 23:07:51 -05003246 continue;
Mark Fasheh416161d2013-08-06 11:42:51 -07003247 }
Al Viro1c1c8742013-12-11 23:07:51 -05003248 dst = file_inode(dst_file.file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003249
Al Viro1c1c8742013-12-11 23:07:51 -05003250 if (!(is_admin || (dst_file.file->f_mode & FMODE_WRITE))) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003251 info->status = -EINVAL;
Al Viro1c1c8742013-12-11 23:07:51 -05003252 } else if (file->f_path.mnt != dst_file.file->f_path.mnt) {
3253 info->status = -EXDEV;
3254 } else if (S_ISDIR(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003255 info->status = -EISDIR;
Al Viro1c1c8742013-12-11 23:07:51 -05003256 } else if (!S_ISREG(dst->i_mode)) {
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003257 info->status = -EACCES;
Al Viro1c1c8742013-12-11 23:07:51 -05003258 } else {
3259 info->status = btrfs_extent_same(src, off, len, dst,
3260 info->logical_offset);
3261 if (info->status == 0)
3262 info->bytes_deduped += len;
Mark Fasheh416161d2013-08-06 11:42:51 -07003263 }
Al Viro1c1c8742013-12-11 23:07:51 -05003264 fdput(dst_file);
Mark Fasheh416161d2013-08-06 11:42:51 -07003265 }
3266
Mark Fashehcbf8b8c2013-09-17 15:43:54 -07003267 ret = copy_to_user(argp, same, size);
3268 if (ret)
3269 ret = -EFAULT;
3270
Mark Fasheh416161d2013-08-06 11:42:51 -07003271out:
3272 mnt_drop_write_file(file);
Filipe Manana497b4052015-07-03 08:36:11 +01003273 kfree(same);
Mark Fasheh416161d2013-08-06 11:42:51 -07003274 return ret;
3275}
3276
Filipe Mananaf82a9902014-06-01 01:50:28 +01003277static int clone_finish_inode_update(struct btrfs_trans_handle *trans,
3278 struct inode *inode,
3279 u64 endoff,
3280 const u64 destoff,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003281 const u64 olen,
3282 int no_time_update)
Filipe Mananaf82a9902014-06-01 01:50:28 +01003283{
3284 struct btrfs_root *root = BTRFS_I(inode)->root;
3285 int ret;
3286
3287 inode_inc_iversion(inode);
Mark Fasheh1c919a52015-06-30 14:42:08 -07003288 if (!no_time_update)
3289 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003290 /*
3291 * We round up to the block size at eof when determining which
3292 * extents to clone above, but shouldn't round up the file size.
3293 */
3294 if (endoff > destoff + olen)
3295 endoff = destoff + olen;
3296 if (endoff > inode->i_size)
3297 btrfs_i_size_write(inode, endoff);
3298
3299 ret = btrfs_update_inode(trans, root, inode);
3300 if (ret) {
3301 btrfs_abort_transaction(trans, root, ret);
3302 btrfs_end_transaction(trans, root);
3303 goto out;
3304 }
3305 ret = btrfs_end_transaction(trans, root);
3306out:
3307 return ret;
3308}
3309
Filipe Manana7ffbb592014-06-09 03:48:05 +01003310static void clone_update_extent_map(struct inode *inode,
3311 const struct btrfs_trans_handle *trans,
3312 const struct btrfs_path *path,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003313 const u64 hole_offset,
3314 const u64 hole_len)
3315{
3316 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3317 struct extent_map *em;
3318 int ret;
3319
3320 em = alloc_extent_map();
3321 if (!em) {
3322 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3323 &BTRFS_I(inode)->runtime_flags);
3324 return;
3325 }
3326
Filipe Manana14f59792014-06-29 21:45:40 +01003327 if (path) {
3328 struct btrfs_file_extent_item *fi;
3329
3330 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
3331 struct btrfs_file_extent_item);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003332 btrfs_extent_item_to_extent_map(inode, path, fi, false, em);
3333 em->generation = -1;
3334 if (btrfs_file_extent_type(path->nodes[0], fi) ==
3335 BTRFS_FILE_EXTENT_INLINE)
3336 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3337 &BTRFS_I(inode)->runtime_flags);
3338 } else {
3339 em->start = hole_offset;
3340 em->len = hole_len;
3341 em->ram_bytes = em->len;
3342 em->orig_start = hole_offset;
3343 em->block_start = EXTENT_MAP_HOLE;
3344 em->block_len = 0;
3345 em->orig_block_len = 0;
3346 em->compress_type = BTRFS_COMPRESS_NONE;
3347 em->generation = trans->transid;
3348 }
3349
3350 while (1) {
3351 write_lock(&em_tree->lock);
3352 ret = add_extent_mapping(em_tree, em, 1);
3353 write_unlock(&em_tree->lock);
3354 if (ret != -EEXIST) {
3355 free_extent_map(em);
3356 break;
3357 }
3358 btrfs_drop_extent_cache(inode, em->start,
3359 em->start + em->len - 1, 0);
3360 }
3361
David Sterbaee39b432014-09-30 01:33:33 +02003362 if (ret)
Filipe Manana7ffbb592014-06-09 03:48:05 +01003363 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3364 &BTRFS_I(inode)->runtime_flags);
3365}
3366
Filipe Manana8039d872015-10-13 15:15:00 +01003367/*
3368 * Make sure we do not end up inserting an inline extent into a file that has
3369 * already other (non-inline) extents. If a file has an inline extent it can
3370 * not have any other extents and the (single) inline extent must start at the
3371 * file offset 0. Failing to respect these rules will lead to file corruption,
3372 * resulting in EIO errors on read/write operations, hitting BUG_ON's in mm, etc
3373 *
3374 * We can have extents that have been already written to disk or we can have
3375 * dirty ranges still in delalloc, in which case the extent maps and items are
3376 * created only when we run delalloc, and the delalloc ranges might fall outside
3377 * the range we are currently locking in the inode's io tree. So we check the
3378 * inode's i_size because of that (i_size updates are done while holding the
3379 * i_mutex, which we are holding here).
3380 * We also check to see if the inode has a size not greater than "datal" but has
3381 * extents beyond it, due to an fallocate with FALLOC_FL_KEEP_SIZE (and we are
3382 * protected against such concurrent fallocate calls by the i_mutex).
3383 *
3384 * If the file has no extents but a size greater than datal, do not allow the
3385 * copy because we would need turn the inline extent into a non-inline one (even
3386 * with NO_HOLES enabled). If we find our destination inode only has one inline
3387 * extent, just overwrite it with the source inline extent if its size is less
3388 * than the source extent's size, or we could copy the source inline extent's
3389 * data into the destination inode's inline extent if the later is greater then
3390 * the former.
3391 */
3392static int clone_copy_inline_extent(struct inode *src,
3393 struct inode *dst,
3394 struct btrfs_trans_handle *trans,
3395 struct btrfs_path *path,
3396 struct btrfs_key *new_key,
3397 const u64 drop_start,
3398 const u64 datal,
3399 const u64 skip,
3400 const u64 size,
3401 char *inline_data)
3402{
3403 struct btrfs_root *root = BTRFS_I(dst)->root;
3404 const u64 aligned_end = ALIGN(new_key->offset + datal,
3405 root->sectorsize);
3406 int ret;
3407 struct btrfs_key key;
3408
3409 if (new_key->offset > 0)
3410 return -EOPNOTSUPP;
3411
3412 key.objectid = btrfs_ino(dst);
3413 key.type = BTRFS_EXTENT_DATA_KEY;
3414 key.offset = 0;
3415 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3416 if (ret < 0) {
3417 return ret;
3418 } else if (ret > 0) {
3419 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3420 ret = btrfs_next_leaf(root, path);
3421 if (ret < 0)
3422 return ret;
3423 else if (ret > 0)
3424 goto copy_inline_extent;
3425 }
3426 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
3427 if (key.objectid == btrfs_ino(dst) &&
3428 key.type == BTRFS_EXTENT_DATA_KEY) {
3429 ASSERT(key.offset > 0);
3430 return -EOPNOTSUPP;
3431 }
3432 } else if (i_size_read(dst) <= datal) {
3433 struct btrfs_file_extent_item *ei;
3434 u64 ext_len;
3435
3436 /*
3437 * If the file size is <= datal, make sure there are no other
3438 * extents following (can happen do to an fallocate call with
3439 * the flag FALLOC_FL_KEEP_SIZE).
3440 */
3441 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3442 struct btrfs_file_extent_item);
3443 /*
3444 * If it's an inline extent, it can not have other extents
3445 * following it.
3446 */
3447 if (btrfs_file_extent_type(path->nodes[0], ei) ==
3448 BTRFS_FILE_EXTENT_INLINE)
3449 goto copy_inline_extent;
3450
3451 ext_len = btrfs_file_extent_num_bytes(path->nodes[0], ei);
3452 if (ext_len > aligned_end)
3453 return -EOPNOTSUPP;
3454
3455 ret = btrfs_next_item(root, path);
3456 if (ret < 0) {
3457 return ret;
3458 } else if (ret == 0) {
3459 btrfs_item_key_to_cpu(path->nodes[0], &key,
3460 path->slots[0]);
3461 if (key.objectid == btrfs_ino(dst) &&
3462 key.type == BTRFS_EXTENT_DATA_KEY)
3463 return -EOPNOTSUPP;
3464 }
3465 }
3466
3467copy_inline_extent:
3468 /*
3469 * We have no extent items, or we have an extent at offset 0 which may
3470 * or may not be inlined. All these cases are dealt the same way.
3471 */
3472 if (i_size_read(dst) > datal) {
3473 /*
3474 * If the destination inode has an inline extent...
3475 * This would require copying the data from the source inline
3476 * extent into the beginning of the destination's inline extent.
3477 * But this is really complex, both extents can be compressed
3478 * or just one of them, which would require decompressing and
3479 * re-compressing data (which could increase the new compressed
3480 * size, not allowing the compressed data to fit anymore in an
3481 * inline extent).
3482 * So just don't support this case for now (it should be rare,
3483 * we are not really saving space when cloning inline extents).
3484 */
3485 return -EOPNOTSUPP;
3486 }
3487
3488 btrfs_release_path(path);
3489 ret = btrfs_drop_extents(trans, root, dst, drop_start, aligned_end, 1);
3490 if (ret)
3491 return ret;
3492 ret = btrfs_insert_empty_item(trans, root, path, new_key, size);
3493 if (ret)
3494 return ret;
3495
3496 if (skip) {
3497 const u32 start = btrfs_file_extent_calc_inline_size(0);
3498
3499 memmove(inline_data + start, inline_data + start + skip, datal);
3500 }
3501
3502 write_extent_buffer(path->nodes[0], inline_data,
3503 btrfs_item_ptr_offset(path->nodes[0],
3504 path->slots[0]),
3505 size);
3506 inode_add_bytes(dst, datal);
3507
3508 return 0;
3509}
3510
Mark Fasheh32b7c682013-08-06 11:42:49 -07003511/**
3512 * btrfs_clone() - clone a range from inode file to another
3513 *
3514 * @src: Inode to clone from
3515 * @inode: Inode to clone to
3516 * @off: Offset within source to start clone from
3517 * @olen: Original length, passed by user, of range to clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003518 * @olen_aligned: Block-aligned value of olen
Mark Fasheh32b7c682013-08-06 11:42:49 -07003519 * @destoff: Offset within @inode to start clone
Mark Fasheh1c919a52015-06-30 14:42:08 -07003520 * @no_time_update: Whether to update mtime/ctime on the target inode
Mark Fasheh32b7c682013-08-06 11:42:49 -07003521 */
3522static int btrfs_clone(struct inode *src, struct inode *inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003523 const u64 off, const u64 olen, const u64 olen_aligned,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003524 const u64 destoff, int no_time_update)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003525{
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003526 struct btrfs_root *root = BTRFS_I(inode)->root;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003527 struct btrfs_path *path = NULL;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003528 struct extent_buffer *leaf;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003529 struct btrfs_trans_handle *trans;
3530 char *buf = NULL;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003531 struct btrfs_key key;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003532 u32 nritems;
3533 int slot;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003534 int ret;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003535 const u64 len = olen_aligned;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003536 u64 last_dest_end = destoff;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003537
3538 ret = -ENOMEM;
David Sterba707e8a02014-06-04 19:22:26 +02003539 buf = vmalloc(root->nodesize);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003540 if (!buf)
Mark Fasheh32b7c682013-08-06 11:42:49 -07003541 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003542
3543 path = btrfs_alloc_path();
3544 if (!path) {
3545 vfree(buf);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003546 return ret;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003547 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003548
David Sterbae4058b52015-11-27 16:31:35 +01003549 path->reada = READA_FORWARD;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003550 /* clone data */
Li Zefan33345d012011-04-20 10:31:50 +08003551 key.objectid = btrfs_ino(src);
Yan Zhengae01a0a2008-08-04 23:23:47 -04003552 key.type = BTRFS_EXTENT_DATA_KEY;
Filipe Manana2c463822014-05-31 02:31:05 +01003553 key.offset = off;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003554
3555 while (1) {
Chris Masonde249e62015-04-11 05:09:06 -07003556 u64 next_key_min_offset = key.offset + 1;
Filipe Mananadf858e72015-03-31 14:56:46 +01003557
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003558 /*
3559 * note the key will change type as we walk through the
3560 * tree.
3561 */
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003562 path->leave_spinning = 1;
David Sterba362a20c2011-08-01 18:11:57 +02003563 ret = btrfs_search_slot(NULL, BTRFS_I(src)->root, &key, path,
3564 0, 0);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003565 if (ret < 0)
3566 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003567 /*
3568 * First search, if no extent item that starts at offset off was
3569 * found but the previous item is an extent item, it's possible
3570 * it might overlap our target range, therefore process it.
3571 */
3572 if (key.offset == off && ret > 0 && path->slots[0] > 0) {
3573 btrfs_item_key_to_cpu(path->nodes[0], &key,
3574 path->slots[0] - 1);
3575 if (key.type == BTRFS_EXTENT_DATA_KEY)
3576 path->slots[0]--;
3577 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003578
Yan Zhengae01a0a2008-08-04 23:23:47 -04003579 nritems = btrfs_header_nritems(path->nodes[0]);
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003580process_slot:
Yan Zhengae01a0a2008-08-04 23:23:47 -04003581 if (path->slots[0] >= nritems) {
David Sterba362a20c2011-08-01 18:11:57 +02003582 ret = btrfs_next_leaf(BTRFS_I(src)->root, path);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003583 if (ret < 0)
3584 goto out;
3585 if (ret > 0)
3586 break;
Yan Zhengae01a0a2008-08-04 23:23:47 -04003587 nritems = btrfs_header_nritems(path->nodes[0]);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003588 }
3589 leaf = path->nodes[0];
3590 slot = path->slots[0];
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003591
Yan Zhengae01a0a2008-08-04 23:23:47 -04003592 btrfs_item_key_to_cpu(leaf, &key, slot);
David Sterba962a2982014-06-04 18:41:45 +02003593 if (key.type > BTRFS_EXTENT_DATA_KEY ||
Li Zefan33345d012011-04-20 10:31:50 +08003594 key.objectid != btrfs_ino(src))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003595 break;
3596
David Sterba962a2982014-06-04 18:41:45 +02003597 if (key.type == BTRFS_EXTENT_DATA_KEY) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003598 struct btrfs_file_extent_item *extent;
3599 int type;
Zheng Yan31840ae2008-09-23 13:14:14 -04003600 u32 size;
3601 struct btrfs_key new_key;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003602 u64 disko = 0, diskl = 0;
3603 u64 datao = 0, datal = 0;
3604 u8 comp;
Filipe Mananaf82a9902014-06-01 01:50:28 +01003605 u64 drop_start;
Zheng Yan31840ae2008-09-23 13:14:14 -04003606
Sage Weilc5c9cd42008-11-12 14:32:25 -05003607 extent = btrfs_item_ptr(leaf, slot,
3608 struct btrfs_file_extent_item);
3609 comp = btrfs_file_extent_compression(leaf, extent);
3610 type = btrfs_file_extent_type(leaf, extent);
Chris Masonc8a894d2009-06-27 21:07:03 -04003611 if (type == BTRFS_FILE_EXTENT_REG ||
3612 type == BTRFS_FILE_EXTENT_PREALLOC) {
Chris Masond3977122009-01-05 21:25:51 -05003613 disko = btrfs_file_extent_disk_bytenr(leaf,
3614 extent);
3615 diskl = btrfs_file_extent_disk_num_bytes(leaf,
3616 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003617 datao = btrfs_file_extent_offset(leaf, extent);
Chris Masond3977122009-01-05 21:25:51 -05003618 datal = btrfs_file_extent_num_bytes(leaf,
3619 extent);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003620 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3621 /* take upper bound, may be compressed */
3622 datal = btrfs_file_extent_ram_bytes(leaf,
3623 extent);
3624 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003625
Filipe Manana2c463822014-05-31 02:31:05 +01003626 /*
3627 * The first search might have left us at an extent
3628 * item that ends before our target range's start, can
3629 * happen if we have holes and NO_HOLES feature enabled.
3630 */
3631 if (key.offset + datal <= off) {
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003632 path->slots[0]++;
3633 goto process_slot;
Filipe Manana2c463822014-05-31 02:31:05 +01003634 } else if (key.offset >= off + len) {
3635 break;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003636 }
Filipe Mananadf858e72015-03-31 14:56:46 +01003637 next_key_min_offset = key.offset + datal;
Filipe David Borba Mananae4355f32014-01-13 19:35:01 +00003638 size = btrfs_item_size_nr(leaf, slot);
3639 read_extent_buffer(leaf, buf,
3640 btrfs_item_ptr_offset(leaf, slot),
3641 size);
3642
3643 btrfs_release_path(path);
3644 path->leave_spinning = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003645
Zheng Yan31840ae2008-09-23 13:14:14 -04003646 memcpy(&new_key, &key, sizeof(new_key));
Li Zefan33345d012011-04-20 10:31:50 +08003647 new_key.objectid = btrfs_ino(inode);
Li Zefan4d728ec2011-01-26 14:10:43 +08003648 if (off <= key.offset)
3649 new_key.offset = key.offset + destoff - off;
3650 else
3651 new_key.offset = destoff;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003652
Sage Weilb6f34092011-09-20 14:48:51 -04003653 /*
Filipe Mananaf82a9902014-06-01 01:50:28 +01003654 * Deal with a hole that doesn't have an extent item
3655 * that represents it (NO_HOLES feature enabled).
3656 * This hole is either in the middle of the cloning
3657 * range or at the beginning (fully overlaps it or
3658 * partially overlaps it).
3659 */
3660 if (new_key.offset != last_dest_end)
3661 drop_start = last_dest_end;
3662 else
3663 drop_start = new_key.offset;
3664
3665 /*
Sage Weilb6f34092011-09-20 14:48:51 -04003666 * 1 - adjusting old extent (we may have to split it)
3667 * 1 - add new extent
3668 * 1 - inode update
3669 */
3670 trans = btrfs_start_transaction(root, 3);
Yan, Zhenga22285a2010-05-16 10:48:46 -04003671 if (IS_ERR(trans)) {
3672 ret = PTR_ERR(trans);
3673 goto out;
3674 }
3675
Chris Masonc8a894d2009-06-27 21:07:03 -04003676 if (type == BTRFS_FILE_EXTENT_REG ||
3677 type == BTRFS_FILE_EXTENT_PREALLOC) {
Li Zefand72c0842011-09-11 10:52:25 -04003678 /*
3679 * a | --- range to clone ---| b
3680 * | ------------- extent ------------- |
3681 */
3682
Antonio Ospite93915582014-06-04 14:03:48 +02003683 /* subtract range b */
Li Zefand72c0842011-09-11 10:52:25 -04003684 if (key.offset + datal > off + len)
3685 datal = off + len - key.offset;
3686
Antonio Ospite93915582014-06-04 14:03:48 +02003687 /* subtract range a */
Yan, Zhenga22285a2010-05-16 10:48:46 -04003688 if (off > key.offset) {
3689 datao += off - key.offset;
3690 datal -= off - key.offset;
3691 }
3692
Josef Bacik5dc562c2012-08-17 13:14:17 -04003693 ret = btrfs_drop_extents(trans, root, inode,
Filipe Mananaf82a9902014-06-01 01:50:28 +01003694 drop_start,
Yan, Zhenga22285a2010-05-16 10:48:46 -04003695 new_key.offset + datal,
Josef Bacik26714852012-08-29 12:24:27 -04003696 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003697 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003698 if (ret != -EOPNOTSUPP)
Liu Bo00fdf132014-03-10 18:56:07 +08003699 btrfs_abort_transaction(trans,
3700 root, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003701 btrfs_end_transaction(trans, root);
3702 goto out;
3703 }
Yan, Zhenga22285a2010-05-16 10:48:46 -04003704
Sage Weilc5c9cd42008-11-12 14:32:25 -05003705 ret = btrfs_insert_empty_item(trans, root, path,
3706 &new_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003707 if (ret) {
3708 btrfs_abort_transaction(trans, root,
3709 ret);
3710 btrfs_end_transaction(trans, root);
3711 goto out;
3712 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003713
3714 leaf = path->nodes[0];
3715 slot = path->slots[0];
3716 write_extent_buffer(leaf, buf,
3717 btrfs_item_ptr_offset(leaf, slot),
3718 size);
3719
3720 extent = btrfs_item_ptr(leaf, slot,
3721 struct btrfs_file_extent_item);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003722
Sage Weilc5c9cd42008-11-12 14:32:25 -05003723 /* disko == 0 means it's a hole */
3724 if (!disko)
3725 datao = 0;
Sage Weilc5c9cd42008-11-12 14:32:25 -05003726
3727 btrfs_set_file_extent_offset(leaf, extent,
3728 datao);
3729 btrfs_set_file_extent_num_bytes(leaf, extent,
3730 datal);
Josef Bacikfcebe452014-05-13 17:30:47 -07003731
Sage Weilc5c9cd42008-11-12 14:32:25 -05003732 if (disko) {
3733 inode_add_bytes(inode, datal);
3734 ret = btrfs_inc_extent_ref(trans, root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003735 disko, diskl, 0,
3736 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08003737 btrfs_ino(inode),
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003738 new_key.offset - datao);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003739 if (ret) {
3740 btrfs_abort_transaction(trans,
3741 root,
3742 ret);
3743 btrfs_end_transaction(trans,
3744 root);
3745 goto out;
3746
3747 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003748 }
3749 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
3750 u64 skip = 0;
3751 u64 trim = 0;
Filipe Mananaed958762015-07-14 16:09:39 +01003752
Sage Weilc5c9cd42008-11-12 14:32:25 -05003753 if (off > key.offset) {
3754 skip = off - key.offset;
3755 new_key.offset += skip;
3756 }
Chris Masond3977122009-01-05 21:25:51 -05003757
Liu Boaa42ffd2012-09-18 03:52:23 -06003758 if (key.offset + datal > off + len)
3759 trim = key.offset + datal - (off + len);
Chris Masond3977122009-01-05 21:25:51 -05003760
Sage Weilc5c9cd42008-11-12 14:32:25 -05003761 if (comp && (skip || trim)) {
Sage Weilc5c9cd42008-11-12 14:32:25 -05003762 ret = -EINVAL;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003763 btrfs_end_transaction(trans, root);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003764 goto out;
3765 }
3766 size -= skip + trim;
3767 datal -= skip + trim;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003768
Filipe Manana8039d872015-10-13 15:15:00 +01003769 ret = clone_copy_inline_extent(src, inode,
3770 trans, path,
3771 &new_key,
3772 drop_start,
3773 datal,
3774 skip, size, buf);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003775 if (ret) {
David Sterba3f9e3df2014-04-15 18:50:17 +02003776 if (ret != -EOPNOTSUPP)
Chris Mason3a29bc02014-04-07 07:10:40 -07003777 btrfs_abort_transaction(trans,
Filipe Manana8039d872015-10-13 15:15:00 +01003778 root,
3779 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003780 btrfs_end_transaction(trans, root);
3781 goto out;
3782 }
Sage Weilc5c9cd42008-11-12 14:32:25 -05003783 leaf = path->nodes[0];
3784 slot = path->slots[0];
Sage Weilc5c9cd42008-11-12 14:32:25 -05003785 }
3786
Filipe Manana7ffbb592014-06-09 03:48:05 +01003787 /* If we have an implicit hole (NO_HOLES feature). */
3788 if (drop_start < new_key.offset)
3789 clone_update_extent_map(inode, trans,
Filipe Manana14f59792014-06-29 21:45:40 +01003790 NULL, drop_start,
Filipe Manana7ffbb592014-06-09 03:48:05 +01003791 new_key.offset - drop_start);
3792
Filipe Manana14f59792014-06-29 21:45:40 +01003793 clone_update_extent_map(inode, trans, path, 0, 0);
Filipe Manana7ffbb592014-06-09 03:48:05 +01003794
Sage Weilc5c9cd42008-11-12 14:32:25 -05003795 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02003796 btrfs_release_path(path);
Sage Weilc5c9cd42008-11-12 14:32:25 -05003797
Filipe Manana62e23902014-08-08 02:47:06 +01003798 last_dest_end = ALIGN(new_key.offset + datal,
3799 root->sectorsize);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003800 ret = clone_finish_inode_update(trans, inode,
3801 last_dest_end,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003802 destoff, olen,
3803 no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003804 if (ret)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003805 goto out;
Filipe Manana2c463822014-05-31 02:31:05 +01003806 if (new_key.offset + datal >= destoff + len)
3807 break;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003808 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003809 btrfs_release_path(path);
Filipe Mananadf858e72015-03-31 14:56:46 +01003810 key.offset = next_key_min_offset;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003811 }
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003812 ret = 0;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003813
Filipe Mananaf82a9902014-06-01 01:50:28 +01003814 if (last_dest_end < destoff + len) {
3815 /*
3816 * We have an implicit hole (NO_HOLES feature is enabled) that
3817 * fully or partially overlaps our cloning range at its end.
3818 */
3819 btrfs_release_path(path);
3820
3821 /*
3822 * 1 - remove extent(s)
3823 * 1 - inode update
3824 */
3825 trans = btrfs_start_transaction(root, 2);
3826 if (IS_ERR(trans)) {
3827 ret = PTR_ERR(trans);
3828 goto out;
3829 }
3830 ret = btrfs_drop_extents(trans, root, inode,
3831 last_dest_end, destoff + len, 1);
3832 if (ret) {
3833 if (ret != -EOPNOTSUPP)
3834 btrfs_abort_transaction(trans, root, ret);
3835 btrfs_end_transaction(trans, root);
3836 goto out;
3837 }
Filipe Manana14f59792014-06-29 21:45:40 +01003838 clone_update_extent_map(inode, trans, NULL, last_dest_end,
3839 destoff + len - last_dest_end);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003840 ret = clone_finish_inode_update(trans, inode, destoff + len,
Mark Fasheh1c919a52015-06-30 14:42:08 -07003841 destoff, olen, no_time_update);
Filipe Mananaf82a9902014-06-01 01:50:28 +01003842 }
3843
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003844out:
Mark Fasheh32b7c682013-08-06 11:42:49 -07003845 btrfs_free_path(path);
3846 vfree(buf);
3847 return ret;
3848}
3849
3850static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
3851 u64 off, u64 olen, u64 destoff)
3852{
Al Viro54563d42013-09-01 15:57:51 -04003853 struct inode *inode = file_inode(file);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003854 struct btrfs_root *root = BTRFS_I(inode)->root;
3855 struct fd src_file;
3856 struct inode *src;
3857 int ret;
3858 u64 len = olen;
3859 u64 bs = root->fs_info->sb->s_blocksize;
3860 int same_inode = 0;
3861
3862 /*
3863 * TODO:
3864 * - split compressed inline extents. annoying: we need to
3865 * decompress into destination's address_space (the file offset
3866 * may change, so source mapping won't do), then recompress (or
3867 * otherwise reinsert) a subrange.
Liu Bo00fdf132014-03-10 18:56:07 +08003868 *
3869 * - split destination inode's inline extents. The inline extents can
3870 * be either compressed or non-compressed.
Mark Fasheh32b7c682013-08-06 11:42:49 -07003871 */
3872
3873 /* the destination must be opened for writing */
3874 if (!(file->f_mode & FMODE_WRITE) || (file->f_flags & O_APPEND))
3875 return -EINVAL;
3876
3877 if (btrfs_root_readonly(root))
3878 return -EROFS;
3879
3880 ret = mnt_want_write_file(file);
3881 if (ret)
3882 return ret;
3883
3884 src_file = fdget(srcfd);
3885 if (!src_file.file) {
3886 ret = -EBADF;
3887 goto out_drop_write;
3888 }
3889
3890 ret = -EXDEV;
3891 if (src_file.file->f_path.mnt != file->f_path.mnt)
3892 goto out_fput;
3893
3894 src = file_inode(src_file.file);
3895
3896 ret = -EINVAL;
3897 if (src == inode)
3898 same_inode = 1;
3899
3900 /* the src must be open for reading */
3901 if (!(src_file.file->f_mode & FMODE_READ))
3902 goto out_fput;
3903
3904 /* don't make the dst file partly checksummed */
3905 if ((BTRFS_I(src)->flags & BTRFS_INODE_NODATASUM) !=
3906 (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM))
3907 goto out_fput;
3908
3909 ret = -EISDIR;
3910 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
3911 goto out_fput;
3912
3913 ret = -EXDEV;
3914 if (src->i_sb != inode->i_sb)
3915 goto out_fput;
3916
3917 if (!same_inode) {
Mark Fasheh293a8482015-06-30 14:42:06 -07003918 btrfs_double_inode_lock(src, inode);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003919 } else {
3920 mutex_lock(&src->i_mutex);
3921 }
3922
3923 /* determine range to clone */
3924 ret = -EINVAL;
3925 if (off + len > src->i_size || off + len < off)
3926 goto out_unlock;
3927 if (len == 0)
3928 olen = len = src->i_size - off;
3929 /* if we extend to eof, continue to block boundary */
3930 if (off + len == src->i_size)
3931 len = ALIGN(src->i_size, bs) - off;
3932
Filipe Mananaccccf3d62015-03-30 18:23:59 +01003933 if (len == 0) {
3934 ret = 0;
3935 goto out_unlock;
3936 }
3937
Mark Fasheh32b7c682013-08-06 11:42:49 -07003938 /* verify the end result is block aligned */
3939 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
3940 !IS_ALIGNED(destoff, bs))
3941 goto out_unlock;
3942
3943 /* verify if ranges are overlapped within the same file */
3944 if (same_inode) {
3945 if (destoff + len > off && destoff < off + len)
3946 goto out_unlock;
3947 }
3948
3949 if (destoff > inode->i_size) {
3950 ret = btrfs_cont_expand(inode, inode->i_size, destoff);
3951 if (ret)
3952 goto out_unlock;
3953 }
3954
Filipe Mananac125b8b2014-05-23 05:03:34 +01003955 /*
3956 * Lock the target range too. Right after we replace the file extent
3957 * items in the fs tree (which now point to the cloned data), we might
3958 * have a worker replace them with extent items relative to a write
3959 * operation that was issued before this clone operation (i.e. confront
3960 * with inode.c:btrfs_finish_ordered_io).
3961 */
3962 if (same_inode) {
3963 u64 lock_start = min_t(u64, off, destoff);
3964 u64 lock_len = max_t(u64, off, destoff) + len - lock_start;
Mark Fasheh32b7c682013-08-06 11:42:49 -07003965
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003966 ret = lock_extent_range(src, lock_start, lock_len, true);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003967 } else {
Filipe Mananae0bd70c2016-01-27 10:20:58 +00003968 ret = btrfs_double_extent_lock(src, off, inode, destoff, len,
3969 true);
3970 }
3971 ASSERT(ret == 0);
3972 if (WARN_ON(ret)) {
3973 /* ranges in the io trees already unlocked */
3974 goto out_unlock;
Filipe Mananac125b8b2014-05-23 05:03:34 +01003975 }
Mark Fasheh32b7c682013-08-06 11:42:49 -07003976
Mark Fasheh1c919a52015-06-30 14:42:08 -07003977 ret = btrfs_clone(src, inode, off, olen, len, destoff, 0);
Mark Fasheh32b7c682013-08-06 11:42:49 -07003978
Filipe Mananac125b8b2014-05-23 05:03:34 +01003979 if (same_inode) {
3980 u64 lock_start = min_t(u64, off, destoff);
3981 u64 lock_end = max_t(u64, off, destoff) + len - 1;
3982
3983 unlock_extent(&BTRFS_I(src)->io_tree, lock_start, lock_end);
3984 } else {
Mark Fasheh293a8482015-06-30 14:42:06 -07003985 btrfs_double_extent_unlock(src, off, inode, destoff, len);
Filipe Mananac125b8b2014-05-23 05:03:34 +01003986 }
3987 /*
3988 * Truncate page cache pages so that future reads will see the cloned
3989 * data immediately and not the previous data.
3990 */
3991 truncate_inode_pages_range(&inode->i_data, destoff,
3992 PAGE_CACHE_ALIGN(destoff + len) - 1);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003993out_unlock:
Mark Fasheh293a8482015-06-30 14:42:06 -07003994 if (!same_inode)
3995 btrfs_double_inode_unlock(src, inode);
3996 else
Filipe David Borba Mananac57c2b32014-01-11 21:31:25 +00003997 mutex_unlock(&src->i_mutex);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003998out_fput:
Al Viro2903ff02012-08-28 12:52:22 -04003999 fdput(src_file);
Yan Zhengab67b7c2008-12-19 10:58:39 -05004000out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -05004001 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004002 return ret;
4003}
4004
Christoph Hellwig7a865e82008-12-02 09:52:24 -05004005static long btrfs_ioctl_clone_range(struct file *file, void __user *argp)
Sage Weilc5c9cd42008-11-12 14:32:25 -05004006{
4007 struct btrfs_ioctl_clone_range_args args;
4008
Christoph Hellwig7a865e82008-12-02 09:52:24 -05004009 if (copy_from_user(&args, argp, sizeof(args)))
Sage Weilc5c9cd42008-11-12 14:32:25 -05004010 return -EFAULT;
4011 return btrfs_ioctl_clone(file, args.src_fd, args.src_offset,
4012 args.src_length, args.dest_offset);
4013}
4014
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004015/*
4016 * there are many ways the trans_start and trans_end ioctls can lead
4017 * to deadlocks. They should only be used by applications that
4018 * basically own the machine, and have a very in depth understanding
4019 * of all the possible deadlocks and enospc problems.
4020 */
Christoph Hellwigb2950862008-12-02 09:54:17 -05004021static long btrfs_ioctl_trans_start(struct file *file)
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004022{
Al Viro496ad9a2013-01-23 17:07:38 -05004023 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004024 struct btrfs_root *root = BTRFS_I(inode)->root;
4025 struct btrfs_trans_handle *trans;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004026 int ret;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004027
Sage Weil1ab86ae2009-09-29 18:38:44 -04004028 ret = -EPERM;
Christoph Hellwigdf5b5522008-06-11 21:53:58 -04004029 if (!capable(CAP_SYS_ADMIN))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004030 goto out;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004031
4032 ret = -EINPROGRESS;
4033 if (file->private_data)
4034 goto out;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004035
Li Zefanb83cc962010-12-20 16:04:08 +08004036 ret = -EROFS;
4037 if (btrfs_root_readonly(root))
4038 goto out;
4039
Al Viroa561be72011-11-23 11:57:51 -05004040 ret = mnt_want_write_file(file);
Yan Zhengc146afa2008-11-12 14:34:12 -05004041 if (ret)
4042 goto out;
4043
Josef Bacika4abeea2011-04-11 17:25:13 -04004044 atomic_inc(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004045
Sage Weil1ab86ae2009-09-29 18:38:44 -04004046 ret = -ENOMEM;
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004047 trans = btrfs_start_ioctl_transaction(root);
Tsutomu Itohabd30bb2011-01-24 00:57:10 +00004048 if (IS_ERR(trans))
Sage Weil1ab86ae2009-09-29 18:38:44 -04004049 goto out_drop;
4050
4051 file->private_data = trans;
4052 return 0;
4053
4054out_drop:
Josef Bacika4abeea2011-04-11 17:25:13 -04004055 atomic_dec(&root->fs_info->open_ioctl_trans);
Al Viro2a79f172011-12-09 08:06:57 -05004056 mnt_drop_write_file(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004057out:
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004058 return ret;
4059}
4060
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004061static long btrfs_ioctl_default_subvol(struct file *file, void __user *argp)
4062{
Al Viro496ad9a2013-01-23 17:07:38 -05004063 struct inode *inode = file_inode(file);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004064 struct btrfs_root *root = BTRFS_I(inode)->root;
4065 struct btrfs_root *new_root;
4066 struct btrfs_dir_item *di;
4067 struct btrfs_trans_handle *trans;
4068 struct btrfs_path *path;
4069 struct btrfs_key location;
4070 struct btrfs_disk_key disk_key;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004071 u64 objectid = 0;
4072 u64 dir_id;
Miao Xie3c04ce02012-11-26 08:43:07 +00004073 int ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004074
4075 if (!capable(CAP_SYS_ADMIN))
4076 return -EPERM;
4077
Miao Xie3c04ce02012-11-26 08:43:07 +00004078 ret = mnt_want_write_file(file);
4079 if (ret)
4080 return ret;
4081
4082 if (copy_from_user(&objectid, argp, sizeof(objectid))) {
4083 ret = -EFAULT;
4084 goto out;
4085 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004086
4087 if (!objectid)
chandan1cecf572013-09-13 19:34:10 +05304088 objectid = BTRFS_FS_TREE_OBJECTID;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004089
4090 location.objectid = objectid;
4091 location.type = BTRFS_ROOT_ITEM_KEY;
4092 location.offset = (u64)-1;
4093
4094 new_root = btrfs_read_fs_root_no_name(root->fs_info, &location);
Miao Xie3c04ce02012-11-26 08:43:07 +00004095 if (IS_ERR(new_root)) {
4096 ret = PTR_ERR(new_root);
4097 goto out;
4098 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004099
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004100 path = btrfs_alloc_path();
Miao Xie3c04ce02012-11-26 08:43:07 +00004101 if (!path) {
4102 ret = -ENOMEM;
4103 goto out;
4104 }
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004105 path->leave_spinning = 1;
4106
4107 trans = btrfs_start_transaction(root, 1);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00004108 if (IS_ERR(trans)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004109 btrfs_free_path(path);
Miao Xie3c04ce02012-11-26 08:43:07 +00004110 ret = PTR_ERR(trans);
4111 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004112 }
4113
David Sterba6c417612011-04-13 15:41:04 +02004114 dir_id = btrfs_super_root_dir(root->fs_info->super_copy);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004115 di = btrfs_lookup_dir_item(trans, root->fs_info->tree_root, path,
4116 dir_id, "default", 7, 1);
Dan Carpentercf1e99a2010-05-29 09:47:24 +00004117 if (IS_ERR_OR_NULL(di)) {
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004118 btrfs_free_path(path);
4119 btrfs_end_transaction(trans, root);
Frank Holtonefe120a2013-12-20 11:37:06 -05004120 btrfs_err(new_root->fs_info, "Umm, you don't have the default dir"
4121 "item, this isn't going to work");
Miao Xie3c04ce02012-11-26 08:43:07 +00004122 ret = -ENOENT;
4123 goto out;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004124 }
4125
4126 btrfs_cpu_key_to_disk(&disk_key, &new_root->root_key);
4127 btrfs_set_dir_item_key(path->nodes[0], di, &disk_key);
4128 btrfs_mark_buffer_dirty(path->nodes[0]);
4129 btrfs_free_path(path);
4130
Mitch Harder2b0ce2c2012-07-24 11:58:43 -06004131 btrfs_set_fs_incompat(root->fs_info, DEFAULT_SUBVOL);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004132 btrfs_end_transaction(trans, root);
Miao Xie3c04ce02012-11-26 08:43:07 +00004133out:
4134 mnt_drop_write_file(file);
4135 return ret;
Josef Bacik6ef5ed02009-12-11 21:11:29 +00004136}
4137
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004138void btrfs_get_block_group_info(struct list_head *groups_list,
4139 struct btrfs_ioctl_space_info *space)
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004140{
4141 struct btrfs_block_group_cache *block_group;
4142
4143 space->total_bytes = 0;
4144 space->used_bytes = 0;
4145 space->flags = 0;
4146 list_for_each_entry(block_group, groups_list, list) {
4147 space->flags = block_group->flags;
4148 space->total_bytes += block_group->key.offset;
4149 space->used_bytes +=
4150 btrfs_block_group_used(&block_group->item);
4151 }
4152}
4153
Eric Sandeen48a3b632013-04-25 20:41:01 +00004154static long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
Josef Bacik1406e432010-01-13 18:19:06 +00004155{
4156 struct btrfs_ioctl_space_args space_args;
4157 struct btrfs_ioctl_space_info space;
4158 struct btrfs_ioctl_space_info *dest;
Chris Mason7fde62b2010-03-16 15:40:10 -04004159 struct btrfs_ioctl_space_info *dest_orig;
Daniel J Blueman13f26962011-04-11 15:56:31 +00004160 struct btrfs_ioctl_space_info __user *user_dest;
Josef Bacik1406e432010-01-13 18:19:06 +00004161 struct btrfs_space_info *info;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004162 u64 types[] = {BTRFS_BLOCK_GROUP_DATA,
4163 BTRFS_BLOCK_GROUP_SYSTEM,
4164 BTRFS_BLOCK_GROUP_METADATA,
4165 BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA};
4166 int num_types = 4;
Chris Mason7fde62b2010-03-16 15:40:10 -04004167 int alloc_size;
Josef Bacik1406e432010-01-13 18:19:06 +00004168 int ret = 0;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004169 u64 slot_count = 0;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004170 int i, c;
Josef Bacik1406e432010-01-13 18:19:06 +00004171
4172 if (copy_from_user(&space_args,
4173 (struct btrfs_ioctl_space_args __user *)arg,
4174 sizeof(space_args)))
4175 return -EFAULT;
4176
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004177 for (i = 0; i < num_types; i++) {
4178 struct btrfs_space_info *tmp;
4179
4180 info = NULL;
4181 rcu_read_lock();
4182 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4183 list) {
4184 if (tmp->flags == types[i]) {
4185 info = tmp;
4186 break;
4187 }
4188 }
4189 rcu_read_unlock();
4190
4191 if (!info)
4192 continue;
4193
4194 down_read(&info->groups_sem);
4195 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4196 if (!list_empty(&info->block_groups[c]))
4197 slot_count++;
4198 }
4199 up_read(&info->groups_sem);
4200 }
Josef Bacik1406e432010-01-13 18:19:06 +00004201
David Sterba36523e952014-02-07 14:34:12 +01004202 /*
4203 * Global block reserve, exported as a space_info
4204 */
4205 slot_count++;
4206
Chris Mason7fde62b2010-03-16 15:40:10 -04004207 /* space_slots == 0 means they are asking for a count */
4208 if (space_args.space_slots == 0) {
4209 space_args.total_spaces = slot_count;
4210 goto out;
4211 }
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004212
Dan Rosenberg51788b12011-02-14 16:04:23 -05004213 slot_count = min_t(u64, space_args.space_slots, slot_count);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004214
Chris Mason7fde62b2010-03-16 15:40:10 -04004215 alloc_size = sizeof(*dest) * slot_count;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004216
Chris Mason7fde62b2010-03-16 15:40:10 -04004217 /* we generally have at most 6 or so space infos, one for each raid
4218 * level. So, a whole page should be more than enough for everyone
4219 */
4220 if (alloc_size > PAGE_CACHE_SIZE)
4221 return -ENOMEM;
4222
4223 space_args.total_spaces = 0;
David Sterba8d2db782015-11-04 15:38:29 +01004224 dest = kmalloc(alloc_size, GFP_KERNEL);
Chris Mason7fde62b2010-03-16 15:40:10 -04004225 if (!dest)
4226 return -ENOMEM;
4227 dest_orig = dest;
4228
4229 /* now we have a buffer to copy into */
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004230 for (i = 0; i < num_types; i++) {
4231 struct btrfs_space_info *tmp;
Chris Mason7fde62b2010-03-16 15:40:10 -04004232
Dan Rosenberg51788b12011-02-14 16:04:23 -05004233 if (!slot_count)
4234 break;
4235
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004236 info = NULL;
4237 rcu_read_lock();
4238 list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
4239 list) {
4240 if (tmp->flags == types[i]) {
4241 info = tmp;
4242 break;
4243 }
4244 }
4245 rcu_read_unlock();
Chris Mason7fde62b2010-03-16 15:40:10 -04004246
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004247 if (!info)
4248 continue;
4249 down_read(&info->groups_sem);
4250 for (c = 0; c < BTRFS_NR_RAID_TYPES; c++) {
4251 if (!list_empty(&info->block_groups[c])) {
Stefan Behrens5af3e8c2012-08-01 18:56:49 +02004252 btrfs_get_block_group_info(
4253 &info->block_groups[c], &space);
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004254 memcpy(dest, &space, sizeof(space));
4255 dest++;
4256 space_args.total_spaces++;
Dan Rosenberg51788b12011-02-14 16:04:23 -05004257 slot_count--;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004258 }
Dan Rosenberg51788b12011-02-14 16:04:23 -05004259 if (!slot_count)
4260 break;
Josef Bacikbf5fc0932010-09-29 11:22:36 -04004261 }
4262 up_read(&info->groups_sem);
Josef Bacik1406e432010-01-13 18:19:06 +00004263 }
Josef Bacik1406e432010-01-13 18:19:06 +00004264
David Sterba36523e952014-02-07 14:34:12 +01004265 /*
4266 * Add global block reserve
4267 */
4268 if (slot_count) {
4269 struct btrfs_block_rsv *block_rsv = &root->fs_info->global_block_rsv;
4270
4271 spin_lock(&block_rsv->lock);
4272 space.total_bytes = block_rsv->size;
4273 space.used_bytes = block_rsv->size - block_rsv->reserved;
4274 spin_unlock(&block_rsv->lock);
4275 space.flags = BTRFS_SPACE_INFO_GLOBAL_RSV;
4276 memcpy(dest, &space, sizeof(space));
4277 space_args.total_spaces++;
4278 }
4279
Daniel J Blueman2eec6c82012-04-26 00:37:14 +08004280 user_dest = (struct btrfs_ioctl_space_info __user *)
Chris Mason7fde62b2010-03-16 15:40:10 -04004281 (arg + sizeof(struct btrfs_ioctl_space_args));
4282
4283 if (copy_to_user(user_dest, dest_orig, alloc_size))
4284 ret = -EFAULT;
4285
4286 kfree(dest_orig);
4287out:
4288 if (ret == 0 && copy_to_user(arg, &space_args, sizeof(space_args)))
Josef Bacik1406e432010-01-13 18:19:06 +00004289 ret = -EFAULT;
4290
4291 return ret;
4292}
4293
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004294/*
4295 * there are many ways the trans_start and trans_end ioctls can lead
4296 * to deadlocks. They should only be used by applications that
4297 * basically own the machine, and have a very in depth understanding
4298 * of all the possible deadlocks and enospc problems.
4299 */
4300long btrfs_ioctl_trans_end(struct file *file)
4301{
Al Viro496ad9a2013-01-23 17:07:38 -05004302 struct inode *inode = file_inode(file);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004303 struct btrfs_root *root = BTRFS_I(inode)->root;
4304 struct btrfs_trans_handle *trans;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004305
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004306 trans = file->private_data;
Sage Weil1ab86ae2009-09-29 18:38:44 -04004307 if (!trans)
4308 return -EINVAL;
Christoph Hellwigb2141072008-09-05 16:43:31 -04004309 file->private_data = NULL;
Sage Weil9ca9ee02008-08-04 10:41:27 -04004310
Sage Weil1ab86ae2009-09-29 18:38:44 -04004311 btrfs_end_transaction(trans, root);
4312
Josef Bacika4abeea2011-04-11 17:25:13 -04004313 atomic_dec(&root->fs_info->open_ioctl_trans);
Sage Weil9ca9ee02008-08-04 10:41:27 -04004314
Al Viro2a79f172011-12-09 08:06:57 -05004315 mnt_drop_write_file(file);
Sage Weil1ab86ae2009-09-29 18:38:44 -04004316 return 0;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04004317}
4318
Miao Xie9a8c28b2012-11-26 08:40:43 +00004319static noinline long btrfs_ioctl_start_sync(struct btrfs_root *root,
4320 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004321{
Sage Weil46204592010-10-29 15:41:32 -04004322 struct btrfs_trans_handle *trans;
4323 u64 transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004324 int ret;
Sage Weil46204592010-10-29 15:41:32 -04004325
Miao Xied4edf392013-02-20 09:17:06 +00004326 trans = btrfs_attach_transaction_barrier(root);
Miao Xieff7c1d32012-11-26 08:41:29 +00004327 if (IS_ERR(trans)) {
4328 if (PTR_ERR(trans) != -ENOENT)
4329 return PTR_ERR(trans);
4330
4331 /* No running transaction, don't bother */
4332 transid = root->fs_info->last_trans_committed;
4333 goto out;
4334 }
Sage Weil46204592010-10-29 15:41:32 -04004335 transid = trans->transid;
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004336 ret = btrfs_commit_transaction_async(trans, root, 0);
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004337 if (ret) {
4338 btrfs_end_transaction(trans, root);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00004339 return ret;
Tsutomu Itoh8b2b2d32011-04-04 01:52:13 +00004340 }
Miao Xieff7c1d32012-11-26 08:41:29 +00004341out:
Sage Weil46204592010-10-29 15:41:32 -04004342 if (argp)
4343 if (copy_to_user(argp, &transid, sizeof(transid)))
4344 return -EFAULT;
4345 return 0;
4346}
4347
Miao Xie9a8c28b2012-11-26 08:40:43 +00004348static noinline long btrfs_ioctl_wait_sync(struct btrfs_root *root,
4349 void __user *argp)
Sage Weil46204592010-10-29 15:41:32 -04004350{
Sage Weil46204592010-10-29 15:41:32 -04004351 u64 transid;
4352
4353 if (argp) {
4354 if (copy_from_user(&transid, argp, sizeof(transid)))
4355 return -EFAULT;
4356 } else {
4357 transid = 0; /* current trans */
4358 }
4359 return btrfs_wait_for_commit(root, transid);
4360}
4361
Miao Xieb8e95482012-11-26 08:48:01 +00004362static long btrfs_ioctl_scrub(struct file *file, void __user *arg)
Jan Schmidt475f6382011-03-11 15:41:01 +01004363{
Al Viro496ad9a2013-01-23 17:07:38 -05004364 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt475f6382011-03-11 15:41:01 +01004365 struct btrfs_ioctl_scrub_args *sa;
Miao Xieb8e95482012-11-26 08:48:01 +00004366 int ret;
Jan Schmidt475f6382011-03-11 15:41:01 +01004367
4368 if (!capable(CAP_SYS_ADMIN))
4369 return -EPERM;
4370
4371 sa = memdup_user(arg, sizeof(*sa));
4372 if (IS_ERR(sa))
4373 return PTR_ERR(sa);
4374
Miao Xieb8e95482012-11-26 08:48:01 +00004375 if (!(sa->flags & BTRFS_SCRUB_READONLY)) {
4376 ret = mnt_want_write_file(file);
4377 if (ret)
4378 goto out;
4379 }
4380
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004381 ret = btrfs_scrub_dev(root->fs_info, sa->devid, sa->start, sa->end,
Stefan Behrens63a212a2012-11-05 18:29:28 +01004382 &sa->progress, sa->flags & BTRFS_SCRUB_READONLY,
4383 0);
Jan Schmidt475f6382011-03-11 15:41:01 +01004384
4385 if (copy_to_user(arg, sa, sizeof(*sa)))
4386 ret = -EFAULT;
4387
Miao Xieb8e95482012-11-26 08:48:01 +00004388 if (!(sa->flags & BTRFS_SCRUB_READONLY))
4389 mnt_drop_write_file(file);
4390out:
Jan Schmidt475f6382011-03-11 15:41:01 +01004391 kfree(sa);
4392 return ret;
4393}
4394
4395static long btrfs_ioctl_scrub_cancel(struct btrfs_root *root, void __user *arg)
4396{
4397 if (!capable(CAP_SYS_ADMIN))
4398 return -EPERM;
4399
Stefan Behrensaa1b8cd2012-11-05 17:03:39 +01004400 return btrfs_scrub_cancel(root->fs_info);
Jan Schmidt475f6382011-03-11 15:41:01 +01004401}
4402
4403static long btrfs_ioctl_scrub_progress(struct btrfs_root *root,
4404 void __user *arg)
4405{
4406 struct btrfs_ioctl_scrub_args *sa;
4407 int ret;
4408
4409 if (!capable(CAP_SYS_ADMIN))
4410 return -EPERM;
4411
4412 sa = memdup_user(arg, sizeof(*sa));
4413 if (IS_ERR(sa))
4414 return PTR_ERR(sa);
4415
4416 ret = btrfs_scrub_progress(root, sa->devid, &sa->progress);
4417
4418 if (copy_to_user(arg, sa, sizeof(*sa)))
4419 ret = -EFAULT;
4420
4421 kfree(sa);
4422 return ret;
4423}
4424
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004425static long btrfs_ioctl_get_dev_stats(struct btrfs_root *root,
David Sterbab27f7c02012-06-22 06:30:39 -06004426 void __user *arg)
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004427{
4428 struct btrfs_ioctl_get_dev_stats *sa;
4429 int ret;
4430
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004431 sa = memdup_user(arg, sizeof(*sa));
4432 if (IS_ERR(sa))
4433 return PTR_ERR(sa);
4434
David Sterbab27f7c02012-06-22 06:30:39 -06004435 if ((sa->flags & BTRFS_DEV_STATS_RESET) && !capable(CAP_SYS_ADMIN)) {
4436 kfree(sa);
4437 return -EPERM;
4438 }
4439
4440 ret = btrfs_get_dev_stats(root, sa);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02004441
4442 if (copy_to_user(arg, sa, sizeof(*sa)))
4443 ret = -EFAULT;
4444
4445 kfree(sa);
4446 return ret;
4447}
4448
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004449static long btrfs_ioctl_dev_replace(struct btrfs_root *root, void __user *arg)
4450{
4451 struct btrfs_ioctl_dev_replace_args *p;
4452 int ret;
4453
4454 if (!capable(CAP_SYS_ADMIN))
4455 return -EPERM;
4456
4457 p = memdup_user(arg, sizeof(*p));
4458 if (IS_ERR(p))
4459 return PTR_ERR(p);
4460
4461 switch (p->cmd) {
4462 case BTRFS_IOCTL_DEV_REPLACE_CMD_START:
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004463 if (root->fs_info->sb->s_flags & MS_RDONLY) {
4464 ret = -EROFS;
4465 goto out;
4466 }
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004467 if (atomic_xchg(
4468 &root->fs_info->mutually_exclusive_operation_running,
4469 1)) {
Anand Jaine57138b2013-08-21 11:44:48 +08004470 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004471 } else {
4472 ret = btrfs_dev_replace_start(root, p);
4473 atomic_set(
4474 &root->fs_info->mutually_exclusive_operation_running,
4475 0);
4476 }
4477 break;
4478 case BTRFS_IOCTL_DEV_REPLACE_CMD_STATUS:
4479 btrfs_dev_replace_status(root->fs_info, p);
4480 ret = 0;
4481 break;
4482 case BTRFS_IOCTL_DEV_REPLACE_CMD_CANCEL:
4483 ret = btrfs_dev_replace_cancel(root->fs_info, p);
4484 break;
4485 default:
4486 ret = -EINVAL;
4487 break;
4488 }
4489
4490 if (copy_to_user(arg, p, sizeof(*p)))
4491 ret = -EFAULT;
Ilya Dryomovadfa97c2013-10-10 20:39:28 +03004492out:
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01004493 kfree(p);
4494 return ret;
4495}
4496
Jan Schmidtd7728c92011-07-07 16:48:38 +02004497static long btrfs_ioctl_ino_to_path(struct btrfs_root *root, void __user *arg)
4498{
4499 int ret = 0;
4500 int i;
Chris Mason740c3d22011-11-02 15:48:34 -04004501 u64 rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004502 int size;
Chris Mason806468f2011-11-06 03:07:10 -05004503 struct btrfs_ioctl_ino_path_args *ipa = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004504 struct inode_fs_paths *ipath = NULL;
4505 struct btrfs_path *path;
4506
Kusanagi Kouichi82b22ac2013-01-28 11:33:31 +00004507 if (!capable(CAP_DAC_READ_SEARCH))
Jan Schmidtd7728c92011-07-07 16:48:38 +02004508 return -EPERM;
4509
4510 path = btrfs_alloc_path();
4511 if (!path) {
4512 ret = -ENOMEM;
4513 goto out;
4514 }
4515
4516 ipa = memdup_user(arg, sizeof(*ipa));
4517 if (IS_ERR(ipa)) {
4518 ret = PTR_ERR(ipa);
4519 ipa = NULL;
4520 goto out;
4521 }
4522
4523 size = min_t(u32, ipa->size, 4096);
4524 ipath = init_ipath(size, root, path);
4525 if (IS_ERR(ipath)) {
4526 ret = PTR_ERR(ipath);
4527 ipath = NULL;
4528 goto out;
4529 }
4530
4531 ret = paths_from_inode(ipa->inum, ipath);
4532 if (ret < 0)
4533 goto out;
4534
4535 for (i = 0; i < ipath->fspath->elem_cnt; ++i) {
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004536 rel_ptr = ipath->fspath->val[i] -
4537 (u64)(unsigned long)ipath->fspath->val;
Chris Mason740c3d22011-11-02 15:48:34 -04004538 ipath->fspath->val[i] = rel_ptr;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004539 }
4540
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004541 ret = copy_to_user((void *)(unsigned long)ipa->fspath,
4542 (void *)(unsigned long)ipath->fspath, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004543 if (ret) {
4544 ret = -EFAULT;
4545 goto out;
4546 }
4547
4548out:
4549 btrfs_free_path(path);
4550 free_ipath(ipath);
4551 kfree(ipa);
4552
4553 return ret;
4554}
4555
4556static int build_ino_list(u64 inum, u64 offset, u64 root, void *ctx)
4557{
4558 struct btrfs_data_container *inodes = ctx;
4559 const size_t c = 3 * sizeof(u64);
4560
4561 if (inodes->bytes_left >= c) {
4562 inodes->bytes_left -= c;
4563 inodes->val[inodes->elem_cnt] = inum;
4564 inodes->val[inodes->elem_cnt + 1] = offset;
4565 inodes->val[inodes->elem_cnt + 2] = root;
4566 inodes->elem_cnt += 3;
4567 } else {
4568 inodes->bytes_missing += c - inodes->bytes_left;
4569 inodes->bytes_left = 0;
4570 inodes->elem_missed += 3;
4571 }
4572
4573 return 0;
4574}
4575
4576static long btrfs_ioctl_logical_to_ino(struct btrfs_root *root,
4577 void __user *arg)
4578{
4579 int ret = 0;
4580 int size;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004581 struct btrfs_ioctl_logical_ino_args *loi;
4582 struct btrfs_data_container *inodes = NULL;
4583 struct btrfs_path *path = NULL;
Jan Schmidtd7728c92011-07-07 16:48:38 +02004584
4585 if (!capable(CAP_SYS_ADMIN))
4586 return -EPERM;
4587
4588 loi = memdup_user(arg, sizeof(*loi));
4589 if (IS_ERR(loi)) {
4590 ret = PTR_ERR(loi);
4591 loi = NULL;
4592 goto out;
4593 }
4594
4595 path = btrfs_alloc_path();
4596 if (!path) {
4597 ret = -ENOMEM;
4598 goto out;
4599 }
4600
Byongho Leeee221842015-12-15 01:42:10 +09004601 size = min_t(u32, loi->size, SZ_64K);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004602 inodes = init_data_container(size);
4603 if (IS_ERR(inodes)) {
4604 ret = PTR_ERR(inodes);
4605 inodes = NULL;
4606 goto out;
4607 }
4608
Liu Bodf031f02012-09-07 20:01:29 -06004609 ret = iterate_inodes_from_logical(loi->logical, root->fs_info, path,
4610 build_ino_list, inodes);
4611 if (ret == -EINVAL)
Jan Schmidtd7728c92011-07-07 16:48:38 +02004612 ret = -ENOENT;
4613 if (ret < 0)
4614 goto out;
4615
Jeff Mahoney745c4d82011-11-20 07:31:57 -05004616 ret = copy_to_user((void *)(unsigned long)loi->inodes,
4617 (void *)(unsigned long)inodes, size);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004618 if (ret)
4619 ret = -EFAULT;
4620
4621out:
4622 btrfs_free_path(path);
Liu Bo425d17a2012-09-07 20:01:30 -06004623 vfree(inodes);
Jan Schmidtd7728c92011-07-07 16:48:38 +02004624 kfree(loi);
4625
4626 return ret;
4627}
4628
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004629void update_ioctl_balance_args(struct btrfs_fs_info *fs_info, int lock,
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004630 struct btrfs_ioctl_balance_args *bargs)
4631{
4632 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4633
4634 bargs->flags = bctl->flags;
4635
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004636 if (atomic_read(&fs_info->balance_running))
4637 bargs->state |= BTRFS_BALANCE_STATE_RUNNING;
4638 if (atomic_read(&fs_info->balance_pause_req))
4639 bargs->state |= BTRFS_BALANCE_STATE_PAUSE_REQ;
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004640 if (atomic_read(&fs_info->balance_cancel_req))
4641 bargs->state |= BTRFS_BALANCE_STATE_CANCEL_REQ;
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004642
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004643 memcpy(&bargs->data, &bctl->data, sizeof(bargs->data));
4644 memcpy(&bargs->meta, &bctl->meta, sizeof(bargs->meta));
4645 memcpy(&bargs->sys, &bctl->sys, sizeof(bargs->sys));
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004646
4647 if (lock) {
4648 spin_lock(&fs_info->balance_lock);
4649 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4650 spin_unlock(&fs_info->balance_lock);
4651 } else {
4652 memcpy(&bargs->stat, &bctl->stat, sizeof(bargs->stat));
4653 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004654}
4655
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004656static long btrfs_ioctl_balance(struct file *file, void __user *arg)
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004657{
Al Viro496ad9a2013-01-23 17:07:38 -05004658 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004659 struct btrfs_fs_info *fs_info = root->fs_info;
4660 struct btrfs_ioctl_balance_args *bargs;
4661 struct btrfs_balance_control *bctl;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004662 bool need_unlock; /* for mut. excl. ops lock */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004663 int ret;
4664
4665 if (!capable(CAP_SYS_ADMIN))
4666 return -EPERM;
4667
Liu Boe54bfa32012-06-29 03:58:48 -06004668 ret = mnt_want_write_file(file);
Liu Bo9ba1f6e2012-05-11 18:11:26 +08004669 if (ret)
4670 return ret;
4671
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004672again:
4673 if (!atomic_xchg(&fs_info->mutually_exclusive_operation_running, 1)) {
4674 mutex_lock(&fs_info->volume_mutex);
4675 mutex_lock(&fs_info->balance_mutex);
4676 need_unlock = true;
4677 goto locked;
4678 }
4679
4680 /*
4681 * mut. excl. ops lock is locked. Three possibilites:
4682 * (1) some other op is running
4683 * (2) balance is running
4684 * (3) balance is paused -- special case (think resume)
4685 */
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004686 mutex_lock(&fs_info->balance_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004687 if (fs_info->balance_ctl) {
4688 /* this is either (2) or (3) */
4689 if (!atomic_read(&fs_info->balance_running)) {
4690 mutex_unlock(&fs_info->balance_mutex);
4691 if (!mutex_trylock(&fs_info->volume_mutex))
4692 goto again;
4693 mutex_lock(&fs_info->balance_mutex);
4694
4695 if (fs_info->balance_ctl &&
4696 !atomic_read(&fs_info->balance_running)) {
4697 /* this is (3) */
4698 need_unlock = false;
4699 goto locked;
4700 }
4701
4702 mutex_unlock(&fs_info->balance_mutex);
4703 mutex_unlock(&fs_info->volume_mutex);
4704 goto again;
4705 } else {
4706 /* this is (2) */
4707 mutex_unlock(&fs_info->balance_mutex);
4708 ret = -EINPROGRESS;
4709 goto out;
4710 }
4711 } else {
4712 /* this is (1) */
4713 mutex_unlock(&fs_info->balance_mutex);
Anand Jaine57138b2013-08-21 11:44:48 +08004714 ret = BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004715 goto out;
4716 }
4717
4718locked:
4719 BUG_ON(!atomic_read(&fs_info->mutually_exclusive_operation_running));
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004720
4721 if (arg) {
4722 bargs = memdup_user(arg, sizeof(*bargs));
4723 if (IS_ERR(bargs)) {
4724 ret = PTR_ERR(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004725 goto out_unlock;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004726 }
Ilya Dryomovde322262012-01-16 22:04:49 +02004727
4728 if (bargs->flags & BTRFS_BALANCE_RESUME) {
4729 if (!fs_info->balance_ctl) {
4730 ret = -ENOTCONN;
4731 goto out_bargs;
4732 }
4733
4734 bctl = fs_info->balance_ctl;
4735 spin_lock(&fs_info->balance_lock);
4736 bctl->flags |= BTRFS_BALANCE_RESUME;
4737 spin_unlock(&fs_info->balance_lock);
4738
4739 goto do_balance;
4740 }
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004741 } else {
4742 bargs = NULL;
4743 }
4744
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004745 if (fs_info->balance_ctl) {
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004746 ret = -EINPROGRESS;
4747 goto out_bargs;
4748 }
4749
David Sterba8d2db782015-11-04 15:38:29 +01004750 bctl = kzalloc(sizeof(*bctl), GFP_KERNEL);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004751 if (!bctl) {
4752 ret = -ENOMEM;
4753 goto out_bargs;
4754 }
4755
4756 bctl->fs_info = fs_info;
4757 if (arg) {
4758 memcpy(&bctl->data, &bargs->data, sizeof(bctl->data));
4759 memcpy(&bctl->meta, &bargs->meta, sizeof(bctl->meta));
4760 memcpy(&bctl->sys, &bargs->sys, sizeof(bctl->sys));
4761
4762 bctl->flags = bargs->flags;
Ilya Dryomovf43ffb62012-01-16 22:04:47 +02004763 } else {
4764 /* balance everything - no filters */
4765 bctl->flags |= BTRFS_BALANCE_TYPE_MASK;
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004766 }
4767
David Sterba8eb93452015-10-12 16:55:54 +02004768 if (bctl->flags & ~(BTRFS_BALANCE_ARGS_MASK | BTRFS_BALANCE_TYPE_MASK)) {
4769 ret = -EINVAL;
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004770 goto out_bctl;
David Sterba8eb93452015-10-12 16:55:54 +02004771 }
4772
Ilya Dryomovde322262012-01-16 22:04:49 +02004773do_balance:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004774 /*
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004775 * Ownership of bctl and mutually_exclusive_operation_running
4776 * goes to to btrfs_balance. bctl is freed in __cancel_balance,
4777 * or, if restriper was paused all the way until unmount, in
4778 * free_fs_info. mutually_exclusive_operation_running is
4779 * cleared in __cancel_balance.
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004780 */
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004781 need_unlock = false;
4782
4783 ret = btrfs_balance(bctl, bargs);
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004784 bctl = NULL;
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004785
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004786 if (arg) {
4787 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4788 ret = -EFAULT;
4789 }
4790
Christian Engelmayer0f89abf2015-10-21 00:50:06 +02004791out_bctl:
4792 kfree(bctl);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004793out_bargs:
4794 kfree(bargs);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004795out_unlock:
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004796 mutex_unlock(&fs_info->balance_mutex);
4797 mutex_unlock(&fs_info->volume_mutex);
Ilya Dryomoved0fb782013-01-20 15:57:57 +02004798 if (need_unlock)
4799 atomic_set(&fs_info->mutually_exclusive_operation_running, 0);
4800out:
Liu Boe54bfa32012-06-29 03:58:48 -06004801 mnt_drop_write_file(file);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02004802 return ret;
4803}
4804
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004805static long btrfs_ioctl_balance_ctl(struct btrfs_root *root, int cmd)
4806{
4807 if (!capable(CAP_SYS_ADMIN))
4808 return -EPERM;
4809
4810 switch (cmd) {
4811 case BTRFS_BALANCE_CTL_PAUSE:
4812 return btrfs_pause_balance(root->fs_info);
Ilya Dryomova7e99c62012-01-16 22:04:49 +02004813 case BTRFS_BALANCE_CTL_CANCEL:
4814 return btrfs_cancel_balance(root->fs_info);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02004815 }
4816
4817 return -EINVAL;
4818}
4819
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004820static long btrfs_ioctl_balance_progress(struct btrfs_root *root,
4821 void __user *arg)
4822{
4823 struct btrfs_fs_info *fs_info = root->fs_info;
4824 struct btrfs_ioctl_balance_args *bargs;
4825 int ret = 0;
4826
4827 if (!capable(CAP_SYS_ADMIN))
4828 return -EPERM;
4829
4830 mutex_lock(&fs_info->balance_mutex);
4831 if (!fs_info->balance_ctl) {
4832 ret = -ENOTCONN;
4833 goto out;
4834 }
4835
David Sterba8d2db782015-11-04 15:38:29 +01004836 bargs = kzalloc(sizeof(*bargs), GFP_KERNEL);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02004837 if (!bargs) {
4838 ret = -ENOMEM;
4839 goto out;
4840 }
4841
4842 update_ioctl_balance_args(fs_info, 1, bargs);
4843
4844 if (copy_to_user(arg, bargs, sizeof(*bargs)))
4845 ret = -EFAULT;
4846
4847 kfree(bargs);
4848out:
4849 mutex_unlock(&fs_info->balance_mutex);
4850 return ret;
4851}
4852
Miao Xie905b0dd2012-11-26 08:50:11 +00004853static long btrfs_ioctl_quota_ctl(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004854{
Al Viro496ad9a2013-01-23 17:07:38 -05004855 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004856 struct btrfs_ioctl_quota_ctl_args *sa;
4857 struct btrfs_trans_handle *trans = NULL;
4858 int ret;
4859 int err;
4860
4861 if (!capable(CAP_SYS_ADMIN))
4862 return -EPERM;
4863
Miao Xie905b0dd2012-11-26 08:50:11 +00004864 ret = mnt_want_write_file(file);
4865 if (ret)
4866 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004867
4868 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004869 if (IS_ERR(sa)) {
4870 ret = PTR_ERR(sa);
4871 goto drop_write;
4872 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004873
Wang Shilong7708f022013-04-07 10:24:57 +00004874 down_write(&root->fs_info->subvol_sem);
Jan Schmidt2f232032013-04-25 16:04:51 +00004875 trans = btrfs_start_transaction(root->fs_info->tree_root, 2);
4876 if (IS_ERR(trans)) {
4877 ret = PTR_ERR(trans);
4878 goto out;
Arne Jansen5d13a372011-09-14 15:53:51 +02004879 }
4880
4881 switch (sa->cmd) {
4882 case BTRFS_QUOTA_CTL_ENABLE:
4883 ret = btrfs_quota_enable(trans, root->fs_info);
4884 break;
4885 case BTRFS_QUOTA_CTL_DISABLE:
4886 ret = btrfs_quota_disable(trans, root->fs_info);
4887 break;
Arne Jansen5d13a372011-09-14 15:53:51 +02004888 default:
4889 ret = -EINVAL;
4890 break;
4891 }
4892
Jan Schmidt2f232032013-04-25 16:04:51 +00004893 err = btrfs_commit_transaction(trans, root->fs_info->tree_root);
4894 if (err && !ret)
4895 ret = err;
Arne Jansen5d13a372011-09-14 15:53:51 +02004896out:
4897 kfree(sa);
Wang Shilong7708f022013-04-07 10:24:57 +00004898 up_write(&root->fs_info->subvol_sem);
Miao Xie905b0dd2012-11-26 08:50:11 +00004899drop_write:
4900 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004901 return ret;
4902}
4903
Miao Xie905b0dd2012-11-26 08:50:11 +00004904static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004905{
Al Viro496ad9a2013-01-23 17:07:38 -05004906 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004907 struct btrfs_ioctl_qgroup_assign_args *sa;
4908 struct btrfs_trans_handle *trans;
4909 int ret;
4910 int err;
4911
4912 if (!capable(CAP_SYS_ADMIN))
4913 return -EPERM;
4914
Miao Xie905b0dd2012-11-26 08:50:11 +00004915 ret = mnt_want_write_file(file);
4916 if (ret)
4917 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004918
4919 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004920 if (IS_ERR(sa)) {
4921 ret = PTR_ERR(sa);
4922 goto drop_write;
4923 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004924
4925 trans = btrfs_join_transaction(root);
4926 if (IS_ERR(trans)) {
4927 ret = PTR_ERR(trans);
4928 goto out;
4929 }
4930
4931 /* FIXME: check if the IDs really exist */
4932 if (sa->assign) {
4933 ret = btrfs_add_qgroup_relation(trans, root->fs_info,
4934 sa->src, sa->dst);
4935 } else {
4936 ret = btrfs_del_qgroup_relation(trans, root->fs_info,
4937 sa->src, sa->dst);
4938 }
4939
Qu Wenruoe082f562015-02-27 16:24:28 +08004940 /* update qgroup status and info */
4941 err = btrfs_run_qgroups(trans, root->fs_info);
4942 if (err < 0)
Anand Jaina4553fe2015-09-25 14:43:01 +08004943 btrfs_std_error(root->fs_info, ret,
Qu Wenruoe082f562015-02-27 16:24:28 +08004944 "failed to update qgroup status and info\n");
Arne Jansen5d13a372011-09-14 15:53:51 +02004945 err = btrfs_end_transaction(trans, root);
4946 if (err && !ret)
4947 ret = err;
4948
4949out:
4950 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00004951drop_write:
4952 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02004953 return ret;
4954}
4955
Miao Xie905b0dd2012-11-26 08:50:11 +00004956static long btrfs_ioctl_qgroup_create(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02004957{
Al Viro496ad9a2013-01-23 17:07:38 -05004958 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02004959 struct btrfs_ioctl_qgroup_create_args *sa;
4960 struct btrfs_trans_handle *trans;
4961 int ret;
4962 int err;
4963
4964 if (!capable(CAP_SYS_ADMIN))
4965 return -EPERM;
4966
Miao Xie905b0dd2012-11-26 08:50:11 +00004967 ret = mnt_want_write_file(file);
4968 if (ret)
4969 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02004970
4971 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00004972 if (IS_ERR(sa)) {
4973 ret = PTR_ERR(sa);
4974 goto drop_write;
4975 }
Arne Jansen5d13a372011-09-14 15:53:51 +02004976
Miao Xied86e56c2012-11-15 11:35:41 +00004977 if (!sa->qgroupid) {
4978 ret = -EINVAL;
4979 goto out;
4980 }
4981
Arne Jansen5d13a372011-09-14 15:53:51 +02004982 trans = btrfs_join_transaction(root);
4983 if (IS_ERR(trans)) {
4984 ret = PTR_ERR(trans);
4985 goto out;
4986 }
4987
4988 /* FIXME: check if the IDs really exist */
4989 if (sa->create) {
Dongsheng Yang4087cf22015-01-18 10:59:23 -05004990 ret = btrfs_create_qgroup(trans, root->fs_info, sa->qgroupid);
Arne Jansen5d13a372011-09-14 15:53:51 +02004991 } else {
4992 ret = btrfs_remove_qgroup(trans, root->fs_info, sa->qgroupid);
4993 }
4994
4995 err = btrfs_end_transaction(trans, root);
4996 if (err && !ret)
4997 ret = err;
4998
4999out:
5000 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00005001drop_write:
5002 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02005003 return ret;
5004}
5005
Miao Xie905b0dd2012-11-26 08:50:11 +00005006static long btrfs_ioctl_qgroup_limit(struct file *file, void __user *arg)
Arne Jansen5d13a372011-09-14 15:53:51 +02005007{
Al Viro496ad9a2013-01-23 17:07:38 -05005008 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Arne Jansen5d13a372011-09-14 15:53:51 +02005009 struct btrfs_ioctl_qgroup_limit_args *sa;
5010 struct btrfs_trans_handle *trans;
5011 int ret;
5012 int err;
5013 u64 qgroupid;
5014
5015 if (!capable(CAP_SYS_ADMIN))
5016 return -EPERM;
5017
Miao Xie905b0dd2012-11-26 08:50:11 +00005018 ret = mnt_want_write_file(file);
5019 if (ret)
5020 return ret;
Arne Jansen5d13a372011-09-14 15:53:51 +02005021
5022 sa = memdup_user(arg, sizeof(*sa));
Miao Xie905b0dd2012-11-26 08:50:11 +00005023 if (IS_ERR(sa)) {
5024 ret = PTR_ERR(sa);
5025 goto drop_write;
5026 }
Arne Jansen5d13a372011-09-14 15:53:51 +02005027
5028 trans = btrfs_join_transaction(root);
5029 if (IS_ERR(trans)) {
5030 ret = PTR_ERR(trans);
5031 goto out;
5032 }
5033
5034 qgroupid = sa->qgroupid;
5035 if (!qgroupid) {
5036 /* take the current subvol as qgroup */
5037 qgroupid = root->root_key.objectid;
5038 }
5039
5040 /* FIXME: check if the IDs really exist */
5041 ret = btrfs_limit_qgroup(trans, root->fs_info, qgroupid, &sa->lim);
5042
5043 err = btrfs_end_transaction(trans, root);
5044 if (err && !ret)
5045 ret = err;
5046
5047out:
5048 kfree(sa);
Miao Xie905b0dd2012-11-26 08:50:11 +00005049drop_write:
5050 mnt_drop_write_file(file);
Arne Jansen5d13a372011-09-14 15:53:51 +02005051 return ret;
5052}
5053
Jan Schmidt2f232032013-04-25 16:04:51 +00005054static long btrfs_ioctl_quota_rescan(struct file *file, void __user *arg)
5055{
Al Viro6d0379e2013-06-16 19:32:35 +04005056 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00005057 struct btrfs_ioctl_quota_rescan_args *qsa;
5058 int ret;
5059
5060 if (!capable(CAP_SYS_ADMIN))
5061 return -EPERM;
5062
5063 ret = mnt_want_write_file(file);
5064 if (ret)
5065 return ret;
5066
5067 qsa = memdup_user(arg, sizeof(*qsa));
5068 if (IS_ERR(qsa)) {
5069 ret = PTR_ERR(qsa);
5070 goto drop_write;
5071 }
5072
5073 if (qsa->flags) {
5074 ret = -EINVAL;
5075 goto out;
5076 }
5077
5078 ret = btrfs_qgroup_rescan(root->fs_info);
5079
5080out:
5081 kfree(qsa);
5082drop_write:
5083 mnt_drop_write_file(file);
5084 return ret;
5085}
5086
5087static long btrfs_ioctl_quota_rescan_status(struct file *file, void __user *arg)
5088{
Al Viro6d0379e2013-06-16 19:32:35 +04005089 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt2f232032013-04-25 16:04:51 +00005090 struct btrfs_ioctl_quota_rescan_args *qsa;
5091 int ret = 0;
5092
5093 if (!capable(CAP_SYS_ADMIN))
5094 return -EPERM;
5095
David Sterba8d2db782015-11-04 15:38:29 +01005096 qsa = kzalloc(sizeof(*qsa), GFP_KERNEL);
Jan Schmidt2f232032013-04-25 16:04:51 +00005097 if (!qsa)
5098 return -ENOMEM;
5099
5100 if (root->fs_info->qgroup_flags & BTRFS_QGROUP_STATUS_FLAG_RESCAN) {
5101 qsa->flags = 1;
5102 qsa->progress = root->fs_info->qgroup_rescan_progress.objectid;
5103 }
5104
5105 if (copy_to_user(arg, qsa, sizeof(*qsa)))
5106 ret = -EFAULT;
5107
5108 kfree(qsa);
5109 return ret;
5110}
5111
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005112static long btrfs_ioctl_quota_rescan_wait(struct file *file, void __user *arg)
5113{
Al Viro54563d42013-09-01 15:57:51 -04005114 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005115
5116 if (!capable(CAP_SYS_ADMIN))
5117 return -EPERM;
5118
5119 return btrfs_qgroup_wait_for_completion(root->fs_info);
5120}
5121
Hugo Millsabccd002014-01-30 20:17:00 +00005122static long _btrfs_ioctl_set_received_subvol(struct file *file,
5123 struct btrfs_ioctl_received_subvol_args *sa)
Alexander Block8ea05e32012-07-25 17:35:53 +02005124{
Al Viro496ad9a2013-01-23 17:07:38 -05005125 struct inode *inode = file_inode(file);
Alexander Block8ea05e32012-07-25 17:35:53 +02005126 struct btrfs_root *root = BTRFS_I(inode)->root;
5127 struct btrfs_root_item *root_item = &root->root_item;
5128 struct btrfs_trans_handle *trans;
5129 struct timespec ct = CURRENT_TIME;
5130 int ret = 0;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005131 int received_uuid_changed;
Alexander Block8ea05e32012-07-25 17:35:53 +02005132
David Sterbabd60ea02014-01-16 15:50:22 +01005133 if (!inode_owner_or_capable(inode))
5134 return -EPERM;
5135
Alexander Block8ea05e32012-07-25 17:35:53 +02005136 ret = mnt_want_write_file(file);
5137 if (ret < 0)
5138 return ret;
5139
5140 down_write(&root->fs_info->subvol_sem);
5141
5142 if (btrfs_ino(inode) != BTRFS_FIRST_FREE_OBJECTID) {
5143 ret = -EINVAL;
5144 goto out;
5145 }
5146
5147 if (btrfs_root_readonly(root)) {
5148 ret = -EROFS;
5149 goto out;
5150 }
5151
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005152 /*
5153 * 1 - root item
5154 * 2 - uuid items (received uuid + subvol uuid)
5155 */
5156 trans = btrfs_start_transaction(root, 3);
Alexander Block8ea05e32012-07-25 17:35:53 +02005157 if (IS_ERR(trans)) {
5158 ret = PTR_ERR(trans);
5159 trans = NULL;
5160 goto out;
5161 }
5162
5163 sa->rtransid = trans->transid;
5164 sa->rtime.sec = ct.tv_sec;
5165 sa->rtime.nsec = ct.tv_nsec;
5166
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005167 received_uuid_changed = memcmp(root_item->received_uuid, sa->uuid,
5168 BTRFS_UUID_SIZE);
5169 if (received_uuid_changed &&
5170 !btrfs_is_empty_uuid(root_item->received_uuid))
5171 btrfs_uuid_tree_rem(trans, root->fs_info->uuid_root,
5172 root_item->received_uuid,
5173 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5174 root->root_key.objectid);
Alexander Block8ea05e32012-07-25 17:35:53 +02005175 memcpy(root_item->received_uuid, sa->uuid, BTRFS_UUID_SIZE);
5176 btrfs_set_root_stransid(root_item, sa->stransid);
5177 btrfs_set_root_rtransid(root_item, sa->rtransid);
Qu Wenruo3cae2102013-07-16 11:19:18 +08005178 btrfs_set_stack_timespec_sec(&root_item->stime, sa->stime.sec);
5179 btrfs_set_stack_timespec_nsec(&root_item->stime, sa->stime.nsec);
5180 btrfs_set_stack_timespec_sec(&root_item->rtime, sa->rtime.sec);
5181 btrfs_set_stack_timespec_nsec(&root_item->rtime, sa->rtime.nsec);
Alexander Block8ea05e32012-07-25 17:35:53 +02005182
5183 ret = btrfs_update_root(trans, root->fs_info->tree_root,
5184 &root->root_key, &root->root_item);
5185 if (ret < 0) {
5186 btrfs_end_transaction(trans, root);
Alexander Block8ea05e32012-07-25 17:35:53 +02005187 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005188 }
5189 if (received_uuid_changed && !btrfs_is_empty_uuid(sa->uuid)) {
5190 ret = btrfs_uuid_tree_add(trans, root->fs_info->uuid_root,
5191 sa->uuid,
5192 BTRFS_UUID_KEY_RECEIVED_SUBVOL,
5193 root->root_key.objectid);
5194 if (ret < 0 && ret != -EEXIST) {
5195 btrfs_abort_transaction(trans, root, ret);
Alexander Block8ea05e32012-07-25 17:35:53 +02005196 goto out;
Stefan Behrensdd5f9612013-08-15 17:11:20 +02005197 }
5198 }
5199 ret = btrfs_commit_transaction(trans, root);
5200 if (ret < 0) {
5201 btrfs_abort_transaction(trans, root, ret);
5202 goto out;
Alexander Block8ea05e32012-07-25 17:35:53 +02005203 }
5204
Hugo Millsabccd002014-01-30 20:17:00 +00005205out:
5206 up_write(&root->fs_info->subvol_sem);
5207 mnt_drop_write_file(file);
5208 return ret;
5209}
5210
5211#ifdef CONFIG_64BIT
5212static long btrfs_ioctl_set_received_subvol_32(struct file *file,
5213 void __user *arg)
5214{
5215 struct btrfs_ioctl_received_subvol_args_32 *args32 = NULL;
5216 struct btrfs_ioctl_received_subvol_args *args64 = NULL;
5217 int ret = 0;
5218
5219 args32 = memdup_user(arg, sizeof(*args32));
5220 if (IS_ERR(args32)) {
5221 ret = PTR_ERR(args32);
5222 args32 = NULL;
5223 goto out;
5224 }
5225
David Sterba8d2db782015-11-04 15:38:29 +01005226 args64 = kmalloc(sizeof(*args64), GFP_KERNEL);
Dan Carpenter84dbeb82014-03-28 11:06:00 +03005227 if (!args64) {
5228 ret = -ENOMEM;
Hugo Millsabccd002014-01-30 20:17:00 +00005229 goto out;
5230 }
5231
5232 memcpy(args64->uuid, args32->uuid, BTRFS_UUID_SIZE);
5233 args64->stransid = args32->stransid;
5234 args64->rtransid = args32->rtransid;
5235 args64->stime.sec = args32->stime.sec;
5236 args64->stime.nsec = args32->stime.nsec;
5237 args64->rtime.sec = args32->rtime.sec;
5238 args64->rtime.nsec = args32->rtime.nsec;
5239 args64->flags = args32->flags;
5240
5241 ret = _btrfs_ioctl_set_received_subvol(file, args64);
5242 if (ret)
5243 goto out;
5244
5245 memcpy(args32->uuid, args64->uuid, BTRFS_UUID_SIZE);
5246 args32->stransid = args64->stransid;
5247 args32->rtransid = args64->rtransid;
5248 args32->stime.sec = args64->stime.sec;
5249 args32->stime.nsec = args64->stime.nsec;
5250 args32->rtime.sec = args64->rtime.sec;
5251 args32->rtime.nsec = args64->rtime.nsec;
5252 args32->flags = args64->flags;
5253
5254 ret = copy_to_user(arg, args32, sizeof(*args32));
5255 if (ret)
5256 ret = -EFAULT;
5257
5258out:
5259 kfree(args32);
5260 kfree(args64);
5261 return ret;
5262}
5263#endif
5264
5265static long btrfs_ioctl_set_received_subvol(struct file *file,
5266 void __user *arg)
5267{
5268 struct btrfs_ioctl_received_subvol_args *sa = NULL;
5269 int ret = 0;
5270
5271 sa = memdup_user(arg, sizeof(*sa));
5272 if (IS_ERR(sa)) {
5273 ret = PTR_ERR(sa);
5274 sa = NULL;
5275 goto out;
5276 }
5277
5278 ret = _btrfs_ioctl_set_received_subvol(file, sa);
5279
5280 if (ret)
5281 goto out;
5282
Alexander Block8ea05e32012-07-25 17:35:53 +02005283 ret = copy_to_user(arg, sa, sizeof(*sa));
5284 if (ret)
5285 ret = -EFAULT;
5286
5287out:
5288 kfree(sa);
Alexander Block8ea05e32012-07-25 17:35:53 +02005289 return ret;
5290}
5291
jeff.liu867ab662013-01-05 02:48:01 +00005292static int btrfs_ioctl_get_fslabel(struct file *file, void __user *arg)
5293{
Al Viro6d0379e2013-06-16 19:32:35 +04005294 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005295 size_t len;
jeff.liu867ab662013-01-05 02:48:01 +00005296 int ret;
Anand Jaina1b83ac2013-07-19 17:39:32 +08005297 char label[BTRFS_LABEL_SIZE];
5298
5299 spin_lock(&root->fs_info->super_lock);
5300 memcpy(label, root->fs_info->super_copy->label, BTRFS_LABEL_SIZE);
5301 spin_unlock(&root->fs_info->super_lock);
5302
5303 len = strnlen(label, BTRFS_LABEL_SIZE);
jeff.liu867ab662013-01-05 02:48:01 +00005304
5305 if (len == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005306 btrfs_warn(root->fs_info,
5307 "label is too long, return the first %zu bytes", --len);
jeff.liu867ab662013-01-05 02:48:01 +00005308 }
5309
jeff.liu867ab662013-01-05 02:48:01 +00005310 ret = copy_to_user(arg, label, len);
jeff.liu867ab662013-01-05 02:48:01 +00005311
5312 return ret ? -EFAULT : 0;
5313}
5314
jeff.liua8bfd4a2013-01-05 02:48:08 +00005315static int btrfs_ioctl_set_fslabel(struct file *file, void __user *arg)
5316{
Al Viro6d0379e2013-06-16 19:32:35 +04005317 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
jeff.liua8bfd4a2013-01-05 02:48:08 +00005318 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5319 struct btrfs_trans_handle *trans;
5320 char label[BTRFS_LABEL_SIZE];
5321 int ret;
5322
5323 if (!capable(CAP_SYS_ADMIN))
5324 return -EPERM;
5325
5326 if (copy_from_user(label, arg, sizeof(label)))
5327 return -EFAULT;
5328
5329 if (strnlen(label, BTRFS_LABEL_SIZE) == BTRFS_LABEL_SIZE) {
Frank Holtonefe120a2013-12-20 11:37:06 -05005330 btrfs_err(root->fs_info, "unable to set label with more than %d bytes",
jeff.liua8bfd4a2013-01-05 02:48:08 +00005331 BTRFS_LABEL_SIZE - 1);
5332 return -EINVAL;
5333 }
5334
5335 ret = mnt_want_write_file(file);
5336 if (ret)
5337 return ret;
5338
jeff.liua8bfd4a2013-01-05 02:48:08 +00005339 trans = btrfs_start_transaction(root, 0);
5340 if (IS_ERR(trans)) {
5341 ret = PTR_ERR(trans);
5342 goto out_unlock;
5343 }
5344
Anand Jaina1b83ac2013-07-19 17:39:32 +08005345 spin_lock(&root->fs_info->super_lock);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005346 strcpy(super_block->label, label);
Anand Jaina1b83ac2013-07-19 17:39:32 +08005347 spin_unlock(&root->fs_info->super_lock);
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005348 ret = btrfs_commit_transaction(trans, root);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005349
5350out_unlock:
jeff.liua8bfd4a2013-01-05 02:48:08 +00005351 mnt_drop_write_file(file);
5352 return ret;
5353}
5354
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005355#define INIT_FEATURE_FLAGS(suffix) \
5356 { .compat_flags = BTRFS_FEATURE_COMPAT_##suffix, \
5357 .compat_ro_flags = BTRFS_FEATURE_COMPAT_RO_##suffix, \
5358 .incompat_flags = BTRFS_FEATURE_INCOMPAT_##suffix }
5359
5360static int btrfs_ioctl_get_supported_features(struct file *file,
5361 void __user *arg)
5362{
David Sterba4d4ab6d2015-11-19 11:42:31 +01005363 static const struct btrfs_ioctl_feature_flags features[3] = {
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005364 INIT_FEATURE_FLAGS(SUPP),
5365 INIT_FEATURE_FLAGS(SAFE_SET),
5366 INIT_FEATURE_FLAGS(SAFE_CLEAR)
5367 };
5368
5369 if (copy_to_user(arg, &features, sizeof(features)))
5370 return -EFAULT;
5371
5372 return 0;
5373}
5374
5375static int btrfs_ioctl_get_features(struct file *file, void __user *arg)
5376{
5377 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5378 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5379 struct btrfs_ioctl_feature_flags features;
5380
5381 features.compat_flags = btrfs_super_compat_flags(super_block);
5382 features.compat_ro_flags = btrfs_super_compat_ro_flags(super_block);
5383 features.incompat_flags = btrfs_super_incompat_flags(super_block);
5384
5385 if (copy_to_user(arg, &features, sizeof(features)))
5386 return -EFAULT;
5387
5388 return 0;
5389}
5390
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005391static int check_feature_bits(struct btrfs_root *root,
5392 enum btrfs_feature_set set,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005393 u64 change_mask, u64 flags, u64 supported_flags,
5394 u64 safe_set, u64 safe_clear)
5395{
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005396 const char *type = btrfs_feature_set_names[set];
5397 char *names;
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005398 u64 disallowed, unsupported;
5399 u64 set_mask = flags & change_mask;
5400 u64 clear_mask = ~flags & change_mask;
5401
5402 unsupported = set_mask & ~supported_flags;
5403 if (unsupported) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005404 names = btrfs_printable_features(set, unsupported);
5405 if (names) {
5406 btrfs_warn(root->fs_info,
5407 "this kernel does not support the %s feature bit%s",
5408 names, strchr(names, ',') ? "s" : "");
5409 kfree(names);
5410 } else
5411 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005412 "this kernel does not support %s bits 0x%llx",
5413 type, unsupported);
5414 return -EOPNOTSUPP;
5415 }
5416
5417 disallowed = set_mask & ~safe_set;
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 set 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 set %s bits 0x%llx while mounted",
5428 type, disallowed);
5429 return -EPERM;
5430 }
5431
5432 disallowed = clear_mask & ~safe_clear;
5433 if (disallowed) {
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005434 names = btrfs_printable_features(set, disallowed);
5435 if (names) {
5436 btrfs_warn(root->fs_info,
5437 "can't clear the %s feature bit%s while mounted",
5438 names, strchr(names, ',') ? "s" : "");
5439 kfree(names);
5440 } else
5441 btrfs_warn(root->fs_info,
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005442 "can't clear %s bits 0x%llx while mounted",
5443 type, disallowed);
5444 return -EPERM;
5445 }
5446
5447 return 0;
5448}
5449
5450#define check_feature(root, change_mask, flags, mask_base) \
Jeff Mahoney3b02a682013-11-01 13:07:02 -04005451check_feature_bits(root, FEAT_##mask_base, change_mask, flags, \
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005452 BTRFS_FEATURE_ ## mask_base ## _SUPP, \
5453 BTRFS_FEATURE_ ## mask_base ## _SAFE_SET, \
5454 BTRFS_FEATURE_ ## mask_base ## _SAFE_CLEAR)
5455
5456static int btrfs_ioctl_set_features(struct file *file, void __user *arg)
5457{
5458 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
5459 struct btrfs_super_block *super_block = root->fs_info->super_copy;
5460 struct btrfs_ioctl_feature_flags flags[2];
5461 struct btrfs_trans_handle *trans;
5462 u64 newflags;
5463 int ret;
5464
5465 if (!capable(CAP_SYS_ADMIN))
5466 return -EPERM;
5467
5468 if (copy_from_user(flags, arg, sizeof(flags)))
5469 return -EFAULT;
5470
5471 /* Nothing to do */
5472 if (!flags[0].compat_flags && !flags[0].compat_ro_flags &&
5473 !flags[0].incompat_flags)
5474 return 0;
5475
5476 ret = check_feature(root, flags[0].compat_flags,
5477 flags[1].compat_flags, COMPAT);
5478 if (ret)
5479 return ret;
5480
5481 ret = check_feature(root, flags[0].compat_ro_flags,
5482 flags[1].compat_ro_flags, COMPAT_RO);
5483 if (ret)
5484 return ret;
5485
5486 ret = check_feature(root, flags[0].incompat_flags,
5487 flags[1].incompat_flags, INCOMPAT);
5488 if (ret)
5489 return ret;
5490
David Sterba8051aa12014-02-07 14:34:04 +01005491 trans = btrfs_start_transaction(root, 0);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005492 if (IS_ERR(trans))
5493 return PTR_ERR(trans);
5494
5495 spin_lock(&root->fs_info->super_lock);
5496 newflags = btrfs_super_compat_flags(super_block);
5497 newflags |= flags[0].compat_flags & flags[1].compat_flags;
5498 newflags &= ~(flags[0].compat_flags & ~flags[1].compat_flags);
5499 btrfs_set_super_compat_flags(super_block, newflags);
5500
5501 newflags = btrfs_super_compat_ro_flags(super_block);
5502 newflags |= flags[0].compat_ro_flags & flags[1].compat_ro_flags;
5503 newflags &= ~(flags[0].compat_ro_flags & ~flags[1].compat_ro_flags);
5504 btrfs_set_super_compat_ro_flags(super_block, newflags);
5505
5506 newflags = btrfs_super_incompat_flags(super_block);
5507 newflags |= flags[0].incompat_flags & flags[1].incompat_flags;
5508 newflags &= ~(flags[0].incompat_flags & ~flags[1].incompat_flags);
5509 btrfs_set_super_incompat_flags(super_block, newflags);
5510 spin_unlock(&root->fs_info->super_lock);
5511
Jeff Mahoneyd0270ac2014-02-07 14:33:57 +01005512 return btrfs_commit_transaction(trans, root);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005513}
5514
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005515long btrfs_ioctl(struct file *file, unsigned int
5516 cmd, unsigned long arg)
5517{
Al Viro496ad9a2013-01-23 17:07:38 -05005518 struct btrfs_root *root = BTRFS_I(file_inode(file))->root;
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005519 void __user *argp = (void __user *)arg;
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005520
5521 switch (cmd) {
Christoph Hellwig6cbff002009-04-17 10:37:41 +02005522 case FS_IOC_GETFLAGS:
5523 return btrfs_ioctl_getflags(file, argp);
5524 case FS_IOC_SETFLAGS:
5525 return btrfs_ioctl_setflags(file, argp);
5526 case FS_IOC_GETVERSION:
5527 return btrfs_ioctl_getversion(file, argp);
Li Dongyangf7039b12011-03-24 10:24:28 +00005528 case FITRIM:
5529 return btrfs_ioctl_fitrim(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005530 case BTRFS_IOC_SNAP_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005531 return btrfs_ioctl_snap_create(file, argp, 0);
Li Zefanfdfb1e42010-12-10 06:41:56 +00005532 case BTRFS_IOC_SNAP_CREATE_V2:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005533 return btrfs_ioctl_snap_create_v2(file, argp, 0);
Chris Mason3de45862008-11-17 21:02:50 -05005534 case BTRFS_IOC_SUBVOL_CREATE:
Li Zefanfa0d2b92010-12-20 15:53:28 +08005535 return btrfs_ioctl_snap_create(file, argp, 1);
Arne Jansen6f72c7e2011-09-14 15:58:21 +02005536 case BTRFS_IOC_SUBVOL_CREATE_V2:
5537 return btrfs_ioctl_snap_create_v2(file, argp, 1);
Yan, Zheng76dda932009-09-21 16:00:26 -04005538 case BTRFS_IOC_SNAP_DESTROY:
5539 return btrfs_ioctl_snap_destroy(file, argp);
Li Zefan0caa1022010-12-20 16:30:25 +08005540 case BTRFS_IOC_SUBVOL_GETFLAGS:
5541 return btrfs_ioctl_subvol_getflags(file, argp);
5542 case BTRFS_IOC_SUBVOL_SETFLAGS:
5543 return btrfs_ioctl_subvol_setflags(file, argp);
Josef Bacik6ef5ed02009-12-11 21:11:29 +00005544 case BTRFS_IOC_DEFAULT_SUBVOL:
5545 return btrfs_ioctl_default_subvol(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005546 case BTRFS_IOC_DEFRAG:
Chris Mason1e701a32010-03-11 09:42:04 -05005547 return btrfs_ioctl_defrag(file, NULL);
5548 case BTRFS_IOC_DEFRAG_RANGE:
5549 return btrfs_ioctl_defrag(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005550 case BTRFS_IOC_RESIZE:
Miao Xie198605a2012-11-26 08:43:45 +00005551 return btrfs_ioctl_resize(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005552 case BTRFS_IOC_ADD_DEV:
Christoph Hellwig4bcabaa2008-12-02 06:36:08 -05005553 return btrfs_ioctl_add_dev(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005554 case BTRFS_IOC_RM_DEV:
Miao Xieda249272012-11-26 08:44:50 +00005555 return btrfs_ioctl_rm_dev(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005556 case BTRFS_IOC_FS_INFO:
5557 return btrfs_ioctl_fs_info(root, argp);
5558 case BTRFS_IOC_DEV_INFO:
5559 return btrfs_ioctl_dev_info(root, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005560 case BTRFS_IOC_BALANCE:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005561 return btrfs_ioctl_balance(file, NULL);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005562 case BTRFS_IOC_CLONE:
Sage Weilc5c9cd42008-11-12 14:32:25 -05005563 return btrfs_ioctl_clone(file, arg, 0, 0, 0);
5564 case BTRFS_IOC_CLONE_RANGE:
Christoph Hellwig7a865e82008-12-02 09:52:24 -05005565 return btrfs_ioctl_clone_range(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005566 case BTRFS_IOC_TRANS_START:
5567 return btrfs_ioctl_trans_start(file);
5568 case BTRFS_IOC_TRANS_END:
5569 return btrfs_ioctl_trans_end(file);
Chris Masonac8e9812010-02-28 15:39:26 -05005570 case BTRFS_IOC_TREE_SEARCH:
5571 return btrfs_ioctl_tree_search(file, argp);
Gerhard Heiftcc68a8a2014-01-30 16:24:03 +01005572 case BTRFS_IOC_TREE_SEARCH_V2:
5573 return btrfs_ioctl_tree_search_v2(file, argp);
Chris Masonac8e9812010-02-28 15:39:26 -05005574 case BTRFS_IOC_INO_LOOKUP:
5575 return btrfs_ioctl_ino_lookup(file, argp);
Jan Schmidtd7728c92011-07-07 16:48:38 +02005576 case BTRFS_IOC_INO_PATHS:
5577 return btrfs_ioctl_ino_to_path(root, argp);
5578 case BTRFS_IOC_LOGICAL_INO:
5579 return btrfs_ioctl_logical_to_ino(root, argp);
Josef Bacik1406e432010-01-13 18:19:06 +00005580 case BTRFS_IOC_SPACE_INFO:
5581 return btrfs_ioctl_space_info(root, argp);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005582 case BTRFS_IOC_SYNC: {
5583 int ret;
5584
Miao Xie6c255e62014-03-06 13:55:01 +08005585 ret = btrfs_start_delalloc_roots(root->fs_info, 0, -1);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005586 if (ret)
5587 return ret;
Al Viroddb52f42014-10-21 20:21:18 -04005588 ret = btrfs_sync_fs(file_inode(file)->i_sb, 1);
David Sterba2fad4e82014-07-23 14:39:35 +02005589 /*
5590 * The transaction thread may want to do more work,
5591 * namely it pokes the cleaner ktread that will start
5592 * processing uncleaned subvols.
5593 */
5594 wake_up_process(root->fs_info->transaction_kthread);
Filipe David Borba Manana9b199852013-09-23 11:35:11 +01005595 return ret;
5596 }
Sage Weil46204592010-10-29 15:41:32 -04005597 case BTRFS_IOC_START_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005598 return btrfs_ioctl_start_sync(root, argp);
Sage Weil46204592010-10-29 15:41:32 -04005599 case BTRFS_IOC_WAIT_SYNC:
Miao Xie9a8c28b2012-11-26 08:40:43 +00005600 return btrfs_ioctl_wait_sync(root, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005601 case BTRFS_IOC_SCRUB:
Miao Xieb8e95482012-11-26 08:48:01 +00005602 return btrfs_ioctl_scrub(file, argp);
Jan Schmidt475f6382011-03-11 15:41:01 +01005603 case BTRFS_IOC_SCRUB_CANCEL:
5604 return btrfs_ioctl_scrub_cancel(root, argp);
5605 case BTRFS_IOC_SCRUB_PROGRESS:
5606 return btrfs_ioctl_scrub_progress(root, argp);
Ilya Dryomovc9e9f972012-01-16 22:04:47 +02005607 case BTRFS_IOC_BALANCE_V2:
Liu Bo9ba1f6e2012-05-11 18:11:26 +08005608 return btrfs_ioctl_balance(file, argp);
Ilya Dryomov837d5b62012-01-16 22:04:49 +02005609 case BTRFS_IOC_BALANCE_CTL:
5610 return btrfs_ioctl_balance_ctl(root, arg);
Ilya Dryomov19a39dc2012-01-16 22:04:49 +02005611 case BTRFS_IOC_BALANCE_PROGRESS:
5612 return btrfs_ioctl_balance_progress(root, argp);
Alexander Block8ea05e32012-07-25 17:35:53 +02005613 case BTRFS_IOC_SET_RECEIVED_SUBVOL:
5614 return btrfs_ioctl_set_received_subvol(file, argp);
Hugo Millsabccd002014-01-30 20:17:00 +00005615#ifdef CONFIG_64BIT
5616 case BTRFS_IOC_SET_RECEIVED_SUBVOL_32:
5617 return btrfs_ioctl_set_received_subvol_32(file, argp);
5618#endif
Alexander Block31db9f72012-07-25 23:19:24 +02005619 case BTRFS_IOC_SEND:
5620 return btrfs_ioctl_send(file, argp);
Stefan Behrensc11d2c22012-05-25 16:06:09 +02005621 case BTRFS_IOC_GET_DEV_STATS:
David Sterbab27f7c02012-06-22 06:30:39 -06005622 return btrfs_ioctl_get_dev_stats(root, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005623 case BTRFS_IOC_QUOTA_CTL:
Miao Xie905b0dd2012-11-26 08:50:11 +00005624 return btrfs_ioctl_quota_ctl(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005625 case BTRFS_IOC_QGROUP_ASSIGN:
Miao Xie905b0dd2012-11-26 08:50:11 +00005626 return btrfs_ioctl_qgroup_assign(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005627 case BTRFS_IOC_QGROUP_CREATE:
Miao Xie905b0dd2012-11-26 08:50:11 +00005628 return btrfs_ioctl_qgroup_create(file, argp);
Arne Jansen5d13a372011-09-14 15:53:51 +02005629 case BTRFS_IOC_QGROUP_LIMIT:
Miao Xie905b0dd2012-11-26 08:50:11 +00005630 return btrfs_ioctl_qgroup_limit(file, argp);
Jan Schmidt2f232032013-04-25 16:04:51 +00005631 case BTRFS_IOC_QUOTA_RESCAN:
5632 return btrfs_ioctl_quota_rescan(file, argp);
5633 case BTRFS_IOC_QUOTA_RESCAN_STATUS:
5634 return btrfs_ioctl_quota_rescan_status(file, argp);
Jan Schmidt57254b6e2013-05-06 19:14:17 +00005635 case BTRFS_IOC_QUOTA_RESCAN_WAIT:
5636 return btrfs_ioctl_quota_rescan_wait(file, argp);
Stefan Behrens3f6bcfb2012-11-06 15:08:53 +01005637 case BTRFS_IOC_DEV_REPLACE:
5638 return btrfs_ioctl_dev_replace(root, argp);
jeff.liu867ab662013-01-05 02:48:01 +00005639 case BTRFS_IOC_GET_FSLABEL:
5640 return btrfs_ioctl_get_fslabel(file, argp);
jeff.liua8bfd4a2013-01-05 02:48:08 +00005641 case BTRFS_IOC_SET_FSLABEL:
5642 return btrfs_ioctl_set_fslabel(file, argp);
Mark Fasheh416161d2013-08-06 11:42:51 -07005643 case BTRFS_IOC_FILE_EXTENT_SAME:
5644 return btrfs_ioctl_file_extent_same(file, argp);
Jeff Mahoney2eaa0552013-11-15 15:33:55 -05005645 case BTRFS_IOC_GET_SUPPORTED_FEATURES:
5646 return btrfs_ioctl_get_supported_features(file, argp);
5647 case BTRFS_IOC_GET_FEATURES:
5648 return btrfs_ioctl_get_features(file, argp);
5649 case BTRFS_IOC_SET_FEATURES:
5650 return btrfs_ioctl_set_features(file, argp);
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04005651 }
5652
5653 return -ENOTTY;
5654}